Source position: wit.scanner.pp line 33
type TTokenType = ( |
ttUnknown, |
ttWhitespace, |
ttComment, |
ttEOF, |
ttOpenRoundBrace, |
ttCloseRoundBrace, |
ttOpenCurlyBrace, |
ttCloseCurlyBrace, |
ttOpenSquareBrace, |
ttCLoseSquareBrace, |
ttColon, |
ttSemicolon, |
ttComma, |
ttEqual, |
ttDot, |
ttPlus, |
ttMinus, |
ttStar, |
ttDiv, |
ttLessThan, |
ttGreaterThan, |
ttAt, |
ttArrow, |
ttNumber, |
ttStringLiteral, |
ttIdentifier, |
ttAs, |
ttAsync, |
ttBool, |
ttBorrow, |
ttChar, |
ttConstructor, |
ttEnum, |
ttExport, |
ttF32, |
ttF64, |
ttFlags, |
ttFrom, |
ttFunc, |
ttFuture, |
ttImport, |
ttInclude, |
ttInterface, |
ttList, |
ttOption, |
ttOwn, |
ttPackage, |
ttRecord, |
ttResource, |
ttResult, |
ttS8, |
ttS16, |
ttS32, |
ttS64, |
ttStatic, |
ttStream, |
ttStringType, |
ttTuple, |
ttType, |
ttU8, |
ttU16, |
ttU32, |
ttU64, |
ttUse, |
ttVariant, |
ttWith, |
ttWorld |
); |