@@ -628,7 +628,7 @@ namespace ts.projectSystem {
628
628
629
629
checkProjectActualFiles ( service . configuredProjects [ 0 ] , [ ] ) ;
630
630
checkProjectActualFiles ( service . inferredProjects [ 0 ] , [ f1 . path ] ) ;
631
- } )
631
+ } ) ;
632
632
633
633
it ( "create configured project without file list" , ( ) => {
634
634
const configFile : FileOrFolder = {
@@ -1181,7 +1181,7 @@ namespace ts.projectSystem {
1181
1181
1182
1182
const host = createServerHost ( [ f1 , f2 , libFile ] ) ;
1183
1183
const service = createProjectService ( host ) ;
1184
- service . openExternalProject ( { projectFileName : "/a/b/project" , rootFiles : toExternalFiles ( [ f1 . path , f2 . path ] ) , options : { } } )
1184
+ service . openExternalProject ( { projectFileName : "/a/b/project" , rootFiles : toExternalFiles ( [ f1 . path , f2 . path ] ) , options : { } } ) ;
1185
1185
1186
1186
service . openClientFile ( f1 . path ) ;
1187
1187
service . openClientFile ( f2 . path , "let x: string" ) ;
@@ -1213,7 +1213,7 @@ namespace ts.projectSystem {
1213
1213
1214
1214
const host = createServerHost ( [ f1 , f2 , libFile ] ) ;
1215
1215
const service = createProjectService ( host ) ;
1216
- service . openExternalProject ( { projectFileName : "/a/b/project" , rootFiles : [ { fileName : f1 . path } , { fileName : f2 . path , hasMixedContent : true } ] , options : { } } )
1216
+ service . openExternalProject ( { projectFileName : "/a/b/project" , rootFiles : [ { fileName : f1 . path } , { fileName : f2 . path , hasMixedContent : true } ] , options : { } } ) ;
1217
1217
1218
1218
service . openClientFile ( f1 . path ) ;
1219
1219
service . openClientFile ( f2 . path , "let somelongname: string" ) ;
@@ -2040,7 +2040,7 @@ namespace ts.projectSystem {
2040
2040
2041
2041
for ( const f of [ f2 , f3 ] ) {
2042
2042
const scriptInfo = projectService . getScriptInfoForNormalizedPath ( server . toNormalizedPath ( f . path ) ) ;
2043
- assert . equal ( scriptInfo . containingProjects . length , 0 , `expect 0 containing projects for '${ f . path } '` )
2043
+ assert . equal ( scriptInfo . containingProjects . length , 0 , `expect 0 containing projects for '${ f . path } '` ) ;
2044
2044
}
2045
2045
} ) ;
2046
2046
@@ -2156,7 +2156,7 @@ namespace ts.projectSystem {
2156
2156
projectFileName,
2157
2157
rootFiles : [ toExternalFile ( f1 . path ) ] ,
2158
2158
options : { }
2159
- } )
2159
+ } ) ;
2160
2160
projectService . openClientFile ( f1 . path , "let x = 1;\nlet y = 2;" ) ;
2161
2161
2162
2162
projectService . checkNumberOfProjects ( { externalProjects : 1 } ) ;
@@ -3307,12 +3307,12 @@ namespace ts.projectSystem {
3307
3307
isCancellationRequested : ( ) => false ,
3308
3308
setRequest : requestId => {
3309
3309
if ( expectedRequestId === undefined ) {
3310
- assert . isTrue ( false , "unexpected call" )
3310
+ assert . isTrue ( false , "unexpected call" ) ;
3311
3311
}
3312
3312
assert . equal ( requestId , expectedRequestId ) ;
3313
3313
} ,
3314
3314
resetRequest : noop
3315
- }
3315
+ } ;
3316
3316
const session = createSession ( host , /*typingsInstaller*/ undefined , /*projectServiceEventHandler*/ undefined , cancellationToken ) ;
3317
3317
3318
3318
expectedRequestId = session . getNextSeq ( ) ;
@@ -3359,13 +3359,13 @@ namespace ts.projectSystem {
3359
3359
currentId = requestId ;
3360
3360
} ,
3361
3361
resetRequest ( requestId ) {
3362
- assert . equal ( requestId , currentId , "unexpected request id in cancellation" )
3362
+ assert . equal ( requestId , currentId , "unexpected request id in cancellation" ) ;
3363
3363
currentId = undefined ;
3364
3364
} ,
3365
3365
isCancellationRequested ( ) {
3366
3366
return requestToCancel === currentId ;
3367
3367
}
3368
- }
3368
+ } ;
3369
3369
} ) ( ) ;
3370
3370
const host = createServerHost ( [ f1 , config ] ) ;
3371
3371
const session = createSession ( host , /*typingsInstaller*/ undefined , ( ) => { } , cancellationToken ) ;
0 commit comments