Rust: Renamed expr on CallExpr and LetExpr

This commit is contained in:
Simon Friis Vindum
2024-11-26 15:22:14 +01:00
parent 9f09454db9
commit d30f3e2822
30 changed files with 107 additions and 97 deletions

4
rust/schema/ast.py generated
View File

@@ -103,7 +103,7 @@ class BreakExpr(Expr):
class CallExpr(Expr):
arg_list: optional["ArgList"] | child
attrs: list["Attr"] | child
expr: optional["Expr"] | child
function: optional["Expr"] | child
class CastExpr(Expr):
attrs: list["Attr"] | child
@@ -285,7 +285,7 @@ class LetElse(AstNode):
class LetExpr(Expr):
attrs: list["Attr"] | child
expr: optional["Expr"] | child
scrutinee: optional["Expr"] | child
pat: optional["Pat"] | child
class LetStmt(Stmt):