Lines Matching refs:decl
2337 var decl = this.startNode();
2338 this.parseVarHead(decl);
2340 decl.init = this.parseMaybeAssign(isFor);
2343 …} else if (decl.id.type !== "Identifier" && !(isFor && (this.match(types._in) || this.isContextual…
2346 decl.init = null;
2348 node.declarations.push(this.finishNode(decl, "VariableDeclarator"));
2354 pp$1.parseVarHead = function (decl) { argument
2355 decl.id = this.parseBindingAtom();
2356 this.checkLVal(decl.id, true, undefined, "variable declaration");
6382 return function (decl) { argument
6383 inner.call(this, decl);
6385 decl.id.typeAnnotation = this.flowParseTypeAnnotation();
6386 this.finishNode(decl.id, decl.id.type);