annotate tests/reactive3.ur @ 2262:34ad83d9b729

Fix recording bugs to do with nesting and buffer reallocation. Stop MonoFooify printing spurious errors.
author Ziv Scully <ziv@mit.edu>
date Wed, 07 Oct 2015 08:58:08 -0400
parents 0094e0242100
children
rev   line source
adamc@579 1 fun main () : transaction page =
adamc@579 2 x <- source <xml>TEST</xml>;
adamc@579 3 return <xml><body>
adamc@579 4 <dyn signal={signal x}/>
adamc@579 5 <br/>
adamc@579 6 <a onclick={alert "Changing...."; set x <xml>CHANGEUP</xml>}>Oh My</a>
adamc@579 7 </body></xml>