1
0
فهرست منبع

Fixed arguments to pushContext call.

Herbert Vojčík 12 سال پیش
والد
کامیت
9ea6ad3542
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  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;