File tree Expand file tree Collapse file tree 3 files changed +36
-1
lines changed Expand file tree Collapse file tree 3 files changed +36
-1
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,6 @@ if (testConfigFile !== '') {
49
49
if ( ! option ) {
50
50
continue ;
51
51
}
52
- ts . sys . write ( "Option: " + option + "\r\n" ) ;
53
52
switch ( option ) {
54
53
case 'compiler' :
55
54
runners . push ( new CompilerBaselineRunner ( CompilerTestType . Conformance ) ) ;
Original file line number Diff line number Diff line change
1
+ /// <reference path="fourslash.ts" />
2
+
3
+ ////module M {
4
+ //// }
5
+ ////module N {
6
+ //// }
7
+
8
+ var c = classification ;
9
+ cancellation . setCancelled ( 1 ) ;
10
+ verifyOperationIsCancelled ( ( ) => verify . semanticClassificationsAre ( ) ) ;
11
+ cancellation . resetCancelled ( ) ;
12
+
13
+ verify . semanticClassificationsAre (
14
+ c . moduleName ( "M" ) ,
15
+ c . moduleName ( "N" ) ) ;
Original file line number Diff line number Diff line change
1
+ /// <reference path="fourslash.ts" />
2
+
3
+ ////module M {
4
+ //// }
5
+ ////module N {
6
+ //// }
7
+
8
+ var c = classification ;
9
+ cancellation . setCancelled ( 1 ) ;
10
+ verifyOperationIsCancelled ( ( ) => verify . syntacticClassificationsAre ( ) ) ;
11
+ cancellation . resetCancelled ( ) ;
12
+
13
+ verify . syntacticClassificationsAre (
14
+ c . keyword ( "module" ) ,
15
+ c . moduleName ( "M" ) ,
16
+ c . punctuation ( "{" ) ,
17
+ c . punctuation ( "}" ) ,
18
+ c . keyword ( "module" ) ,
19
+ c . moduleName ( "N" ) ,
20
+ c . punctuation ( "{" ) ,
21
+ c . punctuation ( "}" ) ) ;
You can’t perform that action at this time.
0 commit comments