Explorar o código

Fixed arguments to pushContext call.

Herbert Vojčík %!s(int64=12) %!d(string=hai) anos
pai
achega
9ea6ad3542
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      js/boot.js

+ 1 - 1
js/boot.js

@@ -542,7 +542,7 @@ function Smalltalk() {
 		}
 		method = klass ? klass.fn.prototype[selector] : receiver.klass && receiver[selector];
 		if(method) {
-			var context = pushContext(receiver, selector, method, args);
+			var context = pushContext(receiver, selector, args);
 			call = method.apply(receiver, args);
 			popContext(context);
 			return call;