- modified gitignore to ignore .bmx-folders and bcc-binaries - added test for capability to use "property" as a variable name - added "todo"-test-directory for things which eg. differ from the original bcc
@@ -1,2 +1,8 @@
*.bak
.bmx
+.bmx/
+/bcc
+/bcc.debug
+/bcc.exe
+/bcc.debug.exe
+
@@ -0,0 +1,8 @@
+SuperStrict
+'Ron: No .res file is needed as we just care for "compiling successful".
+local property:string = "allowed in original bcc but not in bcc-ng"
+Type SuperDuper
+ Field property:string = "allowed here too"
+End Type