jashkenas--coffeescript/lib/coffee-script/coffee-script.js

219 lines
6.4 KiB
JavaScript
Raw Normal View History

2013-03-04 19:19:08 +00:00
// Generated by CoffeeScript 1.6.0
(function() {
var Lexer, baseFileName, compile, ext, fs, helpers, lexer, loadFile, parser, path, sourcemap, vm, _i, _len, _ref,
__hasProp = {}.hasOwnProperty;
fs = require('fs');
path = require('path');
Lexer = require('./lexer').Lexer;
parser = require('./parser').parser;
helpers = require('./helpers');
2013-02-28 20:51:29 +00:00
2011-10-24 02:45:32 +00:00
vm = require('vm');
sourcemap = require('./sourcemap');
loadFile = function(module, filename) {
var raw, stripped;
raw = fs.readFileSync(filename, 'utf8');
stripped = raw.charCodeAt(0) === 0xFEFF ? raw.substring(1) : raw;
return module._compile(compile(stripped, {
filename: filename,
literate: helpers.isLiterate(filename)
}), filename);
2012-07-11 04:08:14 +00:00
};
if (require.extensions) {
_ref = ['.coffee', '.litcoffee', '.md', '.coffee.md'];
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
ext = _ref[_i];
require.extensions[ext] = loadFile;
}
}
2013-03-04 19:19:08 +00:00
exports.VERSION = '1.6.0';
exports.helpers = require('./helpers');
baseFileName = function(fileName) {
var extension;
extension = path.extname(fileName);
return path.basename(fileName, extension);
};
exports.compile = compile = function(code, options) {
2013-03-04 14:45:25 +00:00
var answer, coffeeFile, currentColumn, currentLine, fragment, fragments, header, js, jsFile, merge, newLines, sourceMap, _j, _len1;
2012-04-10 18:57:45 +00:00
if (options == null) {
options = {};
}
merge = exports.helpers.merge;
try {
2013-03-04 14:45:25 +00:00
if (options.sourceMap) {
coffeeFile = path.basename(options.filename);
jsFile = baseFileName(options.filename) + ".js";
sourceMap = new sourcemap.SourceMap();
}
2013-02-28 20:51:29 +00:00
fragments = (parser.parse(lexer.tokenize(code, options))).compileToFragments(options);
currentLine = 0;
currentColumn = 0;
js = "";
for (_j = 0, _len1 = fragments.length; _j < _len1; _j++) {
fragment = fragments[_j];
2013-03-04 14:45:25 +00:00
if (sourceMap) {
2013-02-28 20:51:29 +00:00
if (fragment.locationData) {
2013-03-04 14:45:25 +00:00
sourceMap.addMapping([fragment.locationData.first_line, fragment.locationData.first_column], [currentLine, currentColumn], {
noReplace: true
});
2013-02-28 20:51:29 +00:00
}
newLines = helpers.count(fragment.code, "\n");
2013-02-28 20:51:29 +00:00
currentLine += newLines;
currentColumn = fragment.code.length - (newLines ? fragment.code.lastIndexOf("\n") : 0);
}
js += fragment.code;
}
} catch (err) {
if (options.filename) {
err.message = "In " + options.filename + ", " + err.message;
}
throw err;
}
2013-03-04 14:45:25 +00:00
if (options.header) {
header = "Generated by CoffeeScript " + this.VERSION;
js = "// " + header + "\n" + js;
2013-02-28 20:51:29 +00:00
}
2013-03-04 14:45:25 +00:00
if (options.sourceMap || options.returnObject) {
answer = {
js: js
};
2013-03-04 14:45:25 +00:00
if (sourceMap) {
answer.sourceMap = sourceMap;
answer.v3SourceMap = sourcemap.generateV3SourceMap(sourceMap, coffeeFile, jsFile);
2013-02-28 20:51:29 +00:00
}
2013-03-04 14:45:25 +00:00
return answer;
} else {
return js;
2013-02-28 20:51:29 +00:00
}
};
exports.tokens = function(code, options) {
return lexer.tokenize(code, options);
};
exports.nodes = function(source, options) {
if (typeof source === 'string') {
2010-11-20 21:25:22 +00:00
return parser.parse(lexer.tokenize(source, options));
} else {
return parser.parse(source);
}
};
exports.run = function(code, options) {
var mainModule;
2012-04-10 18:57:45 +00:00
if (options == null) {
options = {};
}
mainModule = require.main;
mainModule.filename = process.argv[1] = options.filename ? fs.realpathSync(options.filename) : '.';
mainModule.moduleCache && (mainModule.moduleCache = {});
mainModule.paths = require('module')._nodeModulePaths(path.dirname(fs.realpathSync(options.filename)));
if (!helpers.isCoffee(mainModule.filename) || require.extensions) {
return mainModule._compile(compile(code, options), mainModule.filename);
} else {
return mainModule._compile(code, mainModule.filename);
}
};
exports["eval"] = function(code, options) {
var Module, Script, js, k, o, r, sandbox, v, _j, _len1, _module, _ref1, _ref2, _require;
2012-04-10 18:57:45 +00:00
if (options == null) {
options = {};
}
if (!(code = code.trim())) {
return;
}
2011-10-24 02:45:32 +00:00
Script = vm.Script;
2011-08-27 17:20:29 +00:00
if (Script) {
2011-08-05 03:17:23 +00:00
if (options.sandbox != null) {
2011-10-24 02:45:32 +00:00
if (options.sandbox instanceof Script.createContext().constructor) {
2011-08-05 03:17:23 +00:00
sandbox = options.sandbox;
} else {
2011-10-24 02:45:32 +00:00
sandbox = Script.createContext();
_ref1 = options.sandbox;
for (k in _ref1) {
if (!__hasProp.call(_ref1, k)) continue;
v = _ref1[k];
2011-08-05 03:17:23 +00:00
sandbox[k] = v;
}
}
2011-10-24 02:45:32 +00:00
sandbox.global = sandbox.root = sandbox.GLOBAL = sandbox;
} else {
sandbox = global;
}
2011-08-05 03:17:23 +00:00
sandbox.__filename = options.filename || 'eval';
sandbox.__dirname = path.dirname(sandbox.__filename);
2011-10-24 02:45:32 +00:00
if (!(sandbox !== global || sandbox.module || sandbox.require)) {
2011-08-05 03:17:23 +00:00
Module = require('module');
sandbox.module = _module = new Module(options.modulename || 'eval');
sandbox.require = _require = function(path) {
2011-10-24 02:45:32 +00:00
return Module._load(path, _module, true);
2011-08-05 03:17:23 +00:00
};
_module.filename = sandbox.__filename;
_ref2 = Object.getOwnPropertyNames(require);
for (_j = 0, _len1 = _ref2.length; _j < _len1; _j++) {
r = _ref2[_j];
2012-04-10 18:57:45 +00:00
if (r !== 'paths') {
_require[r] = require[r];
}
2011-08-05 03:17:23 +00:00
}
_require.paths = _module.paths = Module._nodeModulePaths(process.cwd());
_require.resolve = function(request) {
return Module._resolveFilename(request, _module);
};
}
}
o = {};
for (k in options) {
if (!__hasProp.call(options, k)) continue;
v = options[k];
o[k] = v;
}
o.bare = true;
js = compile(code, o);
2011-10-24 02:45:32 +00:00
if (sandbox === global) {
return vm.runInThisContext(js);
2011-08-05 03:17:23 +00:00
} else {
2011-10-24 02:45:32 +00:00
return vm.runInContext(js, sandbox);
2011-08-05 03:17:23 +00:00
}
};
lexer = new Lexer;
parser.lexer = {
lex: function() {
var tag, token;
token = this.tokens[this.pos++];
if (token) {
tag = token[0], this.yytext = token[1], this.yylloc = token[2];
this.yylineno = this.yylloc.first_line;
} else {
tag = '';
}
2010-11-02 04:05:06 +00:00
return tag;
},
setInput: function(tokens) {
this.tokens = tokens;
return this.pos = 0;
},
upcomingInput: function() {
return "";
}
};
2010-09-21 07:50:32 +00:00
parser.yy = require('./nodes');
2011-12-14 15:39:20 +00:00
}).call(this);