mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
68 lines
2.2 KiB
JavaScript
68 lines
2.2 KiB
JavaScript
(function(){
|
|
var lexer, parser, path, process_scripts;
|
|
// Set up for both the browser and the server.
|
|
if ((typeof process !== "undefined" && process !== null)) {
|
|
process.mixin(require('nodes'));
|
|
path = require('path');
|
|
lexer = new (require('lexer').Lexer)();
|
|
parser = require('parser').parser;
|
|
} else {
|
|
lexer = new Lexer();
|
|
parser = exports.parser;
|
|
this.exports = (this.CoffeeScript = {});
|
|
}
|
|
// Thin wrapper for Jison compatibility around the real lexer.
|
|
parser.lexer = {
|
|
lex: function lex() {
|
|
var token;
|
|
token = this.tokens[this.pos] || [""];
|
|
this.pos += 1;
|
|
this.yylineno = token[2];
|
|
this.yytext = token[1];
|
|
return token[0];
|
|
},
|
|
setInput: function setInput(tokens) {
|
|
this.tokens = tokens;
|
|
return this.pos = 0;
|
|
},
|
|
upcomingInput: function upcomingInput() {
|
|
return "";
|
|
},
|
|
showPosition: function showPosition() {
|
|
return this.pos;
|
|
}
|
|
};
|
|
exports.VERSION = '0.5.4';
|
|
// Compile CoffeeScript to JavaScript, using the Coffee/Jison compiler.
|
|
exports.compile = function compile(code, options) {
|
|
return (parser.parse(lexer.tokenize(code))).compile(options);
|
|
};
|
|
// Just the tokens.
|
|
exports.tokens = function tokens(code) {
|
|
return lexer.tokenize(code);
|
|
};
|
|
// Just the nodes.
|
|
exports.nodes = function nodes(code) {
|
|
return parser.parse(lexer.tokenize(code));
|
|
};
|
|
// Activate CoffeeScript in the browser by having it compile and eval
|
|
// all script tags with a content-type of text/coffeescript.
|
|
if ((typeof document !== "undefined" && document !== null) && document.getElementsByTagName) {
|
|
process_scripts = function process_scripts() {
|
|
var _a, _b, _c, _d, tag;
|
|
_a = []; _b = document.getElementsByTagName('script');
|
|
for (_c = 0, _d = _b.length; _c < _d; _c++) {
|
|
tag = _b[_c];
|
|
if (tag.type === 'text/coffeescript') {
|
|
_a.push(eval(exports.compile(tag.innerHTML)));
|
|
}
|
|
}
|
|
return _a;
|
|
};
|
|
if (window.addEventListener) {
|
|
window.addEventListener('load', process_scripts, false);
|
|
} else if (window.attachEvent) {
|
|
window.attachEvent('onload', process_scripts);
|
|
}
|
|
}
|
|
})();
|