Procházet zdrojové kódy

Fixed arguments to pushContext call.

Herbert Vojčík před 12 roky
rodič
revize
9ea6ad3542
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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;