view tests/rpcSource.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 43f22a8f76cc
children
line wrap: on
line source
fun remote () =
    s <- source <xml/>;
    return (s, <xml><dyn signal={signal s}/></xml>)

fun main () : transaction page =
    x <- source <xml/>;
    return <xml><body>
      <dyn signal={signal x}/>
      <hr/>
      <button onclick={p <- rpc (remote ());
                       set x p.2;
                       set p.1 <xml>Hi!</xml>}/>
    </body></xml>