You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Used for configured projects which may have multiple open roots */
1005
1003
openRefCount=0;
1006
1004
1005
+
privateprojectErrors: Diagnostic[];
1006
+
1007
1007
constructor(configFileName: NormalizedPath,
1008
1008
projectService: ProjectService,
1009
1009
documentRegistry: DocumentRegistry,
@@ -1018,7 +1018,7 @@ namespace ts.server {
1018
1018
}
1019
1019
1020
1020
/**
1021
-
* Checks if the project has reload from disk pending, if thats pending, it reloads (and then updates graph as part of that) instead of just updating the graph
1021
+
* If the project has reload from disk pending, it reloads (and then updates graph as part of that) instead of just updating the graph
1022
1022
* @returns: true if set of files in the project stays the same and false - otherwise.
1023
1023
*/
1024
1024
updateGraph(): boolean{
@@ -1030,6 +1030,7 @@ namespace ts.server {
1030
1030
returnsuper.updateGraph();
1031
1031
}
1032
1032
1033
+
/*@internal*/
1033
1034
getCachedServerHost(){
1034
1035
returnthis.lsHost.hostasCachedServerHost;
1035
1036
}
@@ -1119,6 +1120,20 @@ namespace ts.server {
1119
1120
returngetDirectoryPath(this.getConfigFilePath());
1120
1121
}
1121
1122
1123
+
/**
1124
+
* Get the errors that dont have any file name associated
0 commit comments