mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-14 09:52:23 -07:00
Default parameters for procedures
This commit is contained in:
+5
-4
@@ -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