mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
Merged in StanAngeloff excellent slice branch, applying recent factoring of utility functions
This commit is contained in:
parent
76ade0cb4d
commit
da43c70488
11 changed files with 243 additions and 414 deletions
11
lib/cake.js
11
lib/cake.js
|
@ -1,6 +1,15 @@
|
|||
(function(){
|
||||
var CoffeeScript, fs, helpers, no_such_task, oparse, options, optparse, path, print_tasks, switches, tasks;
|
||||
var Coffeescript = {
|
||||
slice: function(array, from, to, exclusive) {
|
||||
return array.slice.apply(array, Coffeescript.range(array, from, to, exclusive));
|
||||
},
|
||||
range: function(array, from, to, exclusive) {
|
||||
return [
|
||||
(from < 0 ? from + array.length : from || 0),
|
||||
(to < 0 ? to + array.length : to || array.length) + (exclusive ? 0 : 1)
|
||||
];
|
||||
},
|
||||
hasProp: Object.prototype.hasOwnProperty
|
||||
};
|
||||
// `cake` is a simplified version of [Make](http://www.gnu.org/software/make/)
|
||||
|
@ -55,7 +64,7 @@
|
|||
if (!(exists)) {
|
||||
throw new Error("Cakefile not found in " + (process.cwd()));
|
||||
}
|
||||
args = __slice(process.argv, 2, process.argv.length, true);
|
||||
args = Coffeescript.slice(process.argv, 2, process.argv.length, true);
|
||||
CoffeeScript.run(fs.readFileSync('Cakefile'), {
|
||||
source: 'Cakefile'
|
||||
});
|
||||
|
|
|
@ -1,10 +1,15 @@
|
|||
(function(){
|
||||
var BANNER, CoffeeScript, SWITCHES, compile_options, compile_script, compile_scripts, compile_stdio, fs, lint, option_parser, options, optparse, parse_options, path, print_tokens, sources, usage, version, watch_scripts, write_js;
|
||||
var __slice = function __slice(array, from, to, exclusive) {
|
||||
return array.slice(
|
||||
var Coffeescript = {
|
||||
slice: function(array, from, to, exclusive) {
|
||||
return array.slice.apply(array, Coffeescript.range(array, from, to, exclusive));
|
||||
},
|
||||
range: function(array, from, to, exclusive) {
|
||||
return [
|
||||
(from < 0 ? from + array.length : from || 0),
|
||||
(to < 0 ? to + array.length : to || array.length) + (exclusive ? 0 : 1)
|
||||
);
|
||||
];
|
||||
}
|
||||
};
|
||||
// The `coffee` utility. Handles command-line compilation of CoffeeScript
|
||||
// into various forms: saved into `.js` files or printed to stdout, piped to
|
||||
|
@ -51,8 +56,8 @@
|
|||
separator = sources.indexOf('--');
|
||||
flags = [];
|
||||
if (separator >= 0) {
|
||||
flags = __slice(sources, (separator + 1), sources.length, true);
|
||||
sources = __slice(sources, 0, separator, true);
|
||||
flags = Coffeescript.slice(sources, (separator + 1), sources.length, true);
|
||||
sources = Coffeescript.slice(sources, 0, separator, true);
|
||||
}
|
||||
process.ARGV = (process.argv = flags);
|
||||
if (options.watch) {
|
||||
|
@ -208,7 +213,8 @@
|
|||
o = (options = option_parser.parse(process.argv));
|
||||
options.run = !(o.compile || o.print || o.lint);
|
||||
options.print = !!(o.print || (o.eval || o.stdio && o.compile));
|
||||
return sources = __slice(options.arguments, 2, options.arguments.length, true);
|
||||
sources = Coffeescript.slice(options.arguments, 2, options.arguments.length, true);
|
||||
return sources;
|
||||
};
|
||||
// The compile-time options to pass to the CoffeeScript compiler.
|
||||
compile_options = function compile_options(source) {
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
(function(){
|
||||
var ACCESSORS, ASSIGNMENT, CALLABLE, CODE, COFFEE_ALIASES, COFFEE_KEYWORDS, COMMENT, COMMENT_CLEANER, CONVERSIONS, HALF_ASSIGNMENTS, HEREDOC, HEREDOC_INDENT, IDENTIFIER, INTERPOLATION, JS_CLEANER, JS_FORBIDDEN, JS_KEYWORDS, KEYWORDS, LAST_DENT, LAST_DENTS, LINE_BREAK, Lexer, MULTILINER, MULTI_DENT, NOT_REGEX, NO_NEWLINE, NUMBER, OPERATOR, REGEX_ESCAPE, REGEX_FLAGS, REGEX_INTERPOLATION, REGEX_START, RESERVED, Rewriter, STRING_NEWLINES, WHITESPACE, balanced_string, compact, count, helpers, include, starts;
|
||||
var Coffeescript = {
|
||||
aslice: Array.prototype.slice
|
||||
};
|
||||
// The CoffeeScript Lexer. Uses a series of token-matching regexes to attempt
|
||||
// matches against the beginning of the source code. When a match is found,
|
||||
// a token is produced, we consume the match, and start again. Tokens are in the
|
||||
|
@ -236,7 +239,7 @@
|
|||
// balanced (ie. strings, JS literals).
|
||||
Lexer.prototype.balanced_token = function balanced_token() {
|
||||
var delimited;
|
||||
delimited = Array.prototype.slice.call(arguments, 0, arguments.length - 0);
|
||||
delimited = Coffeescript.aslice.call(arguments, 0, arguments.length - 0);
|
||||
return balanced_string(this.chunk, delimited);
|
||||
};
|
||||
// Matches and conumes comments. We pass through comments into JavaScript,
|
||||
|
|
51
lib/nodes.js
51
lib/nodes.js
|
@ -8,14 +8,24 @@
|
|||
child.prototype = new ctor();
|
||||
child.prototype.constructor = child;
|
||||
},
|
||||
slice: function(array, from, to, exclusive) {
|
||||
return array.slice.apply(array, Coffeescript.range(array, from, to, exclusive));
|
||||
},
|
||||
range: function(array, from, to, exclusive) {
|
||||
return [
|
||||
(from < 0 ? from + array.length : from || 0),
|
||||
(to < 0 ? to + array.length : to || array.length) + (exclusive ? 0 : 1)
|
||||
];
|
||||
},
|
||||
bind: function(func, obj, args) {
|
||||
obj = obj || {};
|
||||
return (typeof args !== "undefined" && args !== null) ? function() {
|
||||
return func.apply(obj, args.concat(Array.prototype.slice.call(arguments, 0)));
|
||||
return (typeof args !== 'undefined' && args !== null) ? function() {
|
||||
return func.apply(obj, args.concat(Coffeescript.aslice.call(arguments, 0)));
|
||||
} : function() {
|
||||
return func.apply(obj, arguments);
|
||||
};
|
||||
}
|
||||
},
|
||||
aslice: Array.prototype.slice
|
||||
};
|
||||
// `nodes.coffee` contains all of the node classes for the syntax tree. Most
|
||||
// nodes are created as the result of actions in the [grammar](grammar.html),
|
||||
|
@ -436,7 +446,7 @@
|
|||
op = del(o, 'operation');
|
||||
splice = del(o, 'splice');
|
||||
replace = del(o, 'replace');
|
||||
props = only ? __slice(this.properties, 0, this.properties.length - 1, true) : this.properties;
|
||||
props = only ? Coffeescript.slice(this.properties, 0, this.properties.length - 1, true) : this.properties;
|
||||
baseline = this.base.compile(o);
|
||||
if (this.base instanceof ObjectNode && this.has_properties()) {
|
||||
baseline = "(" + baseline + ")";
|
||||
|
@ -584,7 +594,6 @@
|
|||
};
|
||||
Coffeescript.extend(CurryNode, CallNode);
|
||||
CurryNode.prototype.type = 'Curry';
|
||||
CurryNode.prototype.body = 'func.apply(obj, args.concat(Array.prototype.slice.call(arguments, 0)))';
|
||||
CurryNode.prototype.arguments = function arguments(o) {
|
||||
var _a, _b, _c, arg;
|
||||
_b = this.args;
|
||||
|
@ -727,8 +736,6 @@
|
|||
};
|
||||
Coffeescript.extend(SliceNode, BaseNode);
|
||||
SliceNode.prototype.type = 'Slice';
|
||||
SliceNode.prototype.slice_code = 'function __slice(array, from, to, exclusive) {\n return array.slice(\n (from < 0 ? from + array.length : from || 0),\n (to < 0 ? to + array.length : to || array.length) + (exclusive ? 0 : 1)\n );\n }';
|
||||
SliceNode.prototype.splice_code = 'function __splice(array, from, to, exclusive, replace) {\n var _a;\n return array.splice.apply(\n array,\n [_a = (from < 0 ? from + array.length : from || 0), (to < 0 ? to + array.length : to || array.length) + (exclusive ? 0 : 1) - _a].concat(replace)\n );\n }';
|
||||
SliceNode.prototype.compile_node = function compile_node(o) {
|
||||
var from, plus_part, to;
|
||||
from = this.range.from.compile(o);
|
||||
|
@ -737,29 +744,23 @@
|
|||
return ".slice(" + from + ", " + to + plus_part + ")";
|
||||
};
|
||||
SliceNode.prototype.compile_splice = function compile_splice(o) {
|
||||
var _a, _b, _c, array, call, exclusive, from, ref, replace, to;
|
||||
if ((typeof (_a = o.scope) !== "undefined" && _a !== null)) {
|
||||
o.scope.assign('__splice', this.splice_code, true);
|
||||
}
|
||||
var _a, _b, array, call, exclusive, from, ref, replace, to;
|
||||
array = del(o, 'array');
|
||||
replace = del(o, 'replace');
|
||||
from = (typeof (_b = this.range.from) !== "undefined" && _b !== null) ? this.range.from : literal('null');
|
||||
to = (typeof (_c = this.range.to) !== "undefined" && _c !== null) ? this.range.to : literal('null');
|
||||
from = (typeof (_a = this.range.from) !== "undefined" && _a !== null) ? this.range.from : literal('null');
|
||||
to = (typeof (_b = this.range.to) !== "undefined" && _b !== null) ? this.range.to : literal('null');
|
||||
exclusive = this.range.exclusive ? 'true' : 'false';
|
||||
ref = new ValueNode(literal('__splice'));
|
||||
ref = new ValueNode(literal(o.scope.utility('splice')));
|
||||
call = new CallNode(ref, [literal(array), from, to, literal(exclusive), replace]);
|
||||
return call.compile(o);
|
||||
};
|
||||
SliceNode.prototype.compile_slice = function compile_slice(o) {
|
||||
var _a, _b, _c, array, call, exclusive, from, ref, to;
|
||||
if ((typeof (_a = o.scope) !== "undefined" && _a !== null)) {
|
||||
o.scope.assign('__slice', this.slice_code, true);
|
||||
}
|
||||
var _a, _b, array, call, exclusive, from, ref, to;
|
||||
array = del(o, 'array');
|
||||
from = (typeof (_b = this.range.from) !== "undefined" && _b !== null) ? this.range.from : literal('null');
|
||||
to = (typeof (_c = this.range.to) !== "undefined" && _c !== null) ? this.range.to : literal('null');
|
||||
from = (typeof (_a = this.range.from) !== "undefined" && _a !== null) ? this.range.from : literal('null');
|
||||
to = (typeof (_b = this.range.to) !== "undefined" && _b !== null) ? this.range.to : literal('null');
|
||||
exclusive = this.range.exclusive ? 'true' : 'false';
|
||||
ref = new ValueNode(literal('__slice'));
|
||||
ref = new ValueNode(literal(o.scope.utility('slice')));
|
||||
call = new CallNode(ref, [literal(array), from, to, literal(exclusive)]);
|
||||
return call.compile(o);
|
||||
};
|
||||
|
@ -833,7 +834,7 @@
|
|||
obj = _a[i];
|
||||
code = obj.compile(o);
|
||||
if (obj instanceof SplatNode) {
|
||||
return this.compile_splat_literal(this.objects, o);
|
||||
return this.compile_splat_literal(o);
|
||||
} else if (obj instanceof CommentNode) {
|
||||
objects.push("\n" + code + "\n" + o.indent);
|
||||
} else if (i === this.objects.length - 1) {
|
||||
|
@ -1162,15 +1163,15 @@
|
|||
o.scope.assign(trailing.compile(o), "arguments[arguments.length - " + this.trailings.length + " + " + i + "]");
|
||||
i += 1;
|
||||
}
|
||||
return "" + name + " = Array.prototype.slice.call(arguments, " + this.index + ", arguments.length - " + (this.trailings.length) + ")";
|
||||
return "" + name + " = " + (o.scope.utility('aslice')) + ".call(arguments, " + this.index + ", arguments.length - " + (this.trailings.length) + ")";
|
||||
};
|
||||
// A compiling a splat as a destructuring assignment means slicing arguments
|
||||
// from the right-hand-side's corresponding array.
|
||||
SplatNode.prototype.compile_value = function compile_value(o, name, index, trailings) {
|
||||
if ((typeof trailings !== "undefined" && trailings !== null)) {
|
||||
return "Array.prototype.slice.call(" + name + ", " + index + ", " + (name) + ".length - " + trailings + ")";
|
||||
return "" + (o.scope.utility('aslice')) + ".call(" + name + ", " + index + ", " + (name) + ".length - " + trailings + ")";
|
||||
} else {
|
||||
return "Array.prototype.slice.call(" + name + ", " + index + ")";
|
||||
return "" + (o.scope.utility('aslice')) + ".call(" + name + ", " + index + ")";
|
||||
}
|
||||
};
|
||||
// Utility function that converts arbitrary number of elements, mixed with
|
||||
|
|
426
lib/parser.js
426
lib/parser.js
File diff suppressed because one or more lines are too long
|
@ -3,12 +3,13 @@
|
|||
var Coffeescript = {
|
||||
bind: function(func, obj, args) {
|
||||
obj = obj || {};
|
||||
return (typeof args !== "undefined" && args !== null) ? function() {
|
||||
return func.apply(obj, args.concat(Array.prototype.slice.call(arguments, 0)));
|
||||
return (typeof args !== 'undefined' && args !== null) ? function() {
|
||||
return func.apply(obj, args.concat(Coffeescript.aslice.call(arguments, 0)));
|
||||
} : function() {
|
||||
return func.apply(obj, arguments);
|
||||
};
|
||||
},
|
||||
aslice: Array.prototype.slice,
|
||||
hasProp: Object.prototype.hasOwnProperty
|
||||
};
|
||||
// The CoffeeScript language has a good deal of optional syntax, implicit syntax,
|
||||
|
|
14
lib/scope.js
14
lib/scope.js
|
@ -97,20 +97,30 @@
|
|||
// Ensure the CoffeeScript utility object is included in the top level
|
||||
// then return a CallNode curried constructor bound to the utility function
|
||||
Scope.prototype.utility = function utility(name) {
|
||||
var _a, _b, _c, _d, dep;
|
||||
if (this.parent) {
|
||||
return this.topmost().utility(name);
|
||||
}
|
||||
if ((typeof (_d = utilities.functions[name]) !== "undefined" && _d !== null)) {
|
||||
this.utilities = this.utilities || {};
|
||||
this.utilities[name] = true;
|
||||
this.utilities[name] = utilities.functions[name];
|
||||
_b = (utilities.dependencies[name] || []);
|
||||
for (_a = 0, _c = _b.length; _a < _c; _a++) {
|
||||
dep = _b[_a];
|
||||
this.utility(dep);
|
||||
}
|
||||
}
|
||||
return "" + (utilities.KEY) + "." + name;
|
||||
};
|
||||
// Formats an javascript object containing the utility methods required
|
||||
// in the scope
|
||||
Scope.prototype.included_utilities = function included_utilities(tab) {
|
||||
var _a, _b, _c, _d, key, props;
|
||||
if ((typeof (_d = this.utilities) !== "undefined" && _d !== null)) {
|
||||
props = (function() {
|
||||
_a = []; _b = this.utilities;
|
||||
for (key in _b) { if (Coffeescript.hasProp.call(_b, key)) {
|
||||
(typeof (_c = this.utilities[key]) !== "undefined" && _c !== null) ? _a.push(utilities.FORMAT(key, tab)) : null;
|
||||
(typeof (_c = this.utilities[key]) !== "undefined" && _c !== null) ? _a.push(utilities.format(key, tab)) : null;
|
||||
}}
|
||||
return _a;
|
||||
}).call(this);
|
||||
|
|
|
@ -4,12 +4,23 @@
|
|||
this.exports = this;
|
||||
}
|
||||
exports.utilities = (utilities = {
|
||||
KEY: "Coffeescript",
|
||||
FORMAT: function FORMAT(key, tab) {
|
||||
return "\n " + tab + key + ": " + (utilities[key].replace(/\n/g, "\n" + tab + " ") || 'undefined');
|
||||
},
|
||||
extend: 'function(child, parent) {\n var ctor = function(){ };\n ctor.prototype = parent.prototype;\n child.__superClass__ = parent.prototype;\n child.prototype = new ctor();\n child.prototype.constructor = child;\n}',
|
||||
bind: 'function(func, obj, args) {\n obj = obj || {};\n return (typeof args !== "undefined" && args !== null) ? function() {\n return func.apply(obj, args.concat(Array.prototype.slice.call(arguments, 0)));\n } : function() {\n return func.apply(obj, arguments);\n };\n}',
|
||||
hasProp: "Object.prototype.hasOwnProperty"
|
||||
KEY: "Coffeescript"
|
||||
});
|
||||
utilities.format = function format(key, tab) {
|
||||
return "\n " + tab + key + ": " + (utilities.functions[key].replace(/\n/g, "\n" + tab + " ") || 'undefined');
|
||||
};
|
||||
utilities.dependencies = {
|
||||
slice: ['range'],
|
||||
splice: ['range'],
|
||||
bind: ['aslice']
|
||||
};
|
||||
utilities.functions = {
|
||||
extend: "function(child, parent) {\n var ctor = function(){ };\n ctor.prototype = parent.prototype;\n child.__superClass__ = parent.prototype;\n child.prototype = new ctor();\n child.prototype.constructor = child;\n}",
|
||||
bind: "function(func, obj, args) {\n obj = obj || {};\n return (typeof args !== 'undefined' && args !== null) ? function() {\n return func.apply(obj, args.concat(" + (utilities.KEY) + ".aslice.call(arguments, 0)));\n } : function() {\n return func.apply(obj, arguments);\n };\n}",
|
||||
range: "function(array, from, to, exclusive) {\n return [\n (from < 0 ? from + array.length : from || 0),\n (to < 0 ? to + array.length : to || array.length) + (exclusive ? 0 : 1)\n ];\n}",
|
||||
slice: "function(array, from, to, exclusive) {\n return array.slice.apply(array, " + (utilities.KEY) + ".range(array, from, to, exclusive));\n}",
|
||||
splice: "function(array, from, to, exclusive, replace) {\n var _a, _r = " + (utilities.KEY) + ".range(array, from, to, exclusive);\n return array.splice.apply(array, [_a = _r[0], _r[1] - _a].concat(replace));\n}",
|
||||
hasProp: "Object.prototype.hasOwnProperty",
|
||||
aslice: "Array.prototype.slice"
|
||||
};
|
||||
})();
|
||||
|
|
|
@ -420,8 +420,6 @@ exports.CallNode: class CallNode extends BaseNode
|
|||
exports.CurryNode: class CurryNode extends CallNode
|
||||
type: 'Curry'
|
||||
|
||||
body: 'func.apply(obj, args.concat(Array.prototype.slice.call(arguments, 0)))'
|
||||
|
||||
constructor: (meth, args) ->
|
||||
@children: flatten [@meth: meth, @context: args[0], @args: (args.slice(1) or [])]
|
||||
@compile_splat_arguments: SplatNode.compile_mixed_array <- @, @args
|
||||
|
@ -532,25 +530,6 @@ exports.RangeNode: class RangeNode extends BaseNode
|
|||
exports.SliceNode: class SliceNode extends BaseNode
|
||||
type: 'Slice'
|
||||
|
||||
slice_code: '''
|
||||
function __slice(array, from, to, exclusive) {
|
||||
return array.slice(
|
||||
(from < 0 ? from + array.length : from || 0),
|
||||
(to < 0 ? to + array.length : to || array.length) + (exclusive ? 0 : 1)
|
||||
);
|
||||
}
|
||||
'''
|
||||
|
||||
splice_code: '''
|
||||
function __splice(array, from, to, exclusive, replace) {
|
||||
var _a;
|
||||
return array.splice.apply(
|
||||
array,
|
||||
[_a = (from < 0 ? from + array.length : from || 0), (to < 0 ? to + array.length : to || array.length) + (exclusive ? 0 : 1) - _a].concat(replace)
|
||||
);
|
||||
}
|
||||
'''
|
||||
|
||||
constructor: (range) ->
|
||||
@children: [@range: range]
|
||||
this
|
||||
|
@ -562,23 +541,21 @@ exports.SliceNode: class SliceNode extends BaseNode
|
|||
".slice($from, $to$plus_part)"
|
||||
|
||||
compile_splice: (o) ->
|
||||
o.scope.assign('__splice', @splice_code, true) if o.scope?
|
||||
array: del o, 'array'
|
||||
replace: del o, 'replace'
|
||||
from: if @range.from? then @range.from else literal('null')
|
||||
to: if @range.to? then @range.to else literal('null')
|
||||
exclusive: if @range.exclusive then 'true' else 'false'
|
||||
ref: new ValueNode literal('__splice')
|
||||
ref: new ValueNode literal(o.scope.utility('splice'))
|
||||
call: new CallNode ref, [literal(array), from, to, literal(exclusive), replace]
|
||||
call.compile(o)
|
||||
|
||||
compile_slice: (o) ->
|
||||
o.scope.assign('__slice', @slice_code, true) if o.scope?
|
||||
array: del o, 'array'
|
||||
from: if @range.from? then @range.from else literal('null')
|
||||
to: if @range.to? then @range.to else literal('null')
|
||||
exclusive: if @range.exclusive then 'true' else 'false'
|
||||
ref: new ValueNode literal('__slice')
|
||||
ref: new ValueNode literal(o.scope.utility('slice'))
|
||||
call: new CallNode ref, [literal(array), from, to, literal(exclusive)]
|
||||
call.compile(o)
|
||||
|
||||
|
@ -626,7 +603,7 @@ exports.ArrayNode: class ArrayNode extends BaseNode
|
|||
for obj, i in @objects
|
||||
code: obj.compile(o)
|
||||
if obj instanceof SplatNode
|
||||
return @compile_splat_literal(@objects, o)
|
||||
return @compile_splat_literal o
|
||||
else if obj instanceof CommentNode
|
||||
objects.push "\n$code\n$o.indent"
|
||||
else if i is @objects.length - 1
|
||||
|
@ -866,13 +843,13 @@ exports.SplatNode: class SplatNode extends BaseNode
|
|||
for trailing in @trailings
|
||||
o.scope.assign(trailing.compile(o), "arguments[arguments.length - $@trailings.length + $i]")
|
||||
i: + 1
|
||||
"$name = Array.prototype.slice.call(arguments, $@index, arguments.length - ${@trailings.length})"
|
||||
"$name = ${o.scope.utility('aslice')}.call(arguments, $@index, arguments.length - ${@trailings.length})"
|
||||
|
||||
# A compiling a splat as a destructuring assignment means slicing arguments
|
||||
# from the right-hand-side's corresponding array.
|
||||
compile_value: (o, name, index, trailings) ->
|
||||
if trailings? then "Array.prototype.slice.call($name, $index, ${name}.length - $trailings)" \
|
||||
else "Array.prototype.slice.call($name, $index)"
|
||||
if trailings? then "${o.scope.utility('aslice')}.call($name, $index, ${name}.length - $trailings)" \
|
||||
else "${o.scope.utility('aslice')}.call($name, $index)"
|
||||
|
||||
# Utility function that converts arbitrary number of elements, mixed with
|
||||
# splats, to a proper array
|
||||
|
|
|
@ -66,17 +66,20 @@ exports.Scope: class Scope
|
|||
# then return a CallNode curried constructor bound to the utility function
|
||||
utility: (name) ->
|
||||
return @topmost().utility(name) if @parent
|
||||
if utilities.functions[name]?
|
||||
@utilities: or {}
|
||||
@utilities[name]: true
|
||||
@utilities[name]: utilities.functions[name]
|
||||
@utility(dep) for dep in (utilities.dependencies[name] or [])
|
||||
"${utilities.KEY}.$name"
|
||||
|
||||
# Formats an javascript object containing the utility methods required
|
||||
# in the scope
|
||||
included_utilities: (tab) ->
|
||||
if @utilities?
|
||||
props: (utilities.FORMAT(key, tab) for key of @utilities when @utilities[key]?)
|
||||
props: (utilities.format(key, tab) for key of @utilities when @utilities[key]?)
|
||||
["${utilities.KEY} = {${props.join(', ')}\n$tab}"]
|
||||
else []
|
||||
|
||||
|
||||
# Does this scope reference any variables that need to be declared in the
|
||||
# given function body?
|
||||
has_declarations: (body) ->
|
||||
|
|
|
@ -1,10 +1,17 @@
|
|||
this.exports: this unless process?
|
||||
exports.utilities: utilities: {
|
||||
KEY: "Coffeescript"
|
||||
FORMAT: (key, tab) ->
|
||||
"\n $tab$key: ${utilities[key].replace(/\n/g, "\n$tab ") or 'undefined'}"
|
||||
exports.utilities: utilities: { KEY: "Coffeescript" }
|
||||
|
||||
extend: '''
|
||||
utilities.format: (key, tab) ->
|
||||
"\n $tab$key: ${utilities.functions[key].replace(/\n/g, "\n$tab ") or 'undefined'}"
|
||||
|
||||
utilities.dependencies: {
|
||||
slice: ['range']
|
||||
splice: ['range']
|
||||
bind: ['aslice']
|
||||
}
|
||||
|
||||
utilities.functions: {
|
||||
extend: """
|
||||
function(child, parent) {
|
||||
var ctor = function(){ };
|
||||
ctor.prototype = parent.prototype;
|
||||
|
@ -12,16 +19,37 @@ exports.utilities: utilities: {
|
|||
child.prototype = new ctor();
|
||||
child.prototype.constructor = child;
|
||||
}
|
||||
'''
|
||||
bind: '''
|
||||
"""
|
||||
bind: """
|
||||
function(func, obj, args) {
|
||||
obj = obj || {};
|
||||
return (typeof args !== "undefined" && args !== null) ? function() {
|
||||
return func.apply(obj, args.concat(Array.prototype.slice.call(arguments, 0)));
|
||||
return (typeof args !== 'undefined' && args !== null) ? function() {
|
||||
return func.apply(obj, args.concat(${utilities.KEY}.aslice.call(arguments, 0)));
|
||||
} : function() {
|
||||
return func.apply(obj, arguments);
|
||||
};
|
||||
}
|
||||
'''
|
||||
"""
|
||||
range: """
|
||||
function(array, from, to, exclusive) {
|
||||
return [
|
||||
(from < 0 ? from + array.length : from || 0),
|
||||
(to < 0 ? to + array.length : to || array.length) + (exclusive ? 0 : 1)
|
||||
];
|
||||
}
|
||||
"""
|
||||
slice: """
|
||||
function(array, from, to, exclusive) {
|
||||
return array.slice.apply(array, ${utilities.KEY}.range(array, from, to, exclusive));
|
||||
}
|
||||
"""
|
||||
splice: """
|
||||
function(array, from, to, exclusive, replace) {
|
||||
var _a, _r = ${utilities.KEY}.range(array, from, to, exclusive);
|
||||
return array.splice.apply(array, [_a = _r[0], _r[1] - _a].concat(replace));
|
||||
}
|
||||
"""
|
||||
|
||||
hasProp: "Object.prototype.hasOwnProperty"
|
||||
aslice: "Array.prototype.slice"
|
||||
}
|
Loading…
Reference in a new issue