|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define-module (test-ecmascript) |
|
#:use-module (test-suite lib) |
|
#:use-module (language ecmascript parse) |
|
#:use-module ((system base compile) #:select (compile))) |
|
|
|
|
|
(define (eread str) |
|
(call-with-input-string str read-ecmascript)) |
|
(define (eread/1 str) |
|
(call-with-input-string str read-ecmascript/1)) |
|
|
|
(define-syntax parse |
|
(syntax-rules () |
|
((_ expression expected) |
|
(begin |
|
(pass-if expression |
|
(equal? expected (eread expression))) |
|
(pass-if expression |
|
(equal? expected (eread/1 expression))))))) |
|
|
|
(with-test-prefix "parser" |
|
|
|
(parse "true;" 'true) |
|
(parse "2 + 2;" '(+ (number 2) (number 2))) |
|
(parse "2\xa0+2;" '(+ (number 2) (number 2))) |
|
(parse "\"hello\";" '(string "hello")) |
|
(parse "function square(x) { return x * x; }" |
|
'(var (square (lambda (x) (return (* (ref x) (ref x))))))) |
|
(parse "document.write('Hello, world!');" |
|
'(call (pref (ref document) write) ((string "Hello, world!")))) |
|
(parse "var x = { foo: 12, bar: \"hello\" };" |
|
'(begin (var (x (object (foo (number 12)) |
|
(bar (string "hello"))))) |
|
(begin))) |
|
(parse "\"\\x12\";" |
|
'(string "\x12")) |
|
(parse "\"\\u1234\";" |
|
'(string "\u1234")) |
|
(parse "function foo(x) { }" |
|
'(var (foo (lambda (x) (begin))))) |
|
(parse ".123;" '(number 0.123)) |
|
(parse "0xff;" '(number 255))) |
|
|
|
|
|
(define-syntax ecompile |
|
(syntax-rules () |
|
((_ expression) |
|
(pass-if expression |
|
(not (not |
|
(compile (call-with-input-string expression read-ecmascript) |
|
#:from 'ecmascript |
|
#:to 'value))))) |
|
((_ expression expected) |
|
(pass-if expression |
|
(equal? expected |
|
(compile (call-with-input-string expression read-ecmascript) |
|
#:from 'ecmascript |
|
#:to 'value)))))) |
|
|
|
(with-test-prefix "compiler" |
|
|
|
(ecompile "true;" #t) |
|
(ecompile "if (3 > 2) true; else false;" #t) |
|
(ecompile "2 + 2;" 4) |
|
(ecompile "\"hello\";" "hello") |
|
(ecompile "var test = { bar: 1 };") |
|
|
|
(pass-if "new Object;" |
|
(not (not |
|
(compile (call-with-input-string "new Object;" read-ecmascript) |
|
#:from 'ecmascript |
|
#:to 'tree-il)))) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(ecompile "42 + \" good times!\";" |
|
"42 good times!") |
|
(ecompile "[0,1,2,3,4,5].length * 7;" |
|
42)) |
|
|