Lines Matching full:object
32 private object: VReg; property in IteratorRecord
35 constructor(object: VReg, nextMethod: VReg, type: IteratorType = IteratorType.Normal) {
37 this.object = object;
46 return this.object;
64 let object = pandaGen.getTemp();
74 let iterator: IteratorRecord = getIteratorRecord(pandaGen, stmt, method, object, type);
96 pandaGen.freeTemps(doneReg, method, object, loopEnv);
100 export function getIteratorRecord(pandagen: PandaGen, node: ts.Node, nextMethod: VReg, object: VReg…
103 pandagen.storeAccumulator(node, object);
104 pandagen.loadObjProperty(node, object, "next");
107 return new IteratorRecord(object, nextMethod, type);