mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-03 14:18:47 +00:00
Move Flag_To_Letter to core:text/regex/common
This commit is contained in:
@@ -25,3 +25,14 @@ Flag :: enum u8 {
|
||||
}
|
||||
|
||||
Flags :: bit_set[Flag; u8]
|
||||
|
||||
@(rodata)
|
||||
Flag_To_Letter := #sparse[Flag]u8 {
|
||||
.Global = 'g',
|
||||
.Multiline = 'm',
|
||||
.Case_Insensitive = 'i',
|
||||
.Ignore_Whitespace = 'x',
|
||||
.Unicode = 'u',
|
||||
.No_Capture = 'n',
|
||||
.No_Optimization = '-',
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user