1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
// src/ast.rs
//! Abstract Syntax Tree (AST) definitions for Aether
//!
//! This module defines the structure of Aether programs as a tree of nodes.
/// Binary operators
#[derive(Debug, Clone, PartialEq)]
pub enum BinOp {
// Arithmetic
Add, // +
Subtract, // -
Multiply, // *
Divide, // /
Modulo, // %
// Comparison
Equal, // ==
NotEqual, // !=
Less, // <
LessEqual, // <=
Greater, // >
GreaterEqual, // >=
// Logical
And, // &&
Or, // ||
}
/// Unary operators
#[derive(Debug, Clone, PartialEq)]
pub enum UnaryOp {
Minus, // -
Not, // !
}
/// Expressions - things that evaluate to values
#[derive(Debug, Clone, PartialEq)]
pub enum Expr {
// Literals
Number(f64),
BigInteger(String), // 大整数字面量
String(String),
Boolean(bool),
Null,
// Identifier (variable reference)
Identifier(String),
// Binary operation: (left op right)
Binary {
left: Box<Expr>,
op: BinOp,
right: Box<Expr>,
},
// Unary operation: (op expr)
Unary {
op: UnaryOp,
expr: Box<Expr>,
},
// Function call: FUNC(arg1, arg2, ...)
Call {
func: Box<Expr>,
args: Vec<Expr>,
},
// Array literal: [1, 2, 3]
Array(Vec<Expr>),
// Dictionary literal: {key: value, ...}
Dict(Vec<(String, Expr)>),
// Array/Dict access: array[index] or dict[key]
Index {
object: Box<Expr>,
index: Box<Expr>,
},
// If expression (can return value)
If {
condition: Box<Expr>,
then_branch: Vec<Stmt>,
elif_branches: Vec<(Expr, Vec<Stmt>)>, // (condition, body) pairs
else_branch: Option<Vec<Stmt>>,
},
// Anonymous function
Lambda {
params: Vec<String>,
body: Vec<Stmt>,
},
}
/// Statements - things that perform actions
#[derive(Debug, Clone, PartialEq)]
pub enum Stmt {
// Variable assignment: Set NAME value
Set {
name: String,
value: Expr,
},
// Index assignment: Set OBJECT[INDEX] value (for arrays and dicts)
SetIndex {
object: Box<Expr>,
index: Box<Expr>,
value: Expr,
},
// Function definition: Func NAME (params) { body }
FuncDef {
name: String,
params: Vec<String>,
body: Vec<Stmt>,
},
// Generator definition: Generator NAME (params) { body }
GeneratorDef {
name: String,
params: Vec<String>,
body: Vec<Stmt>,
},
// Lazy variable: Lazy NAME (expr)
LazyDef {
name: String,
expr: Expr,
},
// Return statement: Return expr
Return(Expr),
// Yield statement (for generators): Yield expr
Yield(Expr),
// Break statement: Break (exit loop)
Break,
// Continue statement: Continue (skip to next iteration)
Continue,
// While loop: While (condition) { body }
While {
condition: Expr,
body: Vec<Stmt>,
},
// For loop: For VAR In ITERABLE { body }
For {
var: String,
iterable: Expr,
body: Vec<Stmt>,
},
// For loop with index: For INDEX, VAR In ITERABLE { body }
ForIndexed {
index_var: String,
value_var: String,
iterable: Expr,
body: Vec<Stmt>,
},
// Switch statement: Switch (expr) { Case val: body ... Default: body }
Switch {
expr: Expr,
cases: Vec<(Expr, Vec<Stmt>)>,
default: Option<Vec<Stmt>>,
},
// Import statement:
// - Named imports: Import {NAME1, NAME2} From PATH
// - Named import with alias: Import NAME As ALIAS From PATH
// - Namespace import: Import NS From PATH (bind module exports as Dict to NS)
Import {
names: Vec<String>,
path: String,
aliases: Vec<Option<String>>, // Optional aliases (As NAME)
namespace: Option<String>, // Namespace binding name
},
// Export statement: Export NAME
Export(String),
// Throw statement: Throw message
Throw(Expr),
// Expression statement (expression as statement)
Expression(Expr),
}
/// A complete program is a list of statements
pub type Program = Vec<Stmt>;
impl Expr {
/// Helper to create a binary expression
pub fn binary(left: Expr, op: BinOp, right: Expr) -> Self {
Expr::Binary {
left: Box::new(left),
op,
right: Box::new(right),
}
}
/// Helper to create a unary expression
pub fn unary(op: UnaryOp, expr: Expr) -> Self {
Expr::Unary {
op,
expr: Box::new(expr),
}
}
/// Helper to create a function call
pub fn call(func: Expr, args: Vec<Expr>) -> Self {
Expr::Call {
func: Box::new(func),
args,
}
}
/// Helper to create an index expression
pub fn index(object: Expr, index: Expr) -> Self {
Expr::Index {
object: Box::new(object),
index: Box::new(index),
}
}
}
impl std::fmt::Display for BinOp {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match self {
BinOp::Add => write!(f, "+"),
BinOp::Subtract => write!(f, "-"),
BinOp::Multiply => write!(f, "*"),
BinOp::Divide => write!(f, "/"),
BinOp::Modulo => write!(f, "%"),
BinOp::Equal => write!(f, "=="),
BinOp::NotEqual => write!(f, "!="),
BinOp::Less => write!(f, "<"),
BinOp::LessEqual => write!(f, "<="),
BinOp::Greater => write!(f, ">"),
BinOp::GreaterEqual => write!(f, ">="),
BinOp::And => write!(f, "&&"),
BinOp::Or => write!(f, "||"),
}
}
}
impl std::fmt::Display for UnaryOp {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match self {
UnaryOp::Minus => write!(f, "-"),
UnaryOp::Not => write!(f, "!"),
}
}
}