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
#![cfg(any(
    not(any(
        feature = "parser_tests",
        feature = "analyzer_tests",
        feature = "codegen_tests",
        feature = "interpreter_tests",
        feature = "conformance_tests",
        feature = "integration_tests",
    )),
    feature = "analyzer_tests",
))]

//! TDD: Function argument generation with 3-layer ownership system
//!
//! Tests for generate_function_arguments() migration.
//! Replaces ad-hoc auto-borrow/deref/clone logic with systematic approach.
//!
//! Layer 1: Track ownership from variables/parameters
//! Layer 2: Apply Copy semantics (effective_ownership)
//! Layer 3: Determine required coercion (RustCoercionRules)

#[path = "common/test_utils.rs"]
mod test_utils;

// =============================================================================
// Auto-borrow: Owned → Borrowed param
// =============================================================================

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_fn_arg_auto_borrow() {
    let src = r#"
pub fn takes_ref(s: string) {}
pub fn caller(s: string) {
    takes_ref(s)
}
"#;
    let (result, success) = test_utils::compile_single_check(src);
    let err = if !success { &result } else { "" };
    assert!(success, "Must compile. Error:\n{}", err);
    // Ownership inference may infer s as &str; either takes_ref(&s) or takes_ref(s) is correct
    assert!(
        result.contains("takes_ref(&s)") || result.contains("takes_ref(s)"),
        "Should handle borrow. Got:\n{}",
        result
    );
}

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_fn_arg_auto_borrow_mut() {
    let src = r#"
pub fn takes_mut(mut n: i32) {}
pub fn caller(mut n: i32) {
    takes_mut(n)
}
"#;
    let (result, success) = test_utils::compile_single_check(src);
    let err = if !success { &result } else { "" };
    assert!(success, "Must compile. Error:\n{}", err);
    assert!(
        result.contains("takes_mut(&mut n)"),
        "Should auto-borrow mut. Got:\n{}",
        result
    );
}

// =============================================================================
// Auto-deref/copy: Borrowed Copy → Owned param
// =============================================================================

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_fn_arg_auto_deref_copy() {
    let src = r#"
pub fn takes_owned(x: i32) {}
pub fn caller(x: i32) {
    takes_owned(x)
}
"#;
    let (result, success) = test_utils::compile_single_check(src);
    let err = if !success { &result } else { "" };
    assert!(success, "Must compile. Error:\n{}", err);
    // &i32 to i32: may deref, clone (Copy), or pass through — all valid
    assert!(
        result.contains("takes_owned(x)")
            || result.contains("takes_owned(*x)")
            || result.contains("takes_owned((x).clone())")
            || result.contains("takes_owned(x.clone())"),
        "Copy type in function arg. Got:\n{}",
        result
    );
}

// =============================================================================
// Auto-clone: Borrowed non-Copy → Owned param
// =============================================================================

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_fn_arg_noncopy_needs_clone() {
    let src = r#"
pub fn takes_owned(s: string) {}
pub fn caller(s: string) {
    takes_owned(s)
}
"#;
    let (result, success) = test_utils::compile_single_check(src);
    let err = if !success { &result } else { "" };
    assert!(success, "Must compile. Error:\n{}", err);
    // Read-only string params infer &str; call may pass &s, s, or clone
    assert!(
        result.contains(".clone()")
            || result.contains("takes_owned(s)")
            || result.contains("takes_owned(&s)"),
        "String param coercion at call site. Got:\n{}",
        result
    );
}

// =============================================================================
// String literal handling
// =============================================================================

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_fn_arg_string_literal_to_owned() {
    let src = r#"
pub fn takes_string(s: string) {}
pub fn caller() {
    takes_string("hello")
}
"#;
    let (result, success) = test_utils::compile_single_check(src);
    let err = if !success { &result } else { "" };
    assert!(success, "Must compile. Error:\n{}", err);
    // String literal: may add .to_string() or pass directly; &"hello" also valid
    assert!(
        result.contains("\"hello\"") || result.contains("hello"),
        "String literal in call. Got:\n{}",
        result
    );
}

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_fn_arg_string_literal_to_borrowed() {
    let src = r#"
pub fn takes_ref(s: string) {}
pub fn caller() {
    takes_ref("hello")
}
"#;
    let (result, success) = test_utils::compile_single_check(src);
    let err = if !success { &result } else { "" };
    assert!(success, "Must compile. Error:\n{}", err);
    // String literal to &str: takes_ref("hello") or takes_ref(&"hello") both work
    assert!(
        result.contains("takes_ref(\"hello\")") || result.contains("takes_ref(&\"hello\")"),
        "String literal to &str param. Got:\n{}",
        result
    );
}

// =============================================================================
// Float type inference
// =============================================================================

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_fn_arg_float_inference_f32() {
    let src = r#"
pub fn foo(x: f32) {}
pub fn caller() {
    foo(1.0)
}
"#;
    let (result, success) = test_utils::compile_single_check(src);
    let err = if !success { &result } else { "" };
    assert!(success, "Must compile. Error:\n{}", err);
    assert!(
        result.contains("1.0_f32") || result.contains("1_f32"),
        "Float literal should infer f32 from param. Got:\n{}",
        result
    );
}

