Lines Matching refs:pg
34 protected pg: PandaGen | undefined = undefined; property in FunctionBuilder
41 constructor(pg: PandaGen) {
42 this.pg = pg;
54 let pg = this.pg;
57 pg.asyncFunctionAwaitUncaught(node, this.funcObj);
58 pg.suspendGenerator(node, this.funcObj);
60 pg.resumeGenerator(node, this.funcObj);
61 pg.storeAccumulator(node, this.resumeVal);
65 let pg = this.pg;
66 pg.resumeGenerator(node, this.funcObj);
67 pg.storeAccumulator(node, this.resumeVal);
68 pg.getResumeMode(node, this.funcObj);
69 pg.storeAccumulator(node, this.resumeType);
73 this.pg.return(node);
77 …CmdOptions.isWatchEvaluateExpressionMode() ? this.pg.return(NodeKind.INVALID) : this.pg.returnUnde…