mirror of
https://github.com/odin-lang/Odin.git
synced 2026-05-10 22:54:24 +00:00
Default parameters for procedures
This commit is contained in:
@@ -81,10 +81,11 @@ struct Entity {
|
||||
ExactValue value;
|
||||
} Constant;
|
||||
struct {
|
||||
i32 field_index;
|
||||
i32 field_src_index;
|
||||
bool is_immutable;
|
||||
bool is_thread_local;
|
||||
i32 field_index;
|
||||
i32 field_src_index;
|
||||
bool is_immutable;
|
||||
bool is_thread_local;
|
||||
ExactValue default_value;
|
||||
} Variable;
|
||||
struct {
|
||||
bool is_type_alias;
|
||||
|
||||
Reference in New Issue
Block a user