mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
137 lines
5 KiB
JavaScript
137 lines
5 KiB
JavaScript
(function(){
|
|
var Scope;
|
|
var __hasProp = Object.prototype.hasOwnProperty;
|
|
// The **Scope** class regulates lexical scoping within CoffeeScript. As you
|
|
// generate code, you create a tree of scopes in the same shape as the nested
|
|
// function bodies. Each scope knows about the variables declared within it,
|
|
// and has a reference to its parent enclosing scope. In this way, we know which
|
|
// variables are new and need to be declared with `var`, and which are shared
|
|
// with the outside.
|
|
// Set up exported variables for both **Node.js** and the browser.
|
|
if (!((typeof process !== "undefined" && process !== null))) {
|
|
this.exports = this;
|
|
}
|
|
exports.Scope = (function() {
|
|
Scope = function(parent, expressions, method) {
|
|
var _a;
|
|
_a = [parent, expressions, method];
|
|
this.parent = _a[0];
|
|
this.expressions = _a[1];
|
|
this.method = _a[2];
|
|
this.variables = {};
|
|
if (this.parent) {
|
|
this.tempVar = this.parent.tempVar;
|
|
} else {
|
|
Scope.root = this;
|
|
this.tempVar = '_a';
|
|
}
|
|
return this;
|
|
};
|
|
// The top-level **Scope** object.
|
|
Scope.root = null;
|
|
// Initialize a scope with its parent, for lookups up the chain,
|
|
// as well as a reference to the **Expressions** node is belongs to, which is
|
|
// where it should declare its variables, and a reference to the function that
|
|
// it wraps.
|
|
// Look up a variable name in lexical scope, and declare it if it does not
|
|
// already exist.
|
|
Scope.prototype.find = function(name) {
|
|
if (this.check(name)) {
|
|
return true;
|
|
}
|
|
this.variables[name] = 'var';
|
|
return false;
|
|
};
|
|
// Test variables and return true the first time fn(v, k) returns true
|
|
Scope.prototype.any = function(fn) {
|
|
var _a, k, v;
|
|
_a = this.variables;
|
|
for (v in _a) { if (__hasProp.call(_a, v)) {
|
|
k = _a[v];
|
|
if (fn(v, k)) {
|
|
return true;
|
|
}
|
|
}}
|
|
return false;
|
|
};
|
|
// Reserve a variable name as originating from a function parameter for this
|
|
// scope. No `var` required for internal references.
|
|
Scope.prototype.parameter = function(name) {
|
|
this.variables[name] = 'param';
|
|
return this.variables[name];
|
|
};
|
|
// Just check to see if a variable has already been declared, without reserving.
|
|
Scope.prototype.check = function(name) {
|
|
if (this.variables[name]) {
|
|
return true;
|
|
}
|
|
return !!(this.parent && this.parent.check(name));
|
|
};
|
|
// If we need to store an intermediate result, find an available name for a
|
|
// compiler-generated variable. `_a`, `_b`, and so on...
|
|
Scope.prototype.freeVariable = function() {
|
|
var ordinal;
|
|
while (this.check(this.tempVar)) {
|
|
ordinal = 1 + parseInt(this.tempVar.substr(1), 36);
|
|
this.tempVar = '_' + ordinal.toString(36).replace(/\d/g, 'a');
|
|
}
|
|
this.variables[this.tempVar] = 'var';
|
|
return this.tempVar;
|
|
};
|
|
// Ensure that an assignment is made at the top of this scope
|
|
// (or at the top-level scope, if requested).
|
|
Scope.prototype.assign = function(name, value) {
|
|
this.variables[name] = {
|
|
value: value,
|
|
assigned: true
|
|
};
|
|
return this.variables[name];
|
|
};
|
|
// Does this scope reference any variables that need to be declared in the
|
|
// given function body?
|
|
Scope.prototype.hasDeclarations = function(body) {
|
|
return body === this.expressions && this.any(function(k, val) {
|
|
return val === 'var';
|
|
});
|
|
};
|
|
// Does this scope reference any assignments that need to be declared at the
|
|
// top of the given function body?
|
|
Scope.prototype.hasAssignments = function(body) {
|
|
return body === this.expressions && this.any(function(k, val) {
|
|
return val.assigned;
|
|
});
|
|
};
|
|
// Return the list of variables first declared in this scope.
|
|
Scope.prototype.declaredVariables = function() {
|
|
var _a, _b, key, val;
|
|
return (function() {
|
|
_a = []; _b = this.variables;
|
|
for (key in _b) { if (__hasProp.call(_b, key)) {
|
|
val = _b[key];
|
|
val === 'var' ? _a.push(key) : null;
|
|
}}
|
|
return _a;
|
|
}).call(this).sort();
|
|
};
|
|
// Return the list of assignments that are supposed to be made at the top
|
|
// of this scope.
|
|
Scope.prototype.assignedVariables = function() {
|
|
var _a, _b, key, val;
|
|
_a = []; _b = this.variables;
|
|
for (key in _b) { if (__hasProp.call(_b, key)) {
|
|
val = _b[key];
|
|
val.assigned ? _a.push(("" + key + " = " + val.value)) : null;
|
|
}}
|
|
return _a;
|
|
};
|
|
// Compile the JavaScript for all of the variable declarations in this scope.
|
|
Scope.prototype.compiledDeclarations = function() {
|
|
return this.declaredVariables().join(', ');
|
|
};
|
|
// Compile the JavaScript for all of the variable assignments in this scope.
|
|
Scope.prototype.compiledAssignments = function() {
|
|
return this.assignedVariables().join(', ');
|
|
};
|
|
return Scope;
|
|
}).call(this);
|
|
})();
|