Searched refs:isTsFile (Results 1 – 4 of 4) sorted by relevance
/arkcompiler/ets_frontend/ts2panda/src/ |
D | compilerDriver.ts | 71 static isTsFile: boolean = false; property in CompilerDriver 172 CompilerDriver.isTsFile = CompilerDriver.isTypeScriptSourceFile(node); 292 CompilerDriver.isTsFile = CompilerDriver.isTypeScriptSourceFile(node); 345 …ew Recorder(node, topLevelScope, this, enableTypeRecord, CompilerDriver.isTsFile, syntaxCheckStatu…
|
D | recorder.ts | 68 private isTsFile: boolean; property in Recorder 74 …ode, scope: Scope, compilerDriver: CompilerDriver, recordType: boolean, isTsFile: boolean, syntaxC… 81 this.isTsFile = isTsFile; 104 … if (!this.isTsFile || childNode!.parent === undefined || childNode.parent.kind != node.kind) {
|
D | ts2panda.ts | 242 let enableRecordType: boolean = CmdOptions.needRecordType() && CompilerDriver.isTsFile; 379 if (CmdOptions.needRecordType() && CompilerDriver.isTsFile) {
|
/arkcompiler/ets_frontend/ts2panda/src/base/ |
D | util.ts | 333 return recordType && CmdOptions.needRecordType() && CompilerDriver.isTsFile;
|