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
//! Argument strings for calls: `Call(FieldAccess)` method-style args and plain function args.

mod field_access_method_args;
mod regular_call_arguments;

pub(in crate::codegen::rust) use field_access_method_args::{
    field_access_method_args_fallback, field_access_method_args_with_signature,
};
pub(in crate::codegen::rust) use regular_call_arguments::collect_regular_function_arguments;