16 lines
388 B
Odin
16 lines
388 B
Odin
/* Code Agnostic Parser
|
|
This is a 'coding langauge agnostic' parser.
|
|
Its not meant to parse regular textual formats used in natural langauges (paragraphs, sentences, etc).
|
|
It instead is meant to encode constructs significant to most programming languages.
|
|
|
|
AST Types:
|
|
* Word
|
|
* Operator
|
|
* BracketsScope
|
|
|
|
This parser supports parsing whitepsace asts or raw text content.
|
|
*/
|
|
package sectr
|
|
|
|
|