windjammer 0.48.0

A simple language inspired by Go, Ruby, and Elixir that transpiles to Rust - 80% of Rust's power with 20% of the complexity
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
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
//! Struct fields, collections, index assignment, and enum-variant “stores” a value.

use crate::parser::*;

use super::Analyzer;

impl<'ast> Analyzer<'ast> {
    /// Check if an expression stores a parameter by value.
    /// Matches direct identifier use, wrapping in Some/Ok/Err, enum variant constructors,
    /// tuples, and struct literals containing the parameter.
    pub(crate) fn expression_stores_identifier(&self, name: &str, expr: &Expression) -> bool {
        match expr {
            Expression::Identifier { name: id, .. } => id == name,
            Expression::Call {
                function,
                arguments,
                ..
            } => {
                if let Expression::Identifier { name: fn_name, .. } = &**function {
                    let is_constructor =
                        matches!(fn_name.as_str(), "Some" | "Ok" | "Err") || fn_name.contains("::");
                    if is_constructor {
                        return arguments
                            .iter()
                            .any(|(_label, arg)| self.expression_stores_identifier(name, arg));
                    }
                }
                false
            }
            Expression::Tuple { elements, .. } => elements
                .iter()
                .any(|el| self.expression_stores_identifier(name, el)),
            Expression::StructLiteral { fields, .. } => fields
                .iter()
                .any(|(_, v)| self.expression_stores_identifier(name, v)),
            Expression::Array { elements, .. } => elements
                .iter()
                .any(|el| self.expression_stores_identifier(name, el)),
            _ => false,
        }
    }

    pub(crate) fn is_stored(&self, name: &str, statements: &[&'ast Statement<'ast>]) -> bool {
        // Check if the parameter is stored in a struct field or collection
        for stmt in statements {
            match stmt {
                Statement::Let {
                    value: Expression::StructLiteral { fields, .. },
                    ..
                } => {
                    for (_field_name, field_expr) in fields {
                        if self.expression_stores_identifier(name, field_expr) {
                            return true;
                        }
                    }
                }
                Statement::Return {
                    value: Some(Expression::StructLiteral { fields, .. }),
                    ..
                } => {
                    // Check if parameter is stored (moved) in a returned struct literal.
                    // Field access like `Data { value: d.value }` borrows a field; it does not
                    // store the whole parameter and should not force Owned.
                    for (_, field_expr) in fields {
                        if self.expression_stores_identifier(name, field_expr) {
                            return true;
                        }
                    }
                }
                Statement::Expression {
                    expr: Expression::StructLiteral { fields, .. },
                    ..
                } => {
                    for (_, field_expr) in fields {
                        if self.expression_stores_identifier(name, field_expr) {
                            return true;
                        }
                    }
                }
                Statement::Assignment {
                    target: Expression::FieldAccess { object, .. },
                    value,
                    ..
                } => {
                    // Check if the parameter is assigned to a struct field, either directly
                    // or wrapped in Some/Enum constructors/tuples.
                    //
                    // Direct: obj.field = param
                    // Wrapped: obj.field = Some(param)
                    // Enum: obj.field = Enum::Variant(param)
                    if matches!(&**object, Expression::Identifier { .. }) {
                        if self.expression_stores_identifier(name, value) {
                            return true;
                        }
                    }
                }
                // Check if parameter is stored via index assignment
                // e.g., self.slots[i] = item
                // e.g., self.slots[i] = Some(ItemStack::new(item, qty))
                Statement::Assignment {
                    target: Expression::Index { .. },
                    value,
                    ..
                } => {
                    if self.expression_stores_identifier(name, value) {
                        return true;
                    }
                }
                Statement::Expression {
                    expr:
                        Expression::MethodCall {
                            object,
                            method,
                            arguments,
                            ..
                        },
                    ..
                } => {
                    let is_storage_method =
                        super::super::stdlib_method_traits::is_storage_method(method);

                    if is_storage_method {
                        // Check for storage method calls on ANY object:
                        // - self.field.push(param)
                        // - self.field.push((param, other))  ← tuple wrapping
                        // - self.field.push(Enum::Variant(param))  ← enum wrapping
                        // - local_var.push(param)
                        let is_on_field_or_var =
                            matches!(&**object, Expression::FieldAccess { .. })
                                || matches!(&**object, Expression::Identifier { .. });

                        if is_on_field_or_var {
                            for (_label, arg) in arguments {
                                if self.expression_stores_identifier(name, arg) {
                                    return true;
                                }
                            }
                        }

                        // TDD FIX: Also check for method calls on LOCAL struct fields: local_var.field.push(param)
                        // e.g., choice.conditions.push(condition) where choice is a local variable
                        if let Expression::FieldAccess {
                            object: field_obj, ..
                        } = &**object
                        {
                            // Check if it's a local variable (not self)
                            if matches!(&**field_obj, Expression::Identifier { name: id, .. } if id != "self")
                            {
                                for (_label, arg) in arguments {
                                    if matches!(arg, Expression::Identifier { name: id, .. } if id == name)
                                    {
                                        return true;
                                    }
                                }
                            }
                        }
                    }

                    // Also check for method calls on local variables: props.push(Property { name, ... })
                    // The parameter might be used in a struct literal passed as an argument
                    for (_label, arg) in arguments {
                        if let Expression::StructLiteral { fields, .. } = arg {
                            for (_field_name, field_expr) in fields {
                                if self.expression_uses_identifier(name, field_expr) {
                                    return true;
                                }
                            }
                        }
                    }

                    // Check for push/insert with a constructor call: vec.push(Node::new(param, ...))
                    // The parameter is being stored if passed to a constructor that stores it
                    if is_storage_method {
                        for (_label, arg) in arguments {
                            if let Expression::Call {
                                arguments: call_args,
                                ..
                            } = arg
                            {
                                for (_call_label, call_arg) in call_args {
                                    if matches!(call_arg, Expression::Identifier { name: id, .. } if id == name)
                                    {
                                        return true;
                                    }
                                }
                            }
                        }
                    }
                }
                // Recursively check if/else bodies for storage operations
                Statement::If {
                    then_block,
                    else_block,
                    ..
                } => {
                    if self.is_stored(name, then_block) {
                        return true;
                    }
                    if let Some(else_stmts) = else_block {
                        if self.is_stored(name, else_stmts) {
                            return true;
                        }
                    }
                }
                // Recursively check loop bodies
                Statement::While { body, .. } | Statement::For { body, .. } => {
                    if self.is_stored(name, body) {
                        return true;
                    }
                }
                // General case: check any statement for enum variant constructors
                // that consume the parameter. Covers patterns like:
                //   let x = Func(EnumType::Variant(param, ...))
                //   let x = Func(format!(..., param), &EnumType::Variant(param, ...))
                _ => {
                    if self.stmt_has_enum_variant_consuming(name, stmt) {
                        return true;
                    }
                }
            }
        }
        false
    }

