| Left: | ||
| Right: |
| LEFT | RIGHT |
|---|---|
| (no file at all) | |
| 1 // Run ../jshydra basic.js basic.js: it should work. | |
| 2 // This is a simple test just to make sure that something isn't borking with | |
| 3 // jshydra. | |
| 4 _print("HI!"); | |
| 5 function process_js(ast) { | |
| 6 for (let f in ast) { | |
| 7 _print(f + ": "+ ast[f]); | |
| 8 } | |
| 9 _print(uneval(ast)); | |
| 10 } | |
| LEFT | RIGHT |