/arkcompiler/ets_frontend/ts2panda/tests/ |
D | scope.test.ts | 34 let variable = scope.add("x", VarDeclarationKind.NONE); variable 44 let variable = scope.add("x", VarDeclarationKind.VAR); variable 54 let variable = scope.add("x", VarDeclarationKind.LET); variable 64 let variable = scope.add("x", VarDeclarationKind.CONST); variable 82 let variable = scope.add("x", VarDeclarationKind.NONE); variable 92 let variable = scope.add("x", VarDeclarationKind.VAR); variable 102 let variable = scope.add("x", VarDeclarationKind.LET); variable 112 let variable = scope.add("x", VarDeclarationKind.LET); variable 131 let variable = scope.add("x", VarDeclarationKind.NONE); variable 143 let variable = scope.add("x", VarDeclarationKind.VAR); variable [all …]
|
/arkcompiler/ets_frontend/es2panda/test/parser/ts/type_checker/ |
D | assignment_unknown.ts | 17 let variable: unknown; variable
|
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | classAttributeInferenceTemplate.ts | 26 const variable = 'something' constant
|
/arkcompiler/ets_frontend/ts2panda/src/base/ |
D | lreference.ts | 38 …readonly variable: { scope: Scope | undefined, level: number, v: Variable | undefined } | undefine… property in LReference 142 let variable = compiler.getCurrentScope().find(name); variable
|
/arkcompiler/ets_frontend/ts2panda/src/ |
D | lexenv.ts | 42 variable: Variable; property in VariableAccessBase
|
/arkcompiler/ets_frontend/es2panda/typescript/types/ |
D | signature.cpp | 33 void Signature::ToString(std::stringstream &ss, const binder::Variable *variable, bool printAsMetho… in ToString() argument
|
/arkcompiler/ets_frontend/es2panda/ir/expressions/ |
D | unaryExpression.cpp | 47 compiler::VReg variable = pg->AllocReg(); in Compile() local
|
/arkcompiler/ets_frontend/es2panda/ir/ts/ |
D | tsEnumDeclaration.cpp | 258 …d AddEnumValueDeclaration(checker::Checker *checker, double number, binder::EnumVariable *variable) in AddEnumValueDeclaration() 288 void InferEnumVariableType(checker::Checker *checker, binder::EnumVariable *variable, double *value… in InferEnumVariableType()
|
/arkcompiler/ets_frontend/es2panda/typescript/extractor/ |
D | typeExtractor.cpp | 291 const ir::Identifier **variable) in GetDeclNodeFromIdentifier() 324 const ir::Identifier **variable) in GetDeclNodeFromInitializer() 983 void TypeExtractor::GetVariablesFromTSQualifiedNodes(const binder::Variable *variable, in GetVariablesFromTSQualifiedNodes() 1031 void TypeExtractor::GetVariablesFromNamespace(const binder::NamespaceVariable *variable, in GetVariablesFromNamespace() 1040 auto fn = [&findRes](binder::Variable *variable) { in GetVariablesFromNamespace()
|
D | typeRecorder.cpp | 167 void TypeRecorder::SetVariableTypeIndex(const binder::Variable *variable, int64_t index) in SetVariableTypeIndex()
|
/arkcompiler/ets_frontend/es2panda/compiler/base/ |
D | lexenv.cpp | 34 static void CheckConstAssignment(PandaGen *pg, const ir::AstNode *node, binder::Variable *variable) in CheckConstAssignment()
|
/arkcompiler/ets_frontend/es2panda/util/ |
D | patchFix.cpp | 466 for (auto &variable: lexicalVarNameAndTypes) { in CompareLexenv() local 611 for (auto &variable: pg->TopScope()->GetLexicalVarNameAndTypes()) { in DumpFunctionInfo() local
|
/arkcompiler/ets_frontend/es2panda/binder/ |
D | binder.cpp | 422 auto *variable = scope_->FindLocal(name, ResolveBindingOptions::BINDINGS); in BuildVarDeclaratorId() local 910 auto fn = [&findRes](Variable *variable) { in FindIdentifierTSVariables()
|
D | scope.h | 50 bool AddTSVariable(const util::StringView &name, Variable *variable) in AddTSVariable() 984 auto *variable = allocator->New<VariableType>(decl, flags); in AddDecl() local 997 auto *variable = allocator->New<VariableType>(decl, flags); in CreateVar() local
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | call_signature.h | 229 void SetVariadicArgs(bool variable) in SetVariadicArgs()
|
D | bytecode_circuit_builder.cpp | 1652 for (auto variable: bb.phi) { in PrintGraph() local
|
D | interpreter_stub.cpp | 655 GateRef variable = GetPropertiesFromLexicalEnv(*currentEnv, slot); in DECLARE_ASM_HANDLER() local 684 GateRef variable = GetPropertiesFromLexicalEnv(*currentEnv, slot); in DECLARE_ASM_HANDLER() local 712 GateRef variable = GetPropertiesFromLexicalEnv(*currentEnv, slot); in DECLARE_ASM_HANDLER() local
|
/arkcompiler/runtime_core/libpandafile/tests/ |
D | debug_info_extractor_test.cpp | 276 for (const auto &variable : variables) { in GetLocalVariableInfoWrapper() local
|
/arkcompiler/ets_frontend/es2panda/typescript/core/ |
D | destructuringContext.cpp | 61 binder::Variable *variable = ident->Variable(); in HandleDestructuringAssignment() local
|
/arkcompiler/ets_frontend/es2panda/compiler/core/ |
D | pandagen.cpp | 1684 … PandaGen::LoadLocalModuleVariable(const ir::AstNode *node, const binder::ModuleVariable *variable) in LoadLocalModuleVariable() 1691 …ndaGen::LoadExternalModuleVariable(const ir::AstNode *node, const binder::ModuleVariable *variable) in LoadExternalModuleVariable() 1708 void PandaGen::StoreModuleVariable(const ir::AstNode *node, const binder::ModuleVariable *variable) in StoreModuleVariable()
|
/arkcompiler/ets_frontend/ts2panda/ts2abc/ |
D | ts2abc.cpp | 457 auto variable = function["v"][i]; in ParseVariablesDebugInfo() local
|