    /// Check if a statement contains an enum variant constructor that consumes a parameter.
    /// Recursively scans all expressions within the statement.
    pub(crate) fn stmt_has_enum_variant_consuming(
        &self,
        name: &str,
        stmt: &Statement<'ast>,
    ) -> bool {
        match stmt {
            Statement::Let { value, .. } => self.expr_has_enum_variant_consuming(name, value),
            Statement::Expression { expr, .. } => self.expr_has_enum_variant_consuming(name, expr),
            Statement::Return {
                value: Some(expr), ..
            } => self.expr_has_enum_variant_consuming(name, expr),
            Statement::Assignment { value, .. } => {
                self.expr_has_enum_variant_consuming(name, value)
            }
            _ => false,
        }
    }

    /// Recursively check if an expression contains an enum variant constructor
    /// (function call where name contains "::") that has the parameter as a direct argument.
    pub(crate) fn expr_has_enum_variant_consuming(
        &self,
        name: &str,
        expr: &Expression<'ast>,
    ) -> bool {
        match expr {
            Expression::Call {
                function,
                arguments,
                ..
            } => {
                let is_enum_variant = if let Expression::Identifier { name: fn_name, .. } = function
                {
                    Self::looks_like_enum_variant_constructor(fn_name)
                } else if let Expression::FieldAccess { field, .. } = function {
                    Self::looks_like_enum_variant_constructor(field)
                } else {
                    false
                };

                if is_enum_variant {
                    for (_label, arg) in arguments {
                        if matches!(arg, Expression::Identifier { name: id, .. } if id == name) {
                            return true;
                        }
                    }
                }

                // Recurse into all arguments
                for (_label, arg) in arguments {
                    if self.expr_has_enum_variant_consuming(name, arg) {
                        return true;
                    }
                }
                // Recurse into function expression
                self.expr_has_enum_variant_consuming(name, function)
            }
            Expression::Unary { operand, .. } => {
                self.expr_has_enum_variant_consuming(name, operand)
            }
            Expression::Block { statements, .. } => {
                for s in statements {
                    if self.stmt_has_enum_variant_consuming(name, s) {
                        return true;
                    }
                }
                false
            }
            Expression::Tuple { elements, .. } => {
                for el in elements {
                    if self.expr_has_enum_variant_consuming(name, el) {
                        return true;
                    }
                }
                false
            }
            _ => false,
        }
    }

    /// Check if a qualified name like "Type::Variant" looks like an enum variant constructor
    /// rather than a static method call. Enum variants use PascalCase after "::"
    /// (e.g., Option::Some, Color::Custom), while methods use snake_case
    /// (e.g., FpsCamera::collides_aabb, Vec3::new).
    pub(crate) fn looks_like_enum_variant_constructor(qualified_name: &str) -> bool {
        if let Some(pos) = qualified_name.rfind("::") {
            let after_colons = &qualified_name[pos + 2..];
            after_colons
                .chars()
                .next()
                .is_some_and(|c| c.is_ascii_uppercase())
        } else {
            false
        }
    }

