Home
last modified time | relevance | path

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

/arkcompiler/ets_frontend/ts2panda/src/
Dlexenv.ts22 storeLexicalVar,
181 insns.push(storeLexicalVar(this.level, slot));
Dpandagen.ts77 storeLexicalVar,
1270 storeLexicalVar(node: ts.Node, level: number, slot: number, value: VReg): void { method in PandaGen
1274 storeLexicalVar(level, slot)
Dcompiler.ts229 this.pandaGen.storeLexicalVar(this.rootNode, 0, v.lexIndex(), vreg);
1391 pandaGen.storeLexicalVar(node, thisInfo.level, slot, value);
/arkcompiler/ets_frontend/ts2panda/src/statement/
DloopStatement.ts178 pandaGen.storeLexicalVar(stmt, varInfo.level, slot, reg);
/arkcompiler/ets_frontend/ts2panda/src/base/
DbcGenUtil.ts200 export function storeLexicalVar(level: number, slot: number): IRNode { function