-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathlexer.erb.py
82 lines (79 loc) · 3.04 KB
/
lexer.erb.py
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from pygments.lexer import RegexLexer, bygroups, include
from pygments.token import \
Text, Comment, Literal, Operator, Keyword, Name, String
class GherkinLexer(RegexLexer):
"""
For `Gherkin <http://cukes.info/>` syntax.
"""
name = 'Gherkin'
aliases = ['Cucumber', 'cucumber', 'Gherkin', 'gherkin']
filenames = ['*.feature']
mimetypes = ['text/x-gherkin']
feature_keywords = ur'^(<%= Gherkin::I18n.keyword_regexp(:feature) %>)(:)(.*)$'
feature_element_keywords = ur'^(\s*)(<%= Gherkin::I18n.keyword_regexp(:background, :scenario, :scenario_outline) %>)(:)(.*)$'
examples_keywords = ur'^(\s*)(<%= Gherkin::I18n.keyword_regexp(:examples) %>)(:)(.*)$'
step_keywords = ur'^(\s*)(<%= Gherkin::I18n.keyword_regexp(:step) %>)'
tokens = {
'comments': [
(r'#.*$', Comment),
],
'multiline_descriptions' : [
(step_keywords, Keyword, "#pop"),
include('comments'),
(r"(\s|.)", Name.Constant),
],
'multiline_descriptions_on_stack' : [
(step_keywords, Keyword, "#pop:2"),
include('comments'),
(r"(\s|.)", Name.Constant),
],
'scenario_table_description': [
(r"\s+\|", Text, 'scenario_table_header'),
include('comments'),
(r"(\s|.)", Name.Constant),
],
'scenario_table_header': [
(r"\s+\|\s*$", Text, "#pop:2"),
(r"(\s+\|\s*)(#.*)$", bygroups(Text, Comment), "#pop:2"),
include('comments'),
(r"\s+\|", Text),
(r"[^\|]", Name.Variable),
],
'scenario_sections_on_stack': [
(feature_element_keywords, bygroups(Text, Name.Class, Name.Class, Name.Constant), "multiline_descriptions_on_stack"),
],
'narrative': [
include('scenario_sections_on_stack'),
(r"(\s|.)", Name.Builtin),
],
'table_vars': [
(r'(<[^>]*>)', bygroups(Name.Variable)),
],
'string': [
include('table_vars'),
(r'(\s|.)', String),
],
'py_string': [
(r'"""', String, "#pop"),
include('string'),
],
'double_string': [
(r'"', String, "#pop"),
include('string'),
],
'root': [
(r'\n', Text),
include('comments'),
(r'"""', String, "py_string"),
(r'"', String, "double_string"),
include('table_vars'),
(r'@[^@\s]+', Name.Namespace),
(step_keywords, bygroups(Text, Keyword)),
(feature_keywords, bygroups(Name.Class, Name.Class, Name.Constant), 'narrative'),
(feature_element_keywords, bygroups(Text, Name.Class, Name.Class, Name.Constant), "multiline_descriptions"),
(examples_keywords, bygroups(Text, Name.Class, Name.Class, Name.Constant), "scenario_table_description"),
(r'(\s|.)', Text),
]
}