()
| 397 | |
| 398 | // A more complex nested literal case. |
| 399 | function get_deep_nested_literal() { |
| 400 | var literal = [[1], [[2], "hello"], 3, [4]]; |
| 401 | return literal; |
| 402 | } |
| 403 | |
| 404 | obj = get_deep_nested_literal(); |
| 405 | assertKind(elements_kind.fast_smi_only, obj[1][0]); |
no outgoing calls
no test coverage detected