adding comments to the intermediate language to help me trace what's going on in the simulator

This commit is contained in:
Danny Yoo 2011-05-17 16:24:17 -04:00
parent 24f988c45a
commit 185b9f197c
5 changed files with 17 additions and 2 deletions

View File

@ -132,7 +132,9 @@
PopControlFrame
DebugPrint))
DebugPrint
Comment
))
;; Debug print statement.
@ -215,6 +217,8 @@
#:transparent)
(define-struct: Comment ([val : Any])
#:transparent)

View File

@ -154,6 +154,8 @@ EOF
[(PushControlFrame/Prompt? stmt)
(next)]
[(PopControlFrame? stmt)
(next)]
[(Comment? stmt)
(next)]))]))
@ -292,7 +294,10 @@ EOF
(format "[~a]" (assemble-oparg (PushImmediateOntoEnvironment-value stmt)))]
[else
(assemble-oparg (PushImmediateOntoEnvironment-value stmt))])])
val-string))])))
val-string))]
[(Comment? stmt)
;; TODO: maybe comments should be emitted as JavaScript comments.
""])))
(define-predicate natural? Natural)

View File

@ -60,6 +60,8 @@
[(PushControlFrame/Prompt? stmt)
(label->labels (PushControlFrame/Prompt-label stmt))]
[(PopControlFrame? stmt)
empty]
[(Comment? stmt)
empty]))

View File

@ -102,6 +102,8 @@
#f]
[(PopControlFrame? stmt)
#f]
[(Comment? stmt)
#f]))

View File

@ -124,6 +124,8 @@
(step-push-control-frame/prompt! m i)]
[(PopControlFrame? i)
(step-pop-control-frame! m i)]
[(Comment? i)
'ok]
)])
(increment-pc! m)))