mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
Temporary monomorphic Node projection
This commit is contained in:
+582
-229
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; }
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user