diff options
Diffstat (limited to 'Source/SPEditorTokens.h')
-rw-r--r-- | Source/SPEditorTokens.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Source/SPEditorTokens.h b/Source/SPEditorTokens.h new file mode 100644 index 00000000..1d854e10 --- /dev/null +++ b/Source/SPEditorTokens.h @@ -0,0 +1,17 @@ +/* + * SPEditorTokens.h + * sequel-pro + * + * Created by Jakob on 3/15/09. + * + * This file defines all the tokens used for parsing the source code + */ + +#define SPT_DOUBLE_QUOTED_TEXT 1 +#define SPT_SINGLE_QUOTED_TEXT 2 +#define SPT_BACKTICK_QUOTED_TEXT 3 +#define SPT_RESERVED_WORD 4 +#define SPT_COMMENT 5 +#define SPT_WHITESPACE 6 +#define SPT_WORD 7 +#define SPT_OTHER 8
\ No newline at end of file |