| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250 |
- // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- // Exceptions. See /LICENSE for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- //
- // This is an X-macro header. It does not use `#include` guards, and instead is
- // designed to be `#include`ed after the x-macro is defined in order for its
- // inclusion to expand to the desired output. Macro definitions are cleaned up
- // at the end of this file.
- //
- // Supported x-macros are:
- // - CARBON_PARSE_STATE(Name)
- // Defines a parser state.
- //
- // Parser states may be clustered when there are multiple related variants,
- // named `StateAsVariant`. When there are variants, they share a common helper
- // function for most logic.
- //
- // The comments before each state describe the portion of the grammar that the
- // state is implementing, by giving an example of each kind of token sequence
- // that this state handles. In this example, `...` indicates a sequence of
- // tokens handled by some other state, and `???` indicates a sequence of invalid
- // tokens. A trailing `??? ;` indicates an attempt to skip to the end of the
- // declaration, which may or may not actually find a `;` token.
- //
- // The position in the token stream before the state is indicated by the caret
- // `^` on the line below the example, and all tokens consumed by the state are
- // underlined by the caret and following `~`s. If no tokens are consumed, the
- // caret will point between tokens. Therefore, the position in the token stream
- // after the state is the first token in the example after the underlined
- // region.
- //
- // Following each set of examples, the output states for that situation are
- // listed. States are numbered in the order they'll be executed; in other
- // words, `1` is the top of the state stack. The comment `(state done)`
- // indicates that no new states are added to the stack.
- #ifndef CARBON_PARSE_STATE
- #error "Must define the x-macro to use this file."
- #endif
- // Use CARBON_PARSE_STATE_VARIANTSN(State, Variant1, Variant2, ...) to generate
- // StateAsVariant1, StateAsVariant2, ... states.
- #define CARBON_PARSE_STATE_VARIANT(State, Variant) \
- CARBON_PARSE_STATE(State##As##Variant)
- #define CARBON_PARSE_STATE_VARIANTS2(State, Variant1, Variant2) \
- CARBON_PARSE_STATE_VARIANT(State, Variant1) \
- CARBON_PARSE_STATE_VARIANT(State, Variant2)
- #define CARBON_PARSE_STATE_VARIANTS3(State, Variant1, Variant2, Variant3) \
- CARBON_PARSE_STATE_VARIANT(State, Variant1) \
- CARBON_PARSE_STATE_VARIANTS2(State, Variant2, Variant3)
- #define CARBON_PARSE_STATE_VARIANTS4(State, Variant1, Variant2, Variant3, \
- Variant4) \
- CARBON_PARSE_STATE_VARIANT(State, Variant1) \
- CARBON_PARSE_STATE_VARIANTS3(State, Variant2, Variant3, Variant4)
- // Used as a default for StateStackEntry initialization in some cases. Should
- // not be put on the state stack.
- CARBON_PARSE_STATE(Invalid)
- // Handles an index expression:
- //
- // a[0]
- // ^
- // 1. Expression
- // 2. IndexExpressionFinish
- CARBON_PARSE_STATE(IndexExpr)
- // Handles finishing the index expression.
- //
- // a[0]
- // ^
- // (state done)
- CARBON_PARSE_STATE(IndexExprFinish)
- // Handles an array expression.
- //
- // [T; N]
- // ^
- // 1. Expr
- // 2. ArrayExprSemi
- CARBON_PARSE_STATE(ArrayExpr)
- // Handles ';' in an array expression.
- //
- // [T;]
- // ^
- // 1. ArrayExprFinish
- //
- // [T; N]
- // ^
- // 1. Expr
- // 2. ArrayExprFinish
- CARBON_PARSE_STATE(ArrayExprSemi)
- // Handles finishing the array expression.
- //
- // [T;]
- // ^
- // [T; N]
- // ^
- // (state done)
- CARBON_PARSE_STATE(ArrayExprFinish)
- // Handles the `{` of a brace expression.
- //
- // {}
- // ^
- // 1. BraceExprFinishAsUnknown
- //
- // { ... }
- // ^
- // 1. BraceExprParamAsUnknown
- // 2. BraceExprFinishAsUnknown
- CARBON_PARSE_STATE(BraceExpr)
- // Handles a brace expression parameter. Note this will always start as unknown,
- // but should be known after the first valid parameter. All later inconsistent
- // parameters are invalid.
- //
- // { .foo ... }
- // ^
- // 1. PeriodAsStruct
- // 2. BraceExprParamAfterDesignatorAs(Type|Value|Unknown)
- //
- // { ???
- // ^
- // 1. BraceExprParamFinishAs(Type|Value|Unknown)
- CARBON_PARSE_STATE_VARIANTS3(BraceExprParam, Type, Value, Unknown)
- // Handles a brace expression parameter after the initial designator. This
- // should be at a `:` or `=`, depending on whether it's a type or value literal.
- //
- // { .foo = bar ... }
- // ^
- // 1. Expr
- // 2. BraceExprParamFinishAsValue
- //
- // { .foo: bar ... }
- // ^
- // 1. Expr
- // 2. BraceExprParamFinishAsType
- //
- // { .foo ???
- // ^
- // 1. BraceExprParamFinishAs(Type|Value|Unknown)
- CARBON_PARSE_STATE_VARIANTS3(BraceExprParamAfterDesignator, Type, Value,
- Unknown)
- // Handles the end of a brace expression parameter.
- //
- // { ... }
- // ^
- // (state done)
- //
- // { .foo = bar, ... }
- // ^
- // 1. BraceExprParamAsValue
- //
- // { .foo: bar, ... }
- // ^
- // 1. BraceExprParamAsType
- //
- // { ??? , ... }
- // ^
- // 1. BraceExprParamAsUnknown
- CARBON_PARSE_STATE_VARIANTS3(BraceExprParamFinish, Type, Value, Unknown)
- // Handles the `}` of a brace expression.
- //
- // { ... }
- // ^
- // (state done)
- CARBON_PARSE_STATE_VARIANTS3(BraceExprFinish, Type, Value, Unknown)
- // Handles a call expression `(...)`.
- //
- // F()
- // ^
- // 1. CallExprFinish
- //
- // F( ...
- // ^
- // 1. Expr
- // 2. CallExprParamFinish
- // 3. CallExprFinish
- CARBON_PARSE_STATE(CallExpr)
- // Handles the `,` or `)` after a call parameter.
- //
- // F(a, ...)
- // ^
- // 1. Expr
- // 2. CallExprParamFinish
- //
- // F(a )
- // ^
- // (state done)
- CARBON_PARSE_STATE(CallExprParamFinish)
- // Handles finishing the call expression.
- //
- // F(a, b)
- // ^
- // (state done)
- CARBON_PARSE_STATE(CallExprFinish)
- // Handles processing at the `{` on a typical code block.
- //
- // if (cond) {
- // ^
- // 1. StatementScopeLoop
- // 2. CodeBlockFinish
- //
- // if (cond) ???
- // ^
- // 1. Statement
- // 2. CodeBlockFinish
- CARBON_PARSE_STATE(CodeBlock)
- // Handles processing at the `}` on a typical code block, after a statement
- // scope is done.
- //
- // if (cond) { ... }
- // ^
- // (state done)
- CARBON_PARSE_STATE(CodeBlockFinish)
- // Handles a declaration name and parameters, such as `Foo[...](...)`.
- //
- // Allowed parameters:
- // - None: `Foo` only.
- // - Optional: `Foo`, `Foo(...)`, or `Foo[...](...)`.
- // - Required: `Foo(...)` or `Foo[...](...)`.
- //
- // name . ...
- // ^~~~
- // 1. PeriodAsDecl
- // 2. DeclNameAndParamsAfterNameAs(None|Optional|Required)
- //
- // name ...
- // ^~~~
- // 1. DeclNameAndParamsAfterNameAs(None|Optional|Required)
- //
- // ???
- // ^
- // (state done)
- CARBON_PARSE_STATE_VARIANTS3(DeclNameAndParams, None, Optional, Required)
- // Handles a declaration name between the main name and implicit parameters.
- //
- // name . ...
- // ^
- // 1. PeriodAsDecl
- // 2. DeclNameAndParamsAfterNameAs(None|Optional|Required)
- //
- // name [ ... ] (variant is not None)
- // ^
- // 1. PatternListAsImplicit
- // 2. DeclNameAndParamsAfterImplicit
- //
- // name ( ... ) (variant is not None)
- // ^
- // 1. PatternListAsTuple
- //
- // name ... (variant is not Required)
- // ^
- // (state done)
- //
- // name ??? (variant is Required)
- // ^
- // (state done)
- CARBON_PARSE_STATE_VARIANTS3(DeclNameAndParamsAfterName, None, Optional,
- Required)
- // Handles regular parameters such as `(...)` for the general declaration case.
- // Only used after implicit parameters.
- //
- // name [ ... ] ( ... )
- // ^
- // 1. PatternListAsTuple
- //
- // name [ ... ] ???
- // ^
- // (state done)
- CARBON_PARSE_STATE(DeclNameAndParamsAfterImplicit)
- // Handles processing of a declaration scope. Things like fn, class, interface,
- // and so on.
- //
- // abstract
- // ^~~~~~~~
- // base class
- // ^~~~
- // default
- // ^~~~~~~
- // extend base
- // ^~~~~~
- // final
- // ^~~~~
- // impl fn
- // ^~~~
- // private
- // ^~~~~~~
- // protected
- // ^~~~~~~~~
- // virtual
- // ^~~~~~~
- // 1. DeclScopeLoop
- //
- // class ...
- // ^~~~~
- // 1. TypeAfterIntroducerAsClass
- // 2. DeclScopeLoop
- //
- // base : ...
- // ^~~~~~
- // 1. Expr
- // 2. BaseDecl
- // 3. DeclScopeLoop
- //
- // constraint ...
- // ^~~~~~~~~~
- // 1. TypeAfterIntroducerAsNamedConstraint
- // 2. DeclScopeLoop
- //
- // fn ...
- // ^~
- // 1. FunctionIntroducer
- // 2. DeclScopeLoop
- //
- // impl ...
- // ^~~~
- // 1. ImplAfterIntroducer
- // 2. DeclScopeLoop
- //
- // interface ...
- // ^~~~~~~~~
- // 1. TypeAfterIntroducerAsInterface
- // 2. DeclScopeLoop
- //
- // namespace ...
- // ^~~~~~~~~
- // 1. Namespace
- // 2. DeclScopeLoop
- //
- // ;
- // ^
- // 1. DeclScopeLoop
- //
- // var ...
- // ^~~
- // 1. VarAsDecl
- // 2. DeclScopeLoop
- //
- // let ...
- // ^~~
- // 1. Let
- // 2. DeclScopeLoop
- //
- // ??? ;
- // ^~~~~
- // (state done)
- CARBON_PARSE_STATE(DeclScopeLoop)
- // Handles periods. Only does one `.<expression>` segment; the source is
- // responsible for handling chaining.
- //
- // The forms of this are:
- // - Qualified names in declarations.
- // - Member access expressions.
- // - Designated names in structs.
- //
- // Declarations and expressions have qualifiers such as `x.y`, while structs
- // have designators such as `.z`.
- //
- // . name
- // ^~~~~~
- // (state done)
- //
- // . ??? (??? consumed if it is a keyword)
- // ^
- // (state done)
- CARBON_PARSE_STATE_VARIANTS3(Period, Decl, Expr, Struct)
- // Handles `->name` expressions. Identical to PeriodAsExpr except for the
- // leading token.
- //
- // -> name
- // ^~~~~~~
- // (state done)
- //
- // -> ??? (??? consumed if it is a keyword)
- // ^~
- // (state done)
- CARBON_PARSE_STATE(ArrowExpr)
- // Handles processing of an expression.
- //
- // if ...
- // ^~
- // 1. Expr
- // 2. IfExprCondition
- // 3. IfExprFinish
- //
- // <prefix operator> ...
- // ^~~~~~~~~~~~~~~~~
- // 1. Expr
- // 2. ExprLoopForPrefix
- //
- // ...
- // ^
- // 1. ExprInPostfix
- // 2. ExprLoop
- CARBON_PARSE_STATE(Expr)
- // Handles the initial part of postfix expressions, such as an identifier or
- // literal value, then proceeds to the loop.
- //
- // identifier
- // ^~~~~~~~~~
- // literal
- // ^~~~~~~
- // self
- // ^~~~
- // Self
- // ^~~~
- // 1. ExprInPostfixLoop
- //
- // {
- // ^
- // 1. BraceExpr
- // 2. ExprInPostfixLoop
- //
- // (
- // ^
- // 1. ParenExpr
- // 2. ExprInPostfixLoop
- //
- // [
- // ^
- // 1. ArrayExpr
- // 2. ExprInPostfixLoop
- //
- // ???
- // ^
- // (state done)
- CARBON_PARSE_STATE(ExprInPostfix)
- // Handles looping through elements following the initial postfix expression,
- // such as designators or parenthesized parameters.
- //
- // expr . ...
- // ^
- // 1. PeriodAsExpr
- // 2. ExprInPostfixLoop
- //
- // expr -> ...
- // ^
- // 1. ArrowExpr
- // 2. ExprInPostfixLoop
- //
- // expr ( ... )
- // ^
- // 1. CallExpr
- // 2. ExprInPostfixLoop
- //
- // expr [ ... ]
- // ^
- // 1. IndexExprStart
- // 2. ExprInPostfixLoop
- //
- // ...
- // ^
- // (state done)
- CARBON_PARSE_STATE(ExprInPostfixLoop)
- // Handles processing of an expression.
- //
- // expr <infix operator> ...
- // ^~~~~~~~~~~~~~~~
- // 1. Expr
- // 2. ExprLoopForBinary
- //
- // expr <postfix operator>
- // ^~~~~~~~~~~~~~~~~~
- // 1. ExprLoop
- //
- // expr <short circuit operator> ...
- // ^~~~~~~~~~~~~~~~~~~~~~~~
- // 1. Expr
- // 2. ExprLoopForShortCircuitOperator
- //
- // expr ...
- // ^
- // (state done)
- CARBON_PARSE_STATE(ExprLoop)
- // Completes an ExprLoop pass by adding an infix operator, then goes back
- // to ExprLoop.
- //
- // expr <infix operator> expr ...
- // ^
- // 1. ExprLoop
- CARBON_PARSE_STATE(ExprLoopForInfixOperator)
- // Completes an ExprLoop pass by adding a prefix operator, then goes back
- // to ExprLoop.
- //
- // <prefix operator> expr ...
- // ^
- // 1. ExprLoop
- CARBON_PARSE_STATE(ExprLoopForPrefixOperator)
- // Completes an ExprLoop pass by adding a short circuit operator, then goes back
- // to ExprLoop.
- //
- // expr <short circuit operator> expr ...
- // ^
- // 1. ExprLoop
- CARBON_PARSE_STATE_VARIANTS2(ExprLoopForShortCircuitOperator, And, Or)
- // Completes the condition of an `if` expression and handles the `then` token.
- //
- // if expr then ...
- // ^~~~
- // 1. Expr
- // 2. IfExprFinishThen
- //
- // if expr ???
- // ^
- // (state done)
- CARBON_PARSE_STATE(IfExprFinishCondition)
- // Completes the first alternative in an `if` expression and handles the `else`
- // token.
- //
- // if expr then expr else ...
- // ^~~~
- // 1. Expr
- // 2. IfExprFinishElse
- //
- // if expr then expr ???
- // ^
- // (state done)
- CARBON_PARSE_STATE(IfExprFinishThen)
- // Completes the second alternative in an `if` expression.
- //
- // if expr then expr else expr
- // ^
- // (state done)
- CARBON_PARSE_STATE(IfExprFinishElse)
- // Completes an IfExpr.
- //
- // if expr then expr else expr
- // ^
- // if ???
- // ^
- // (state done)
- CARBON_PARSE_STATE(IfExprFinish)
- // Handles the `;` for an expression statement, which is different from most
- // keyword statements.
- //
- // expr ;
- // ^
- // expr ??? ;
- // ^~~~~
- // (state done)
- CARBON_PARSE_STATE(ExprStatementFinish)
- // Handles a function's introducer.
- //
- // fn ...
- // ^
- // 1. DeclNameAndParamsAsRequired
- // 2. FunctionAfterParams
- CARBON_PARSE_STATE(FunctionIntroducer)
- // Handles processing of a function's syntax after `)`, primarily the
- // possibility a `->` return type is there. Always enqueues signature finish
- // handling.
- //
- // fn F(...) -> ...
- // ^~
- // 1. Expr
- // 2. FunctionReturnTypeFinish
- // 3. FunctionSignatureFinish
- //
- // fn F(...) ...
- // ^
- // 1. FunctionSignatureFinish
- CARBON_PARSE_STATE(FunctionAfterParams)
- // Finishes a function return type.
- //
- // fn F(...) -> expr ...
- // ^
- // (state done)
- CARBON_PARSE_STATE(FunctionReturnTypeFinish)
- // Finishes a function signature. If it's a declaration, the function is done;
- // otherwise, this also starts definition processing.
- //
- // fn ... ;
- // ^
- // (state done)
- //
- // fn ... {
- // ^
- // 1. StatementScopeLoop
- // 2. FunctionDefinitionFinish
- //
- // fn ... ??? ;
- // ^~~~~
- // (state done)
- CARBON_PARSE_STATE(FunctionSignatureFinish)
- // Finishes a function definition.
- //
- // fn ... }
- // ^
- // fn ... ;
- // ^
- // (state done)
- CARBON_PARSE_STATE(FunctionDefinitionFinish)
- // Handles `import`.
- //
- // import pkgname [library "libname"] ;
- // ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- // import ??? ;
- // ^~~~~~~~~~~~
- // (state done)
- CARBON_PARSE_STATE(Import)
- // Handles `library` in directive form.
- //
- // Always:
- // (state done)
- CARBON_PARSE_STATE(Library)
- // Handles `namespace`.
- //
- // namespace ...
- // ^
- // 1. DeclNameAndParamsAsNone
- // 2. NamespaceFinish
- CARBON_PARSE_STATE(Namespace)
- // Handles `namespace` after the name.
- //
- // namespace ... ;
- // ^
- // namespace ... ??? ;
- // ^~~~~
- // (state done)
- CARBON_PARSE_STATE(NamespaceFinish)
- // Handles `package`.
- //
- // package pkgname [library "libname"] [api|impl] ;
- // ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- // package ??? ;
- // ^~~~~~~~~~~~~
- // (state done)
- CARBON_PARSE_STATE(Package)
- // Starts parsing a pattern in a comma-separated list. The variants mark
- // whether it is part of an implicit parameter list or a tuple pattern.
- //
- // ...
- // ^
- // 1. BindingPattern
- // 2. PatternListElementFinishAs(Implicit|Tuple)
- CARBON_PARSE_STATE_VARIANTS2(PatternListElement, Implicit, Tuple)
- // Finishes parsing a pattern in a comma-separated list, including the
- // optional trailing `,`. If there are more patterns, enqueues another
- // pattern parsing state.
- //
- // ... , ) (variant is Tuple)
- // ^
- // (state done)
- //
- // ... , ] (variant is Implicit)
- // ^
- // (state done)
- //
- // ... , ...
- // ^
- // 1. PatternListElementAs(Implicit|Tuple)
- //
- // ...
- // ^
- // (state done)
- CARBON_PARSE_STATE_VARIANTS2(PatternListElementFinish, Implicit, Tuple)
- // Handles processing of a tuple pattern (parentheses) or implicit parameter
- // list (square brackets).
- //
- // ( ) (variant is Tuple)
- // ^
- // [ ] (variant is Implicit)
- // ^
- // 1. PatternListFinishAs(Tuple|Implicit)
- //
- // ( ... ) (variant is Tuple)
- // ^
- // [ ... ] (variant is Implicit)
- // ^
- // 1. PatternListElementAs(Tuple|Implicit)
- // 2. PatternListFinishAs(Tuple|Implicit)
- CARBON_PARSE_STATE_VARIANTS2(PatternList, Implicit, Tuple)
- // Handles processing of a parameter list `]` or `)`.
- //
- // ( ... ) (variant is Tuple)
- // ^
- // [ ... ] (variant is Implicit)
- // ^
- // (state done)
- CARBON_PARSE_STATE_VARIANTS2(PatternListFinish, Implicit, Tuple)
- // Handles the processing of a `(condition)` up through the expression.
- //
- // if/while { (invalid)
- // ^
- // 1. ParenConditionAs(If|While)Finish
- //
- // if/while ( ... )
- // ^
- // if/while ???
- // ^
- // 1. Expr
- // 2. ParenConditionAs(If|While)Finish
- CARBON_PARSE_STATE_VARIANTS2(ParenCondition, If, While)
- // Finishes the processing of a `(condition)` after the expression.
- //
- // if/while ( expr )
- // ^
- // if/while {
- // ^
- // if/while ??? {
- // ^
- // (state done)
- CARBON_PARSE_STATE_VARIANTS2(ParenConditionFinish, If, While)
- // Handles the `(` of a parenthesized single expression
- //
- // ( )
- // ^
- // 1. TupleLiteralFinish
- //
- // ( ... )
- // ^
- // 1. Expr
- // 2. ExprAfterOpenParenFinish
- // 3. ParenExprFinish (SPECIAL: may be replaced)
- CARBON_PARSE_STATE(ParenExpr)
- // Handles the `)` of a tuple literal.
- //
- // ( ... )
- // ^
- // (state done)
- CARBON_PARSE_STATE(TupleLiteralFinish)
- // Handles the end of an expression following an open parenthesis.
- //
- // ( ... , )
- // ^
- // (state done)
- // SPECIAL: parent becomes TupleLiteralFinish
- //
- // ( ... , ... )
- // ^
- // 1. Expression
- // 2. TupleLiteralElementFinish
- // SPECIAL: parent becomes TupleLiteralFinish
- //
- // ( ... )
- // ^
- // (state done)
- CARBON_PARSE_STATE(ExprAfterOpenParenFinish)
- // Handles the end of an expression that is known to be an element of a tuple
- // literal expression.
- //
- // ( ... , )
- // ^
- // (state done)
- //
- // ( ... , ... )
- // ^
- // 1. Expression
- // 2. TupleLiteralElementFinish
- //
- // ( ... )
- // ^
- // (state done)
- CARBON_PARSE_STATE(TupleLiteralElementFinish)
- // Handles the `)` of a parenthesized single expression.
- //
- // ( ... )
- // ^
- // (state done)
- CARBON_PARSE_STATE(ParenExprFinish)
- // Handles processing of a pattern.
- //
- // ( ... )
- // ^
- // 1. ParamListAsRegular
- //
- // ...
- // ^
- // 1. BindingPattern
- CARBON_PARSE_STATE(Pattern)
- // Handles the initial part of a binding pattern, enqueuing type expression
- // processing.
- //
- // template (variant is not Variable)
- // ^~~~~~~~
- // 4. BindingPatternTemplate
- //
- // THEN
- //
- // addr (variant is not Variable)
- // ^~~~
- // 3. BindingPatternAddress
- //
- // THEN
- //
- // name: ...
- // ^~~~~
- // self: ...
- // ^~~~~
- // 1. Expr
- // 2. BindingPatternFinishAsRegular
- //
- // name:! ...
- // ^~~~~~
- // self:! ...
- // ^~~~~~
- // 1. Expr
- // 2. BindingPatternFinishAsGeneric
- //
- // ???
- // ^
- // 1. BindingPatternFinishAsRegular
- CARBON_PARSE_STATE(BindingPattern)
- // Handles `addr` in a binding pattern.
- //
- // addr name: type
- // ^
- // (state done)
- CARBON_PARSE_STATE(BindingPatternAddress)
- // Handles `template` in a binding pattern.
- //
- // template name:! type
- // ^
- // (state done)
- CARBON_PARSE_STATE(BindingPatternTemplate)
- // Finishes binding pattern processing.
- //
- // name: type
- // ^
- // (state done)
- CARBON_PARSE_STATE_VARIANTS2(BindingPatternFinish, Generic, Regular)
- // Handles a single statement. While typically within a statement block, this
- // can also be used for error recovery where we expect a statement block and
- // are missing braces.
- //
- // break ...
- // ^~~~~
- // 1. StatementBreakFinish
- //
- // continue ...
- // ^~~~~~~~
- // 1. StatementContinueFinish
- //
- // for ...
- // ^~~
- // 1. StatementForHeader
- // 2. StatementForFinish
- //
- // if ...
- // ^
- // 1. StatementIf
- //
- // return ...
- // ^
- // 1. StatementReturn
- //
- // var ...
- // ^
- // 1. VarAsDecl
- //
- // returned ...
- // ^
- // 1. VarAsReturned
- //
- // while ...
- // ^
- // 1. StatementWhile
- //
- // ...
- // ^
- // 1. Expr
- // 2. ExprStatementFinish
- CARBON_PARSE_STATE(Statement)
- // Handles `break` processing at the `;`.
- //
- // break ;
- // ^
- // (state done)
- CARBON_PARSE_STATE(StatementBreakFinish)
- // Handles `continue` processing at the `;`.
- //
- // continue ;
- // ^
- // (state done)
- CARBON_PARSE_STATE(StatementContinueFinish)
- // Handles `for` processing of `(var`, proceeding to a binding pattern before
- // continuing.
- //
- // for ( var ... )
- // ^
- // 1. VarAsFor
- // 2. StatementForHeaderIn
- //
- // for ( ???
- // ^
- // for ( ??? in ...
- // ^~~~~~~~
- // for ??? in ...
- // ^~~~~~
- // for ???
- // ^
- // 1. StatementForHeaderIn
- CARBON_PARSE_STATE(StatementForHeader)
- // Handles `for` processing of `in`, proceeding to an expression before
- // continuing.
- //
- // for ( ... in ... )
- // ^
- // 1. Expr
- // 2. StatementForHeaderFinish
- CARBON_PARSE_STATE(StatementForHeaderIn)
- // Handles `for` processing of `)`, proceeding to the statement block.
- //
- // for ( ... ) ...
- // ^
- // 1. CodeBlock
- CARBON_PARSE_STATE(StatementForHeaderFinish)
- // Handles `for` processing after the final `}`.
- //
- // for ( ... ) { ... }
- // ^
- // (state done)
- CARBON_PARSE_STATE(StatementForFinish)
- // Handles `if` processing at the start.
- //
- // if ...
- // ^~
- // 1. ParenConditionAsIf
- // 2. StatementIfConditionFinish
- CARBON_PARSE_STATE(StatementIf)
- // Handles `if` processing between the condition and start of the first code
- // block.
- //
- // if ( ... ) ...
- // ^
- // 1. CodeBlock
- // 2. StatementIfThenBlockFinish
- CARBON_PARSE_STATE(StatementIfConditionFinish)
- // Handles `if` processing after the end of the first code block, with the
- // optional `else`.
- //
- // if ( ... ) { ... } else if ...
- // ^~~~
- // 1. StatementIf
- // 2. StatementIfElseBlockFinish
- //
- // if ( ... ) { ... } else ...
- // ^~~~
- // 1. CodeBlock
- // 2. StatementIfElseBlockFinish
- //
- // if ( ... ) { ... } ...
- // (state done)
- CARBON_PARSE_STATE(StatementIfThenBlockFinish)
- // Handles `if` processing after a provided `else` code block.
- //
- // if ( ... ) { ... } else { ... }
- // ^
- // (state done)
- CARBON_PARSE_STATE(StatementIfElseBlockFinish)
- // Handles `return` processing.
- //
- // return ;
- // ^~~~~~
- // 1. StatementReturnFinish
- //
- // return var ...
- // ^~~~~~~~~~
- // 1. StatementReturnFinish
- //
- // return ...
- // ^~~~~~
- // 1. Expr
- // 2. StatementReturnFinish
- CARBON_PARSE_STATE(StatementReturn)
- // Handles `return` processing at the `;`.
- //
- // return ... ;
- // ^
- // (state done)
- CARBON_PARSE_STATE(StatementReturnFinish)
- // Handles processing of statements within a scope.
- //
- // { ... }
- // ^
- // (state done)
- //
- // { ... ... }
- // ^
- // 1. Statement
- // 2. StatementScopeLoop
- CARBON_PARSE_STATE(StatementScopeLoop)
- // Handles `while` processing.
- //
- // while ...
- // ^~~~~
- // 1. ParenConditionAsWhile
- // 2. StatementWhileConditionFinish
- CARBON_PARSE_STATE(StatementWhile)
- // Handles `while` processing between the condition and start of the code block.
- //
- // while ( ... ) ...
- // ^
- // 1. CodeBlock
- // 2. StatementWhileBlockFinish
- CARBON_PARSE_STATE(StatementWhileConditionFinish)
- // Handles `while` processing after the end of the code block.
- //
- // while ( ... ) { ... }
- // ^
- // (state done)
- CARBON_PARSE_STATE(StatementWhileBlockFinish)
- // Handles parsing after the declaration scope of a type.
- //
- // class/impl/interface/constraint ... { ... }
- // ^
- // (state done)
- CARBON_PARSE_STATE_VARIANTS4(DeclDefinitionFinish, Class, Impl, Interface,
- NamedConstraint)
- // Handles processing of a type after its introducer.
- //
- // class/interface/constraint ...
- // ^
- // 1. DeclNameAndParamsAsOptional
- // 2. DeclOrDefinitionAs(Class|Interface|NamedConstraint)
- CARBON_PARSE_STATE_VARIANTS3(TypeAfterIntroducer, Class, Interface,
- NamedConstraint)
- // Handles processing of a type after its optional parameters.
- //
- // class/impl/interface/constraint name ( ... ) {
- // ^
- // 1. DeclScopeLoop
- // 2. DeclDefinitionFinishAs(Class|Impl|Interface|NamedConstraint)
- //
- // class/impl/interface/constraint name ( ... ) ;
- // ^
- // class/impl/interface/constraint name ( ... ) ???
- // ^
- // (state done)
- CARBON_PARSE_STATE_VARIANTS4(DeclOrDefinition, Class, Impl, Interface, NamedConstraint)
- // Handles processing of a completed `base: B` declaration.
- //
- // base: B ;
- // ^
- // base: B ??? ;
- // ^
- // (state done)
- CARBON_PARSE_STATE(BaseDecl)
- // Handles processing of an `impl...as` declaration after the introducer.
- //
- // impl forall [ ...
- // ^~~~~~
- // 1. PatternListAsImplicit
- // 2. ImplAfterForall
- // 3. DeclOrDefinitionAsImpl
- // impl as ...
- // ^~
- // 1. Expr
- // 2. DeclOrDefinitionAsImpl
- // impl type_expression as ...
- // ^
- // 1. Expr
- // 2. ImplBeforeAs
- // 3. DeclOrDefinitionAsImpl
- CARBON_PARSE_STATE(ImplAfterIntroducer)
- // Handles processing of an `impl forall` declaration after the implicit
- // parameter list.
- //
- // impl forall [ ... ] as ...
- // ^~
- // 1. Expr
- // impl forall [ ... ] type_expression as ...
- // ^
- // 1. Expr
- // 2. ImplBeforeAs
- CARBON_PARSE_STATE(ImplAfterForall)
- // Handles processing of the `as` in an `impl` declaration after the type
- // expression.
- //
- // impl TypeExpression as ...
- // ^~
- // 1. Expr
- CARBON_PARSE_STATE(ImplBeforeAs)
- // Handles the start of a `var` or `returned var`.
- //
- // var ... (variant is not Returned)
- // ^
- // 1. BindingPattern
- // 2. VarAfterPattern
- // 3. VarFinishAs(Decl|For)
- //
- // var (...)
- // ^
- // 1. ParamListAsRegular
- // 2. VarAfterPattern
- // 3. VarFinishAs(Decl|For)
- //
- // returned var ... (variant is Returned)
- // ^~~~~~~~~~~~
- // 1. BindingPattern
- // 2. VarAfterPattern
- // 3. VarFinishAsDecl
- //
- // returned var ... (variant is Returned)
- // ^~~~~~~~~~~~
- // 1. ParamListAsRegular
- // 2. VarAfterPattern
- // 3. VarFinishAsDecl
- //
- // returned ??? ; (variant is Returned)
- // ^~~~~~~~~~~~~~
- // (state done)
- CARBON_PARSE_STATE_VARIANTS3(Var, Decl, Returned, For)
- // Handles `var` after the pattern, either followed by an initializer or the
- // semicolon.
- //
- // var ... = ...
- // ^
- // var ... ??? = ...
- // ^~~~~
- // 1. Expr
- //
- // var ... ...
- // ^
- // (state done)
- CARBON_PARSE_STATE(VarAfterPattern)
- // Handles `var` parsing at the end.
- //
- // var ... ; (variant is Semicolon)
- // ^
- // var ... ??? ; (variant is Semicolon)
- // ^~~~~
- // (state done)
- //
- // var ... in (variant is For)
- // ^~
- // var ... : (variant is For, invalid)
- // ^
- // (state done)
- CARBON_PARSE_STATE_VARIANTS2(VarFinish, Decl, For)
- // Handles the start of a `let`.
- //
- // let (...)
- // ^~~
- // 1. ParamListAsRegular
- // 2. LetAfterPattern
- // 3. LetFinish
- //
- // let ...
- // ^
- // 1. BindingPattern
- // 2. LetAfterPattern
- // 3. LetFinish
- CARBON_PARSE_STATE(Let)
- // Handles `let` after the pattern, followed by an initializer.
- //
- // let ... = ...
- // ^
- // let ... ??? = ...
- // ^~~~~
- // 1. Expr
- //
- // let ... ??? ;
- // ^~~
- // (state done)
- CARBON_PARSE_STATE(LetAfterPattern)
- // Handles `let` parsing at the end.
- //
- // let ... ;
- // ^
- // (state done)
- CARBON_PARSE_STATE(LetFinish)
- #undef CARBON_PARSE_STATE
|