ruchy 4.2.1

A systems scripting language that transpiles to idiomatic Rust with extreme quality engineering
Documentation
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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
//! Tests for the interpreter module
//!
//! EXTREME TDD Round 86: Comprehensive tests for interpreter.rs
//! Coverage target: 95% for interpreter module
//!
//! This module contains all tests for the interpreter, extracted from interpreter.rs
//! for maintainability and to reduce the main module size.

#[allow(unused_imports)]
use crate::frontend::ast::{
    BinaryOp as AstBinaryOp, ComprehensionClause, Expr, ExprKind, Literal, Param, Pattern,
    Span, Type, TypeKind, UnaryOp,
};
use crate::runtime::interpreter::Interpreter;
use crate::runtime::Value;
#[allow(unused_imports)]
use std::sync::Arc;

// ============== Helper Functions ==============

/// Helper to create a simple integer literal expression
fn make_int(val: i64) -> Expr {
    Expr {
        kind: ExprKind::Literal(Literal::Integer(val, None)),
        span: Span::default(),
        attributes: vec![],
        leading_comments: vec![],
        trailing_comment: None,
    }
}

/// Helper to create a float literal expression
fn make_float(val: f64) -> Expr {
    Expr {
        kind: ExprKind::Literal(Literal::Float(val)),
        span: Span::default(),
        attributes: vec![],
        leading_comments: vec![],
        trailing_comment: None,
    }
}

/// Helper to create a bool literal expression
fn make_bool(val: bool) -> Expr {
    Expr {
        kind: ExprKind::Literal(Literal::Bool(val)),
        span: Span::default(),
        attributes: vec![],
        leading_comments: vec![],
        trailing_comment: None,
    }
}

/// Helper to create a string literal expression
fn make_string(val: &str) -> Expr {
    Expr {
        kind: ExprKind::Literal(Literal::String(val.to_string())),
        span: Span::default(),
        attributes: vec![],
        leading_comments: vec![],
        trailing_comment: None,
    }
}

/// Helper to create an identifier expression
fn make_ident(name: &str) -> Expr {
    Expr {
        kind: ExprKind::Identifier(name.to_string()),
        span: Span::default(),
        attributes: vec![],
        leading_comments: vec![],
        trailing_comment: None,
    }
}

/// Helper to create a binary expression
fn make_binary(left: Expr, op: AstBinaryOp, right: Expr) -> Expr {
    Expr {
        kind: ExprKind::Binary {
            left: Box::new(left),
            op,
            right: Box::new(right),
        },
        span: Span::default(),
        attributes: vec![],
        leading_comments: vec![],
        trailing_comment: None,
    }
}

/// Helper to create a unary expression
fn make_unary(op: UnaryOp, operand: Expr) -> Expr {
    Expr {
        kind: ExprKind::Unary {
            op,
            operand: Box::new(operand),
        },
        span: Span::default(),
        attributes: vec![],
        leading_comments: vec![],
        trailing_comment: None,
    }
}

/// Helper to create an if expression
fn make_if(condition: Expr, then_branch: Expr, else_branch: Option<Expr>) -> Expr {
    Expr {
        kind: ExprKind::If {
            condition: Box::new(condition),
            then_branch: Box::new(then_branch),
            else_branch: else_branch.map(Box::new),
        },
        span: Span::default(),
        attributes: vec![],
        leading_comments: vec![],
        trailing_comment: None,
    }
}

/// Helper to create a block expression
fn make_block(exprs: Vec<Expr>) -> Expr {
    Expr {
        kind: ExprKind::Block(exprs),
        span: Span::default(),
        attributes: vec![],
        leading_comments: vec![],
        trailing_comment: None,
    }
}

/// Helper to create a list/array expression
fn make_list(elements: Vec<Expr>) -> Expr {
    Expr {
        kind: ExprKind::List(elements),
        span: Span::default(),
        attributes: vec![],
        leading_comments: vec![],
        trailing_comment: None,
    }
}

/// Helper to create a tuple expression
fn make_tuple(elements: Vec<Expr>) -> Expr {
    Expr {
        kind: ExprKind::Tuple(elements),
        span: Span::default(),
        attributes: vec![],
        leading_comments: vec![],
        trailing_comment: None,
    }
}

/// Helper to create an index access expression
fn make_index(object: Expr, index: Expr) -> Expr {
    Expr {
        kind: ExprKind::IndexAccess {
            object: Box::new(object),
            index: Box::new(index),
        },
        span: Span::default(),
        attributes: vec![],
        leading_comments: vec![],
        trailing_comment: None,
    }
}

/// Helper to create a let expression
fn make_let(name: &str, value: Expr, body: Expr) -> Expr {
    Expr {
        kind: ExprKind::Let {
            name: name.to_string(),
            type_annotation: None,
            value: Box::new(value),
            body: Box::new(body),
            is_mutable: false,
            else_block: None,
        },
        span: Span::default(),
        attributes: vec![],
        leading_comments: vec![],
        trailing_comment: None,
    }
}

/// Helper to create a range expression
fn make_range(start: Expr, end: Expr, inclusive: bool) -> Expr {
    Expr {
        kind: ExprKind::Range {
            start: Box::new(start),
            end: Box::new(end),
            inclusive,
        },
        span: Span::default(),
        attributes: vec![],
        leading_comments: vec![],
        trailing_comment: None,
    }
}

