continuing to grab at low-hanging fruit.
This commit is contained in:
parent
8506b70253
commit
3d53fe7699
|
@ -1423,7 +1423,7 @@
|
|||
|
||||
|
||||
;; Compiled branch
|
||||
(make-PerformStatement (make-CheckClosureAndArity! (make-Reg 'argcount)))
|
||||
(make-PerformStatement (make-CheckClosureAndArity!))
|
||||
(compile-compiled-procedure-application cenv
|
||||
number-of-arguments
|
||||
'dynamic
|
||||
|
|
|
@ -365,7 +365,7 @@
|
|||
|
||||
;; Check the closure procedure value in 'proc and make sure it's a closure
|
||||
;; that can accept the right arguments (stored as a number in the argcount register.).
|
||||
(define-struct: CheckClosureAndArity! ([num-args : OpArg])
|
||||
(define-struct: CheckClosureAndArity! ()
|
||||
#:transparent)
|
||||
|
||||
|
||||
|
|
|
@ -22,8 +22,7 @@
|
|||
|
||||
|
||||
[(CheckClosureAndArity!? op)
|
||||
(format "RT.checkClosureAndArity(M, ~a);"
|
||||
(assemble-oparg (CheckClosureAndArity!-num-args op)))]
|
||||
"RT.checkClosureAndArity(M);"]
|
||||
|
||||
[(ExtendEnvironment/Prefix!? op)
|
||||
(let: ([names : (Listof (U Symbol False GlobalBucket ModuleVariable)) (ExtendEnvironment/Prefix!-names op)])
|
||||
|
|
|
@ -655,12 +655,12 @@
|
|||
|
||||
|
||||
|
||||
var checkClosureAndArity = function(M, n) {
|
||||
var checkClosureAndArity = function(M) {
|
||||
if(!(M.proc instanceof Closure)){
|
||||
raiseOperatorIsNotClosure(M,M.proc);
|
||||
}
|
||||
if(!isArityMatching(M.proc.racketArity,n)) {
|
||||
raiseArityMismatchError(M, M.proc,n);
|
||||
if(!isArityMatching(M.proc.racketArity,M.a)) {
|
||||
raiseArityMismatchError(M, M.proc,M.a);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user