nashorn/test/script/basic/parser/loopStat.js.EXPECTED
author sundar
Thu, 12 Sep 2013 22:16:40 +0530
changeset 19894 195477810711
permissions -rw-r--r--
8024693: Various minor issues with JSONWriter used by script parser API Reviewed-by: jlaskey, hannesw

{
    "type": "Program",
    "body": [
        {
            "type": "WhileStatement",
            "test": {
                "type": "Literal",
                "value": true
            },
            "body": {
                "type": "BlockStatement",
                "body": [
                    {
                        "type": "ExpressionStatement",
                        "expression": {
                            "type": "CallExpression",
                            "callee": {
                                "type": "Identifier",
                                "name": "print"
                            },
                            "arguments": [
                                {
                                    "type": "Literal",
                                    "value": "hello"
                                }
                            ]
                        }
                    }
                ]
            }
        }
    ]
}
{
    "type": "Program",
    "body": [
        {
            "type": "DoWhileStatement",
            "body": {
                "type": "BlockStatement",
                "body": [
                    {
                        "type": "ExpressionStatement",
                        "expression": {
                            "type": "CallExpression",
                            "callee": {
                                "type": "Identifier",
                                "name": "print"
                            },
                            "arguments": [
                                {
                                    "type": "Literal",
                                    "value": "hello"
                                }
                            ]
                        }
                    }
                ]
            },
            "test": {
                "type": "Literal",
                "value": true
            }
        }
    ]
}
{
    "type": "Program",
    "body": [
        {
            "type": "ForInStatement",
            "left": {
                "type": "Identifier",
                "name": "i"
            },
            "right": {
                "type": "Identifier",
                "name": "obj"
            },
            "body": {
                "type": "BlockStatement",
                "body": [
                    {
                        "type": "ExpressionStatement",
                        "expression": {
                            "type": "CallExpression",
                            "callee": {
                                "type": "Identifier",
                                "name": "print"
                            },
                            "arguments": [
                                {
                                    "type": "MemberExpression",
                                    "object": {
                                        "type": "Identifier",
                                        "name": "obj"
                                    },
                                    "property": {
                                        "type": "Identifier",
                                        "name": "i"
                                    },
                                    "computed": true
                                }
                            ]
                        }
                    }
                ]
            },
            "each": false
        }
    ]
}
{
    "type": "Program",
    "body": [
        {
            "type": "ForInStatement",
            "left": {
                "type": "Identifier",
                "name": "i"
            },
            "right": {
                "type": "Identifier",
                "name": "obj"
            },
            "body": {
                "type": "BlockStatement",
                "body": [
                    {
                        "type": "ExpressionStatement",
                        "expression": {
                            "type": "CallExpression",
                            "callee": {
                                "type": "Identifier",
                                "name": "print"
                            },
                            "arguments": [
                                {
                                    "type": "Identifier",
                                    "name": "i"
                                }
                            ]
                        }
                    }
                ]
            },
            "each": true
        }
    ]
}
{
    "type": "Program",
    "body": [
        {
            "type": "ForStatement",
            "init": {
                "type": "AssignmentExpression",
                "operator": "=",
                "left": {
                    "type": "Identifier",
                    "name": "i"
                },
                "right": {
                    "type": "Literal",
                    "value": 0
                }
            },
            "test": {
                "type": "BinaryExpression",
                "operator": "<",
                "left": {
                    "type": "Identifier",
                    "name": "i"
                },
                "right": {
                    "type": "Literal",
                    "value": 10
                }
            },
            "update": {
                "type": "UpdateExpression",
                "operator": "++",
                "prefix": false,
                "argument": {
                    "type": "Identifier",
                    "name": "i"
                }
            },
            "body": {
                "type": "BlockStatement",
                "body": [
                    {
                        "type": "ExpressionStatement",
                        "expression": {
                            "type": "CallExpression",
                            "callee": {
                                "type": "Identifier",
                                "name": "print"
                            },
                            "arguments": [
                                {
                                    "type": "Identifier",
                                    "name": "i"
                                }
                            ]
                        }
                    }
                ]
            }
        }
    ]
}