mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
77 lines
2.3 KiB
JavaScript
77 lines
2.3 KiB
JavaScript
(function(){
|
|
var Lexer, compile, helpers, lexer, parser, path, processScripts;
|
|
if (typeof process !== "undefined" && process !== null) {
|
|
path = require('path');
|
|
Lexer = require('./lexer').Lexer;
|
|
parser = require('./parser').parser;
|
|
helpers = require('./helpers').helpers;
|
|
helpers.extend(global, require('./nodes'));
|
|
require.registerExtension ? require.registerExtension('.coffee', function(content) {
|
|
return compile(content);
|
|
}) : null;
|
|
} else {
|
|
this.exports = (this.CoffeeScript = {});
|
|
Lexer = this.Lexer;
|
|
parser = this.parser;
|
|
helpers = this.helpers;
|
|
}
|
|
exports.VERSION = '0.7.0';
|
|
lexer = new Lexer();
|
|
exports.compile = (compile = function(code, options) {
|
|
options = options || {};
|
|
try {
|
|
return (parser.parse(lexer.tokenize(code))).compile(options);
|
|
} catch (err) {
|
|
if (options.source) {
|
|
err.message = ("In " + options.source + ", " + err.message);
|
|
}
|
|
throw err;
|
|
}
|
|
});
|
|
exports.tokens = function(code) {
|
|
return lexer.tokenize(code);
|
|
};
|
|
exports.nodes = function(code) {
|
|
return parser.parse(lexer.tokenize(code));
|
|
};
|
|
exports.run = (function(code, options) {
|
|
var __dirname, __filename;
|
|
module.filename = (__filename = options.source);
|
|
__dirname = path.dirname(__filename);
|
|
return eval(exports.compile(code, options));
|
|
});
|
|
parser.lexer = {
|
|
lex: function() {
|
|
var token;
|
|
token = this.tokens[this.pos] || [""];
|
|
this.pos += 1;
|
|
this.yylineno = token[2];
|
|
this.yytext = token[1];
|
|
return token[0];
|
|
},
|
|
setInput: function(tokens) {
|
|
this.tokens = tokens;
|
|
this.pos = 0;
|
|
return this.pos;
|
|
},
|
|
upcomingInput: function() {
|
|
return "";
|
|
}
|
|
};
|
|
if ((typeof document !== "undefined" && document !== null) && document.getElementsByTagName) {
|
|
processScripts = function() {
|
|
var _a, _b, _c, _d, tag;
|
|
_a = []; _c = document.getElementsByTagName('script');
|
|
for (_b = 0, _d = _c.length; _b < _d; _b++) {
|
|
tag = _c[_b];
|
|
tag.type === 'text/coffeescript' ? _a.push(eval(exports.compile(tag.innerHTML))) : null;
|
|
}
|
|
return _a;
|
|
};
|
|
if (window.addEventListener) {
|
|
window.addEventListener('load', processScripts, false);
|
|
} else if (window.attachEvent) {
|
|
window.attachEvent('onload', processScripts);
|
|
}
|
|
}
|
|
})();
|