annotate tests/reactive2.ur @ 1888:5f478ecf65e4

Identify more local definitions as functions that should be lifted to the top level, which has synergistic effects on inlining later
author Adam Chlipala <adam@chlipala.net>
date Tue, 05 Nov 2013 11:58:52 -0500
parents 3d56940120b1
children
rev   line source
adamc@577 1 fun main () : transaction page =
adamc@577 2 x <- source <xml>TEST</xml>;
adamc@577 3 set x <xml>HI</xml>;
adamc@577 4 return <xml><body>
adamc@577 5 <dyn signal={signal x}/>
adamc@577 6 </body></xml>