// =============================================================================
// Copy type no borrow
// =============================================================================

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_fn_arg_copy_no_extra_borrow() {
    let src = r#"
pub fn takes_int(x: i32) -> i32 { x }
pub fn caller(n: i32) -> i32 {
    takes_int(n)
}
"#;
    let (result, success) = test_utils::compile_single_check(src);
    let err = if !success { &result } else { "" };
    assert!(success, "Must compile. Error:\n{}", err);
    assert!(
        result.contains("takes_int(n)") && !result.contains("takes_int(&n)"),
        "Copy type should not add &. Got:\n{}",
        result
    );
}

// =============================================================================
// Field access from borrowed
// =============================================================================

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_fn_arg_borrowed_field_copy() {
    let src = r#"
pub struct Item { pub id: i32 }
pub fn takes_id(id: i32) {}
pub fn caller(items: Vec<Item>) {
    takes_id(items[0].id)
}
"#;
    let (success, _result, err) = test_utils::compile_via_cli(src);
    assert!(success, "Must compile. Error:\n{}", err);
}

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_fn_arg_borrowed_field_noncopy() {
    // Explicit & to ensure correct type - 3-layer handles & when needed
    let src = r#"
pub struct Item { pub name: string }
pub fn takes_name(name: string) {}
pub fn caller(items: Vec<Item>) {
    takes_name(items[0].name)
}
"#;
    let (success, _result, err) = test_utils::compile_via_cli(src);
    assert!(success, "Must compile. Error:\n{}", err);
}

// =============================================================================
// Multiple params
// =============================================================================

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_fn_arg_mixed_ownership() {
    let src = r#"
pub fn mixed(a: i32, b: i32, c: string) {}
pub fn caller(x: i32, y: i32, z: string) {
    mixed(x, y, z)
}
"#;
    let (success, _result, err) = test_utils::compile_via_cli(src);
    assert!(success, "Must compile. Error:\n{}", err);
}

// =============================================================================
// No signature fallback
// =============================================================================

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_fn_arg_no_signature_passthrough() {
    let src = r#"
pub fn unknown(a: i32, b: string) {}
pub fn caller(x: i32, s: string) {
    unknown(x, s)
}
"#;
    let (success, _result, err) = test_utils::compile_via_cli(src);
    assert!(success, "Must compile. Error:\n{}", err);
}

// =============================================================================
// Constructor (new) heuristic
// =============================================================================

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_fn_arg_constructor_string() {
    let src = r#"
pub struct Widget { name: string }
pub fn new(name: string) -> Widget { Widget { name } }
pub fn caller() {
    let w = new("test")
}
"#;
    let (success, _result, err) = test_utils::compile_via_cli(src);
    assert!(success, "Must compile. Error:\n{}", err);
}

// =============================================================================
// For-loop iterator variable
// =============================================================================

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_fn_arg_for_loop_borrowed() {
    // Explicit & for field from borrowed iterator - 3-layer handles coercion
    let src = r#"
pub struct Item { pub id: string }
pub fn process(id: string) {}
pub fn caller(items: Vec<Item>) {
    for item in items {
        process(item.id)
    }
}
"#;
    let (success, _result, err) = test_utils::compile_via_cli(src);
    assert!(success, "Must compile. Error:\n{}", err);
}

// =============================================================================
// Format macro in args
// =============================================================================

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_fn_arg_format_macro() {
    // format! returns String; greet takes &str - 3-layer adds & when needed
    let src = r#"
pub fn greet(msg: string) {}
pub fn caller(name: string) {
    let s = format!("Hello {}", name)
    greet(s)
}
"#;
    let (result, success) = test_utils::compile_single_check(src);
    let err = if !success { &result } else { "" };
    assert!(success, "Must compile. Error:\n{}", err);
    // format! expands to write! in generated Rust
    assert!(
        result.contains("format!") || result.contains("write!") || result.contains("Hello"),
        "Format/write macro or string should be present. Got:\n{}",
        result
    );
}

// =============================================================================
// Vec::new / HashMap::new
// =============================================================================

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_fn_arg_vec_new() {
    let src = r#"
pub fn caller() {
    let v: Vec<i32> = Vec::new()
}
"#;
    let (success, _result, err) = test_utils::compile_via_cli(src);
    assert!(success, "Must compile. Error:\n{}", err);
}

// =============================================================================
// Enum variant constructor
// =============================================================================

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_fn_arg_enum_variant() {
    let src = r#"
pub enum Event {
    Message(string)
}
pub fn caller() {
    let e = Event::Message("hi")
}
"#;
    let (success, _result, err) = test_utils::compile_via_cli(src);
    assert!(success, "Must compile. Error:\n{}", err);
}

// =============================================================================
// Nested call
// =============================================================================

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_fn_arg_nested_call() {
    let src = r#"
pub fn inner(x: i32) -> i32 { x }
pub fn outer(x: i32) {}
pub fn caller(n: i32) {
    outer(inner(n))
}
"#;
    let (success, _result, err) = test_utils::compile_via_cli(src);
    assert!(success, "Must compile. Error:\n{}", err);
}

// =============================================================================
// Regression: temp variable no borrow
// =============================================================================

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_fn_arg_temp_var_no_borrow() {
    let src = r#"
pub fn takes_string(s: string) {}
pub fn caller(name: string) {
    let msg = format!("Hello {}", name)
    takes_string(msg)
}
"#;
    let (result, success) = test_utils::compile_single_check(src);
    let err = if !success { &result } else { "" };
    assert!(success, "Must compile. Error:\n{}", err);
    // Temp from format!() - pass to takes_string
    assert!(
        result.contains("takes_string(") && result.contains("msg"),
        "Temp var in call. Got:\n{}",
        result
    );
}