Home
last modified time | relevance | path

Searched defs:variable (Results 1 – 25 of 41) sorted by relevance

12

/arkcompiler/ets_frontend/ts2panda/tests/
Dscope.test.ts34 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/
Dassignment_unknown.ts17 let variable: unknown; variable
/arkcompiler/ets_frontend/ets2panda/test/compiler/ts/
Dassignment_unknown.ts17 let variable: unknown; variable
/arkcompiler/ets_frontend/ts2panda/src/base/
Dlreference.ts38 …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/
Dlexenv.ts42 variable: Variable; property in VariableAccessBase
/arkcompiler/ets_frontend/ets2panda/compiler/base/
Dlexenv.cpp32 …tic void CheckConstAssignment(PandaGen *pg, const ir::AstNode *node, varbinder::Variable *variable) in CheckConstAssignment()
74 static void StoreLocalExport(PandaGen *pg, const ir::AstNode *node, varbinder::Variable *variable) in StoreLocalExport()
Dlreference.cpp224 ReferenceKind ETSLReference::ResolveReferenceKind(const varbinder::Variable *variable) in ResolveReferenceKind()
/arkcompiler/ets_frontend/es2panda/typescript/types/
Dsignature.cpp33 void Signature::ToString(std::stringstream &ss, const binder::Variable *variable, bool printAsMetho… in ToString() argument
/arkcompiler/ets_frontend/es2panda/ir/expressions/
DunaryExpression.cpp47 compiler::VReg variable = pg->AllocReg(); in Compile() local
/arkcompiler/ets_frontend/es2panda/ir/ts/
DtsEnumDeclaration.cpp258 …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/ets2panda/ir/expressions/
DarrowFunctionExpression.cpp80 for (auto *const variable : other.capturedVars_) { in ArrowFunctionExpression() local
/arkcompiler/ets_frontend/ets2panda/varbinder/
Dvarbinder.cpp229 …Variable *variable = scope->FindLocal(classDef->PrivateId(), varbinder::ResolveBindingOptions::BIN… in InstantiatePrivateContext() local
310 auto *variable = scope_->FindLocal(name, varbinder::ResolveBindingOptions::BINDINGS); in BuildVarDeclaratorId() local
405 …Variable *variable = scope_->FindLocal(classDef->PrivateId(), varbinder::ResolveBindingOptions::BI… in BuildClassDefinition() local
DETSBinder.h31 Variable *variable; member
Dscope.cpp304 for (const auto *variable : bindings) { in CheckDirectEval() local
578 auto *variable = allocator->New<ModuleVariable>(newDecl, VariableFlags::NONE); in AddImport() local
613 …varbinder::Variable *variable = FindLocal(decl->LocalName(), varbinder::ResolveBindingOptions::BIN… in ExportAnalysis() local
/arkcompiler/ets_frontend/ets2panda/ir/ets/
DetsParameterExpression.cpp94 void ETSParameterExpression::SetVariable(varbinder::Variable *const variable) noexcept in SetVariable()
/arkcompiler/ets_frontend/es2panda/typescript/extractor/
DtypeExtractor.cpp294 const ir::Identifier **variable) in GetDeclNodeFromIdentifier()
327 const ir::Identifier **variable) in GetDeclNodeFromInitializer()
993 void TypeExtractor::GetVariablesFromTSQualifiedNodes(const binder::Variable *variable, in GetVariablesFromTSQualifiedNodes()
1041 void TypeExtractor::GetVariablesFromNamespace(const binder::NamespaceVariable *variable, in GetVariablesFromNamespace()
1050 auto fn = [&findRes](binder::Variable *variable) { in GetVariablesFromNamespace()
/arkcompiler/runtime_core/static_core/runtime/tests/tooling/
Dtest_extractor.cpp100 for (const auto &variable : variables) { in GetLocalVariableInfo() local
/arkcompiler/ets_frontend/es2panda/compiler/base/
Dlexenv.cpp35 static void CheckConstAssignment(PandaGen *pg, const ir::AstNode *node, binder::Variable *variable) in CheckConstAssignment()
/arkcompiler/ets_frontend/ets2panda/checker/types/
Dtype.h197 void SetVariable(varbinder::Variable *variable) in SetVariable()
Dsignature.cpp121 void Signature::ToString(std::stringstream &ss, const varbinder::Variable *variable, bool printAsMe… in ToString() argument
/arkcompiler/ets_frontend/es2panda/util/
DpatchFix.cpp473 for (auto &variable: lexicalVarNameAndTypes) { in CompareLexenv() local
613 for (auto &variable: pg->TopScope()->GetLexicalVarNameAndTypes()) { in DumpFunctionInfo() local
/arkcompiler/ets_frontend/es2panda/binder/
Dbinder.cpp438 auto *variable = scope_->FindLocal(name, ResolveBindingOptions::BINDINGS); in BuildVarDeclaratorId() local
966 auto fn = [&findRes](Variable *variable) { in FindIdentifierTSVariables()
Dscope.h55 bool AddTSVariable(const util::StringView &name, Variable *variable) in AddTSVariable()
1113 auto *variable = allocator->New<VariableType>(decl, flags); in AddDecl() local
1126 auto *variable = allocator->New<VariableType>(decl, flags); in CreateVar() local
/arkcompiler/runtime_core/static_core/libllvmbackend/transforms/passes/inline_ir/
Dcleanup_inline_module.cpp148 auto variable = inlineFailurePath_[inlineFailurePath_.size() - 1]; in PrintForUsesInternalVariable() local
/arkcompiler/ets_runtime/ecmascript/compiler/
Dcall_signature.h229 void SetVariadicArgs(bool variable) in SetVariadicArgs()

12