mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 07:38:48 +00:00
Add #no_capture to core:odin/ast
This commit is contained in:
@@ -599,6 +599,7 @@ Field_Flag :: enum {
|
|||||||
Subtype,
|
Subtype,
|
||||||
By_Ptr,
|
By_Ptr,
|
||||||
No_Broadcast,
|
No_Broadcast,
|
||||||
|
No_Capture,
|
||||||
|
|
||||||
Results,
|
Results,
|
||||||
Tags,
|
Tags,
|
||||||
@@ -619,6 +620,7 @@ field_flag_strings := [Field_Flag]string{
|
|||||||
.Subtype = "#subtype",
|
.Subtype = "#subtype",
|
||||||
.By_Ptr = "#by_ptr",
|
.By_Ptr = "#by_ptr",
|
||||||
.No_Broadcast = "#no_broadcast",
|
.No_Broadcast = "#no_broadcast",
|
||||||
|
.No_Capture = "#no_capture",
|
||||||
|
|
||||||
.Results = "results",
|
.Results = "results",
|
||||||
.Tags = "field tag",
|
.Tags = "field tag",
|
||||||
@@ -634,6 +636,7 @@ field_hash_flag_strings := []struct{key: string, flag: Field_Flag}{
|
|||||||
{"subtype", .Subtype},
|
{"subtype", .Subtype},
|
||||||
{"by_ptr", .By_Ptr},
|
{"by_ptr", .By_Ptr},
|
||||||
{"no_broadcast", .No_Broadcast},
|
{"no_broadcast", .No_Broadcast},
|
||||||
|
{"no_capture", .No_Capture},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user