File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -2147,6 +2147,10 @@ module FourSlash {
2147
2147
currentFileOptions [ match [ 1 ] ] = match [ 2 ] ;
2148
2148
}
2149
2149
} else {
2150
+ // Check if the match is already existed in the global options
2151
+ if ( opts [ match [ 1 ] ] !== undefined ) {
2152
+ throw new Error ( "Global Option : '" + match [ 1 ] + "' is already existed" ) ;
2153
+ }
2150
2154
opts [ match [ 1 ] ] = match [ 2 ] ;
2151
2155
}
2152
2156
}
Original file line number Diff line number Diff line change 17
17
//// var k = 10;
18
18
//// }
19
19
20
- var filename = "sample/outDir/sourceMapResult" ;
21
- var jsFilename = filename + ".js" ;
22
- var sourceMapFilename = filename + ".js.map" ;
23
- var outputFilenames = jsFilename + " " + sourceMapFilename ;
24
- verify . baselineGetEmitOutput ( ) ;
25
- //verify.emitOutput(EmitReturnStatus.Succeeded, outputFilenames);
20
+ verify . baselineGetEmitOutput ( ) ;
You can’t perform that action at this time.
0 commit comments