浏览代码

Modified ignores, added test

- 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
Ronny Otto 11 年之前
父节点
当前提交
4293d4fb8d
共有 2 个文件被更改,包括 14 次插入0 次删除
  1. 6 0
      .gitignore
  2. 8 0
      tests/todos/allowPropertyField.bmx

+ 6 - 0
.gitignore

@@ -1,2 +1,8 @@
 *.bak
 *.bak
 .bmx
 .bmx
+.bmx/
+/bcc
+/bcc.debug
+/bcc.exe
+/bcc.debug.exe
+

+ 8 - 0
tests/todos/allowPropertyField.bmx

@@ -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