Home | History | Annotate | Download | only in src

Lines Matching refs:preparser

41 namespace preparser {
49 // The PreParser checks that the syntax follows the grammar for JavaScript,
107 class PreParser {
115 PreParser(i::Scanner* scanner,
134 ~PreParser() {}
147 return PreParser(scanner, log, stack_limit, allow_lazy,
204 // are either being counted in the preparser data, or is important
308 PreParser::Identifier AsIdentifier() {
309 return PreParser::Identifier(
310 static_cast<PreParser::Identifier::Type>(code_ >> kIdentifierShift));
573 // Logs the currently parsed literal as a symbol in the preparser data.
659 } } // v8::preparser