mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
38 lines
930 B
JavaScript
38 lines
930 B
JavaScript
(function() {
|
|
var CoffeeScript, helpers, readline, repl, run, stdio;
|
|
CoffeeScript = require('./coffee-script');
|
|
helpers = require('./helpers').helpers;
|
|
readline = require('readline');
|
|
stdio = process.openStdin();
|
|
helpers.extend(global, {
|
|
quit: function() {
|
|
return process.exit(0);
|
|
}
|
|
});
|
|
run = function(buffer) {
|
|
var val;
|
|
try {
|
|
val = CoffeeScript.eval(buffer.toString(), {
|
|
noWrap: true,
|
|
globals: true,
|
|
fileName: 'repl'
|
|
});
|
|
if (val !== undefined) {
|
|
puts(inspect(val));
|
|
}
|
|
} catch (err) {
|
|
puts(err.stack || err.toString());
|
|
}
|
|
return repl.prompt();
|
|
};
|
|
repl = readline.createInterface(stdio);
|
|
repl.setPrompt('coffee> ');
|
|
stdio.on('data', function(buffer) {
|
|
return repl.write(buffer);
|
|
});
|
|
repl.on('close', function() {
|
|
return stdio.destroy();
|
|
});
|
|
repl.on('line', run);
|
|
repl.prompt();
|
|
}).call(this);
|