11 lines
421 B
Factor
11 lines
421 B
Factor
|
USING: compiler.tree help.markup help.syntax sequences ;
|
||
|
IN: compiler.tree.dead-code.simple
|
||
|
|
||
|
HELP: filter-corresponding
|
||
|
{ $values { "new" sequence } { "old" sequence } { "old'" sequence } }
|
||
|
{ $description "Remove elements from 'old' if the element with the same index in 'new' is dead." } ;
|
||
|
|
||
|
HELP: flushable-call?
|
||
|
{ $values { "#call" #call } { "?" "boolean" } }
|
||
|
{ $description { $link t } " if the call is flushable" } ;
|