add-quot-to-history ( quot -- )


Vocabulary
compiler.tree.propagation.call-effect

Definition
IN: compiler.tree.propagation.call-effect

GENERIC: add-quot-to-history ( quot -- )


Methods
USING: accessors compiler.tree.propagation.call-effect kernel ;

M: compose add-quot-to-history
[ first>> add-quot-to-history ]
[ second>> add-quot-to-history ] bi ;


USING: accessors compiler.tree.propagation.call-effect kernel ;

M: curry add-quot-to-history quot>> add-quot-to-history ;


USING: compiler.tree.propagation.call-effect
compiler.tree.propagation.inlining quotations ;

M: quotation add-quot-to-history add-to-history ;