소스 검색

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;