summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/js/function-decompilation-operators.html
blob: 486cf5e270cb0da5d73793461a810f13f9bab580 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<link rel="stylesheet" href="resources/js-test-style.css">
<script src="resources/js-test-pre.js"></script>
</head>
<body>
<script>

    description("This test checks toString() round-trip decompilation for binary and unary operators.");

    var tests = [
        "x + + y",
        "x + - y",
        "x - + y",
        "x - - y",
        "x * + y",
        "x * - y",
        "x / + y",
        "x / - y",
        "x % + y",
        "x % - y",
        "x++ + y",
        "x++ - y",
        "x++ * y",
        "x++ / y",
        "x-- + y",
        "x-- - y",
        "x-- * y",
        "x-- / y",
        "x + ++y",
        "x - ++y",
        "x * ++y",
        "x / ++y",
        "x + --y",
        "x - --y",
        "x * --y",
        "x / --y",
        "x++ + ++y",
        "x++ - ++y",
        "x++ * ++y",
        "x++ / ++y",
        "x-- + ++y",
        "x-- - ++y",
        "x-- * ++y",
        "x-- / ++y",
        "x++ + --y",
        "x++ - --y",
        "x++ * --y",
        "x++ / --y",
        "x-- + --y",
        "x-- - --y",
        "x-- * --y",
        "x-- / --y",
        "+ + x",
        "+ - x",
        "- + x",
        "- - x",
        "1",
        "-1",
        "- -1",
        "- - 0",
        "- - NaN"
    ];

    for (test in tests) {
        var decompiledFunction = eval("(function () {  " + tests[test] + ";})").toString().replace(/\n/g, "");
        shouldBe("decompiledFunction", "'function () {  " + tests[test] + ";}'");
    }

    var successfullyParsed = true;
</script>
<script src="resources/js-test-post.js"></script>
</body>
</html>