removing accidentally-committed `console.log`

This commit is contained in:
Michael Ficarra 2011-05-25 04:22:03 -04:00
parent 042f7ec791
commit 94fb7e32ea
2 changed files with 1 additions and 2 deletions

View File

@ -754,7 +754,7 @@
Access.prototype.compile = function(o) {
var name;
name = this.name.compile(o);
return this.proto + (IS_STRING.test(name) ? "[" + name + "]" : "." + name);
return this.proto + (IDENTIFIER.test(name) ? "." + name : "[" + name + "]");
};
Access.prototype.isComplex = NO;
return Access;

View File

@ -932,7 +932,6 @@ exports.Assign = class Assign extends Base
o.scope.add name, 'var'
else
o.scope.find name
console.log @variable.constructor.name, name
if @value instanceof Code and match = METHOD_DEF.exec name
@value.klass = match[1] if match[1]
@value.name = match[2] ? match[3] ? match[4]