jashkenas--coffeescript/lib/scope.js

156 lines
4.5 KiB
JavaScript
Raw Normal View History

(function() {
var Scope, extend, last, _ref;
2010-10-01 23:21:34 +00:00
_ref = require('./helpers'), extend = _ref.extend, last = _ref.last;
exports.Scope = (function() {
2010-10-05 03:21:16 +00:00
Scope = (function() {
function Scope(_arg, _arg2, _arg3) {
2010-10-05 03:21:16 +00:00
this.parent = _arg;
this.expressions = _arg2;
this.method = _arg3;
2010-10-21 04:07:21 +00:00
this.variables = [
{
name: 'arguments',
type: 'arguments'
}
];
2010-10-25 01:42:37 +00:00
this.positions = {};
if (this.parent) {
this.garbage = this.parent.garbage;
} else {
this.garbage = [];
2010-10-05 03:21:16 +00:00
Scope.root = this;
}
return this;
}
return Scope;
2010-10-05 03:21:16 +00:00
})();
Scope.root = null;
2010-10-21 03:09:06 +00:00
Scope.prototype.add = function(name, type) {
2010-10-25 01:42:37 +00:00
var pos;
return typeof (pos = this.positions[name]) === 'number' ? this.variables[pos].type = type : this.positions[name] = this.variables.push({
name: name,
type: type
2010-10-25 01:42:37 +00:00
}) - 1;
};
Scope.prototype.startLevel = function() {
2010-10-20 08:13:43 +00:00
this.garbage.push([]);
return this;
};
Scope.prototype.endLevel = function() {
var name, _i, _len, _ref;
_ref = this.garbage.pop();
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
name = _ref[_i];
2010-10-20 08:13:43 +00:00
if (this.type(name) === 'var') {
2010-10-21 03:09:06 +00:00
this.add(name, 'reuse');
}
}
2010-10-20 08:13:43 +00:00
return this;
};
Scope.prototype.find = function(name, options) {
if (this.check(name, options)) {
return true;
}
2010-10-21 03:09:06 +00:00
this.add(name, 'var');
return false;
};
Scope.prototype.any = function(fn) {
var v, _i, _len, _ref;
_ref = this.variables;
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
v = _ref[_i];
2010-10-20 08:13:43 +00:00
if (fn(v)) {
return true;
}
}
return false;
};
Scope.prototype.parameter = function(name) {
2010-10-21 03:09:06 +00:00
return this.add(name, 'param');
};
Scope.prototype.check = function(name, immediate) {
var found, _ref;
found = !!this.type(name);
if (found || immediate) {
return found;
}
return !!((_ref = this.parent) != null ? _ref.check(name) : void 0);
};
2010-10-20 08:13:43 +00:00
Scope.prototype.temporary = function(name, index) {
return name.length > 1 ? '_' + name + (index > 1 ? index : '') : '_' + (index + parseInt(name, 36)).toString(36).replace(/\d/g, 'a');
};
Scope.prototype.type = function(name) {
var v, _i, _len, _ref;
_ref = this.variables;
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
v = _ref[_i];
if (v.name === name) {
return v.type;
}
}
return null;
};
Scope.prototype.freeVariable = function(type) {
var index, temp, _ref;
index = 0;
while (this.check((temp = this.temporary(type, index)), true) && this.type(temp) !== 'reuse') {
index++;
}
2010-10-21 03:09:06 +00:00
this.add(temp, 'var');
if ((_ref = last(this.garbage)) != null) {
_ref.push(temp);
}
return temp;
};
Scope.prototype.assign = function(name, value) {
2010-10-21 03:09:06 +00:00
return this.add(name, {
value: value,
assigned: true
});
};
Scope.prototype.hasDeclarations = function(body) {
2010-10-20 08:13:43 +00:00
return body === this.expressions && this.any(function(v) {
var _ref;
return (_ref = v.type) === 'var' || _ref === 'reuse';
});
};
Scope.prototype.hasAssignments = function(body) {
2010-10-20 08:13:43 +00:00
return body === this.expressions && this.any(function(v) {
return v.type.assigned;
});
};
Scope.prototype.declaredVariables = function() {
var tmp, usr, v, _i, _len, _ref, _ref2;
usr = [];
tmp = [];
_ref = this.variables;
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
v = _ref[_i];
if ((_ref2 = v.type) === 'var' || _ref2 === 'reuse') {
(v.name.charAt(0) === '_' ? tmp : usr).push(v.name);
}
}
return usr.sort().concat(tmp.sort());
};
Scope.prototype.assignedVariables = function() {
var v, _i, _len, _ref, _result;
_ref = this.variables;
_result = [];
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
v = _ref[_i];
if (v.type.assigned) {
_result.push("" + v.name + " = " + v.type.value);
}
}
return _result;
};
Scope.prototype.compiledDeclarations = function() {
return this.declaredVariables().join(', ');
};
Scope.prototype.compiledAssignments = function() {
return this.assignedVariables().join(', ');
};
return Scope;
}).call(this);
}).call(this);