annotate tests/rpcList2.ur @ 1998:cc7e5d469d1b

Protect uw_Basis_new_client_source from invalid ctx->id We assume that FFI code may create new contextes with id left unassigned
author Sergey Mironov <grrwlf@gmail.com>
date Wed, 26 Feb 2014 09:43:47 +0000
parents 553a5cc3a4b5
children
rev   line source
adam@1547 1 fun showList l = case l of
adam@1547 2 [] => "[]"
adam@1547 3 | h :: t => strcat (strcat (show h) " :: ") (showList t)
adam@1547 4
adam@1547 5 fun rpcFunc l : transaction string =
adam@1547 6 case l of h :: _ => return (showList h) | [] => return "[]"
adam@1545 7
adam@1545 8 fun main () : transaction page = return <xml><body>
adam@1545 9 <button onclick={
adam@1547 10 s <- rpc (rpcFunc (("foo" :: []) :: []));
adam@1547 11 alert s
adam@1545 12 }/>
adam@1545 13 </body></xml>