|
|
|
@ -42,12 +42,7 @@ module.exports = (function() {
|
|
|
|
|
rules: extractList(rules, 0)
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
peg$c4 = function(code) {
|
|
|
|
|
return {
|
|
|
|
|
type: "initializer",
|
|
|
|
|
code: code
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
peg$c4 = function(code) { return { type: "initializer", code: code }; },
|
|
|
|
|
peg$c5 = "=",
|
|
|
|
|
peg$c6 = { type: "literal", value: "=", description: "\"=\"" },
|
|
|
|
|
peg$c7 = function(name, displayName, expression) {
|
|
|
|
@ -83,11 +78,7 @@ module.exports = (function() {
|
|
|
|
|
peg$c13 = ":",
|
|
|
|
|
peg$c14 = { type: "literal", value: ":", description: "\":\"" },
|
|
|
|
|
peg$c15 = function(label, expression) {
|
|
|
|
|
return {
|
|
|
|
|
type: "labeled",
|
|
|
|
|
label: label,
|
|
|
|
|
expression: expression
|
|
|
|
|
};
|
|
|
|
|
return { type: "labeled", label: label, expression: expression };
|
|
|
|
|
},
|
|
|
|
|
peg$c16 = function(operator, expression) {
|
|
|
|
|
return { type: OPS_TO_PREFIXED_TYPES[operator], expression: expression };
|
|
|
|
|