mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-28 04:45:05 +00:00
569 lines
8 KiB
Text
569 lines
8 KiB
Text
Path =
|
|
(qualifier:Path '::')? segment:PathSegment
|
|
|
|
PathSegment =
|
|
'::' | 'crate' | 'self' | 'super'
|
|
| (NameRef ('::'? GenericArgList)?)
|
|
| NameRef ParamList RetType?
|
|
| '<' PathType ('as' PathType)? '>'
|
|
|
|
GenericArgList =
|
|
'::'? '<'
|
|
TypeArg*
|
|
LifetimeArg*
|
|
AssocTypeArg*
|
|
ConstArg*
|
|
'>'
|
|
|
|
TypeArg =
|
|
Type
|
|
|
|
AssocTypeArg =
|
|
NameRef (':' TypeBoundList | '=' Type)
|
|
|
|
LifetimeArg =
|
|
'lifetime'
|
|
|
|
ConstArg =
|
|
Literal | BlockExpr BlockExpr
|
|
|
|
|
|
SourceFile =
|
|
'shebang'?
|
|
Attr*
|
|
Item*
|
|
|
|
Item =
|
|
Const
|
|
| Enum
|
|
| ExternBlock
|
|
| ExternCrate
|
|
| Fn
|
|
| Impl
|
|
| MacroCall
|
|
| Module
|
|
| Static
|
|
| Struct
|
|
| Trait
|
|
| TypeAlias
|
|
| Union
|
|
| Use
|
|
|
|
Module =
|
|
Attr* Visibility? 'mod' Name
|
|
(ItemList | ';')
|
|
|
|
ItemList =
|
|
'{' Attr* Item* '}'
|
|
|
|
ExternCrate =
|
|
Attr* Visibility? 'extern' 'crate' (NameRef | 'self') Rename? ';'
|
|
|
|
Rename =
|
|
'as' (Name | '_')
|
|
|
|
Use =
|
|
Attr* Visibility? 'use' UseTree ';'
|
|
|
|
UseTree =
|
|
(Path? '::')? ('*' | UseTreeList )
|
|
| Path Rename?
|
|
|
|
UseTreeList =
|
|
'{' (UseTree (',' UseTree)* ','?)? '}'
|
|
|
|
Fn =
|
|
Attr* Visibility?
|
|
'default'? ('async' | 'const')? 'unsafe'? Abi?
|
|
'fn' Name GenericParamList? ParamList RetType?
|
|
WhereClause?
|
|
(body:BlockExpr | ';')
|
|
|
|
Abi =
|
|
'extern' 'string'?
|
|
|
|
ParamList =
|
|
'('(
|
|
SelfParam
|
|
| (SelfParam ',')? (Param (',' Param)* ','?)?
|
|
)')'
|
|
|
|
SelfParam =
|
|
Attr* (
|
|
('&' 'lifetime'?)? 'mut'? 'self'
|
|
| 'mut'? 'self' ':' Type
|
|
)
|
|
|
|
Param =
|
|
Attr* (
|
|
Pat (':' Type)
|
|
| Type
|
|
| '...'
|
|
)
|
|
|
|
RetType =
|
|
'->' Type
|
|
|
|
TypeAlias =
|
|
Attr* Visibility? 'default'? 'type' Name GenericParamList? (':' TypeBoundList?)? WhereClause?
|
|
'=' Type ';'
|
|
|
|
Struct =
|
|
Attr* Visibility? 'struct' Name GenericParamList? (
|
|
WhereClause? (RecordFieldList | ';')
|
|
| TupleFieldList WhereClause? ';'
|
|
)
|
|
|
|
RecordFieldList =
|
|
'{' fields:(RecordField (',' RecordField)* ','?)? '}'
|
|
|
|
RecordField =
|
|
Attr* Visibility? Name ':' Type
|
|
|
|
TupleFieldList =
|
|
'(' fields:(TupleField (',' TupleField)* ','?)? ')'
|
|
|
|
TupleField =
|
|
Attr* Visibility? Type
|
|
|
|
FieldList =
|
|
RecordFieldList
|
|
| TupleFieldList
|
|
|
|
Enum =
|
|
Attr* Visibility? 'enum' Name GenericParamList? WhereClause?
|
|
VariantList
|
|
|
|
VariantList =
|
|
'{' (Variant (',' Variant)* ','?)? '}'
|
|
|
|
Variant =
|
|
Attr* Visibility? Name FieldList ('=' Expr)?
|
|
|
|
Union =
|
|
Attr* Visibility? 'union' Name GenericParamList? WhereClause?
|
|
RecordFieldList
|
|
|
|
AdtDef =
|
|
Enum
|
|
| Struct
|
|
| Union
|
|
|
|
Const =
|
|
Attr* Visibility? 'default'? 'const' (Name | '_') ':' Type
|
|
'=' body:Expr ';'
|
|
|
|
Static =
|
|
Attr* Visibility? 'static'? 'mut'? Name ':' Type
|
|
'=' body:Expr ';'
|
|
|
|
Trait =
|
|
Attr* Visibility? 'unsafe'? 'auto'? 'trait' Name GenericParamList
|
|
(':' TypeBoundList?)? WhereClause
|
|
AssocItemList
|
|
|
|
AssocItemList =
|
|
'{' Attr* AssocItem* '}'
|
|
|
|
AssocItem =
|
|
Const
|
|
| Fn
|
|
| MacroCall
|
|
| TypeAlias
|
|
|
|
Impl =
|
|
Attr* Visibility?
|
|
'default'? 'unsafe'? 'impl' 'const'? GenericParamList? (
|
|
Type
|
|
| '!'? Type 'for' Type
|
|
) WhereClause?
|
|
AssocItemList
|
|
|
|
ExternBlock =
|
|
Attr* Abi ExternItemList
|
|
|
|
ExternItemList =
|
|
'{' Attr* ExternItem* '}'
|
|
|
|
ExternItem =
|
|
Fn | Static | MacroCall
|
|
|
|
GenericParamList =
|
|
'<' (GenericParam (',' GenericParam)* ','?)? '>'
|
|
|
|
GenericParam =
|
|
ConstParam
|
|
| LifetimeParam
|
|
| TypeParam
|
|
|
|
TypeParam =
|
|
Attr* Name (':' TypeBoundList?)?
|
|
('=' default_type:Type)?
|
|
|
|
ConstParam =
|
|
Attr* 'const' Name ':' Type
|
|
('=' default_val:Expr)?
|
|
|
|
LifetimeParam =
|
|
Attr* 'lifetime' (':' TypeBoundList?)?
|
|
|
|
WhereClause =
|
|
'where' predicates:(WherePred (',' WherePred)* ','?)
|
|
|
|
WherePred =
|
|
('for' GenericParamList)? ('lifetime' | Type) ':' TypeBoundList
|
|
|
|
Visibility =
|
|
'pub' ('('
|
|
'super'
|
|
| 'self'
|
|
| 'crate'
|
|
| 'in' Path
|
|
')')?
|
|
|
|
Attr =
|
|
'#' '!'? '[' Path ('=' Literal | TokenTree)? ']'
|
|
|
|
Stmt =
|
|
ExprStmt
|
|
| Item
|
|
| LetStmt
|
|
|
|
LetStmt =
|
|
Attr* 'let' Pat (':' Type)?
|
|
'=' initializer:Expr ';'
|
|
|
|
ExprStmt =
|
|
Attr* Expr ';'?
|
|
|
|
Expr =
|
|
ArrayExpr
|
|
| AwaitExpr
|
|
| BinExpr
|
|
| BlockExpr
|
|
| BoxExpr
|
|
| BreakExpr
|
|
| CallExpr
|
|
| CastExpr
|
|
| ClosureExpr
|
|
| ContinueExpr
|
|
| EffectExpr
|
|
| FieldExpr
|
|
| ForExpr
|
|
| IfExpr
|
|
| IndexExpr
|
|
| Literal
|
|
| LoopExpr
|
|
| MacroCall
|
|
| MatchExpr
|
|
| MethodCallExpr
|
|
| ParenExpr
|
|
| PathExpr
|
|
| PrefixExpr
|
|
| RangeExpr
|
|
| RecordExpr
|
|
| RefExpr
|
|
| ReturnExpr
|
|
| TryExpr
|
|
| TupleExpr
|
|
| WhileExpr
|
|
|
|
Literal =
|
|
Attr* value:(
|
|
'int_number' | 'float_number'
|
|
| 'string' | 'raw_string'
|
|
| 'byte_string' | 'raw_byte_string'
|
|
| 'true' | 'false'
|
|
| 'char' | 'byte'
|
|
)
|
|
|
|
PathExpr =
|
|
Attr* Path
|
|
|
|
BlockExpr =
|
|
'{'
|
|
Attr*
|
|
statements:Stmt*
|
|
Expr?
|
|
'}'
|
|
|
|
RefExpr =
|
|
Attr* '&' ('raw' |'mut' | 'const') Expr
|
|
|
|
TryExpr =
|
|
Attr* Expr '?'
|
|
|
|
EffectExpr =
|
|
Attr* Label? ('try' | 'unsafe' | 'async') BlockExpr
|
|
|
|
PrefixExpr =
|
|
Attr* op:('-' | '!' | '*') Expr
|
|
|
|
BinExpr =
|
|
Attr*
|
|
lhs:Expr
|
|
op:(
|
|
'||' | '&&'
|
|
| '==' | '!=' | '<=' | '>=' | '<' | '>'
|
|
| '+' | '*' | '-' | '/' | '%' | '<<' | '>>' | '^' | '|' | '&'
|
|
| '=' | '+=' | '/=' | '*=' | '%=' | '>>=' | '<<=' | '-=' | '|=' | '&=' | '^='
|
|
)
|
|
rhs:Expr
|
|
|
|
CastExpr =
|
|
Attr* Expr 'as' Type
|
|
|
|
ParenExpr =
|
|
Attr* '(' Attr* Expr ')'
|
|
|
|
ArrayExpr =
|
|
Attr* '[' Attr* (
|
|
(Expr (',' Expr)* ','?)?
|
|
| Expr ';' Expr
|
|
) ']'
|
|
|
|
IndexExpr =
|
|
Attr* base:Expr '[' index:Expr ']'
|
|
|
|
TupleExpr =
|
|
Attr* '(' Attr* (Expr (',' Expr)* ','?)? ')'
|
|
|
|
RecordExpr =
|
|
Path RecordExprFieldList
|
|
|
|
RecordExprFieldList =
|
|
'{'
|
|
Attr*
|
|
fields:(RecordExprField (',' RecordExprField)* ','?)
|
|
('..' spread:Expr)?
|
|
'}'
|
|
|
|
RecordExprField =
|
|
Attr* NameRef (':' Expr)?
|
|
|
|
CallExpr =
|
|
Attr* Expr ArgList
|
|
|
|
ArgList =
|
|
'(' args:(Expr (',' Expr)* ','?)? ')'
|
|
|
|
MethodCallExpr =
|
|
Attr* Expr '.' NameRef GenericArgList? ArgList
|
|
|
|
FieldExpr =
|
|
Attr* Expr '.' NameRef
|
|
|
|
ClosureExpr =
|
|
Attr* 'static'? 'async'? 'move'? ParamList RetType?
|
|
body:Expr
|
|
|
|
IfExpr =
|
|
Attr* 'if' Condition then_branch:BlockExpr
|
|
('else' else_branch:(IfExpr | BlockExpr))?
|
|
|
|
Condition =
|
|
'let' Pat '=' Expr
|
|
| Expr
|
|
|
|
LoopExpr =
|
|
Attr* Label? 'loop'
|
|
loop_body:BlockExpr
|
|
|
|
ForExpr =
|
|
Attr* Label? 'for' Pat 'in' iterable:Expr
|
|
loop_body:BlockExpr
|
|
|
|
WhileExpr =
|
|
Attr* Label? 'while' Condition
|
|
loop_body:BlockExpr
|
|
|
|
Label =
|
|
'lifetime'
|
|
|
|
BreakExpr =
|
|
Attr* 'break' 'lifetime'? Expr?
|
|
|
|
ContinueExpr =
|
|
Attr* 'continue' 'lifetime'?
|
|
|
|
RangeExpr =
|
|
Attr* start:Expr? op:('..' | '..=') end:Expr?
|
|
|
|
MatchExpr =
|
|
Attr* 'match' Expr MatchArmList
|
|
|
|
MatchArmList =
|
|
'{'
|
|
Attr*
|
|
arms:MatchArm*
|
|
'}'
|
|
|
|
MatchArm =
|
|
Attr* Pat guard:MatchGuard? '=>' Expr ','?
|
|
|
|
MatchGuard =
|
|
'if' Expr
|
|
|
|
ReturnExpr =
|
|
Attr* 'return' Expr?
|
|
|
|
AwaitExpr =
|
|
Attr* Expr '.' 'await'
|
|
|
|
BoxExpr =
|
|
Attr* 'box' Expr
|
|
|
|
Type =
|
|
ArrayType
|
|
| DynTraitType
|
|
| FnPointerType
|
|
| ForType
|
|
| ImplTraitType
|
|
| InferType
|
|
| NeverType
|
|
| ParenType
|
|
| PathType
|
|
| PointerType
|
|
| ReferenceType
|
|
| SliceType
|
|
| TupleType
|
|
|
|
ParenType =
|
|
'(' Type ')'
|
|
|
|
NeverType =
|
|
'!'
|
|
|
|
PathType =
|
|
Path
|
|
|
|
TupleType =
|
|
'(' fields:(Type (',' Type)* ','?)? ')'
|
|
|
|
PointerType =
|
|
'*' ('const' | 'mut') Type
|
|
|
|
ReferenceType =
|
|
'&' 'lifetime'? 'mut'? Type
|
|
|
|
ArrayType =
|
|
'[' Type ';' Expr ']'
|
|
|
|
SliceType =
|
|
'[' Type ']'
|
|
|
|
InferType =
|
|
'_'
|
|
|
|
FnPointerType =
|
|
'const'? 'async'? 'unsafe'? Abi? 'fn' ParamList RetType?
|
|
|
|
ForType =
|
|
'for' GenericParamList Type
|
|
|
|
ImplTraitType =
|
|
'impl' TypeBoundList
|
|
|
|
DynTraitType =
|
|
'dyn' TypeBoundList
|
|
|
|
TypeBoundList =
|
|
bounds:(TypeBound ('+' TypeBound)* '+'?)
|
|
|
|
TypeBound =
|
|
'lifetime'
|
|
| '?'? Type
|
|
|
|
OrPat =
|
|
Pat*
|
|
|
|
ParenPat =
|
|
'(' Pat ')'
|
|
|
|
RefPat =
|
|
'&' 'mut'? Pat
|
|
|
|
BoxPat =
|
|
'box' Path
|
|
|
|
BindPat =
|
|
Attr* 'ref'? 'mut'? Name ('@' Pat)?
|
|
|
|
PlaceholderPat =
|
|
'_'
|
|
|
|
DotDotPat =
|
|
'..'
|
|
|
|
PathPat =
|
|
Path
|
|
|
|
SlicePat =
|
|
'[' args:Pat* ']'
|
|
|
|
RangePat =
|
|
'..' | '..='
|
|
|
|
LiteralPat =
|
|
Literal
|
|
|
|
MacroPat =
|
|
MacroCall
|
|
|
|
RecordPat =
|
|
Path RecordFieldPatList
|
|
|
|
RecordFieldPatList =
|
|
'{'
|
|
record_field_pats:RecordFieldPat*
|
|
BindPat*
|
|
'..'?
|
|
'}'
|
|
|
|
RecordFieldPat =
|
|
Attr* NameRef ':' Pat
|
|
|
|
TupleStructPat =
|
|
Path '(' args:Pat* ')'
|
|
|
|
TuplePat =
|
|
'(' args:Pat* ')'
|
|
|
|
Name =
|
|
'ident'
|
|
|
|
NameRef =
|
|
'ident' | 'int_number'
|
|
|
|
MacroCall =
|
|
Attr* Path '!' Name? TokenTree ';'?
|
|
|
|
MacroDef =
|
|
Name TokenTree
|
|
|
|
TokenTree =
|
|
'(' ')' | '{' '}' | '[' ']'
|
|
|
|
MacroItems =
|
|
Item*
|
|
|
|
MacroStmts =
|
|
statements:Stmt*
|
|
Expr?
|
|
|
|
Pat =
|
|
OrPat
|
|
| ParenPat
|
|
| RefPat
|
|
| BoxPat
|
|
| BindPat
|
|
| PlaceholderPat
|
|
| DotDotPat
|
|
| PathPat
|
|
| RecordPat
|
|
| TupleStructPat
|
|
| TuplePat
|
|
| SlicePat
|
|
| RangePat
|
|
| LiteralPat
|
|
| MacroPat
|