annotate tests/globalHandlers.ur @ 1888:5f478ecf65e4
Identify more local definitions as functions that should be lifted to the top level, which has synergistic effects on inlining later
author |
Adam Chlipala <adam@chlipala.net> |
date |
Tue, 05 Nov 2013 11:58:52 -0500 |
parents |
2f8b8952fe27 |
children |
|
rev |
line source |
adam@1783
|
1 fun main () : transaction page = return <xml>
|
adam@1783
|
2 <body onload={onDblclick (fn ev => alert ("ScreenX = " ^ show ev.ScreenX ^ "\nShiftKey = " ^ show ev.ShiftKey));
|
adam@1783
|
3 onKeypress (fn ev => alert ("KeyCode = " ^ show ev.KeyCode ^ "\nShiftKey = " ^ show ev.ShiftKey))}/>
|
adam@1783
|
4 </xml>
|
adam@1791
|
5
|
adam@1791
|
6 fun busy () : transaction page = return <xml>
|
adam@1791
|
7 <body onload={onMouseout (fn _ => alert "OUT!");
|
adam@1791
|
8 onMouseover (fn _ => alert "OVER!");
|
adam@1791
|
9 onMousemove (fn _ => alert "MOVE!")}/>
|
adam@1791
|
10 </xml>
|