nashorn/test/script/basic/parser/continueStat.js.EXPECTED
author attila
Tue, 13 May 2014 11:30:40 +0200
changeset 24751 ccbd9cd3f720
parent 19894 195477810711
permissions -rw-r--r--
8042118: Separate types from symbols Reviewed-by: hannesw, lagergren
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
19894
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
     1
{
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
     2
    "type": "Program",
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
     3
    "body": [
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
     4
        {
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
     5
            "type": "WhileStatement",
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
     6
            "test": {
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
     7
                "type": "Literal",
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
     8
                "value": true
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
     9
            },
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    10
            "body": {
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    11
                "type": "BlockStatement",
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    12
                "body": [
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    13
                    {
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    14
                        "type": "ContinueStatement",
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    15
                        "label": null
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    16
                    }
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    17
                ]
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    18
            }
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    19
        }
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    20
    ]
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    21
}
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    22
{
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    23
    "type": "Program",
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    24
    "body": [
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    25
        {
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    26
            "type": "LabeledStatement",
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 19894
diff changeset
    27
            "label": "begin",
19894
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    28
            "body": {
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    29
                "type": "BlockStatement",
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    30
                "body": [
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    31
                    {
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    32
                        "type": "WhileStatement",
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    33
                        "test": {
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    34
                            "type": "Literal",
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    35
                            "value": true
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    36
                        },
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    37
                        "body": {
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    38
                            "type": "BlockStatement",
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    39
                            "body": [
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    40
                                {
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    41
                                    "type": "ContinueStatement",
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 19894
diff changeset
    42
                                    "label": "begin"
19894
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    43
                                }
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    44
                            ]
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    45
                        }
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    46
                    }
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    47
                ]
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    48
            }
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    49
        }
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    50
    ]
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    51
}
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    52
{
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    53
    "type": "Program",
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    54
    "body": [
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    55
        {
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    56
            "type": "LabeledStatement",
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 19894
diff changeset
    57
            "label": "start",
19894
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    58
            "body": {
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    59
                "type": "BlockStatement",
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    60
                "body": [
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    61
                    {
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    62
                        "type": "ForStatement",
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    63
                        "init": null,
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    64
                        "test": null,
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    65
                        "update": null,
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    66
                        "body": {
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    67
                            "type": "BlockStatement",
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    68
                            "body": [
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    69
                                {
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    70
                                    "type": "ContinueStatement",
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 19894
diff changeset
    71
                                    "label": "start"
19894
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    72
                                }
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    73
                            ]
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    74
                        }
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    75
                    }
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    76
                ]
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    77
            }
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    78
        }
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    79
    ]
195477810711 8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
diff changeset
    80
}