|
| 1 | +// File automatically generated by ast/asdl_rs.py. |
| 2 | + |
| 3 | +use crate::location::SourceRange; |
| 4 | + |
| 5 | +pub type Located<T> = super::generic::Attributed<T, SourceRange>; |
| 6 | +pub type Mod = super::generic::Mod<SourceRange>; |
| 7 | +pub type ModModule = super::generic::ModModule<SourceRange>; |
| 8 | +pub type ModInteractive = super::generic::ModInteractive<SourceRange>; |
| 9 | +pub type ModExpression = super::generic::ModExpression<SourceRange>; |
| 10 | +pub type ModFunctionType = super::generic::ModFunctionType<SourceRange>; |
| 11 | +pub type Stmt = super::generic::Stmt<SourceRange>; |
| 12 | +pub type StmtKind = super::generic::StmtKind<SourceRange>; |
| 13 | +pub type StmtFunctionDef = super::generic::StmtFunctionDef<SourceRange>; |
| 14 | +pub type StmtAsyncFunctionDef = super::generic::StmtAsyncFunctionDef<SourceRange>; |
| 15 | +pub type StmtClassDef = super::generic::StmtClassDef<SourceRange>; |
| 16 | +pub type StmtReturn = super::generic::StmtReturn<SourceRange>; |
| 17 | +pub type StmtDelete = super::generic::StmtDelete<SourceRange>; |
| 18 | +pub type StmtAssign = super::generic::StmtAssign<SourceRange>; |
| 19 | +pub type StmtAugAssign = super::generic::StmtAugAssign<SourceRange>; |
| 20 | +pub type StmtAnnAssign = super::generic::StmtAnnAssign<SourceRange>; |
| 21 | +pub type StmtFor = super::generic::StmtFor<SourceRange>; |
| 22 | +pub type StmtAsyncFor = super::generic::StmtAsyncFor<SourceRange>; |
| 23 | +pub type StmtWhile = super::generic::StmtWhile<SourceRange>; |
| 24 | +pub type StmtIf = super::generic::StmtIf<SourceRange>; |
| 25 | +pub type StmtWith = super::generic::StmtWith<SourceRange>; |
| 26 | +pub type StmtAsyncWith = super::generic::StmtAsyncWith<SourceRange>; |
| 27 | +pub type StmtMatch = super::generic::StmtMatch<SourceRange>; |
| 28 | +pub type StmtRaise = super::generic::StmtRaise<SourceRange>; |
| 29 | +pub type StmtTry = super::generic::StmtTry<SourceRange>; |
| 30 | +pub type StmtTryStar = super::generic::StmtTryStar<SourceRange>; |
| 31 | +pub type StmtAssert = super::generic::StmtAssert<SourceRange>; |
| 32 | +pub type StmtImport = super::generic::StmtImport<SourceRange>; |
| 33 | +pub type StmtImportFrom = super::generic::StmtImportFrom<SourceRange>; |
| 34 | +pub type StmtGlobal = super::generic::StmtGlobal; |
| 35 | +pub type StmtNonlocal = super::generic::StmtNonlocal; |
| 36 | +pub type StmtExpr = super::generic::StmtExpr<SourceRange>; |
| 37 | +pub type Expr = super::generic::Expr<SourceRange>; |
| 38 | +pub type ExprKind = super::generic::ExprKind<SourceRange>; |
| 39 | +pub type ExprBoolOp = super::generic::ExprBoolOp<SourceRange>; |
| 40 | +pub type ExprNamedExpr = super::generic::ExprNamedExpr<SourceRange>; |
| 41 | +pub type ExprBinOp = super::generic::ExprBinOp<SourceRange>; |
| 42 | +pub type ExprUnaryOp = super::generic::ExprUnaryOp<SourceRange>; |
| 43 | +pub type ExprLambda = super::generic::ExprLambda<SourceRange>; |
| 44 | +pub type ExprIfExp = super::generic::ExprIfExp<SourceRange>; |
| 45 | +pub type ExprDict = super::generic::ExprDict<SourceRange>; |
| 46 | +pub type ExprSet = super::generic::ExprSet<SourceRange>; |
| 47 | +pub type ExprListComp = super::generic::ExprListComp<SourceRange>; |
| 48 | +pub type ExprSetComp = super::generic::ExprSetComp<SourceRange>; |
| 49 | +pub type ExprDictComp = super::generic::ExprDictComp<SourceRange>; |
| 50 | +pub type ExprGeneratorExp = super::generic::ExprGeneratorExp<SourceRange>; |
| 51 | +pub type ExprAwait = super::generic::ExprAwait<SourceRange>; |
| 52 | +pub type ExprYield = super::generic::ExprYield<SourceRange>; |
| 53 | +pub type ExprYieldFrom = super::generic::ExprYieldFrom<SourceRange>; |
| 54 | +pub type ExprCompare = super::generic::ExprCompare<SourceRange>; |
| 55 | +pub type ExprCall = super::generic::ExprCall<SourceRange>; |
| 56 | +pub type ExprFormattedValue = super::generic::ExprFormattedValue<SourceRange>; |
| 57 | +pub type ExprJoinedStr = super::generic::ExprJoinedStr<SourceRange>; |
| 58 | +pub type ExprConstant = super::generic::ExprConstant; |
| 59 | +pub type ExprAttribute = super::generic::ExprAttribute<SourceRange>; |
| 60 | +pub type ExprSubscript = super::generic::ExprSubscript<SourceRange>; |
| 61 | +pub type ExprStarred = super::generic::ExprStarred<SourceRange>; |
| 62 | +pub type ExprName = super::generic::ExprName; |
| 63 | +pub type ExprList = super::generic::ExprList<SourceRange>; |
| 64 | +pub type ExprTuple = super::generic::ExprTuple<SourceRange>; |
| 65 | +pub type ExprSlice = super::generic::ExprSlice<SourceRange>; |
| 66 | +pub type ExprContext = super::generic::ExprContext; |
| 67 | +pub type Boolop = super::generic::Boolop; |
| 68 | +pub type Operator = super::generic::Operator; |
| 69 | +pub type Unaryop = super::generic::Unaryop; |
| 70 | +pub type Cmpop = super::generic::Cmpop; |
| 71 | +pub type Comprehension = super::generic::Comprehension<SourceRange>; |
| 72 | +pub type Excepthandler = super::generic::Excepthandler<SourceRange>; |
| 73 | +pub type ExcepthandlerKind = super::generic::ExcepthandlerKind<SourceRange>; |
| 74 | +pub type ExcepthandlerExceptHandler = super::generic::ExcepthandlerExceptHandler<SourceRange>; |
| 75 | +pub type Arguments = super::generic::Arguments<SourceRange>; |
| 76 | +pub type Arg = super::generic::Arg<SourceRange>; |
| 77 | +pub type ArgData = super::generic::ArgData<SourceRange>; |
| 78 | +pub type Keyword = super::generic::Keyword<SourceRange>; |
| 79 | +pub type KeywordData = super::generic::KeywordData<SourceRange>; |
| 80 | +pub type Alias = super::generic::Alias<SourceRange>; |
| 81 | +pub type AliasData = super::generic::AliasData; |
| 82 | +pub type Withitem = super::generic::Withitem<SourceRange>; |
| 83 | +pub type MatchCase = super::generic::MatchCase<SourceRange>; |
| 84 | +pub type Pattern = super::generic::Pattern<SourceRange>; |
| 85 | +pub type PatternKind = super::generic::PatternKind<SourceRange>; |
| 86 | +pub type PatternMatchValue = super::generic::PatternMatchValue<SourceRange>; |
| 87 | +pub type PatternMatchSingleton = super::generic::PatternMatchSingleton; |
| 88 | +pub type PatternMatchSequence = super::generic::PatternMatchSequence<SourceRange>; |
| 89 | +pub type PatternMatchMapping = super::generic::PatternMatchMapping<SourceRange>; |
| 90 | +pub type PatternMatchClass = super::generic::PatternMatchClass<SourceRange>; |
| 91 | +pub type PatternMatchStar = super::generic::PatternMatchStar; |
| 92 | +pub type PatternMatchAs = super::generic::PatternMatchAs<SourceRange>; |
| 93 | +pub type PatternMatchOr = super::generic::PatternMatchOr<SourceRange>; |
| 94 | +pub type TypeIgnore = super::generic::TypeIgnore; |
| 95 | +pub type TypeIgnoreTypeIgnore = super::generic::TypeIgnoreTypeIgnore; |
0 commit comments