Lines Matching refs:pp

7 const pp = Parser.prototype  constant
16 pp.parseTopLevel = function(node) {
32 pp.isLet = function() {
49 pp.isAsyncFunction = function() {
68 pp.parseStatement = function(declaration, topLevel, exports) {
132 pp.parseBreakContinueStatement = function(node, keyword) {
155 pp.parseDebuggerStatement = function(node) {
161 pp.parseDoStatement = function(node) {
183 pp.parseForStatement = function(node) {
212 pp.parseFunctionStatement = function(node, isAsync) {
217 pp.isFunction = function() {
221 pp.parseIfStatement = function(node) {
230 pp.parseReturnStatement = function(node) {
244 pp.parseSwitchStatement = function(node) {
281 pp.parseThrowStatement = function(node) {
294 pp.parseTryStatement = function(node) {
314 pp.parseVarStatement = function(node, kind) {
321 pp.parseWhileStatement = function(node) {
330 pp.parseWithStatement = function(node) {
338 pp.parseEmptyStatement = function(node) {
343 pp.parseLabeledStatement = function(node, maybeName, expr) {
365 pp.parseExpressionStatement = function(node, expr) {
375 pp.parseBlock = function() {
390 pp.parseFor = function(node, init) {
405 pp.parseForIn = function(node, init) {
418 pp.parseVar = function(node, isFor, kind) {
439 pp.parseVarId = function(decl) {
447 pp.parseFunction = function(node, isStatement, allowExpressionBody, isAsync) {
480 pp.parseFunctionParams = function(node) {
489 pp.parseClass = function(node, isStatement) {
555 pp.parseClassMethod = function(classBody, method, isGenerator, isAsync) {
560 pp.parseClassId = function(node, isStatement) {
564 pp.parseClassSuper = function(node) {
570 pp.parseExport = function(node, exports) {
625 pp.checkExport = function(exports, name, pos) {
632 pp.checkPatternExport = function(exports, pat) {
650 pp.checkVariableExport = function(exports, decls) {
656 pp.shouldParseExportStatement = function() {
667 pp.parseExportSpecifiers = function(exports) {
688 pp.parseImport = function(node) {
705 pp.parseImportSpecifiers = function() {