Added WYSIWYG odin parser file
This commit is contained in:
parent
fb6d66140e
commit
0622add196
17
code/parser_odin_wysiwyg.odin
Normal file
17
code/parser_odin_wysiwyg.odin
Normal file
@ -0,0 +1,17 @@
|
||||
/* Parser: Odin Frontend AST (WYSIWYG)
|
||||
This is a parser to generate and manage a WYSIWYG variant of an Odin AST.
|
||||
The AST is naturally meant to be used for frontend interface, not backend.
|
||||
*/
|
||||
package sectr
|
||||
|
||||
PF_Odin_TokenType :: enum u32 {
|
||||
placeholder,
|
||||
}
|
||||
|
||||
POdin_Token :: struct {
|
||||
placeholder : int,
|
||||
}
|
||||
|
||||
POdin_AST :: struct {
|
||||
placeholder : int,
|
||||
}
|
Loading…
Reference in New Issue
Block a user