|
ClassLiteralProperty::Kind | ClassPropertyKindFor (ParsePropertyKind kind) |
|
const AstRawString * | ClassFieldVariableName (AstValueFactory *ast_value_factory, int index) |
|
DeclarationScope * | NewScriptScope () const |
|
DeclarationScope * | NewVarblockScope () const |
|
ModuleScope * | NewModuleScope (DeclarationScope *parent) const |
|
DeclarationScope * | NewEvalScope (Scope *parent) const |
|
Scope * | NewScope (ScopeType scope_type) const |
|
Scope * | NewScopeWithParent (Scope *parent, ScopeType scope_type) const |
|
DeclarationScope * | NewFunctionScope (FunctionKind kind, Zone *parse_zone=nullptr) const |
|
V8_INLINE DeclarationScope * | GetDeclarationScope () const |
|
V8_INLINE DeclarationScope * | GetClosureScope () const |
|
Scanner * | scanner () const |
|
AstValueFactory * | ast_value_factory () const |
|
int | position () const |
|
int | peek_position () const |
|
int | end_position () const |
|
int | peek_end_position () const |
|
bool | stack_overflow () const |
|
void | set_stack_overflow () |
|
void | CheckStackOverflow () |
|
int | script_id () |
|
void | set_script_id (int id) |
|
V8_INLINE Token::Value | peek () |
|
int | PositionAfterSemicolon () |
|
V8_INLINE Token::Value | PeekAhead () |
|
V8_INLINE Token::Value | Next () |
|
V8_INLINE void | Consume (Token::Value token) |
|
V8_INLINE bool | Check (Token::Value token) |
|
void | Expect (Token::Value token) |
|
void | ExpectSemicolon () |
|
bool | peek_any_identifier () |
|
bool | PeekContextualKeyword (const AstRawString *name) |
|
bool | CheckContextualKeyword (const AstRawString *name) |
|
void | ExpectMetaProperty (const AstRawString *property_name, const char *full_name, int pos) |
|
void | ExpectContextualKeyword (const AstRawString *name) |
|
bool | CheckInOrOf (ForEachStatement::VisitMode *visit_mode) |
|
bool | PeekInOrOf () |
|
void | CheckStrictOctalLiteral (int beg_pos, int end_pos) |
|
bool | CheckTemplateEscapes (bool should_throw) |
|
void | CheckDestructuringElement (ExpressionT element, int beg_pos, int end_pos) |
|
void | CheckArrowFormalParameter (ExpressionT formal) |
|
void | CheckFunctionName (LanguageMode language_mode, IdentifierT function_name, FunctionNameValidity function_name_validity, const Scanner::Location &function_name_loc) |
|
Types::Factory * | factory () |
|
DeclarationScope * | GetReceiverScope () const |
|
LanguageMode | language_mode () |
|
void | RaiseLanguageMode (LanguageMode mode) |
|
bool | is_generator () const |
|
bool | is_async_function () const |
|
bool | is_async_generator () const |
|
bool | is_resumable () const |
|
const PendingCompilationErrorHandler * | pending_error_handler () const |
|
PendingCompilationErrorHandler * | pending_error_handler () |
|
V8_NOINLINE void | ReportMessage (MessageTemplate message) |
|
template<typename T > |
V8_NOINLINE void | ReportMessage (MessageTemplate message, T arg, ParseErrorType error_type=kSyntaxError) |
|
V8_NOINLINE void | ReportMessageAt (Scanner::Location location, MessageTemplate message, ParseErrorType error_type) |
|
V8_NOINLINE void | ReportUnexpectedToken (Token::Value token) |
|
V8_NOINLINE void | ReportUnexpectedTokenAt (Scanner::Location location, Token::Value token, MessageTemplate message=MessageTemplate::kUnexpectedToken) |
|
V8_NOINLINE void | ReportClassifierError (const typename ExpressionClassifier::Error &error) |
|
void | ValidateExpression () |
|
void | ValidateFormalParameterInitializer () |
|
void | ValidateBindingPattern () |
|
void | ValidatePattern () |
|
void | ValidatePattern (ExpressionT expression) |
|
void | ValidateFormalParameters (LanguageMode language_mode, const FormalParametersT ¶meters, bool allow_duplicates) |
|
void | ValidateArrowFormalParameters (ExpressionT expression) |
|
void | ValidateLetPattern () |
|
IdentifierT | ParseIdentifier (AllowRestrictedIdentifiers) |
|
V8_INLINE IdentifierT | ParseAndClassifyIdentifier () |
|
IdentifierT | ParseIdentifierOrStrictReservedWord (FunctionKind function_kind, bool *is_strict_reserved, bool *is_await) |
|
IdentifierT | ParseIdentifierOrStrictReservedWord (bool *is_strict_reserved, bool *is_await) |
|
V8_INLINE IdentifierT | ParseIdentifierName () |
|
ExpressionT | ParseIdentifierNameOrPrivateName () |
|
ExpressionT | ParseRegExpLiteral () |
|
ExpressionT | ParseBindingPattern () |
|
ExpressionT | ParsePrimaryExpression () |
|
V8_INLINE ExpressionT | ParseExpression () |
|
ExpressionT | ParseExpressionCoverGrammar () |
|
ExpressionT | ParseArrowFormalsWithRest (ExpressionListT *list) |
|
ExpressionT | ParseArrayLiteral () |
|
ExpressionT | ParsePropertyName (ParsePropertyInfo *prop_info) |
|
ExpressionT | ParseObjectLiteral () |
|
ClassLiteralPropertyT | ParseClassPropertyDefinition (ClassInfo *class_info, ParsePropertyInfo *prop_info, bool has_extends) |
|
void | CheckClassFieldName (IdentifierT name, bool is_static) |
|
void | CheckClassMethodName (IdentifierT name, ParsePropertyKind type, ParseFunctionFlags flags, bool is_static, bool *has_seen_constructor) |
|
ExpressionT | ParseMemberInitializer (ClassInfo *class_info, int beg_pos, bool is_static) |
|
ObjectLiteralPropertyT | ParseObjectPropertyDefinition (ParsePropertyInfo *prop_info, bool *has_seen_proto) |
|
void | ParseArguments (ExpressionListT *args, bool *has_spread, bool maybe_arrow) |
|
void | ParseArguments (ExpressionListT *args, bool *has_spread) |
|
ExpressionT | ParseAssignmentExpression () |
|
ExpressionT | ParseYieldExpression () |
|
V8_INLINE ExpressionT | ParseConditionalExpression () |
|
ExpressionT | ParseConditionalContinuation (ExpressionT expression, int pos) |
|
ExpressionT | ParseBinaryContinuation (ExpressionT x, int prec, int prec1) |
|
V8_INLINE ExpressionT | ParseBinaryExpression (int prec) |
|
ExpressionT | ParseUnaryOrPrefixExpression () |
|
ExpressionT | ParseAwaitExpression () |
|
V8_INLINE ExpressionT | ParseUnaryExpression () |
|
V8_INLINE ExpressionT | ParsePostfixExpression () |
|
V8_INLINE ExpressionT | ParseLeftHandSideExpression () |
|
ExpressionT | ParseLeftHandSideContinuation (ExpressionT expression) |
|
ExpressionT | ParseMemberWithPresentNewPrefixesExpression () |
|
V8_INLINE ExpressionT | ParseMemberWithNewPrefixesExpression () |
|
ExpressionT | ParseFunctionExpression () |
|
V8_INLINE ExpressionT | ParseMemberExpression () |
|
V8_INLINE ExpressionT | ParseMemberExpressionContinuation (ExpressionT expression) |
|
ExpressionT | DoParseMemberExpressionContinuation (ExpressionT expression) |
|
ExpressionT | ParseArrowFunctionLiteral (const FormalParametersT ¶meters) |
|
void | ParseAsyncFunctionBody (Scope *scope, StatementListT *body) |
|
ExpressionT | ParseAsyncFunctionLiteral () |
|
ExpressionT | ParseClassLiteral (IdentifierT name, Scanner::Location class_name_location, bool name_is_strict_reserved, int class_token_pos) |
|
ExpressionT | ParseTemplateLiteral (ExpressionT tag, int start, bool tagged) |
|
ExpressionT | ParseSuperExpression (bool is_new) |
|
ExpressionT | ParseImportExpressions () |
|
ExpressionT | ParseNewTargetExpression () |
|
V8_INLINE void | ParseFormalParameter (FormalParametersT *parameters) |
|
void | ParseFormalParameterList (FormalParametersT *parameters) |
|
void | CheckArityRestrictions (int param_count, FunctionKind function_type, bool has_rest, int formals_start_pos, int formals_end_pos) |
|
BlockT | ParseVariableDeclarations (VariableDeclarationContext var_context, DeclarationParsingResult *parsing_result, ZonePtrList< const AstRawString > *names) |
|
StatementT | ParseAsyncFunctionDeclaration (ZonePtrList< const AstRawString > *names, bool default_export) |
|
StatementT | ParseFunctionDeclaration () |
|
StatementT | ParseHoistableDeclaration (ZonePtrList< const AstRawString > *names, bool default_export) |
|
StatementT | ParseHoistableDeclaration (int pos, ParseFunctionFlags flags, ZonePtrList< const AstRawString > *names, bool default_export) |
|
StatementT | ParseClassDeclaration (ZonePtrList< const AstRawString > *names, bool default_export) |
|
StatementT | ParseNativeDeclaration () |
|
void | ParseFunctionBody (StatementListT *result, IdentifierT function_name, int pos, const FormalParametersT ¶meters, FunctionKind kind, FunctionLiteral::FunctionType function_type, FunctionBodyType body_type) |
|
V8_INLINE void | ParseStatementList (StatementListT *body, Token::Value end_token) |
|
V8_INLINE LazyParsingResult | ParseStatementList (StatementListT *body, Token::Value end_token, bool may_abort) |
|
StatementT | ParseStatementListItem () |
|
StatementT | ParseStatement (ZonePtrList< const AstRawString > *labels, ZonePtrList< const AstRawString > *own_labels) |
|
StatementT | ParseStatement (ZonePtrList< const AstRawString > *labels, ZonePtrList< const AstRawString > *own_labels, AllowLabelledFunctionStatement allow_function) |
|
BlockT | ParseBlock (ZonePtrList< const AstRawString > *labels) |
|
StatementT | ParseScopedStatement (ZonePtrList< const AstRawString > *labels) |
|
StatementT | ParseVariableStatement (VariableDeclarationContext var_context, ZonePtrList< const AstRawString > *names) |
|
ExpressionT | ParseV8Intrinsic () |
|
StatementT | ParseDebuggerStatement () |
|
StatementT | ParseExpressionOrLabelledStatement (ZonePtrList< const AstRawString > *labels, ZonePtrList< const AstRawString > *own_labels, AllowLabelledFunctionStatement allow_function) |
|
StatementT | ParseIfStatement (ZonePtrList< const AstRawString > *labels) |
|
StatementT | ParseContinueStatement () |
|
StatementT | ParseBreakStatement (ZonePtrList< const AstRawString > *labels) |
|
StatementT | ParseReturnStatement () |
|
StatementT | ParseWithStatement (ZonePtrList< const AstRawString > *labels) |
|
StatementT | ParseDoWhileStatement (ZonePtrList< const AstRawString > *labels, ZonePtrList< const AstRawString > *own_labels) |
|
StatementT | ParseWhileStatement (ZonePtrList< const AstRawString > *labels, ZonePtrList< const AstRawString > *own_labels) |
|
StatementT | ParseThrowStatement () |
|
StatementT | ParseSwitchStatement (ZonePtrList< const AstRawString > *labels) |
|
V8_INLINE StatementT | ParseTryStatement () |
|
StatementT | ParseForStatement (ZonePtrList< const AstRawString > *labels, ZonePtrList< const AstRawString > *own_labels) |
|
StatementT | ParseForEachStatementWithDeclarations (int stmt_pos, ForInfo *for_info, ZonePtrList< const AstRawString > *labels, ZonePtrList< const AstRawString > *own_labels, Scope *inner_block_scope) |
|
StatementT | ParseForEachStatementWithoutDeclarations (int stmt_pos, ExpressionT expression, int lhs_beg_pos, int lhs_end_pos, ForInfo *for_info, ZonePtrList< const AstRawString > *labels, ZonePtrList< const AstRawString > *own_labels) |
|
ForStatementT | ParseStandardForLoop (int stmt_pos, ZonePtrList< const AstRawString > *labels, ZonePtrList< const AstRawString > *own_labels, ExpressionT *cond, StatementT *next, StatementT *body) |
|
StatementT | ParseStandardForLoopWithLexicalDeclarations (int stmt_pos, StatementT init, ForInfo *for_info, ZonePtrList< const AstRawString > *labels, ZonePtrList< const AstRawString > *own_labels) |
|
StatementT | ParseForAwaitStatement (ZonePtrList< const AstRawString > *labels, ZonePtrList< const AstRawString > *own_labels) |
|
bool | IsNextLetKeyword () |
|
V8_INLINE ExpressionT | RewriteInvalidReferenceExpression (ExpressionT expression, int beg_pos, int end_pos, MessageTemplate message) |
|
ExpressionT | RewriteInvalidReferenceExpression (ExpressionT expression, int beg_pos, int end_pos, MessageTemplate message, ParseErrorType type) |
|
bool | IsValidReferenceExpression (ExpressionT expression) |
|
bool | IsAssignableIdentifier (ExpressionT expression) |
|
FunctionKind | FunctionKindForImpl (bool is_method, ParseFunctionFlags flags) |
|
FunctionKind | FunctionKindFor (ParseFunctionFlags flags) |
|
FunctionKind | MethodKindFor (ParseFunctionFlags flags) |
|
Call::PossiblyEval | CheckPossibleEvalCall (ExpressionT expression, Scope *scope) |
|
StatementT | BuildReturnStatement (ExpressionT expr, int pos, int end_pos=kNoSourcePosition) |
|
ModuleDescriptor * | module () const |
|
Scope * | scope () const |
|
V8_INLINE ExpressionClassifier * | classifier () const |
|
V8_INLINE void | Accumulate (unsigned productions) |
|
V8_INLINE void | AccumulateFormalParameterContainmentErrors () |
|
std::vector< void * > * | pointer_buffer () |
|