Add sources

This commit is contained in:
2018-06-05 22:30:22 +02:00
parent e28912dc5e
commit 9b56ec979d
143 changed files with 8636 additions and 0 deletions

34
definitions/keywords.def Normal file
View File

@@ -0,0 +1,34 @@
DEF("namespace", NAMESPACE)
DEF("struct", STRUCT)
DEF("class", CLASS)
DEF("union", UNION)
DEF("enum", ENUM)
DEF("break", BREAK)
DEF("continue", CONTINUE)
DEF("return", RETURN)
DEF("goto", GOTO)
DEF("if", IF)
DEF("else", ELSE)
DEF("switch", SWITCH)
DEF("for", FOR)
DEF("while", WHILE)
DEF("do", DO)
DEF("case", CASE)
DEF("default", DEFAULT)
DEF("try", TRY)
DEF("catch", CATCH)
DEF("template", TEMPLATE)
DEF("using", USING)
DEF("static_assert", STATIC_ASSERT)
DEF("typename", TYPENAME)
DEF("extern", EXTERN)
DEF("asm", ASM)