File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -36217,6 +36217,9 @@ var ts;
36217
36217
}
36218
36218
}
36219
36219
function classifyToken(token) {
36220
+ if (ts.nodeIsMissing(token)) {
36221
+ return;
36222
+ }
36220
36223
var tokenStart = classifyLeadingTriviaAndGetTokenStart(token);
36221
36224
var tokenWidth = token.end - tokenStart;
36222
36225
ts.Debug.assert(tokenWidth >= 0);
Original file line number Diff line number Diff line change @@ -42395,6 +42395,9 @@ var ts;
42395
42395
}
42396
42396
}
42397
42397
function classifyToken(token) {
42398
+ if (ts.nodeIsMissing(token)) {
42399
+ return;
42400
+ }
42398
42401
var tokenStart = classifyLeadingTriviaAndGetTokenStart(token);
42399
42402
var tokenWidth = token.end - tokenStart;
42400
42403
ts.Debug.assert(tokenWidth >= 0);
Original file line number Diff line number Diff line change @@ -42395,6 +42395,9 @@ var ts;
42395
42395
}
42396
42396
}
42397
42397
function classifyToken(token) {
42398
+ if (ts.nodeIsMissing(token)) {
42399
+ return;
42400
+ }
42398
42401
var tokenStart = classifyLeadingTriviaAndGetTokenStart(token);
42399
42402
var tokenWidth = token.end - tokenStart;
42400
42403
ts.Debug.assert(tokenWidth >= 0);
You can’t perform that action at this time.
0 commit comments