Skip to content

Commit

Permalink
Fix super() dispatches on class methods (fixes #405)
Browse files Browse the repository at this point in the history
  • Loading branch information
adambeynon committed Nov 15, 2013
1 parent 5303510 commit a4c12ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opal/core/runtime.js
Expand Up @@ -494,7 +494,7 @@
}
else {
if (obj._isClass) {
dispatcher = obj._klass;
dispatcher = obj._super;
}
else {
dispatcher = find_obj_super_dispatcher(obj, jsid, current_func);
Expand Down

1 comment on commit a4c12ba

@elia
Copy link
Member

@elia elia commented on a4c12ba Nov 16, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Boom!

Please sign in to comment.