Skip to content

Instantly share code, notes, and snippets.

@sambacha
Created March 22, 2025 01:47
Show Gist options
  • Save sambacha/6481a5befc4da3cff33867493f26938d to your computer and use it in GitHub Desktop.
Save sambacha/6481a5befc4da3cff33867493f26938d to your computer and use it in GitHub Desktop.
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