diff options
author | nyamatongwe <unknown> | 2007-12-31 23:56:11 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2007-12-31 23:56:11 +0000 |
commit | 042e31c6f734d8867d3ec1dbaac0eb9c253a5856 (patch) | |
tree | b4efc606bdcf84f0ec13115d47fb7922aa34ed01 /include | |
parent | 9ba30ef6b9b2e91ec2034be50850bab0e3e393e7 (diff) | |
download | scintilla-mirror-042e31c6f734d8867d3ec1dbaac0eb9c253a5856.tar.gz |
Added Magik lexer.
Diffstat (limited to 'include')
-rw-r--r-- | include/SciLexer.h | 18 | ||||
-rw-r--r-- | include/Scintilla.iface | 20 |
2 files changed, 38 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index 2354aa876..1325c6ea2 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -99,6 +99,7 @@ #define SCLEX_ABAQUS 84 #define SCLEX_ASYMPTOTE 85 #define SCLEX_R 86 +#define SCLEX_MAGIK 87 #define SCLEX_AUTOMATIC 1000 #define SCE_P_DEFAULT 0 #define SCE_P_COMMENTLINE 1 @@ -1203,6 +1204,23 @@ #define SCE_R_IDENTIFIER 9 #define SCE_R_INFIX 10 #define SCE_R_INFIXEOL 11 +#define SCE_MAGIK_DEFAULT 0 +#define SCE_MAGIK_COMMENT 1 +#define SCE_MAGIK_HYPER_COMMENT 16 +#define SCE_MAGIK_STRING 2 +#define SCE_MAGIK_CHARACTER 3 +#define SCE_MAGIK_NUMBER 4 +#define SCE_MAGIK_IDENTIFIER 5 +#define SCE_MAGIK_OPERATOR 6 +#define SCE_MAGIK_FLOW 7 +#define SCE_MAGIK_CONTAINER 8 +#define SCE_MAGIK_BRACKET_BLOCK 9 +#define SCE_MAGIK_BRACE_BLOCK 10 +#define SCE_MAGIK_SQBRACKET_BLOCK 11 +#define SCE_MAGIK_UNKNOWN_KEYWORD 12 +#define SCE_MAGIK_KEYWORD 13 +#define SCE_MAGIK_PRAGMA 14 +#define SCE_MAGIK_SYMBOL 15 #define SCLEX_ASP 29 #define SCLEX_PHP 30 //--Autogenerated -- end of section automatically generated from Scintilla.iface diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 0ca831b59..d4e380526 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1991,6 +1991,7 @@ val SCLEX_PROGRESS=83 val SCLEX_ABAQUS=84 val SCLEX_ASYMPTOTE=85 val SCLEX_R=86 +val SCLEX_MAGIK=87 # When a lexer specifies its language as SCLEX_AUTOMATIC it receives a # value assigned in sequence from SCLEX_AUTOMATIC+1. @@ -3256,6 +3257,25 @@ val SCE_R_OPERATOR=8 val SCE_R_IDENTIFIER=9 val SCE_R_INFIX=10 val SCE_R_INFIXEOL=11 +# Lexical state for SCLEX_MAGIKSF +lex MagikSF=SCLEX_MAGIKSF SCE_MAGIK_ +val SCE_MAGIK_DEFAULT=0 +val SCE_MAGIK_COMMENT=1 +val SCE_MAGIK_HYPER_COMMENT=16 +val SCE_MAGIK_STRING=2 +val SCE_MAGIK_CHARACTER=3 +val SCE_MAGIK_NUMBER=4 +val SCE_MAGIK_IDENTIFIER=5 +val SCE_MAGIK_OPERATOR=6 +val SCE_MAGIK_FLOW=7 +val SCE_MAGIK_CONTAINER=8 +val SCE_MAGIK_BRACKET_BLOCK=9 +val SCE_MAGIK_BRACE_BLOCK=10 +val SCE_MAGIK_SQBRACKET_BLOCK=11 +val SCE_MAGIK_UNKNOWN_KEYWORD=12 +val SCE_MAGIK_KEYWORD=13 +val SCE_MAGIK_PRAGMA=14 +val SCE_MAGIK_SYMBOL=15 # Events |