jashkenas--coffeescript/lib/grammar.js

623 lines
19 KiB
JavaScript
Raw Normal View History

2010-07-25 07:15:12 +00:00
(function() {
2010-11-09 05:17:08 +00:00
var Parser, alt, alternatives, grammar, name, o, operators, token, tokens, unwrap, _i, _j, _len, _len2, _ref, _results;
2010-02-11 04:24:05 +00:00
Parser = require('jison').Parser;
unwrap = /^function\s*\(\)\s*\{\s*return\s*([\s\S]*);\s*\}/;
o = function(patternString, action, options) {
2010-02-11 04:24:05 +00:00
var match;
patternString = patternString.replace(/\s{2,}/g, ' ');
2010-10-07 11:05:22 +00:00
if (!action) {
return [patternString, '$$ = $1;', options];
2010-02-11 04:24:05 +00:00
}
action = (match = unwrap.exec(action)) ? match[1] : "(" + action + "())";
action = action.replace(/\bnew /g, '$&yy.');
action = action.replace(/\b(?:Expressions\.wrap|extend)\b/g, 'yy.$&');
return [patternString, "$$ = " + action + ";", options];
2010-02-11 04:24:05 +00:00
};
grammar = {
Root: [
o('', function() {
return new Expressions;
}), o('TERMINATOR', function() {
return new Expressions;
}), o('Body'), o('Block TERMINATOR')
2010-02-11 04:24:05 +00:00
],
Body: [
o('Line', function() {
2010-02-11 04:24:05 +00:00
return Expressions.wrap([$1]);
}), o('Body TERMINATOR Line', function() {
2010-02-11 04:24:05 +00:00
return $1.push($3);
}), o('Body TERMINATOR')
2010-04-05 14:26:23 +00:00
],
Line: [o('Expression'), o('Statement')],
Statement: [
o('Return'), o('Throw'), o('BREAK', function() {
return new Literal($1);
}), o('CONTINUE', function() {
return new Literal($1);
}), o('DEBUGGER', function() {
return new Literal($1);
}), o('Comment')
2010-02-11 04:24:05 +00:00
],
2010-11-09 05:26:31 +00:00
Expression: [o('Value'), o('Invocation'), o('Code'), o('Operation'), o('Assign'), o('If'), o('Try'), o('While'), o('For'), o('Switch'), o('Class')],
Block: [
o('INDENT Body OUTDENT', function() {
2010-02-11 04:24:05 +00:00
return $2;
}), o('INDENT OUTDENT', function() {
return new Expressions;
}), o('TERMINATOR Comment', function() {
return Expressions.wrap([$2]);
2010-02-11 04:24:05 +00:00
})
],
Identifier: [
o('IDENTIFIER', function() {
return new Literal($1);
2010-02-11 04:24:05 +00:00
})
],
AlphaNumeric: [
o('NUMBER', function() {
return new Literal($1);
}), o('STRING', function() {
return new Literal($1);
2010-02-11 04:24:05 +00:00
})
],
Literal: [
o('AlphaNumeric'), o('JS', function() {
return new Literal($1);
}), o('REGEX', function() {
return new Literal($1);
}), o('BOOL', function() {
return new Literal($1 === 'undefined' ? 'void 0' : $1);
2010-02-11 04:24:05 +00:00
})
],
Assign: [
o('Assignable = Expression', function() {
return new Assign($1, $3);
}), o('Assignable = INDENT Expression OUTDENT', function() {
return new Assign($1, $4);
2010-02-11 04:24:05 +00:00
})
],
AssignObj: [
2010-10-24 05:05:31 +00:00
o('ObjAssignable', function() {
return new Value($1);
2010-10-24 05:05:31 +00:00
}), o('ObjAssignable : Expression', function() {
return new Assign(new Value($1), $3, 'object');
2010-10-24 05:05:31 +00:00
}), o('ObjAssignable :\
INDENT Expression OUTDENT', function() {
return new Assign(new Value($1), $4, 'object');
2010-10-24 05:05:31 +00:00
}), o('ThisProperty'), o('Comment')
2010-02-11 04:24:05 +00:00
],
2010-10-24 05:05:31 +00:00
ObjAssignable: [o('Identifier'), o('AlphaNumeric'), o('Parenthetical')],
Return: [
o('RETURN Expression', function() {
return new Return($2);
}), o('RETURN', function() {
return new Return;
2010-02-11 04:24:05 +00:00
})
],
Comment: [
o('HERECOMMENT', function() {
return new Comment($1);
})
],
Code: [
o('PARAM_START ParamList PARAM_END FuncGlyph Block', function() {
return new Code($2, $5, $4);
}), o('FuncGlyph Block', function() {
return new Code([], $2, $1);
2010-02-11 04:24:05 +00:00
})
],
FuncGlyph: [
o('->', function() {
2010-02-11 04:24:05 +00:00
return 'func';
}), o('=>', function() {
2010-02-11 04:24:05 +00:00
return 'boundfunc';
})
],
OptComma: [o(''), o(',')],
ParamList: [
o('', function() {
return [];
}), o('Param', function() {
2010-02-11 04:24:05 +00:00
return [$1];
}), o('ParamList , Param', function() {
2010-10-11 07:06:29 +00:00
return $1.concat($3);
2010-02-11 04:24:05 +00:00
})
],
Param: [
2010-10-26 10:08:01 +00:00
o('ParamVar', function() {
2010-10-26 04:09:46 +00:00
return new Param($1);
2010-10-26 10:08:01 +00:00
}), o('ParamVar ...', function() {
2010-10-26 04:09:46 +00:00
return new Param($1, null, true);
}), o('ParamVar = Expression', function() {
2010-10-26 04:09:46 +00:00
return new Param($1, $3);
2010-02-11 04:24:05 +00:00
})
],
ParamVar: [o('Identifier'), o('ThisProperty'), o('Array'), o('Object')],
Splat: [
o('Expression ...', function() {
return new Splat($1);
2010-02-11 04:24:05 +00:00
})
],
SimpleAssignable: [
o('Identifier', function() {
return new Value($1);
}), o('Value Accessor', function() {
2010-03-28 17:06:16 +00:00
return $1.push($2);
}), o('Invocation Accessor', function() {
return new Value($1, [$2]);
}), o('ThisProperty')
2010-03-28 17:06:16 +00:00
],
Assignable: [
2010-10-24 05:05:31 +00:00
o('SimpleAssignable'), o('Array', function() {
return new Value($1);
2010-10-24 05:05:31 +00:00
}), o('Object', function() {
return new Value($1);
})
],
Value: [
o('Assignable'), o('Literal', function() {
return new Value($1);
}), o('Parenthetical', function() {
return new Value($1);
}), o('This')
2010-02-11 04:24:05 +00:00
],
Accessor: [
o('. Identifier', function() {
return new Accessor($2);
}), o('?. Identifier', function() {
return new Accessor($2, 'soak');
2010-10-25 18:56:02 +00:00
}), o(':: Identifier', function() {
return new Accessor($2, 'proto');
}), o('::', function() {
return new Accessor(new Literal('prototype'));
}), o('Index')
2010-02-11 04:24:05 +00:00
],
Index: [
o('INDEX_START Expression INDEX_END', function() {
return new Index($2);
}), o('INDEX_SOAK Index', function() {
return extend($2, {
2010-10-25 13:31:52 +00:00
soak: true
});
}), o('INDEX_PROTO Index', function() {
return extend($2, {
proto: true
});
2010-02-11 04:24:05 +00:00
})
],
Object: [
o('{ AssignList OptComma }', function() {
return new Obj($2);
})
],
AssignList: [
o('', function() {
2010-02-11 04:24:05 +00:00
return [];
}), o('AssignObj', function() {
2010-02-11 04:24:05 +00:00
return [$1];
}), o('AssignList , AssignObj', function() {
2010-10-11 07:06:29 +00:00
return $1.concat($3);
}), o('AssignList OptComma TERMINATOR AssignObj', function() {
2010-10-11 07:06:29 +00:00
return $1.concat($4);
}), o('AssignList OptComma INDENT AssignList OptComma OUTDENT', function() {
return $1.concat($4);
2010-02-11 04:24:05 +00:00
})
],
Class: [
o('CLASS SimpleAssignable', function() {
return new Class($2);
}), o('CLASS SimpleAssignable EXTENDS Value', function() {
return new Class($2, $4);
}), o('CLASS SimpleAssignable\
INDENT ClassBody OUTDENT', function() {
return new Class($2, null, $4);
}), o('CLASS SimpleAssignable EXTENDS Value\
INDENT ClassBody OUTDENT', function() {
return new Class($2, $4, $6);
}), o('CLASS INDENT ClassBody OUTDENT', function() {
return new Class(null, null, $3);
}), o('CLASS', function() {
return new Class(null, null, new Expressions);
}), o('CLASS EXTENDS Value', function() {
return new Class(null, $3, new Expressions);
}), o('CLASS EXTENDS Value\
INDENT ClassBody OUTDENT', function() {
return new Class(null, $3, $5);
})
],
ClassAssign: [
o('AssignObj', function() {
return $1;
}), o('ThisProperty : Expression', function() {
return new Assign(new Value($1), $3, 'this');
}), o('ThisProperty : INDENT Expression OUTDENT', function() {
return new Assign(new Value($1), $4, 'this');
})
],
ClassBody: [
o('', function() {
return [];
}), o('ClassAssign', function() {
return [$1];
}), o('ClassBody TERMINATOR ClassAssign', function() {
return $1.concat($3);
}), o('{ ClassBody }', function() {
return $2;
})
2010-02-11 04:24:05 +00:00
],
Invocation: [
o('Value OptFuncExist Arguments', function() {
return new Call($1, $3, $2);
}), o('Invocation OptFuncExist Arguments', function() {
return new Call($1, $3, $2);
}), o('SUPER', function() {
return new Call('super', [new Splat(new Literal('arguments'))]);
}), o('SUPER Arguments', function() {
return new Call('super', $2);
})
],
OptFuncExist: [
o('', function() {
return false;
}), o('FUNC_EXIST', function() {
return true;
2010-02-11 04:24:05 +00:00
})
],
Arguments: [
o('CALL_START CALL_END', function() {
return [];
}), o('CALL_START ArgList OptComma CALL_END', function() {
return $2;
2010-02-11 04:24:05 +00:00
})
],
This: [
o('THIS', function() {
return new Value(new Literal('this'));
}), o('@', function() {
return new Value(new Literal('this'));
2010-03-28 17:06:16 +00:00
})
],
ThisProperty: [
o('@ Identifier', function() {
return new Value(new Literal('this'), [new Accessor($2)], 'this');
2010-02-11 04:24:05 +00:00
})
],
Array: [
o('[ ]', function() {
return new Arr([]);
}), o('[ ArgList OptComma ]', function() {
return new Arr($2);
2010-02-11 04:24:05 +00:00
})
],
ArgList: [
o('Arg', function() {
2010-02-11 04:24:05 +00:00
return [$1];
}), o('ArgList , Arg', function() {
2010-10-11 07:06:29 +00:00
return $1.concat($3);
}), o('ArgList OptComma TERMINATOR Arg', function() {
2010-10-11 07:06:29 +00:00
return $1.concat($4);
}), o('INDENT ArgList OptComma OUTDENT', function() {
return $2;
}), o('ArgList OptComma INDENT ArgList OptComma OUTDENT', function() {
return $1.concat($4);
})
2010-02-11 04:24:05 +00:00
],
Arg: [o('Expression'), o('Splat')],
SimpleArgs: [
o('Expression'), o('SimpleArgs , Expression', function() {
2010-10-11 07:06:29 +00:00
return [].concat($1, $3);
2010-02-11 04:24:05 +00:00
})
],
Try: [
o('TRY Block', function() {
return new Try($2);
}), o('TRY Block Catch', function() {
return new Try($2, $3[0], $3[1]);
}), o('TRY Block FINALLY Block', function() {
return new Try($2, null, null, $4);
}), o('TRY Block Catch FINALLY Block', function() {
return new Try($2, $3[0], $3[1], $5);
2010-02-11 04:24:05 +00:00
})
],
Catch: [
o('CATCH Identifier Block', function() {
2010-02-11 04:24:05 +00:00
return [$2, $3];
})
],
Throw: [
o('THROW Expression', function() {
return new Throw($2);
2010-02-11 04:24:05 +00:00
})
],
Parenthetical: [
o('( Expression )', function() {
2010-10-07 03:53:26 +00:00
return new Parens($2);
2010-02-11 04:24:05 +00:00
})
],
WhileSource: [
o('WHILE Expression', function() {
return new While($2);
}), o('WHILE Expression WHEN Expression', function() {
return new While($2, {
guard: $4
});
}), o('UNTIL Expression', function() {
return new While($2, {
invert: true
});
}), o('UNTIL Expression WHEN Expression', function() {
return new While($2, {
invert: true,
guard: $4
});
})
],
While: [
o('WhileSource Block', function() {
return $1.addBody($2);
}), o('Statement WhileSource', function() {
return $2.addBody(Expressions.wrap([$1]));
}), o('Expression WhileSource', function() {
return $2.addBody(Expressions.wrap([$1]));
}), o('Loop', function() {
return $1;
})
],
Loop: [
o('LOOP Block', function() {
return new While(new Literal('true')).addBody($2);
}), o('LOOP Expression', function() {
return new While(new Literal('true')).addBody(Expressions.wrap([$2]));
2010-02-11 04:24:05 +00:00
})
],
For: [
o('Statement ForBody', function() {
return new For($1, $2);
}), o('Expression ForBody', function() {
return new For($1, $2);
}), o('ForBody Block', function() {
return new For($2, $1);
2010-02-11 04:24:05 +00:00
})
],
ForValue: [
o('Identifier'), o('Array', function() {
return new Value($1);
}), o('Object', function() {
return new Value($1);
})
],
ForIn: [
o('FORIN Expression', function() {
2010-02-11 04:24:05 +00:00
return {
source: $2
};
}), o('FORIN Expression WHEN Expression', function() {
2010-02-11 04:24:05 +00:00
return {
source: $2,
guard: $4
2010-02-11 04:24:05 +00:00
};
}), o('FORIN Expression BY Expression', function() {
return {
source: $2,
step: $4
};
}), o('FORIN Expression BY Expression WHEN Expression', function() {
return {
source: $2,
step: $4,
guard: $6
};
})
],
ForOf: [
o('FOROF Expression', function() {
return {
object: true,
source: $2
};
}), o('FOROF Expression WHEN Expression', function() {
return {
object: true,
source: $2,
guard: $4
};
})
],
ForTo: [
o('TO Expression', function() {
return {
to: $2
};
}), o('TO Expression WHEN Expression', function() {
return {
to: $2,
guard: $4
};
}), o('TO Expression BY Expression', function() {
return {
to: $2,
step: $4
};
}), o('TO Expression BY Expression WHEN Expression', function() {
return {
to: $2,
step: $4,
guard: $6
};
2010-02-11 04:24:05 +00:00
})
],
ForBody: [
o('FOR ForValue ForIn', function() {
return extend($3, {
name: $2
});
}), o('FOR ForValue , Identifier ForIn', function() {
return extend($5, {
name: $2,
index: $4
});
}), o('FOR Identifier ForOf', function() {
return extend($3, {
index: $2
});
}), o('FOR ForValue , ForValue ForOf', function() {
return extend($5, {
index: $2,
name: $4
});
}), o('FOR ALL Identifier ForOf', function() {
return extend($4, {
raw: true,
index: $3
});
}), o('FOR ALL Identifier , ForValue ForOf', function() {
return extend($6, {
raw: true,
index: $3,
name: $5
});
}), o('FOR Identifier FROM Expression ForTo', function() {
return extend($5, {
index: $2,
from: $4
});
})
],
Switch: [
o('SWITCH Expression INDENT Whens OUTDENT', function() {
return new Switch($2, $4);
}), o('SWITCH Expression INDENT Whens ELSE Block OUTDENT', function() {
return new Switch($2, $4, $6);
}), o('SWITCH INDENT Whens OUTDENT', function() {
return new Switch(null, $3);
}), o('SWITCH INDENT Whens ELSE Block OUTDENT', function() {
return new Switch(null, $3, $5);
2010-02-11 04:24:05 +00:00
})
],
Whens: [
o('When'), o('Whens When', function() {
return $1.concat($2);
2010-02-11 04:24:05 +00:00
})
],
When: [
o('LEADING_WHEN SimpleArgs Block', function() {
return [[$2, $3]];
}), o('LEADING_WHEN SimpleArgs Block TERMINATOR', function() {
return [[$2, $3]];
2010-02-11 04:24:05 +00:00
})
],
IfBlock: [
o('IF Expression Block', function() {
return new If($2, $3);
}), o('UNLESS Expression Block', function() {
return new If($2, $3, {
2010-04-27 23:35:15 +00:00
invert: true
});
}), o('IfBlock ELSE IF Expression Block', function() {
return $1.addElse(new If($4, $5));
}), o('IfBlock ELSE Block', function() {
return $1.addElse($3);
2010-02-11 04:24:05 +00:00
})
],
If: [
o('IfBlock'), o('Statement POST_IF Expression', function() {
return new If($3, Expressions.wrap([$1]), {
2010-04-05 14:26:23 +00:00
statement: true
});
}), o('Expression POST_IF Expression', function() {
return new If($3, Expressions.wrap([$1]), {
2010-02-11 04:24:05 +00:00
statement: true
});
}), o('Statement POST_UNLESS Expression', function() {
return new If($3, Expressions.wrap([$1]), {
2010-04-05 14:26:23 +00:00
statement: true,
invert: true
});
}), o('Expression POST_UNLESS Expression', function() {
return new If($3, Expressions.wrap([$1]), {
2010-02-11 04:24:05 +00:00
statement: true,
invert: true
});
})
],
Operation: [
2010-10-21 00:16:17 +00:00
o('UNARY Expression', function() {
return new Op($1, $2);
}), o('- Expression', (function() {
return new Op('-', $2);
}), {
prec: 'UNARY'
}), o('+ Expression', (function() {
return new Op('+', $2);
}), {
prec: 'UNARY'
2010-10-21 00:16:17 +00:00
}), o('-- SimpleAssignable', function() {
return new Op('--', $2);
2010-10-21 00:16:17 +00:00
}), o('++ SimpleAssignable', function() {
return new Op('++', $2);
2010-10-21 00:16:17 +00:00
}), o('SimpleAssignable --', function() {
return new Op('--', $1, null, true);
2010-10-21 00:16:17 +00:00
}), o('SimpleAssignable ++', function() {
return new Op('++', $1, null, true);
}), o('Expression ?', function() {
return new Existence($1);
2010-10-21 00:16:17 +00:00
}), o('Expression + Expression', function() {
return new Op('+', $1, $3);
2010-10-21 00:16:17 +00:00
}), o('Expression - Expression', function() {
return new Op('-', $1, $3);
2010-10-21 00:16:17 +00:00
}), o('Expression MATH Expression', function() {
return new Op($2, $1, $3);
2010-10-21 00:16:17 +00:00
}), o('Expression SHIFT Expression', function() {
return new Op($2, $1, $3);
2010-10-21 00:16:17 +00:00
}), o('Expression COMPARE Expression', function() {
return new Op($2, $1, $3);
2010-10-21 00:16:17 +00:00
}), o('Expression LOGIC Expression', function() {
return new Op($2, $1, $3);
2010-10-21 00:16:17 +00:00
}), o('Expression RELATION Expression', function() {
if ($2.charAt(0) === '!') {
return new Op($2.slice(1), $1, $3).invert();
} else {
return new Op($2, $1, $3);
}
}), o('SimpleAssignable COMPOUND_ASSIGN\
Expression', function() {
return new Assign($1, $3, $2);
}), o('SimpleAssignable COMPOUND_ASSIGN\
INDENT Expression OUTDENT', function() {
return new Assign($1, $4, $2);
2010-11-09 05:26:31 +00:00
}), o('SimpleAssignable EXTENDS Expression', function() {
return new Extends($1, $3);
})
2010-02-11 04:24:05 +00:00
]
};
2010-11-09 05:26:31 +00:00
operators = [['left', '.', '?.', '::'], ['left', 'CALL_START', 'CALL_END'], ['nonassoc', '++', '--'], ['left', '?'], ['right', 'UNARY'], ['left', 'MATH'], ['left', '+', '-'], ['left', 'SHIFT'], ['left', 'RELATION'], ['left', 'COMPARE'], ['left', 'LOGIC'], ['nonassoc', 'INDENT', 'OUTDENT'], ['right', '=', ':', 'COMPOUND_ASSIGN', 'RETURN', 'EXTENDS'], ['right', 'WHEN', 'LEADING_WHEN', 'FORIN', 'FOROF', 'FROM', 'TO', 'BY', 'THROW', 'IF', 'UNLESS', 'ELSE', 'FOR', 'WHILE', 'UNTIL', 'LOOP', 'SUPER', 'CLASS'], ['right', 'POST_IF', 'POST_UNLESS']];
2010-02-11 04:24:05 +00:00
tokens = [];
2010-10-01 22:26:37 +00:00
for (name in grammar) {
alternatives = grammar[name];
grammar[name] = (function() {
2010-11-09 05:17:08 +00:00
_results = [];
for (_i = 0, _len = alternatives.length; _i < _len; _i++) {
alt = alternatives[_i];
_ref = alt[0].split(' ');
for (_j = 0, _len2 = _ref.length; _j < _len2; _j++) {
token = _ref[_j];
if (!grammar[token]) {
tokens.push(token);
}
}
if (name === 'Root') {
alt[1] = "return " + alt[1];
}
2010-11-09 05:17:08 +00:00
_results.push(alt);
}
2010-11-09 05:17:08 +00:00
return _results;
})();
}
2010-02-16 06:04:48 +00:00
exports.parser = new Parser({
tokens: tokens.join(' '),
bnf: grammar,
operators: operators.reverse(),
2010-02-11 04:24:05 +00:00
startSymbol: 'Root'
});
}).call(this);