Merge main into redsun82/swift-extraction

This commit is contained in:
Paolo Tranquilli
2022-06-22 11:11:20 +02:00
471 changed files with 47481 additions and 45943 deletions

View File

@@ -54,6 +54,11 @@ NominalTypeDecl:
AstNode:
_extends: Locatable
Callable:
_children:
params: ParamDecl*
body: BraceStmt?
ConditionElement:
_extends: Locatable
_children:
@@ -290,9 +295,9 @@ ValueDecl:
interface_type: Type
AbstractClosureExpr:
_extends: Expr
_children:
params: ParamDecl*
_extends:
- Expr
- Callable
AnyTryExpr:
_extends: Expr
@@ -727,10 +732,8 @@ AbstractFunctionDecl:
_extends:
- GenericContext
- ValueDecl
- Callable
name: string
_children:
body: BraceStmt?
params: ParamDecl*
AbstractStorageDecl:
_extends: ValueDecl
@@ -750,13 +753,9 @@ TypeDecl:
AutoClosureExpr:
_extends: AbstractClosureExpr
_children:
body: BraceStmt
ClosureExpr:
_extends: AbstractClosureExpr
_children:
body: BraceStmt
ForceTryExpr:
_extends: AnyTryExpr