Added WYSIWYG odin parser file

This commit is contained in:
Edward R. Gonzalez 2024-03-05 10:17:53 -05:00
parent fb6d66140e
commit 0622add196

View 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,
}