Home
last modified time | relevance | path

Searched refs:storeModuleVariable (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/ets_frontend/ts2panda/src/
Dhoisting.ts63 pandaGen.storeModuleVariable(NodeKind.FIRST_NODE_OF_FUNCTION, v);
84 pandaGen.storeModuleVariable(NodeKind.FIRST_NODE_OF_FUNCTION, v);
Dpandagen.ts78 storeModuleVariable,
1301 storeModuleVariable(node: ts.Node | NodeKind, v: ModuleVariable): void { method in PandaGen
1304 let stModuleVarInst: IRNode = storeModuleVariable(index);
Dcompiler.ts738 this.pandaGen.storeModuleVariable(stmt, defaultV);
1470 this.pandaGen.storeModuleVariable(node, variable.v);
/arkcompiler/ets_frontend/ts2panda/src/statement/
DclassStatement.ts135 pandaGen.storeModuleVariable(stmt, v);
138 pandaGen.storeModuleVariable(stmt, defaultV);
152 pandaGen.storeModuleVariable(stmt, v);
/arkcompiler/ets_frontend/ts2panda/src/base/
DbcGenUtil.ts445 export function storeModuleVariable(index: number): IRNode { function