     1→// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
     2→
     3→exports[`Statements - Return > Commonjs (fail) > class X { static { return; } } 1`] = `
     4→"SyntaxError [1:19-1:25]: Illegal return statement
     5→> 1 | class X { static { return; } }
     6→    |                    ^^^^^^ Illegal return statement"
     7→`;
     8→
     9→exports[`Statements - Return > Commonjs (fail) > new.target 1`] = `
    10→"SyntaxError [1:4-1:10]: new.target only allowed within functions or static blocks
    11→> 1 | new.target
    12→    |     ^^^^^^ new.target only allowed within functions or static blocks"
    13→`;
    14→
    15→exports[`Statements - Return > Commonjs (fail) > return 1`] = `
    16→"SyntaxError [1:0-1:6]: Illegal return statement
    17→> 1 | return
    18→    | ^^^^^^ Illegal return statement"
    19→`;
    20→
    21→exports[`Statements - Return > Commonjs (fail) > using foo = null 1`] = `
    22→"SyntaxError [1:6-1:9]: Unexpected token: 'identifier'
    23→> 1 | using foo = null
    24→    |       ^^^ Unexpected token: 'identifier'"
    25→`;
    26→
    27→exports[`Statements - Return > Commonjs (pass) > new.target 1`] = `
    28→{
    29→  "body": [
    30→    {
    31→      "expression": {
    32→        "meta": {
    33→          "name": "new",
    34→          "type": "Identifier",
    35→        },
    36→        "property": {
    37→          "name": "target",
    38→          "type": "Identifier",
    39→        },
    40→        "type": "MetaProperty",
    41→      },
    42→      "type": "ExpressionStatement",
    43→    },
    44→  ],
    45→  "sourceType": "script",
    46→  "type": "Program",
    47→}
    48→`;
    49→
    50→exports[`Statements - Return > Commonjs (pass) > return 1`] = `
    51→{
    52→  "body": [
    53→    {
    54→      "argument": null,
    55→      "type": "ReturnStatement",
    56→    },
    57→  ],
    58→  "sourceType": "script",
    59→  "type": "Program",
    60→}
    61→`;
