Lines Matching refs:local
613 …if (this.keywords.test(node.specifiers[i].local.name) || this.reservedWords.test(node.specifiers[i…
614 this.unexpected(node.specifiers[i].local.start)
678 node.local = this.parseIdent(true)
679 node.exported = this.eatContextual("as") ? this.parseIdent(true) : node.local
710 node.local = this.parseIdent()
711 this.checkLVal(node.local, true)
719 node.local = this.parseIdent()
720 this.checkLVal(node.local, true)
734 node.local = this.parseIdent()
736 node.local = node.imported
737 if (this.isKeyword(node.local.name)) this.unexpected(node.local.start)
738 …(this.reservedWordsStrict.test(node.local.name)) this.raiseRecoverable(node.local.start, "The keyw…
740 this.checkLVal(node.local, true)