Created
March 22, 2025 01:47
-
-
Save sambacha/6481a5befc4da3cff33867493f26938d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TopLevelObject = 'object' '{' Code? ( Object | Data )* '}' | |
Object = 'object' StringLiteral '{' Code? ( Object | Data )* '}' | |
Code = 'code' Block | |
Data = 'data' StringLiteral HexLiteral | |
HexLiteral = 'hex' ('"' ([0-9a-fA-F]{2})* '"' | '\'' ([0-9a-fA-F]{2})* '\'') | |
StringLiteral = '"' ([^"\r\n\\] | '\\' .)* '"' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment