Home
last modified time | relevance | path

Searched refs:getChildVariableScope (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/ets_frontend/ts2panda/tests/
Dlexenv.test.ts75 …expect(globalScope.getChildVariableScope().length, "should not have any children!").to.be.equal(0);
101 let children = globalScope.getChildVariableScope();
110 let grandchildren0 = son0.getChildVariableScope();
119 let grandgrandchiildren0 = grandson0.getChildVariableScope();
127 expect(grandson1.getChildVariableScope().length).to.be.equal(0);
131 let grandchildren1 = son1.getChildVariableScope();
174 let children = globalScope.getChildVariableScope();
176 expect(postOrderVariableScopes[0]).to.be.deep.equal(children[0].getChildVariableScope()[0]);
177 expect(postOrderVariableScopes[1]).to.be.deep.equal(children[0].getChildVariableScope()[1]);
228 let children = globalScope.getChildVariableScope();
[all …]
/arkcompiler/ets_frontend/ts2panda/src/
Dscope.ts331 getChildVariableScope(): VariableScope[] { method in VariableScope
388 let childVariableScopes = this.getChildVariableScope();
DlexicalBinder.ts99 ((<VariableScope>newScope).getChildVariableScope().length > 0)) {
DcompilerDriver.ts155 for (let childVariableScope of temp.getChildVariableScope()) {