compiler.cfg.stacks.local: Have unit test load prettyprint implementation for ds-loc so that it always prints as "D 4".

db4
Doug Coleman 2014-10-22 10:31:27 -07:00
parent cb83f3b39b
commit 1ee9a8ea13
1 changed files with 2 additions and 2 deletions

View File

@ -16,9 +16,9 @@ HELP: translate-local-loc
{ $description "Translates an absolute stack location to one that is relative to the current stacks height as given in " { $link current-height } "." }
{ $examples
{ $example
"USING: compiler.cfg.stacks.local compiler.cfg.registers namespaces prettyprint ;"
"USING: compiler.cfg.stacks.local compiler.cfg.registers compiler.cfg.debugger namespaces prettyprint ;"
"T{ current-height { d 3 } } current-height set D 7 translate-local-loc ."
"T{ ds-loc { n 4 } }"
"D 4"
}
} ;