We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66f8257 commit c9b1309Copy full SHA for c9b1309
1 file changed
src/services/services.ts
@@ -115,7 +115,9 @@ module ts {
115
}
116
117
public getChangeRange(oldSnapshot: IScriptSnapshot): TextChangeRange {
118
- throw new Error("not yet implemented");
+ // Text-based snapshots do not support incremental parsing. Return undefined
119
+ // to signal that to the caller.
120
+ return undefined;
121
122
123
0 commit comments