Detect CoffeeScript with generated comment

This commit is contained in:
Joshua Peek
2012-01-16 16:57:30 -06:00
parent 946357fde7
commit 7974d23444
6 changed files with 146 additions and 25 deletions

View File

@@ -1,15 +1,20 @@
// Generated by CoffeeScript 1.2.1
(function() {
var cubes, list, math, num, number, opposite, race, square;
var __slice = Array.prototype.slice;
var cubes, list, math, num, number, opposite, race, square,
__slice = [].slice;
number = 42;
opposite = true;
if (opposite) {
number = -42;
}
if (opposite) number = -42;
square = function(x) {
return x * x;
};
list = [1, 2, 3, 4, 5];
math = {
root: Math.sqrt,
square: square,
@@ -17,14 +22,15 @@
return x * square(x);
}
};
race = function() {
var runners, winner;
winner = arguments[0], runners = 2 <= arguments.length ? __slice.call(arguments, 1) : [];
return print(winner, runners);
};
if (typeof elvis !== "undefined" && elvis !== null) {
alert("I knew it!");
}
if (typeof elvis !== "undefined" && elvis !== null) alert("I knew it!");
cubes = (function() {
var _i, _len, _results;
_results = [];
@@ -34,4 +40,5 @@
}
return _results;
})();
}).call(this);