    pub(crate) fn struct_field_is_text_type(&self, struct_name: &str, field_name: &str) -> bool {
        let lookup = |name: &str| {
            self.global_struct_field_types
                .get(name)
                .and_then(|fields| fields.get(field_name))
        };
        lookup(struct_name)
            .or_else(|| struct_name.rsplit("::").next().and_then(lookup))
            .is_some_and(Self::is_windjammer_text_param_type)
    }

    /// True when the parameter is stored only via struct literals into `string` fields
    /// (e.g. `User { name }`), where codegen emits `.to_string()` at the assignment site.
    /// Field assignment (`self.name = name`) and collection push are excluded — those use owned `String`.
    pub(crate) fn is_stored_via_text_struct_fields_only(
        &self,
        param_name: &str,
        body: &[&Statement],
    ) -> bool {
        if !self.stores_in_text_struct_literals(param_name, body) {
            return false;
        }
        !self.has_non_text_struct_field_storage(param_name, body)
    }

    /// True when the parameter appears in a struct literal field that stores into a `string` field.
    fn stores_in_text_struct_literals(&self, param_name: &str, statements: &[&Statement]) -> bool {
        for stmt in statements {
            if self.stmt_stores_in_text_struct_literals(param_name, stmt) {
                return true;
            }
        }
        false
    }

    fn stmt_stores_in_text_struct_literals(&self, param_name: &str, stmt: &Statement) -> bool {
        match stmt {
            Statement::Let {
                value: Expression::StructLiteral { name, fields, .. },
                ..
            }
            | Statement::Return {
                value: Some(Expression::StructLiteral { name, fields, .. }),
                ..
            }
            | Statement::Expression {
                expr: Expression::StructLiteral { name, fields, .. },
                ..
            } => fields.iter().any(|(field_name, fv)| {
                self.expression_stores_identifier(param_name, fv)
                    && self.struct_field_is_text_type(name, field_name)
            }),
            Statement::If {
                then_block,
                else_block,
                ..
            } => {
                self.stores_in_text_struct_literals(param_name, then_block)
                    || else_block
                        .as_ref()
                        .is_some_and(|b| self.stores_in_text_struct_literals(param_name, b))
            }
            Statement::While { body, .. } | Statement::For { body, .. } => {
                self.stores_in_text_struct_literals(param_name, body)
            }
            _ => false,
        }
    }

    fn has_non_text_struct_field_storage(
        &self,
        param_name: &str,
        statements: &[&Statement],
    ) -> bool {
        for stmt in statements {
            if self.stmt_has_non_text_struct_field_storage(param_name, stmt) {
                return true;
            }
        }
        false
    }

    fn stmt_has_non_text_struct_field_storage(&self, param_name: &str, stmt: &Statement) -> bool {
        match stmt {
            Statement::Return {
                value: Some(expr), ..
            }
            | Statement::Expression { expr, .. }
            | Statement::Let { value: expr, .. } => {
                self.expr_has_non_text_struct_field_storage(param_name, expr)
            }
            Statement::If {
                then_block,
                else_block,
                ..
            } => {
                self.has_non_text_struct_field_storage(param_name, then_block)
                    || else_block
                        .as_ref()
                        .is_some_and(|b| self.has_non_text_struct_field_storage(param_name, b))
            }
            Statement::While { body, .. } | Statement::For { body, .. } => {
                self.has_non_text_struct_field_storage(param_name, body)
            }
            _ => self.stmt_has_enum_variant_consuming(param_name, stmt),
        }
    }

    fn expr_has_non_text_struct_field_storage(&self, param_name: &str, expr: &Expression) -> bool {
        match expr {
            Expression::StructLiteral { name, fields, .. } => {
                fields.iter().any(|(field_name, fv)| {
                    if !self.expression_stores_identifier(param_name, fv) {
                        return false;
                    }
                    // Shorthand `User { name }` — param moves into field; codegen coerces &str → String.
                    if self.expr_is_param_or_ref_to_param(param_name, fv) {
                        return false;
                    }
                    !self.struct_field_is_text_type(name, field_name)
                })
            }
            Expression::MethodCall {
                method, arguments, ..
            } => {
                if super::super::stdlib_method_traits::is_storage_method(method) {
                    return arguments
                        .iter()
                        .any(|(_, arg)| self.expression_stores_identifier(param_name, arg));
                }
                arguments
                    .iter()
                    .any(|(_, arg)| self.expr_has_non_text_struct_field_storage(param_name, arg))
            }
            Expression::Call { arguments, .. } => arguments
                .iter()
                .any(|(_, arg)| self.expr_has_non_text_struct_field_storage(param_name, arg)),
            Expression::Block { statements, .. } => {
                self.has_non_text_struct_field_storage(param_name, statements)
            }
            _ => self.expression_stores_identifier(param_name, expr),
        }
    }
}