Add type exports to disassembler

This commit is contained in:
Yoshi Askharoun
2024-02-08 13:32:44 -06:00
parent 42a6ea5795
commit 9a2893a146
4 changed files with 145 additions and 31 deletions
+2
View File
@@ -10,6 +10,8 @@ public static partial class Lexer
public static readonly Parser<string> WordText = Parse.Letter.AtLeastOnce().Text();
public static readonly Parser<string> WholeNumber = Parse.Digit.AtLeastOnce().Text();
public static readonly Parser<string> Uri = Parse.LetterOrDigit.Or(Parse.Chars(":/!._-")).AtLeastOnce().Text();
public static readonly Parser<string> StatementEnd = Parse.Char(';').Return(";").Or(Parse.LineTerminator);