aboutsummaryrefslogtreecommitdiffstats
path: root/tools/node_modules/expresso/deps/jscoverage/js/jsreops.tbl
blob: d7454c15008860102fc39111572db56b8930afa4 (plain)
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
 * vim: set ts=8 sw=4 et tw=0 ft=C:
 *
 * ***** BEGIN LICENSE BLOCK *****
 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
 *
 * The contents of this file are subject to the Mozilla Public License Version
 * 1.1 (the "license"); you may not use this file except in compliance with
 * the License. You may obtain a copy of the License at
 * http://www.mozilla.org/MPL/
 *
 * Software distributed under the License is distributed on an "as is" basis,
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 * for the specific language governing rights and limitations under the
 * License.
 *
 * The Original Code is Mozilla Communicator client code, released
 * March 31, 1998.
 *
 * The Initial Developer of the Original Code is
 * Netscape Communications Corporation.
 * Portions created by the Initial Developer are Copyright (C) 1998
 * the Initial Developer. All Rights Reserved.
 *
 * Contributor(s):
 *
 * Alternatively, the contentsof this file are subject to the Mozilla Public License Version
 * 1.1 (the "license"); you may not use this file except in compliance with
 * the License. You may obtain a copy of thter (the "lgpl"),
 * in which case the provisions of the GPL or the LGPL are applicable instead
 * of those above. If you wish to allow use of your version of this file only
 * under the terms of either the GPL or the LGPL, and not to allow others to
 * use your version of this file under the terms of the MPL, indicate your
 * decision by deleting the provisions above and replace them with the notice
 * and other provisions required by the GPL or the LGPL. If you do not delete
 * the provisions above, a recipient may use your version of this file under
 * the terms of any one of the MPL, the GPL or the LGPL.
 *
 * ***** END LICENSE BLOCK ***** */


/* Note : contiguity of 'simple opcodes' is important for SimpleMatch() */

/* match rest of input against rest of r.e. */
REOP_DEF(REOP_EMPTY,         "empty")
/* beginning of input (or line if multiline) */
REOP_DEF(REOP_BOL,           "bol")
/* end of input (or line if multiline) */
REOP_DEF(REOP_EOL,           "eol")
/* match "" at word boundary */
REOP_DEF(REOP_WBDRY,         "wbdry")
/* match "" at word non-boundary */
REOP_DEF(REOP_WNONBDRY,      "wnonbdry")
/* stands for any character */
REOP_DEF(REOP_DOT,           "dot")
/* match a digit char: [0-9] */
REOP_DEF(REOP_DIGIT,         "digit")
/* match a non-digit char: [^0-9] */
REOP_DEF(REOP_NONDIGIT,      "nondigit")
/* match an alphanumeric char: [0-9a-z_A-Z] */
REOP_DEF(REOP_ALNUM,         "alnum")
/* match a non-alphanumeric char: [^0-9a-z_A-Z] */
REOP_DEF(REOP_NONALNUM,      "nonalnum")
/* match a whitespace char */
REOP_DEF(REOP_SPACE,         "space")
/* match a non-whitespace char */
REOP_DEF(REOP_NONSPACE,      "nonspace")
/* back-reference (e.g., \1) to a parenthetical */
REOP_DEF(REOP_BACKREF,       "backref")
/* match a flat string */
REOP_DEF(REOP_FLAT,          "flat")
/* match a single char */
REOP_DEF(REOP_FLAT1,         "flat1")
/* case-independent REOP_FLAT */
REOP_DEF(REOP_FLATi,         "flati")
/* case-independent REOP_FLAT1 */
REOP_DEF(REOP_FLAT1i,        "flat1i")
/* single Unicode char */
REOP_DEF(REOP_UCFLAT1,       "ucflat1")
/* case-independent REOP_UCFLAT1 */
REOP_DEF(REOP_UCFLAT1i,      "ucflat1i")
/* flat Unicode string; len immediate counts chars */
REOP_DEF(REOP_UCFLAT,        "ucflat")
/* case-independent REOP_UCFLAT */
REOP_DEF(REOP_UCFLATi,       "ucflati")
/* character class with index */
REOP_DEF(REOP_CLASS,         "class")
/* negated character class with index */
REOP_DEF(REOP_NCLASS,        "nclass")

/* NCLASS is considered to be the last "simple" op-code */
    

/* alternative subexpressions in kid and next */
REOP_DEF(REOP_ALT,           "alt")
/* quantified atom: atom{1,2} */
REOP_DEF(REOP_QUANT,         "quant")
/* zero or more occurrences of kid */
REOP_DEF(REOP_STAR,          "star")
/* one or more occurrences of kid */
REOP_DEF(REOP_PLUS,          "plus")
/* optional subexpression in kid */
REOP_DEF(REOP_OPT,           "opt")
/* left paren bytecode: kid is u.num'th sub-regexp */
REOP_DEF(REOP_LPAREN,        "lparen")
/* right paren bytecode */
REOP_DEF(REOP_RPAREN,        "rparen")
/* for deoptimized closure loops */
REOP_DEF(REOP_JUMP,          "jump")
/* optimize .* to use a single opcode */
REOP_DEF(REOP_DOTSTAR,       "dotstar")
/* non-capturing version of REOP_LPAREN */
REOP_DEF(REOP_LPARENNON,     "lparennon")
/* zero width positive lookahead assertion */
REOP_DEF(REOP_ASSERT,        "assert")
/* zero width negative lookahead assertion */
REOP_DEF(REOP_ASSERT_NOT,    "assert_not")
/* sentinel at end of assertion child */
REOP_DEF(REOP_ASSERTTEST,    "asserttest")
/* sentinel at end of !assertion child */
REOP_DEF(REOP_ASSERTNOTTEST, "assertnottest")
/* non-greedy version of * */
REOP_DEF(REOP_MINIMALSTAR,   "minimalstar")
/* non-greedy version of + */
REOP_DEF(REOP_MINIMALPLUS,   "minimalplus")
/* non-greedy version of ? */
REOP_DEF(REOP_MINIMALOPT,    "minimalopt")
/* non-greedy version of {} */
REOP_DEF(REOP_MINIMALQUANT,  "minimalquant")
/* sentinel at end of quantifier child */
REOP_DEF(REOP_ENDCHILD,      "endchild")
/* directs execution of greedy quantifier */
REOP_DEF(REOP_REPEAT,        "repeat")
/* directs execution of non-greedy quantifier */
REOP_DEF(REOP_MINIMALREPEAT, "minimalrepeat")
/* prerequisite for ALT, either of two chars */
REOP_DEF(REOP_ALTPREREQ,     "altprereq")
/* prerequisite for ALT, a char or a class */
REOP_DEF(REOP_ALTPREREQ2,    "altprereq2")
/* end of final alternate */
REOP_DEF(REOP_ENDALT,        "endalt")
/* concatenation of terms (parse time only) */
REOP_DEF(REOP_CONCAT,        "concat")
/* end of expression */
REOP_DEF(REOP_END,           "end")