diff options
author | Adam Chlipala <adam@chlipala.net> | 2011-12-03 10:00:10 -0500 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2011-12-03 10:00:10 -0500 |
commit | 2286c970ce9d32a630e289df2685dbdff8e18217 (patch) | |
tree | 999270929063a6966b6a45583e091ce015e612b3 /tests | |
parent | 7136358c17f8193173e8a0a9469821039212d879 (diff) |
Allow sources to be returned by RPCs
Diffstat (limited to 'tests')
-rw-r--r-- | tests/rpcSource.ur | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/rpcSource.ur b/tests/rpcSource.ur new file mode 100644 index 00000000..ad144cd6 --- /dev/null +++ b/tests/rpcSource.ur @@ -0,0 +1,13 @@ +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> |