mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
removing accidentally-committed console.log
This commit is contained in:
parent
042f7ec791
commit
94fb7e32ea
2 changed files with 1 additions and 2 deletions
|
@ -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;
|
||||
|
|
|
@ -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]
|
||||
|
|
Loading…
Add table
Reference in a new issue