Lines Matching refs:isPattern
515 pp.parseObj = function(isPattern, refDestructuringErrors) { argument
529 if (isPattern || refDestructuringErrors) {
533 if (!isPattern)
537 if (!isPattern && this.options.ecmaVersion >= 8 && !isGenerator && !prop.computed &&
545 …this.parsePropertyValue(prop, isPattern, isGenerator, isAsync, startPos, startLoc, refDestructurin…
549 return this.finishNode(node, isPattern ? "ObjectPattern" : "ObjectExpression")
552 pp.parsePropertyValue = function(prop, isPattern, isGenerator, isAsync, startPos, startLoc, refDest… argument
557 …prop.value = isPattern ? this.parseMaybeDefault(this.start, this.startLoc) : this.parseMaybeAssign…
560 if (isPattern) this.unexpected()
567 if (isGenerator || isAsync || isPattern) this.unexpected()
589 if (isPattern) {