still chasing the bug

This commit is contained in:
Danny Yoo 2011-05-17 14:04:13 -04:00
parent fff511672d
commit 2f90e68db1
3 changed files with 5 additions and 4 deletions

View File

@ -84,7 +84,6 @@
(make-bootstrapped-primitive-code
'map
'(letrec ([map (lambda (f l)
(displayln "in map")
(if (null? l)
null
(cons (f (car l))

View File

@ -261,9 +261,10 @@
(let: ([a-top : toplevel (ensure-toplevel (env-ref m (CheckToplevelBound!-depth op)))])
(when (> (CheckToplevelBound!-pos op)
(length (toplevel-vals a-top)))
(printf "ERROR: toplevel is length ~s, but trying to refer to ~s"
(printf "ERROR: toplevel is length ~s, but trying to refer to ~s.\n\n~s"
(length (toplevel-vals a-top))
(CheckToplevelBound!-pos op)))
(CheckToplevelBound!-pos op)
(toplevel-names a-top)))
(cond
[(undefined? (list-ref (toplevel-vals a-top) (CheckToplevelBound!-pos op)))
(error 'check-toplevel-bound! "Unbound identifier ~s"
@ -316,6 +317,7 @@
(let: ([a-proc : SlotValue (machine-proc m)])
(cond
[(closure? a-proc)
(printf "installing values ~s\n" (closure-vals a-proc))
(env-push-many! m (closure-vals a-proc))]
[else
(error 'step-perform "Procedure register doesn't hold a procedure: ~s"

View File

@ -54,5 +54,5 @@
(test (read (open-input-file "tests/earley/earley.sch"))
(port->string (open-input-file "tests/earley/expected.txt"))
;;#:debug? #t
#:debug? #t
)