mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-29 10:50:05 +00:00
Add experimental -insert-semicolon functionality to tokenizer and parser
This commit is contained in:
@@ -64,7 +64,7 @@ Type_Info_Boolean :: struct {};
|
||||
Type_Info_Any :: struct {};
|
||||
Type_Info_Type_Id :: struct {};
|
||||
Type_Info_Pointer :: struct {
|
||||
elem: ^Type_Info // nil -> rawptr
|
||||
elem: ^Type_Info, // nil -> rawptr
|
||||
};
|
||||
Type_Info_Procedure :: struct {
|
||||
params: ^Type_Info, // Type_Info_Tuple
|
||||
@@ -296,7 +296,7 @@ Logger_Option :: enum {
|
||||
Line,
|
||||
Procedure,
|
||||
Terminal_Color,
|
||||
Thread_Id
|
||||
Thread_Id,
|
||||
}
|
||||
|
||||
Logger_Options :: bit_set[Logger_Option];
|
||||
|
||||
Reference in New Issue
Block a user