/tools/dscribe/tokens.d
http://github.com/wilkie/djehuty · D · 195 lines · 180 code · 15 blank · 0 comment · 0 complexity · cd2b85638c7e8b0b1d5510551c724bde MD5 · raw file
- module tools.dscribe.tokens;
- enum Lex {
- StringLiteral,
-
- Operator,
- Delimiter,
- DoubleQuotedString,
- WysiwygString,
- CommentLine,
- CommentBlock,
- Comment,
- CommentNestedStart,
- CommentNestedEnd,
- Whitespace,
- Identifier,
- IntegerLiteral,
- OctalLiteral,
- BinaryLiteral,
- HexLiteral,
-
- FloatLiteral,
- HexFloat,
- DecimalFloat,
- IntegerFloat,
- SpecialLine,
- Div,
- DivAssign,
- Dot,
- DotDot,
- DotDotDot,
- And,
- AndAssign,
- AndAnd,
- Or,
- OrAssign,
- OrOr,
- Sub,
- SubAssign,
- SubSub,
- Add,
- AddAssign,
- AddAdd,
- LessThan,
- LessOrEqual,
- NotEqual,
- GreaterThan,
- GreaterOrEqual,
- Equal,
- Tautology,
- UnorderedLessThan,
- UnorderedLessOrEqual,
- UnorderedNotEqual,
- UnorderedGreaterThan,
- UnorderedGreaterOrEqual,
- UnorderedEqual,
- UnorderedContradiction,
- LeftShift,
- LeftShiftAssign,
- RightShiftAssign,
- RightShiftUnsignedAssign,
- RightShift,
- RightShiftUnsigned,
- Bang,
- LeftParen,
- RightParen,
- LeftBrace,
- RightBrace,
- LeftCurly,
- RightCurly,
- QuestionMark,
- Comma,
- Semicolon,
- Colon,
- Dollar,
- Assign,
- Mul,
- MulAssign,
- Mod,
- ModAssign,
- Xor,
- XorAssign,
- Cat,
- CatAssign,
- Abstract,
- Alias,
- Align,
- Asm,
- Assert,
- Auto,
- Body,
- Bool,
- Break,
- Byte,
- Case,
- Cast,
- Catch,
- Cdouble,
- Cent,
- Cfloat,
- Char,
- Class,
- Const,
- Continue,
- Creal,
- Dchar,
- Debug,
- Default,
- Delegate,
- Delete,
- Deprecated,
- Do,
- Double,
- Else,
- Enum,
- Export,
- Extern,
- False,
- Final,
- Finally,
- Float,
- For,
- Foreach,
- Foreach_reverse,
- Function,
- Goto,
- Idouble,
- If,
- Ifloat,
- Import,
- In,
- Inout,
- Int,
- Interface,
- Invariant,
- Ireal,
- Is,
- Lazy,
- Long,
- Macro,
- Mixin,
- Module,
- New,
- Null,
- Out,
- Override,
- Package,
- Pragma,
- Private,
- Protected,
- Public,
- Real,
- Ref,
- Return,
- Scope,
- Short,
- Static,
- Struct,
- Super,
- Switch,
- Synchronized,
- Template,
- This,
- Throw,
- True,
- Try,
- Typedef,
- Typeid,
- Typeof,
- Ubyte,
- Ucent,
- Uint,
- Ulong,
- Union,
- Unittest,
- Ushort,
- Version,
- Void,
- Volatile,
- Wchar,
- While,
- With,
- }