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 22
33export * from "../../compiler/_namespaces/ts" ;
44export * 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 {
205205 }
206206 break ;
207207
208- case "originalKeywordKind" :
209- o [ propertyName ] = getKindName ( ( n as any ) [ propertyName ] ) ;
210- break ;
211-
212208 case "flags" :
213209 // Clear the flags that are produced by aggregating child values. That is ephemeral
214210 // 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 {
43784378 interface Identifier {
43794379 readonly text: string;
43804380 }
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- }
43874381 interface TransientIdentifier extends Identifier {
43884382 resolvedSymbol: Symbol;
43894383 }
You can’t perform that action at this time.
0 commit comments