_caml.py
3.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
###############################################################################
# Name: caml.py #
# Purpose: Define Caml syntax for highlighting and other features #
# Author: Cody Precord <cprecord@editra.org> #
# Copyright: (c) 2008 Cody Precord <staff@editra.org> #
# License: wxWindows License #
###############################################################################
"""
FILE: caml.py
AUTHOR: Cody Precord
@summary: Lexer configuration module for Caml
"""
__author__ = "Cody Precord <cprecord@editra.org>"
__svnid__ = "$Id: _caml.py 66108 2010-11-10 21:04:54Z CJP $"
__revision__ = "$Revision: 66108 $"
#-----------------------------------------------------------------------------#
# Imports
import wx
import wx.stc as stc
# Local Imports
import synglob
import syndata
#-----------------------------------------------------------------------------#
#---- Keyword Definitions ----#
# Objective Caml 3 textual keywords
CAML_KW1 = (0, "and as assert asr begin class constraint do done downto else "
"end exception external false for fun function functor if in "
"include inherit initializer land lazy let lor lsl lsr lxor "
"match method mod module mutable new object of open or private "
"rec sig struct then to true try type val virtual when while "
"with")
# Caml optional keywords
CAML_KW2 = (1, "option Some None ignore ref lnot succ pred parser")
# Caml type/library keywords
CAML_KW3 = (2, "array bool char float int list string unit")
#---- End Keyword Definitions ----#
#---- Syntax Style Specs ----#
SYNTAX_ITEMS = [(stc.STC_CAML_CHAR, 'char_style'),
(stc.STC_CAML_COMMENT, 'comment_style'),
(stc.STC_CAML_COMMENT1, 'comment_style'),
(stc.STC_CAML_COMMENT2, 'comment_style'),
(stc.STC_CAML_COMMENT3, 'comment_style'),
(stc.STC_CAML_DEFAULT, 'default_style'),
(stc.STC_CAML_IDENTIFIER, 'default_style'),
(stc.STC_CAML_KEYWORD, 'keyword_style'),
(stc.STC_CAML_KEYWORD2, 'pre_style'),
(stc.STC_CAML_KEYWORD3, 'keyword2_style'),
(stc.STC_CAML_LINENUM, 'number_style'),
(stc.STC_CAML_NUMBER, 'number_style'),
(stc.STC_CAML_OPERATOR, 'operator_style'),
(stc.STC_CAML_STRING, 'string_style'),
(stc.STC_CAML_TAGNAME, 'directive_style')] #STYLE ME
if wx.VERSION >= (2, 9, 0, 0, ''):
SYNTAX_ITEMS.append((stc.STC_CAML_WHITE, 'default_style')) #TODO
#---- Extra Properties ----#
FOLD = ('fold', '1')
#-----------------------------------------------------------------------------#
class SyntaxData(syndata.SyntaxDataBase):
"""SyntaxData object for Caml"""
def __init__(self, langid):
super(SyntaxData, self).__init__(langid)
# Setup
self.SetLexer(stc.STC_LEX_CAML)
def GetKeywords(self):
"""Returns Specified Keywords List """
return [CAML_KW1, CAML_KW2, CAML_KW3]
def GetSyntaxSpec(self):
"""Syntax Specifications """
return SYNTAX_ITEMS
def GetProperties(self):
"""Returns a list of Extra Properties to set """
return [FOLD]
def GetCommentPattern(self):
"""Returns a list of characters used to comment a block of code """
return [u'(*', u'*)']