annotate tests/docevents.ur @ 1836:276fa06428ba

Ignore polymorphism in JavaScript calls to custom FFI functions, allowing a kind of simple dynamic typing (unsafe, of course)
author Adam Chlipala <adam@chlipala.net>
date Tue, 11 Dec 2012 15:58:23 -0500
parents d5c961c709f9
children e8863d9f8c59
rev   line source
adam@1555 1 fun main () : transaction page = return <xml>
adam@1555 2 <body onload={onDblclick (alert "Double click");
adam@1555 3 onKeypress (fn k => alert ("Keypress: " ^ show k))}>
adam@1555 4 Nothing here.
adam@1555 5 </body>
adam@1555 6 </xml>