--- old/test/nashorn/script/basic/parser/useStrict.js.EXPECTED 2020-04-15 19:17:04.000000000 +0530 +++ /dev/null 2020-04-15 19:17:04.000000000 +0530 @@ -1,41 +0,0 @@ -{ - "type": "Program", - "body": [ - { - "type": "ExpressionStatement", - "expression": { - "type": "Literal", - "value": "use strict" - } - } - ] -} -{ - "type": "Program", - "body": [ - { - "type": "FunctionDeclaration", - "id": { - "type": "Identifier", - "name": "f" - }, - "params": [], - "defaults": [], - "rest": null, - "body": { - "type": "BlockStatement", - "body": [ - { - "type": "ExpressionStatement", - "expression": { - "type": "Literal", - "value": "use strict" - } - } - ] - }, - "generator": false, - "expression": false - } - ] -}