Home
last modified time | relevance | path

Searched defs:sourceFile (Results 1 – 25 of 81) sorted by relevance

1234

/arkcompiler/ets_frontend/arkguard/test/ut/transformer/
DDisableConsoleTransformer.spec.ts60 …const sourceFile: ts.SourceFile = ts.createSourceFile('demo.ts', fileContent, ts.ScriptTarget.ES20… constant
77 …const sourceFile: ts.SourceFile = ts.createSourceFile('demo.ts', fileContent, ts.ScriptTarget.ES20… constant
114 …const sourceFile: ts.SourceFile = ts.createSourceFile('demo.ts', fileContent, ts.ScriptTarget.ES20… constant
123 …const sourceFile: ts.SourceFile = ts.createSourceFile('demo.ts', fileContent, ts.ScriptTarget.ES20… constant
DRenameIdentifierTransformer.spec.ts118 …const sourceFile: ts.SourceFile = ts.createSourceFile('demo.ts', fileContent, ts.ScriptTarget.ES20… constant
169 …const sourceFile: ts.SourceFile = ts.createSourceFile('demo.ts', fileContent, ts.ScriptTarget.ES20… constant
221 …const sourceFile: ts.SourceFile = ts.createSourceFile('demo.ts', fileContent, ts.ScriptTarget.ES20… constant
239 …const sourceFile: ts.SourceFile = ts.createSourceFile('demo.ts', fileContent, ts.ScriptTarget.ES20… constant
256 …const sourceFile: ts.SourceFile = ts.createSourceFile('demo.ts', fileContent, ts.ScriptTarget.ES20… constant
275 …const sourceFile: ts.SourceFile = ts.createSourceFile('demo.ts', fileContent, ts.ScriptTarget.ES20… constant
331 …const sourceFile: ts.SourceFile = ts.createSourceFile('demo.ts', fileContent1, ts.ScriptTarget.ES2… constant
400 …const sourceFile: ts.SourceFile = ts.createSourceFile('demo.ts', fileContent, ts.ScriptTarget.ES20… constant
443 …const sourceFile: ts.SourceFile = ts.createSourceFile('demo.ts', fileContent2, ts.ScriptTarget.ES2… constant
473 …const sourceFile: ts.SourceFile = ts.createSourceFile('demo.ts', fileContent2, ts.ScriptTarget.ES2… constant
[all …]
DRenamePropertiesTransformer.spec.ts235 …const sourceFile: ts.SourceFile = ts.createSourceFile('demo.ts', fileContent, ts.ScriptTarget.ES20… constant
276 …const sourceFile: ts.SourceFile = ts.createSourceFile('demo.ts', fileContent, ts.ScriptTarget.ES20… constant
/arkcompiler/ets_frontend/arkguard/test/ut/utils/
DTypeUtils.spec.ts42 let sourceFile: SourceFile; variable
113 const sourceFile = createSourceFile('test.ts', source, ScriptTarget.ES2015, true); constant
132 const sourceFile = createSourceFile('test.ts', source, ScriptTarget.ES2015, true); constant
155 const sourceFile = createSourceFile('test.ts', source, ScriptTarget.ES2015, true); constant
176 const sourceFile = createSourceFile('test.ts', source, ScriptTarget.ES2015, true); constant
DScopeAnalyzer.spec.ts63 let sourceFile: SourceFile; variable
312 let sourceFile: SourceFile; variable
456 let sourceFile = createSourceFile(filePath, fileContent, ScriptTarget.ES2015, true); variable
472 let sourceFile = createSourceFile(filePath, fileContent, ScriptTarget.ES2015, true); variable
542 let sourceFile = createSourceFile(filePath, fileContent, ScriptTarget.ES2015, true); variable
579 let sourceFile = createSourceFile(filePath, fileContent, ScriptTarget.ES2015, true); variable
623 let sourceFile = createSourceFile(filePath, fileContent, ScriptTarget.ES2015, true); variable
666 let sourceFile = createSourceFile(filePath, fileContent, ScriptTarget.ES2015, true); variable
701 let sourceFile = createSourceFile(filePath, fileContent, ScriptTarget.ES2015, true); variable
739 …const sourceFile: SourceFile = createSourceFile('test.ts', sourceFileContent, ScriptTarget.ES2015,… constant
DNodeUtils.spec.ts371 … const sourceFile = ts.factory.createSourceFile([], endOfFileToken, ts.NodeFlags.AwaitContext); constant
399 const sourceFile = NodeUtils.getSourceFileOfNode(node); constant
566 …const sourceFile: ts.SourceFile = ts.createSourceFile('demo.ts', fileContent, ts.ScriptTarget.ES20… constant
573 …const sourceFile: ts.SourceFile = ts.createSourceFile('demo.ts', fileContent, ts.ScriptTarget.ES20… constant
580 …const sourceFile: ts.SourceFile = ts.createSourceFile('demo.ts', fileContent, ts.ScriptTarget.ES20… constant
/arkcompiler/ets_frontend/ets2panda/lsp/include/services/text_change/
Dchange_tracker.h72 const SourceFile *sourceFile; member
79 const SourceFile *sourceFile; member
87 const SourceFile *sourceFile; member
94 const SourceFile *sourceFile; member
108 const SourceFile *sourceFile; member
122 SourceFile *sourceFile; member
/arkcompiler/ets_frontend/ets2panda/linter/src/sdk/linter_1_1/
DSdkTypeScriptDiagnosticsExtractor.ts53 const sourceFile = builderProgram.getSourceFile(fileName); constant
/arkcompiler/ets_frontend/ets2panda/linter/src/lib/ts-diagnostics/
DTypeScriptDiagnosticsExtractor.ts53 const sourceFile = program.getSourceFile(fileName); constant
DTSCCompiledProgram.ts64 const sourceFile = this.program.getSourceFile(fileName); constant
/arkcompiler/ets_frontend/ets2panda/lsp/src/services/text_change/
Dchange_tracker.cpp72 const auto sourceFile = astContext->sourceFile; in ReplaceRangeWithNodes() local
98 const auto sourceFile = astContext->sourceFile; in InsertAtTopOfFile() local
219 const auto sourceFile = astContext->sourceFile; in InsertNodeAfterWorker() local
298 void ChangeTracker::PushRaw(const SourceFile *sourceFile, const FileTextChanges &change) in PushRaw()
307 void ChangeTracker::DeleteRange(const SourceFile *sourceFile, TextRange range) in DeleteRange()
316 void ChangeTracker::Delete(const SourceFile *sourceFile, in Delete()
340 void ChangeTracker::DeleteNode(es2panda_Context *context, const SourceFile *sourceFile, ir::AstNode… in DeleteNode()
352 const auto sourceFile = ctx->sourceFile; in DeleteNodeRange() local
359 const auto sourceFile = astContext->sourceFile; in DeleteModifier() local
367 const auto sourceFile = astContext->sourceFile; in DeleteNodeRangeExcludingEnd() local
[all …]
/arkcompiler/ets_frontend/arkguard/test/benchmark/
DTypeUtils.benchmark.ts74 …const sourceFile: SourceFile = createSourceFile('demo.ts', fileContent, ScriptTarget.ES2015, true); constant
DRenameIdentifier.benchmark.ts87 …const sourceFile: SourceFile = createSourceFile('demo.ts', fileContent, ScriptTarget.ES2015, true); constant
DRenameProperty.benchmark.ts90 …const sourceFile: SourceFile = createSourceFile('demo.ts', fileContent, ScriptTarget.ES2015, true); constant
/arkcompiler/ets_frontend/ets2panda/linter/arkanalyzer/src/core/model/builder/
DArkFileBuilder.ts76 …const sourceFile = ts.createSourceFile(arkFile.getName(), arkFile.getCode(), ts.ScriptTarget.Lates… constant
/arkcompiler/toolchain/tooling/dynamic/test/testcases/
Djs_asyn_stack_test.h155 std::string sourceFile; in RecvAsyncMessageInfo() local
229 std::string sourceFile; in RecvMultipleAsyncMessageInfo() local
Djs_variable_second_test.h37 std::string sourceFile = DEBUGGER_JS_DIR "variable_second.js"; in JsVariableSecondTest() local
Djs_variable_first_test.h37 std::string sourceFile = DEBUGGER_JS_DIR "variable_first.js"; in JsVariableFirstTest() local
/arkcompiler/ets_frontend/merge_abc/protos/
DassemblyRecord.proto33 bytes sourceFile = 9; field
/arkcompiler/ets_frontend/es2panda/compiler/core/
DcompilerContext.cpp24 … bool isRecordDebugSource, const std::string &sourceFile, const std::string &pkgName, in CompilerContext()
/arkcompiler/toolchain/tooling/static/
Dinspector_server.h132 std::string_view sourceFile; member
Dinspector.cpp194 auto sourceFile = debugInfoCache_.GetUserSourceFile(method); in SingleStep() local
351 std::set<size_t> Inspector::GetPossibleBreakpoints(std::string_view sourceFile, size_t startLine, s… in GetPossibleBreakpoints()
503 void Inspector::ContinueToLocation(PtThread thread, std::string_view sourceFile, size_t lineNumber) in ContinueToLocation()
568 std::string Inspector::GetSourceCode(std::string_view sourceFile) in GetSourceCode()
590 std::string_view sourceFile; in DebuggableThreadPostSuspend() local
652 std::string_view sourceFile; in CreateExceptionDetails() local
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/
Dinspector_server.h132 std::string_view sourceFile; member
Dinspector.cpp189 auto sourceFile = debugInfoCache_.GetUserSourceFile(method); in SingleStep() local
344 std::set<size_t> Inspector::GetPossibleBreakpoints(std::string_view sourceFile, size_t startLine, s… in GetPossibleBreakpoints()
496 void Inspector::ContinueToLocation(PtThread thread, std::string_view sourceFile, size_t lineNumber) in ContinueToLocation()
561 std::string Inspector::GetSourceCode(std::string_view sourceFile) in GetSourceCode()
583 std::string_view sourceFile; in DebuggableThreadPostSuspend() local
645 std::string_view sourceFile; in CreateExceptionDetails() local
/arkcompiler/runtime_core/static_core/assembler/
Dassembly-record.h40 std::string sourceFile; /* The file in which the record is defined or empty */ member

1234