File: lex.l

package info (click to toggle)
node-jison-lex 0.3.4-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 188 kB
  • sloc: javascript: 1,398; makefile: 5
file content (90 lines) | stat: -rw-r--r-- 4,314 bytes parent folder | download | duplicates (5)
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

NAME              [a-zA-Z_][a-zA-Z0-9_-]*
BR                \r\n|\n|\r

%s indented trail rules
%x code start_condition options conditions action

%%

<action>"/*"(.|\n|\r)*?"*/"           return 'ACTION_BODY';
<action>"//".*                        return 'ACTION_BODY';
<action>"/"[^ /]*?['"{}'][^ ]*?"/"    return 'ACTION_BODY'; // regexp with braces or quotes (and no spaces)
<action>\"("\\\\"|'\"'|[^"])*\"       return 'ACTION_BODY';
<action>"'"("\\\\"|"\'"|[^'])*"'"     return 'ACTION_BODY';
<action>[/"'][^{}/"']+                return 'ACTION_BODY';
<action>[^{}/"']+                     return 'ACTION_BODY';
<action>"{"                           yy.depth++; return '{'
<action>"}"                           yy.depth == 0 ? this.begin('trail') : yy.depth--; return '}'

<conditions>{NAME}                    return 'NAME';
<conditions>">"                       this.popState(); return '>';
<conditions>","                       return ',';
<conditions>"*"                       return '*';

<rules>{BR}+                          /* */
<rules>\s+{BR}+                       /* */
<rules>\s+                            this.begin('indented')
<rules>"%%"                           this.begin('code'); return '%%'
<rules>[a-zA-Z0-9_]+                  return 'CHARACTER_LIT'

<options>{NAME}                       yy.options[yytext] = true
<options>{BR}+                        this.begin('INITIAL')
<options>\s+{BR}+                     this.begin('INITIAL')
<options>\s+                          /* empty */

<start_condition>{NAME}               return 'START_COND'
<start_condition>{BR}+                this.begin('INITIAL')
<start_condition>\s+{BR}+             this.begin('INITIAL')
<start_condition>\s+                  /* empty */

<trail>.*{BR}+                        this.begin('rules')

<indented>"{"                         yy.depth = 0; this.begin('action'); return '{'
<indented>"%{"(.|{BR})*?"%}"          this.begin('trail'); yytext = yytext.substr(2, yytext.length-4);return 'ACTION'
"%{"(.|{BR})*?"%}"                    yytext = yytext.substr(2, yytext.length-4); return 'ACTION'
<indented>.+                          this.begin('rules'); return 'ACTION'

"/*"(.|\n|\r)*?"*/"             /* ignore */
"//".*                          /* ignore */

{BR}+                           /* */
\s+                             /* */
{NAME}                          return 'NAME';
\"("\\\\"|'\"'|[^"])*\"         yytext = yytext.replace(/\\"/g,'"'); return 'STRING_LIT';
"'"("\\\\"|"\'"|[^'])*"'"       yytext = yytext.replace(/\\'/g,"'"); return 'STRING_LIT';
"|"                             return '|';
"["("\\\\"|"\]"|[^\]])*"]"      return 'ANY_GROUP_REGEX';
"(?:"                           return 'SPECIAL_GROUP';
"(?="                           return 'SPECIAL_GROUP';
"(?!"                           return 'SPECIAL_GROUP';
"("                             return '(';
")"                             return ')';
"+"                             return '+';
"*"                             return '*';
"?"                             return '?';
"^"                             return '^';
","                             return ',';
"<<EOF>>"                       return '$';
"<"                             this.begin('conditions'); return '<';
"/!"                            return '/!';
"/"                             return '/';
"\\"([0-7]{1,3}|[rfntvsSbBwWdD\\*+()${}|[\]\/.^?]|"c"[A-Z]|"x"[0-9A-F]{2}|"u"[a-fA-F0-9]{4})      return 'ESCAPE_CHAR';
"\\".                           yytext = yytext.replace(/^\\/g,''); return 'ESCAPE_CHAR';
"$"                             return '$';
"."                             return '.';
"%options"                      yy.options = {}; this.begin('options');
"%s"                            this.begin('start_condition'); return 'START_INC';
"%x"                            this.begin('start_condition'); return 'START_EXC';
"%%"                            this.begin('rules'); return '%%';
"{"\d+(","\s?\d+|",")?"}"       return 'RANGE_REGEX';
"{"{NAME}"}"                    return 'NAME_BRACE';
"{"                             return '{';
"}"                             return '}';
.                               /* ignore bad characters */
<*><<EOF>>                      return 'EOF';

<code>(.|{BR})+                 return 'CODE';

%%