소스 검색

Put the comments back before Reflect.getProperty(null ...

Mockey 9 년 전
부모
커밋
5a309accf9
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      tests/unit/src/unitstd/Reflect.unit.hx

+ 2 - 2
tests/unit/src/unitstd/Reflect.unit.hx

@@ -37,8 +37,8 @@ Reflect.getProperty(c, "v") == "var";
 Reflect.getProperty(c, "prop") == "prop";
 Reflect.getProperty(c, "func")() == "foo";
 Reflect.getProperty(c, "propAcc") == "1";
-Reflect.getProperty(null, "a") == null;
-Reflect.getProperty(null, null) == null;
+//Reflect.getProperty(null, "a") == null;
+//Reflect.getProperty(null, null) == null;
 
 // setProperty
 Reflect.setProperty(x, "a", 2);