/// Helper to create an array/list expression (alias)
fn make_array(elements: Vec<Expr>) -> Expr {
    make_list(elements)
}

/// Helper to create a for expression
fn make_for(var: &str, iter: Expr, body: Expr) -> Expr {
    Expr {
        kind: ExprKind::For {
            var: var.to_string(),
            iter: Box::new(iter),
            body: Box::new(body),
            label: None,
            pattern: None,
        },
        span: Span::default(),
        attributes: vec![],
        leading_comments: vec![],
        trailing_comment: None,
    }
}

/// Helper to create a while expression
fn make_while(condition: Expr, body: Expr) -> Expr {
    Expr {
        kind: ExprKind::While {
            condition: Box::new(condition),
            body: Box::new(body),
            label: None,
        },
        span: Span::default(),
        attributes: vec![],
        leading_comments: vec![],
        trailing_comment: None,
    }
}

/// Helper to create an assign expression
fn make_assign(name: &str, value: Expr) -> Expr {
    Expr {
        kind: ExprKind::Assign {
            target: Box::new(make_ident(name)),
            value: Box::new(value),
        },
        span: Span::default(),
        attributes: vec![],
        leading_comments: vec![],
        trailing_comment: None,
    }
}

/// Helper to create a mutable let expression
fn make_let_mut(name: &str, value: Expr, body: Expr) -> Expr {
    Expr {
        kind: ExprKind::Let {
            name: name.to_string(),
            type_annotation: None,
            value: Box::new(value),
            body: Box::new(body),
            is_mutable: true,
            else_block: None,
        },
        span: Span::default(),
        attributes: vec![],
        leading_comments: vec![],
        trailing_comment: None,
    }
}

/// Helper to create a compound assign expression
fn make_compound_assign(name: &str, op: AstBinaryOp, value: Expr) -> Expr {
    Expr {
        kind: ExprKind::CompoundAssign {
            target: Box::new(make_ident(name)),
            op,
            value: Box::new(value),
        },
        span: Span::default(),
        attributes: vec![],
        leading_comments: vec![],
        trailing_comment: None,
    }
}

/// Helper to create a break expression
fn make_break() -> Expr {
    Expr {
        kind: ExprKind::Break {
            label: None,
            value: None,
        },
        span: Span::default(),
        attributes: vec![],
        leading_comments: vec![],
        trailing_comment: None,
    }
}

/// Helper to create a continue expression
fn make_continue() -> Expr {
    Expr {
        kind: ExprKind::Continue { label: None },
        span: Span::default(),
        attributes: vec![],
        leading_comments: vec![],
        trailing_comment: None,
    }
}

/// Helper to create a unit expression
fn make_unit() -> Expr {
    Expr {
        kind: ExprKind::Literal(Literal::Unit),
        span: Span::default(),
        attributes: vec![],
        leading_comments: vec![],
        trailing_comment: None,
    }
}




// ---------- Additional Helper Functions ----------

/// Helper to create lambda with parameters
fn make_lambda_with_params(params: Vec<String>, body: Expr) -> Expr {
    Expr {
        kind: ExprKind::Lambda {
            params: params
                .into_iter()
                .map(|name| Param {
                    pattern: Pattern::Identifier(name),
                    ty: Type {
                        kind: TypeKind::Named("Any".to_string()),
                        span: Span::default(),
                    },
                    span: Span::default(),
                    is_mutable: false,
                    default_value: None,
                })
                .collect(),
            body: Box::new(body),
        },
        span: Span::default(),
        attributes: vec![],
        leading_comments: vec![],
        trailing_comment: None,
    }
}

/// Helper to create return expression
fn make_return(value: Option<Expr>) -> Expr {
    Expr {
        kind: ExprKind::Return {
            value: value.map(Box::new),
        },
        span: Span::default(),
        attributes: vec![],
        leading_comments: vec![],
        trailing_comment: None,
    }
}

/// Helper to create call expression
fn make_call(func: Expr, args: Vec<Expr>) -> Expr {
    Expr {
        kind: ExprKind::Call {
            func: Box::new(func),
            args,
        },
        span: Span::default(),
        attributes: vec![],
        leading_comments: vec![],
        trailing_comment: None,
    }
}


#[path = "interpreter_tests_part1.rs"]
mod part1;

#[path = "interpreter_tests_part2.rs"]
mod part2;

#[path = "interpreter_tests_part3.rs"]
mod part3;

#[path = "interpreter_tests_part4.rs"]
mod part4;

#[path = "interpreter_tests_part5.rs"]
mod part5;

#[path = "interpreter_tests_part6.rs"]
mod part6;

#[path = "interpreter_tests_part7.rs"]
mod part7;

#[path = "interpreter_tests_part8.rs"]
mod part8;

#[path = "interpreter_tests_part9.rs"]
mod part9;

#[path = "interpreter_tests_part10.rs"]
mod part10;

#[path = "interpreter_tests_part11.rs"]
mod part11;

#[path = "interpreter_tests_part12.rs"]
mod part12;

#[path = "interpreter_tests_part13.rs"]
mod part13;

#[path = "interpreter_tests_part14.rs"]
mod part14;

#[path = "interpreter_tests_part15.rs"]
mod part15;

#[path = "interpreter_tests_part16.rs"]
mod part16;