File tree Expand file tree Collapse file tree 4 files changed +0
-62
lines changed
tests/baselines/reference/api Expand file tree Collapse file tree 4 files changed +0
-62
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
3
3
export * from "../../compiler/_namespaces/ts" ;
4
4
export * from "../deprecations" ;
5
- export * from "../5.0/identifierProperties" ;
Original file line number Diff line number Diff line change @@ -205,10 +205,6 @@ export function sourceFileToJSON(file: ts.Node): string {
205
205
}
206
206
break ;
207
207
208
- case "originalKeywordKind" :
209
- o [ propertyName ] = getKindName ( ( n as any ) [ propertyName ] ) ;
210
- break ;
211
-
212
208
case "flags" :
213
209
// Clear the flags that are produced by aggregating child values. That is ephemeral
214
210
// data we don't care about in the dump. We only care what the parser set directly
Original file line number Diff line number Diff line change @@ -4378,12 +4378,6 @@ declare namespace ts {
4378
4378
interface Identifier {
4379
4379
readonly text: string;
4380
4380
}
4381
- interface Identifier {
4382
- /** @deprecated Use `idKeyword(identifier)` instead. */
4383
- readonly originalKeywordKind?: SyntaxKind;
4384
- /** @deprecated Use `.parent` or the surrounding context to determine this instead. */
4385
- readonly isInJSDocNamespace?: boolean;
4386
- }
4387
4381
interface TransientIdentifier extends Identifier {
4388
4382
resolvedSymbol: Symbol;
4389
4383
}
You can’t perform that action at this time.
0 commit comments