@@ -37,7 +37,7 @@ await RunCallFunctionOn(eval_fn, vscode_fn0, "big", bp_loc, line, col, res_array
37
37
ownProperties = false
38
38
} ) , token ) ;
39
39
if ( is_js )
40
- await CheckProps ( obj_accessors . Value [ "result" ] , new { __proto__ = TIgnore ( ) } , "obj_accessors" ) ;
40
+ await CheckProps ( obj_accessors . Value [ "result" ] , new { __proto__ = TIgnore ( ) } , "obj_accessors" ) ;
41
41
else
42
42
AssertEqual ( 0 , obj_accessors . Value [ "result" ] ? . Count ( ) , "obj_accessors-count" ) ;
43
43
@@ -98,7 +98,7 @@ await RunCallFunctionOn(eval_fn, vscode_fn1, "big", bp_loc, line, col,
98
98
} ) , token ) ;
99
99
100
100
if ( is_js )
101
- await CheckProps ( obj_accessors . Value [ "result" ] , new { __proto__ = TIgnore ( ) } , "obj_accessors" ) ;
101
+ await CheckProps ( obj_accessors . Value [ "result" ] , new { __proto__ = TIgnore ( ) } , "obj_accessors" ) ;
102
102
else
103
103
AssertEqual ( 0 , obj_accessors . Value [ "result" ] ? . Count ( ) , "obj_accessors-count" ) ;
104
104
@@ -622,7 +622,11 @@ public async Task PropertyGettersTest(string eval_fn, string method_name, int li
622
622
623
623
// Auto properties show w/o getters, because they have
624
624
// a backing field
625
- DTAutoProperty = TDateTime ( dt )
625
+ DTAutoProperty = TDateTime ( dt ) ,
626
+
627
+ // Static properties
628
+ PublicStaticDTProp = TGetter ( "PublicStaticDTProp" ) ,
629
+ PrivateStaticDTProp = TGetter ( "PrivateStaticDTProp" ) ,
626
630
} , local_name ) ;
627
631
628
632
// Invoke getters, and check values
0 commit comments