mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 01:21:38 -07:00
Hide Regular_Expression values
We don't directly support printing these. To prevent future issues being raised about the pattern being missing if someone tries to print one, hide everything.
This commit is contained in:
@@ -30,8 +30,8 @@ Capture :: struct {
|
||||
}
|
||||
|
||||
Regular_Expression :: struct {
|
||||
flags: Flags,
|
||||
class_data: []virtual_machine.Rune_Class_Data,
|
||||
flags: Flags `fmt:"-"`,
|
||||
class_data: []virtual_machine.Rune_Class_Data `fmt:"-"`,
|
||||
program: []virtual_machine.Opcode `fmt:"-"`,
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user