flagging some things as no-ops
This commit is contained in:
parent
b8cfd43a50
commit
22eb5fc187
|
@ -180,10 +180,14 @@
|
||||||
(loop (rest stmts)))]
|
(loop (rest stmts)))]
|
||||||
|
|
||||||
[(DebugPrint? a-stmt)
|
[(DebugPrint? a-stmt)
|
||||||
(cons a-stmt (loop (rest stmts)))]
|
;(cons a-stmt (loop (rest stmts)))
|
||||||
|
(loop (rest stmts))
|
||||||
|
]
|
||||||
|
|
||||||
[(Comment? a-stmt)
|
[(Comment? a-stmt)
|
||||||
(cons a-stmt (loop (rest stmts)))]
|
(loop (rest stmts))
|
||||||
|
;(cons a-stmt (loop (rest stmts)))
|
||||||
|
]
|
||||||
|
|
||||||
[(AssignImmediateStatement? a-stmt)
|
[(AssignImmediateStatement? a-stmt)
|
||||||
(cons (make-AssignImmediateStatement (rewrite-target (AssignImmediateStatement-target a-stmt))
|
(cons (make-AssignImmediateStatement (rewrite-target (AssignImmediateStatement-target a-stmt))
|
||||||
|
@ -332,7 +336,8 @@
|
||||||
#f]
|
#f]
|
||||||
|
|
||||||
[(DebugPrint? stmt)
|
[(DebugPrint? stmt)
|
||||||
#f]
|
;#f
|
||||||
|
#t]
|
||||||
|
|
||||||
[(AssignImmediateStatement? stmt)
|
[(AssignImmediateStatement? stmt)
|
||||||
(equal? (AssignImmediateStatement-target stmt)
|
(equal? (AssignImmediateStatement-target stmt)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user