mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-09 02:30:15 -06:00
Temporary monomorphic Node projection
This commit is contained in:
parent
aaf7906ce3
commit
2598c94bab
File diff suppressed because it is too large
Load Diff
@ -335,7 +335,6 @@ import {
|
||||
writeFileEnsuringDirectories,
|
||||
PartialSourceFile,
|
||||
PackageJsonInfo,
|
||||
JSDocParsingMode,
|
||||
} from "./_namespaces/ts.js";
|
||||
import * as performance from "./_namespaces/ts.performance.js";
|
||||
|
||||
|
||||
@ -5603,8 +5603,9 @@ export class SyntheticReferenceExpression extends Node<SyntaxKind.SyntheticRefer
|
||||
// declare readonly ast: AstSyntheticReferenceExpression;
|
||||
|
||||
get expression(): Expression { return this.ast.data.expression.node; }
|
||||
/** @internal */ set expression(value: Expression) { this.ast.data.expression = value.ast; }
|
||||
get thisArg(): Expression { return this.ast.data.thisArg.node; }
|
||||
|
||||
/** @internal */ set expression(value: Expression) { this.ast.data.expression = value.ast; }
|
||||
/** @internal */ set thisArg(value: Expression) { this.ast.data.thisArg = value.ast; }
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user