不要怂,就是干,撸起袖子干!

Commit a32b6189 by sdepold

fix super bug

1 parent e4849adb
Showing with 2 additions and 2 deletions
......@@ -23,8 +23,8 @@ var Utils = module.exports = {
return _
})(),
inherit: function(klass, super) {
sys.inherits(klass, super)
inherit: function(klass, _super) {
sys.inherits(klass, _super)
},
addEventEmitter: function(_class) {
Utils.inherit(_class, require('events').EventEmitter)
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!