diff options
author | Luke Rasmussen <unknown> | 2018-06-21 13:24:43 +1000 |
---|---|---|
committer | Luke Rasmussen <unknown> | 2018-06-21 13:24:43 +1000 |
commit | 3754f5cfe52357b43f4cf10753cce544c5abf288 (patch) | |
tree | dd06cb3c371a5fd435700e82b7c7f477c3868895 /include/SciLexer.h | |
parent | 23df223d8e7a4ffcd98bd762692eeab0325a1717 (diff) | |
download | scintilla-mirror-3754f5cfe52357b43f4cf10753cce544c5abf288.tar.gz |
Feature [feature-requests:#1185]. Add lexers for SAS and Stata.
Diffstat (limited to 'include/SciLexer.h')
-rw-r--r-- | include/SciLexer.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index f4ef9954b..b6f864c6d 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -136,6 +136,8 @@ #define SCLEX_EDIFACT 121 #define SCLEX_INDENT 122 #define SCLEX_MAXIMA 123 +#define SCLEX_STATA 124 +#define SCLEX_SAS 125 #define SCLEX_AUTOMATIC 1000 #define SCE_P_DEFAULT 0 #define SCE_P_COMMENTLINE 1 @@ -1825,6 +1827,34 @@ #define SCE_EDI_UNA 6 #define SCE_EDI_UNH 7 #define SCE_EDI_BADSEGMENT 8 +#define SCE_STATA_DEFAULT 0 +#define SCE_STATA_COMMENT 1 +#define SCE_STATA_COMMENTLINE 2 +#define SCE_STATA_COMMENTBLOCK 3 +#define SCE_STATA_NUMBER 4 +#define SCE_STATA_OPERATOR 5 +#define SCE_STATA_IDENTIFIER 6 +#define SCE_STATA_STRING 7 +#define SCE_STATA_TYPE 8 +#define SCE_STATA_WORD 9 +#define SCE_STATA_GLOBAL_MACRO 10 +#define SCE_STATA_MACRO 11 +#define SCE_SAS_DEFAULT 0 +#define SCE_SAS_COMMENT 1 +#define SCE_SAS_COMMENTLINE 2 +#define SCE_SAS_COMMENTBLOCK 3 +#define SCE_SAS_NUMBER 4 +#define SCE_SAS_OPERATOR 5 +#define SCE_SAS_IDENTIFIER 6 +#define SCE_SAS_STRING 7 +#define SCE_SAS_TYPE 8 +#define SCE_SAS_WORD 9 +#define SCE_SAS_GLOBAL_MACRO 10 +#define SCE_SAS_MACRO 11 +#define SCE_SAS_MACRO_KEYWORD 12 +#define SCE_SAS_BLOCK_KEYWORD 13 +#define SCE_SAS_MACRO_FUNCTION 14 +#define SCE_SAS_STATEMENT 15 /* --Autogenerated -- end of section automatically generated from Scintilla.iface */ #endif |