Parse parameters inside function's env (#652)

* Parse parameters inside function context

* Add test for new.target inside parameters
This commit is contained in:
Nicolò Ribaudo
2017-10-31 16:31:35 +01:00
committed by Daniel Tschinder
parent fee7de2c1d
commit cd050e1405
4 changed files with 369 additions and 4 deletions

View File

@@ -0,0 +1,2 @@
function Foo(x = new.target) {}
function Bar() { (x = new.target) => {} }

View File

@@ -0,0 +1,357 @@
{
"type": "File",
"start": 0,
"end": 73,
"loc": {
"start": {
"line": 1,
"column": 0
},
"end": {
"line": 2,
"column": 41
}
},
"program": {
"type": "Program",
"start": 0,
"end": 73,
"loc": {
"start": {
"line": 1,
"column": 0
},
"end": {
"line": 2,
"column": 41
}
},
"sourceType": "script",
"body": [
{
"type": "FunctionDeclaration",
"start": 0,
"end": 31,
"loc": {
"start": {
"line": 1,
"column": 0
},
"end": {
"line": 1,
"column": 31
}
},
"id": {
"type": "Identifier",
"start": 9,
"end": 12,
"loc": {
"start": {
"line": 1,
"column": 9
},
"end": {
"line": 1,
"column": 12
},
"identifierName": "Foo"
},
"name": "Foo"
},
"generator": false,
"expression": false,
"async": false,
"params": [
{
"type": "AssignmentPattern",
"start": 13,
"end": 27,
"loc": {
"start": {
"line": 1,
"column": 13
},
"end": {
"line": 1,
"column": 27
}
},
"left": {
"type": "Identifier",
"start": 13,
"end": 14,
"loc": {
"start": {
"line": 1,
"column": 13
},
"end": {
"line": 1,
"column": 14
},
"identifierName": "x"
},
"name": "x"
},
"right": {
"type": "MetaProperty",
"start": 17,
"end": 27,
"loc": {
"start": {
"line": 1,
"column": 17
},
"end": {
"line": 1,
"column": 27
}
},
"meta": {
"type": "Identifier",
"start": 17,
"end": 20,
"loc": {
"start": {
"line": 1,
"column": 17
},
"end": {
"line": 1,
"column": 20
},
"identifierName": "new"
},
"name": "new"
},
"property": {
"type": "Identifier",
"start": 21,
"end": 27,
"loc": {
"start": {
"line": 1,
"column": 21
},
"end": {
"line": 1,
"column": 27
},
"identifierName": "target"
},
"name": "target"
}
}
}
],
"body": {
"type": "BlockStatement",
"start": 29,
"end": 31,
"loc": {
"start": {
"line": 1,
"column": 29
},
"end": {
"line": 1,
"column": 31
}
},
"body": [],
"directives": []
}
},
{
"type": "FunctionDeclaration",
"start": 32,
"end": 73,
"loc": {
"start": {
"line": 2,
"column": 0
},
"end": {
"line": 2,
"column": 41
}
},
"id": {
"type": "Identifier",
"start": 41,
"end": 44,
"loc": {
"start": {
"line": 2,
"column": 9
},
"end": {
"line": 2,
"column": 12
},
"identifierName": "Bar"
},
"name": "Bar"
},
"generator": false,
"expression": false,
"async": false,
"params": [],
"body": {
"type": "BlockStatement",
"start": 47,
"end": 73,
"loc": {
"start": {
"line": 2,
"column": 15
},
"end": {
"line": 2,
"column": 41
}
},
"body": [
{
"type": "ExpressionStatement",
"start": 49,
"end": 71,
"loc": {
"start": {
"line": 2,
"column": 17
},
"end": {
"line": 2,
"column": 39
}
},
"expression": {
"type": "ArrowFunctionExpression",
"start": 49,
"end": 71,
"loc": {
"start": {
"line": 2,
"column": 17
},
"end": {
"line": 2,
"column": 39
}
},
"id": null,
"generator": false,
"expression": false,
"async": false,
"params": [
{
"type": "AssignmentPattern",
"start": 50,
"end": 64,
"loc": {
"start": {
"line": 2,
"column": 18
},
"end": {
"line": 2,
"column": 32
}
},
"left": {
"type": "Identifier",
"start": 50,
"end": 51,
"loc": {
"start": {
"line": 2,
"column": 18
},
"end": {
"line": 2,
"column": 19
},
"identifierName": "x"
},
"name": "x"
},
"right": {
"type": "MetaProperty",
"start": 54,
"end": 64,
"loc": {
"start": {
"line": 2,
"column": 22
},
"end": {
"line": 2,
"column": 32
}
},
"meta": {
"type": "Identifier",
"start": 54,
"end": 57,
"loc": {
"start": {
"line": 2,
"column": 22
},
"end": {
"line": 2,
"column": 25
},
"identifierName": "new"
},
"name": "new"
},
"property": {
"type": "Identifier",
"start": 58,
"end": 64,
"loc": {
"start": {
"line": 2,
"column": 26
},
"end": {
"line": 2,
"column": 32
},
"identifierName": "target"
},
"name": "target"
}
}
}
],
"body": {
"type": "BlockStatement",
"start": 69,
"end": 71,
"loc": {
"start": {
"line": 2,
"column": 37
},
"end": {
"line": 2,
"column": 39
}
},
"body": [],
"directives": []
}
}
}
],
"directives": []
}
}
],
"directives": []
}
}