Test runner: Detect extra property in 'actual' but not in 'expected'. (#407)
* Test runner: Detect extra property in 'actual' but not in 'expected'. Also update all expected.json where this would result in errors. * Include rmExpected.js script in case it is needed again
This commit is contained in:
parent
82b7872cb8
commit
0545173f66
24
scripts/rmExpected.js
Normal file
24
scripts/rmExpected.js
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
// Use this to remove all "expected.json" in all tests.
|
||||||
|
|
||||||
|
const { existsSync, readdirSync, statSync, unlinkSync } = require("fs");
|
||||||
|
const { join } = require("path");
|
||||||
|
|
||||||
|
const rootPath = join(__dirname, "..", "test", "fixtures");
|
||||||
|
|
||||||
|
for (const fixtureName of readdirSync(rootPath)) {
|
||||||
|
const fixturePath = join(rootPath, fixtureName);
|
||||||
|
for (const suiteName of readdirSync(fixturePath)) {
|
||||||
|
const suitePath = join(fixturePath, suiteName);
|
||||||
|
if (!statSync(suitePath).isDirectory()) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const testName of readdirSync(suitePath)) {
|
||||||
|
const testPath = join(suitePath, testName);
|
||||||
|
const expectedPath = join(testPath, "expected.json");
|
||||||
|
if (existsSync(expectedPath)) {
|
||||||
|
unlinkSync(expectedPath);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
3
test/fixtures/comments/basic/block-trailing-comment/expected.json
vendored
Executable file → Normal file
3
test/fixtures/comments/basic/block-trailing-comment/expected.json
vendored
Executable file → Normal file
@ -83,7 +83,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 2,
|
"line": 2,
|
||||||
"column": 5
|
"column": 5
|
||||||
}
|
},
|
||||||
|
"identifierName": "a"
|
||||||
},
|
},
|
||||||
"name": "a"
|
"name": "a"
|
||||||
},
|
},
|
||||||
|
|||||||
3
test/fixtures/comments/basic/comment-within-condition/expected.json
vendored
Executable file → Normal file
3
test/fixtures/comments/basic/comment-within-condition/expected.json
vendored
Executable file → Normal file
@ -54,7 +54,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 2,
|
"line": 2,
|
||||||
"column": 16
|
"column": 16
|
||||||
}
|
},
|
||||||
|
"identifierName": "a"
|
||||||
},
|
},
|
||||||
"name": "a",
|
"name": "a",
|
||||||
"leadingComments": [
|
"leadingComments": [
|
||||||
|
|||||||
6
test/fixtures/comments/basic/export-default-anonymous-class/expected.json
vendored
Executable file → Normal file
6
test/fixtures/comments/basic/export-default-anonymous-class/expected.json
vendored
Executable file → Normal file
@ -87,6 +87,7 @@
|
|||||||
"column": 5
|
"column": 5
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"static": false,
|
||||||
"computed": false,
|
"computed": false,
|
||||||
"key": {
|
"key": {
|
||||||
"type": "Identifier",
|
"type": "Identifier",
|
||||||
@ -100,16 +101,17 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 8,
|
"line": 8,
|
||||||
"column": 11
|
"column": 11
|
||||||
}
|
},
|
||||||
|
"identifierName": "method1"
|
||||||
},
|
},
|
||||||
"name": "method1",
|
"name": "method1",
|
||||||
"leadingComments": null
|
"leadingComments": null
|
||||||
},
|
},
|
||||||
"static": false,
|
|
||||||
"kind": "method",
|
"kind": "method",
|
||||||
"id": null,
|
"id": null,
|
||||||
"generator": false,
|
"generator": false,
|
||||||
"expression": false,
|
"expression": false,
|
||||||
|
"async": false,
|
||||||
"params": [],
|
"params": [],
|
||||||
"body": {
|
"body": {
|
||||||
"type": "BlockStatement",
|
"type": "BlockStatement",
|
||||||
|
|||||||
@ -69,9 +69,11 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 3,
|
"line": 3,
|
||||||
"column": 13
|
"column": 13
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"name": "spawn"
|
"identifierName": "spawn"
|
||||||
|
},
|
||||||
|
"name": "spawn",
|
||||||
|
"leadingComments": null
|
||||||
},
|
},
|
||||||
"local": {
|
"local": {
|
||||||
"type": "Identifier",
|
"type": "Identifier",
|
||||||
@ -85,10 +87,12 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 3,
|
"line": 3,
|
||||||
"column": 13
|
"column": 13
|
||||||
}
|
},
|
||||||
|
"identifierName": "spawn"
|
||||||
},
|
},
|
||||||
"name": "spawn"
|
"name": "spawn"
|
||||||
}
|
},
|
||||||
|
"leadingComments": null
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"source": {
|
"source": {
|
||||||
|
|||||||
@ -101,9 +101,11 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 3,
|
"line": 3,
|
||||||
"column": 11
|
"column": 11
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"name": "spawn"
|
"identifierName": "spawn"
|
||||||
|
},
|
||||||
|
"name": "spawn",
|
||||||
|
"leadingComments": null
|
||||||
},
|
},
|
||||||
"value": {
|
"value": {
|
||||||
"type": "Identifier",
|
"type": "Identifier",
|
||||||
@ -117,15 +119,18 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 3,
|
"line": 3,
|
||||||
"column": 11
|
"column": 11
|
||||||
}
|
},
|
||||||
|
"identifierName": "spawn"
|
||||||
},
|
},
|
||||||
"name": "spawn"
|
"name": "spawn"
|
||||||
},
|
},
|
||||||
|
"leadingComments": null,
|
||||||
"extra": {
|
"extra": {
|
||||||
"shorthand": true
|
"shorthand": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"leadingComments": null
|
||||||
},
|
},
|
||||||
"init": {
|
"init": {
|
||||||
"type": "Identifier",
|
"type": "Identifier",
|
||||||
@ -139,10 +144,12 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 3,
|
"line": 3,
|
||||||
"column": 17
|
"column": 17
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
}
|
},
|
||||||
|
"leadingComments": null
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"kind": "var",
|
"kind": "var",
|
||||||
|
|||||||
7
test/fixtures/comments/basic/surrounding-call-comments/expected.json
vendored
Executable file → Normal file
7
test/fixtures/comments/basic/surrounding-call-comments/expected.json
vendored
Executable file → Normal file
@ -54,12 +54,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 10
|
"column": 10
|
||||||
}
|
},
|
||||||
|
"identifierName": "a"
|
||||||
},
|
},
|
||||||
"name": "a"
|
"name": "a"
|
||||||
},
|
},
|
||||||
"generator": false,
|
"generator": false,
|
||||||
"expression": false,
|
"expression": false,
|
||||||
|
"async": false,
|
||||||
"params": [],
|
"params": [],
|
||||||
"body": {
|
"body": {
|
||||||
"type": "BlockStatement",
|
"type": "BlockStatement",
|
||||||
@ -116,7 +118,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 3,
|
"line": 3,
|
||||||
"column": 7
|
"column": 7
|
||||||
}
|
},
|
||||||
|
"identifierName": "foo"
|
||||||
},
|
},
|
||||||
"name": "foo",
|
"name": "foo",
|
||||||
"leadingComments": null
|
"leadingComments": null
|
||||||
|
|||||||
4
test/fixtures/comments/basic/surrounding-debugger-comments/expected.json
vendored
Executable file → Normal file
4
test/fixtures/comments/basic/surrounding-debugger-comments/expected.json
vendored
Executable file → Normal file
@ -54,12 +54,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 10
|
"column": 10
|
||||||
}
|
},
|
||||||
|
"identifierName": "a"
|
||||||
},
|
},
|
||||||
"name": "a"
|
"name": "a"
|
||||||
},
|
},
|
||||||
"generator": false,
|
"generator": false,
|
||||||
"expression": false,
|
"expression": false,
|
||||||
|
"async": false,
|
||||||
"params": [],
|
"params": [],
|
||||||
"body": {
|
"body": {
|
||||||
"type": "BlockStatement",
|
"type": "BlockStatement",
|
||||||
|
|||||||
4
test/fixtures/comments/basic/surrounding-return-comments/expected.json
vendored
Executable file → Normal file
4
test/fixtures/comments/basic/surrounding-return-comments/expected.json
vendored
Executable file → Normal file
@ -54,12 +54,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 10
|
"column": 10
|
||||||
}
|
},
|
||||||
|
"identifierName": "a"
|
||||||
},
|
},
|
||||||
"name": "a"
|
"name": "a"
|
||||||
},
|
},
|
||||||
"generator": false,
|
"generator": false,
|
||||||
"expression": false,
|
"expression": false,
|
||||||
|
"async": false,
|
||||||
"params": [],
|
"params": [],
|
||||||
"body": {
|
"body": {
|
||||||
"type": "BlockStatement",
|
"type": "BlockStatement",
|
||||||
|
|||||||
4
test/fixtures/comments/basic/surrounding-throw-comments/expected.json
vendored
Executable file → Normal file
4
test/fixtures/comments/basic/surrounding-throw-comments/expected.json
vendored
Executable file → Normal file
@ -54,12 +54,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 10
|
"column": 10
|
||||||
}
|
},
|
||||||
|
"identifierName": "a"
|
||||||
},
|
},
|
||||||
"name": "a"
|
"name": "a"
|
||||||
},
|
},
|
||||||
"generator": false,
|
"generator": false,
|
||||||
"expression": false,
|
"expression": false,
|
||||||
|
"async": false,
|
||||||
"params": [],
|
"params": [],
|
||||||
"body": {
|
"body": {
|
||||||
"type": "BlockStatement",
|
"type": "BlockStatement",
|
||||||
|
|||||||
7
test/fixtures/comments/basic/surrounding-while-loop-comments/expected.json
vendored
Executable file → Normal file
7
test/fixtures/comments/basic/surrounding-while-loop-comments/expected.json
vendored
Executable file → Normal file
@ -54,12 +54,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 10
|
"column": 10
|
||||||
}
|
},
|
||||||
|
"identifierName": "f"
|
||||||
},
|
},
|
||||||
"name": "f"
|
"name": "f"
|
||||||
},
|
},
|
||||||
"generator": false,
|
"generator": false,
|
||||||
"expression": false,
|
"expression": false,
|
||||||
|
"async": false,
|
||||||
"params": [],
|
"params": [],
|
||||||
"body": {
|
"body": {
|
||||||
"type": "BlockStatement",
|
"type": "BlockStatement",
|
||||||
@ -204,7 +206,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 65
|
"column": 65
|
||||||
}
|
},
|
||||||
|
"identifierName": "each"
|
||||||
},
|
},
|
||||||
"name": "each",
|
"name": "each",
|
||||||
"leadingComments": null
|
"leadingComments": null
|
||||||
|
|||||||
13
test/fixtures/comments/basic/switch-fallthrough-comment-in-function/expected.json
vendored
Executable file → Normal file
13
test/fixtures/comments/basic/switch-fallthrough-comment-in-function/expected.json
vendored
Executable file → Normal file
@ -54,12 +54,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 12
|
"column": 12
|
||||||
}
|
},
|
||||||
|
"identifierName": "bar"
|
||||||
},
|
},
|
||||||
"name": "bar"
|
"name": "bar"
|
||||||
},
|
},
|
||||||
"generator": false,
|
"generator": false,
|
||||||
"expression": false,
|
"expression": false,
|
||||||
|
"async": false,
|
||||||
"params": [
|
"params": [
|
||||||
{
|
{
|
||||||
"type": "Identifier",
|
"type": "Identifier",
|
||||||
@ -73,7 +75,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 16
|
"column": 16
|
||||||
}
|
},
|
||||||
|
"identifierName": "foo"
|
||||||
},
|
},
|
||||||
"name": "foo"
|
"name": "foo"
|
||||||
}
|
}
|
||||||
@ -119,7 +122,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 2,
|
"line": 2,
|
||||||
"column": 14
|
"column": 14
|
||||||
}
|
},
|
||||||
|
"identifierName": "foo"
|
||||||
},
|
},
|
||||||
"name": "foo"
|
"name": "foo"
|
||||||
},
|
},
|
||||||
@ -252,7 +256,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 7,
|
"line": 7,
|
||||||
"column": 16
|
"column": 16
|
||||||
}
|
},
|
||||||
|
"identifierName": "doIt"
|
||||||
},
|
},
|
||||||
"name": "doIt"
|
"name": "doIt"
|
||||||
},
|
},
|
||||||
|
|||||||
6
test/fixtures/comments/basic/switch-fallthrough-comment/expected.json
vendored
Executable file → Normal file
6
test/fixtures/comments/basic/switch-fallthrough-comment/expected.json
vendored
Executable file → Normal file
@ -54,7 +54,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 10
|
"column": 10
|
||||||
}
|
},
|
||||||
|
"identifierName": "foo"
|
||||||
},
|
},
|
||||||
"name": "foo"
|
"name": "foo"
|
||||||
},
|
},
|
||||||
@ -187,7 +188,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 6,
|
"line": 6,
|
||||||
"column": 12
|
"column": 12
|
||||||
}
|
},
|
||||||
|
"identifierName": "doIt"
|
||||||
},
|
},
|
||||||
"name": "doIt"
|
"name": "doIt"
|
||||||
},
|
},
|
||||||
|
|||||||
10
test/fixtures/comments/basic/switch-no-default-comment-in-function/expected.json
vendored
Executable file → Normal file
10
test/fixtures/comments/basic/switch-no-default-comment-in-function/expected.json
vendored
Executable file → Normal file
@ -54,12 +54,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 12
|
"column": 12
|
||||||
}
|
},
|
||||||
|
"identifierName": "bar"
|
||||||
},
|
},
|
||||||
"name": "bar"
|
"name": "bar"
|
||||||
},
|
},
|
||||||
"generator": false,
|
"generator": false,
|
||||||
"expression": false,
|
"expression": false,
|
||||||
|
"async": false,
|
||||||
"params": [
|
"params": [
|
||||||
{
|
{
|
||||||
"type": "Identifier",
|
"type": "Identifier",
|
||||||
@ -73,7 +75,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 14
|
"column": 14
|
||||||
}
|
},
|
||||||
|
"identifierName": "a"
|
||||||
},
|
},
|
||||||
"name": "a"
|
"name": "a"
|
||||||
}
|
}
|
||||||
@ -119,7 +122,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 2,
|
"line": 2,
|
||||||
"column": 13
|
"column": 13
|
||||||
}
|
},
|
||||||
|
"identifierName": "a"
|
||||||
},
|
},
|
||||||
"name": "a"
|
"name": "a"
|
||||||
},
|
},
|
||||||
|
|||||||
41
test/fixtures/comments/basic/switch-no-default-comment-in-nested-functions/expected.json
vendored
Executable file → Normal file
41
test/fixtures/comments/basic/switch-no-default-comment-in-nested-functions/expected.json
vendored
Executable file → Normal file
@ -83,7 +83,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 6
|
"column": 6
|
||||||
}
|
},
|
||||||
|
"identifierName": "module"
|
||||||
},
|
},
|
||||||
"name": "module"
|
"name": "module"
|
||||||
},
|
},
|
||||||
@ -99,7 +100,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 14
|
"column": 14
|
||||||
}
|
},
|
||||||
|
"identifierName": "exports"
|
||||||
},
|
},
|
||||||
"name": "exports"
|
"name": "exports"
|
||||||
},
|
},
|
||||||
@ -122,6 +124,7 @@
|
|||||||
"id": null,
|
"id": null,
|
||||||
"generator": false,
|
"generator": false,
|
||||||
"expression": false,
|
"expression": false,
|
||||||
|
"async": false,
|
||||||
"params": [
|
"params": [
|
||||||
{
|
{
|
||||||
"type": "Identifier",
|
"type": "Identifier",
|
||||||
@ -135,7 +138,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 33
|
"column": 33
|
||||||
}
|
},
|
||||||
|
"identifierName": "context"
|
||||||
},
|
},
|
||||||
"name": "context"
|
"name": "context"
|
||||||
}
|
}
|
||||||
@ -181,12 +185,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 3,
|
"line": 3,
|
||||||
"column": 23
|
"column": 23
|
||||||
}
|
},
|
||||||
|
"identifierName": "isConstant"
|
||||||
},
|
},
|
||||||
"name": "isConstant"
|
"name": "isConstant"
|
||||||
},
|
},
|
||||||
"generator": false,
|
"generator": false,
|
||||||
"expression": false,
|
"expression": false,
|
||||||
|
"async": false,
|
||||||
"params": [
|
"params": [
|
||||||
{
|
{
|
||||||
"type": "Identifier",
|
"type": "Identifier",
|
||||||
@ -200,7 +206,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 3,
|
"line": 3,
|
||||||
"column": 28
|
"column": 28
|
||||||
}
|
},
|
||||||
|
"identifierName": "node"
|
||||||
},
|
},
|
||||||
"name": "node"
|
"name": "node"
|
||||||
}
|
}
|
||||||
@ -260,7 +267,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 4,
|
"line": 4,
|
||||||
"column": 20
|
"column": 20
|
||||||
}
|
},
|
||||||
|
"identifierName": "node"
|
||||||
},
|
},
|
||||||
"name": "node"
|
"name": "node"
|
||||||
},
|
},
|
||||||
@ -276,7 +284,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 4,
|
"line": 4,
|
||||||
"column": 25
|
"column": 25
|
||||||
}
|
},
|
||||||
|
"identifierName": "type"
|
||||||
},
|
},
|
||||||
"name": "type"
|
"name": "type"
|
||||||
},
|
},
|
||||||
@ -338,7 +347,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 6,
|
"line": 6,
|
||||||
"column": 33
|
"column": 33
|
||||||
}
|
},
|
||||||
|
"identifierName": "isConstant"
|
||||||
},
|
},
|
||||||
"name": "isConstant"
|
"name": "isConstant"
|
||||||
},
|
},
|
||||||
@ -383,7 +393,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 6,
|
"line": 6,
|
||||||
"column": 38
|
"column": 38
|
||||||
}
|
},
|
||||||
|
"identifierName": "node"
|
||||||
},
|
},
|
||||||
"name": "node"
|
"name": "node"
|
||||||
},
|
},
|
||||||
@ -399,7 +410,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 6,
|
"line": 6,
|
||||||
"column": 50
|
"column": 50
|
||||||
}
|
},
|
||||||
|
"identifierName": "expressions"
|
||||||
},
|
},
|
||||||
"name": "expressions"
|
"name": "expressions"
|
||||||
},
|
},
|
||||||
@ -459,7 +471,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 6,
|
"line": 6,
|
||||||
"column": 55
|
"column": 55
|
||||||
}
|
},
|
||||||
|
"identifierName": "node"
|
||||||
},
|
},
|
||||||
"name": "node"
|
"name": "node"
|
||||||
},
|
},
|
||||||
@ -475,7 +488,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 6,
|
"line": 6,
|
||||||
"column": 67
|
"column": 67
|
||||||
}
|
},
|
||||||
|
"identifierName": "expressions"
|
||||||
},
|
},
|
||||||
"name": "expressions"
|
"name": "expressions"
|
||||||
},
|
},
|
||||||
@ -493,7 +507,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 6,
|
"line": 6,
|
||||||
"column": 74
|
"column": 74
|
||||||
}
|
},
|
||||||
|
"identifierName": "length"
|
||||||
},
|
},
|
||||||
"name": "length"
|
"name": "length"
|
||||||
},
|
},
|
||||||
|
|||||||
3
test/fixtures/comments/basic/switch-no-default-comment/expected.json
vendored
Executable file → Normal file
3
test/fixtures/comments/basic/switch-no-default-comment/expected.json
vendored
Executable file → Normal file
@ -54,7 +54,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 9
|
"column": 9
|
||||||
}
|
},
|
||||||
|
"identifierName": "a"
|
||||||
},
|
},
|
||||||
"name": "a"
|
"name": "a"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -74,7 +74,8 @@
|
|||||||
"line": 2,
|
"line": 2,
|
||||||
"column": 8
|
"column": 8
|
||||||
},
|
},
|
||||||
"filename": "path/to/input-file.js"
|
"filename": "path/to/input-file.js",
|
||||||
|
"identifierName": "node"
|
||||||
},
|
},
|
||||||
"name": "node",
|
"name": "node",
|
||||||
"leadingComments": null
|
"leadingComments": null
|
||||||
|
|||||||
@ -168,292 +168,5 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"directives": []
|
"directives": []
|
||||||
},
|
|
||||||
"comments": [],
|
|
||||||
"tokens": [
|
|
||||||
{
|
|
||||||
"type": {
|
|
||||||
"label": "name",
|
|
||||||
"beforeExpr": false,
|
|
||||||
"startsExpr": true,
|
|
||||||
"rightAssociative": false,
|
|
||||||
"isLoop": false,
|
|
||||||
"isAssign": false,
|
|
||||||
"prefix": false,
|
|
||||||
"postfix": false,
|
|
||||||
"binop": null
|
|
||||||
},
|
|
||||||
"value": "call",
|
|
||||||
"start": 0,
|
|
||||||
"end": 4,
|
|
||||||
"loc": {
|
|
||||||
"start": {
|
|
||||||
"line": 3,
|
|
||||||
"column": 0
|
|
||||||
},
|
|
||||||
"end": {
|
|
||||||
"line": 3,
|
|
||||||
"column": 4
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": {
|
|
||||||
"label": "(",
|
|
||||||
"beforeExpr": true,
|
|
||||||
"startsExpr": true,
|
|
||||||
"rightAssociative": false,
|
|
||||||
"isLoop": false,
|
|
||||||
"isAssign": false,
|
|
||||||
"prefix": false,
|
|
||||||
"postfix": false,
|
|
||||||
"binop": null
|
|
||||||
},
|
|
||||||
"start": 4,
|
|
||||||
"end": 5,
|
|
||||||
"loc": {
|
|
||||||
"start": {
|
|
||||||
"line": 3,
|
|
||||||
"column": 4
|
|
||||||
},
|
|
||||||
"end": {
|
|
||||||
"line": 3,
|
|
||||||
"column": 5
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": {
|
|
||||||
"label": "num",
|
|
||||||
"beforeExpr": false,
|
|
||||||
"startsExpr": true,
|
|
||||||
"rightAssociative": false,
|
|
||||||
"isLoop": false,
|
|
||||||
"isAssign": false,
|
|
||||||
"prefix": false,
|
|
||||||
"postfix": false,
|
|
||||||
"binop": null,
|
|
||||||
"updateContext": null
|
|
||||||
},
|
|
||||||
"value": 1,
|
|
||||||
"start": 5,
|
|
||||||
"end": 6,
|
|
||||||
"loc": {
|
|
||||||
"start": {
|
|
||||||
"line": 3,
|
|
||||||
"column": 5
|
|
||||||
},
|
|
||||||
"end": {
|
|
||||||
"line": 3,
|
|
||||||
"column": 6
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": {
|
|
||||||
"label": ")",
|
|
||||||
"beforeExpr": false,
|
|
||||||
"startsExpr": false,
|
|
||||||
"rightAssociative": false,
|
|
||||||
"isLoop": false,
|
|
||||||
"isAssign": false,
|
|
||||||
"prefix": false,
|
|
||||||
"postfix": false,
|
|
||||||
"binop": null
|
|
||||||
},
|
|
||||||
"start": 6,
|
|
||||||
"end": 7,
|
|
||||||
"loc": {
|
|
||||||
"start": {
|
|
||||||
"line": 3,
|
|
||||||
"column": 6
|
|
||||||
},
|
|
||||||
"end": {
|
|
||||||
"line": 3,
|
|
||||||
"column": 7
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": {
|
|
||||||
"label": ";",
|
|
||||||
"beforeExpr": true,
|
|
||||||
"startsExpr": false,
|
|
||||||
"rightAssociative": false,
|
|
||||||
"isLoop": false,
|
|
||||||
"isAssign": false,
|
|
||||||
"prefix": false,
|
|
||||||
"postfix": false,
|
|
||||||
"binop": null,
|
|
||||||
"updateContext": null
|
|
||||||
},
|
|
||||||
"start": 7,
|
|
||||||
"end": 8,
|
|
||||||
"loc": {
|
|
||||||
"start": {
|
|
||||||
"line": 3,
|
|
||||||
"column": 7
|
|
||||||
},
|
|
||||||
"end": {
|
|
||||||
"line": 3,
|
|
||||||
"column": 8
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": {
|
|
||||||
"label": "name",
|
|
||||||
"beforeExpr": false,
|
|
||||||
"startsExpr": true,
|
|
||||||
"rightAssociative": false,
|
|
||||||
"isLoop": false,
|
|
||||||
"isAssign": false,
|
|
||||||
"prefix": false,
|
|
||||||
"postfix": false,
|
|
||||||
"binop": null
|
|
||||||
},
|
|
||||||
"value": "run",
|
|
||||||
"start": 9,
|
|
||||||
"end": 12,
|
|
||||||
"loc": {
|
|
||||||
"start": {
|
|
||||||
"line": 4,
|
|
||||||
"column": 0
|
|
||||||
},
|
|
||||||
"end": {
|
|
||||||
"line": 4,
|
|
||||||
"column": 3
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": {
|
|
||||||
"label": "(",
|
|
||||||
"beforeExpr": true,
|
|
||||||
"startsExpr": true,
|
|
||||||
"rightAssociative": false,
|
|
||||||
"isLoop": false,
|
|
||||||
"isAssign": false,
|
|
||||||
"prefix": false,
|
|
||||||
"postfix": false,
|
|
||||||
"binop": null
|
|
||||||
},
|
|
||||||
"start": 12,
|
|
||||||
"end": 13,
|
|
||||||
"loc": {
|
|
||||||
"start": {
|
|
||||||
"line": 4,
|
|
||||||
"column": 3
|
|
||||||
},
|
|
||||||
"end": {
|
|
||||||
"line": 4,
|
|
||||||
"column": 4
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": {
|
|
||||||
"label": "num",
|
|
||||||
"beforeExpr": false,
|
|
||||||
"startsExpr": true,
|
|
||||||
"rightAssociative": false,
|
|
||||||
"isLoop": false,
|
|
||||||
"isAssign": false,
|
|
||||||
"prefix": false,
|
|
||||||
"postfix": false,
|
|
||||||
"binop": null,
|
|
||||||
"updateContext": null
|
|
||||||
},
|
|
||||||
"value": 2,
|
|
||||||
"start": 13,
|
|
||||||
"end": 14,
|
|
||||||
"loc": {
|
|
||||||
"start": {
|
|
||||||
"line": 4,
|
|
||||||
"column": 4
|
|
||||||
},
|
|
||||||
"end": {
|
|
||||||
"line": 4,
|
|
||||||
"column": 5
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": {
|
|
||||||
"label": ")",
|
|
||||||
"beforeExpr": false,
|
|
||||||
"startsExpr": false,
|
|
||||||
"rightAssociative": false,
|
|
||||||
"isLoop": false,
|
|
||||||
"isAssign": false,
|
|
||||||
"prefix": false,
|
|
||||||
"postfix": false,
|
|
||||||
"binop": null
|
|
||||||
},
|
|
||||||
"start": 14,
|
|
||||||
"end": 15,
|
|
||||||
"loc": {
|
|
||||||
"start": {
|
|
||||||
"line": 4,
|
|
||||||
"column": 5
|
|
||||||
},
|
|
||||||
"end": {
|
|
||||||
"line": 4,
|
|
||||||
"column": 6
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": {
|
|
||||||
"label": ";",
|
|
||||||
"beforeExpr": true,
|
|
||||||
"startsExpr": false,
|
|
||||||
"rightAssociative": false,
|
|
||||||
"isLoop": false,
|
|
||||||
"isAssign": false,
|
|
||||||
"prefix": false,
|
|
||||||
"postfix": false,
|
|
||||||
"binop": null,
|
|
||||||
"updateContext": null
|
|
||||||
},
|
|
||||||
"start": 15,
|
|
||||||
"end": 16,
|
|
||||||
"loc": {
|
|
||||||
"start": {
|
|
||||||
"line": 4,
|
|
||||||
"column": 6
|
|
||||||
},
|
|
||||||
"end": {
|
|
||||||
"line": 4,
|
|
||||||
"column": 7
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": {
|
|
||||||
"label": "eof",
|
|
||||||
"beforeExpr": false,
|
|
||||||
"startsExpr": false,
|
|
||||||
"rightAssociative": false,
|
|
||||||
"isLoop": false,
|
|
||||||
"isAssign": false,
|
|
||||||
"prefix": false,
|
|
||||||
"postfix": false,
|
|
||||||
"binop": null,
|
|
||||||
"updateContext": null
|
|
||||||
},
|
|
||||||
"start": 16,
|
|
||||||
"end": 16,
|
|
||||||
"loc": {
|
|
||||||
"start": {
|
|
||||||
"line": 4,
|
|
||||||
"column": 7
|
|
||||||
},
|
|
||||||
"end": {
|
|
||||||
"line": 4,
|
|
||||||
"column": 7
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
@ -54,12 +54,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 10
|
"column": 10
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
"generator": false,
|
"generator": false,
|
||||||
"expression": false,
|
"expression": false,
|
||||||
|
"async": false,
|
||||||
"params": [],
|
"params": [],
|
||||||
"body": {
|
"body": {
|
||||||
"type": "BlockStatement",
|
"type": "BlockStatement",
|
||||||
@ -117,7 +119,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 2,
|
"line": 2,
|
||||||
"column": 7
|
"column": 7
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -58,6 +58,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -69,7 +69,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -69,7 +69,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 5
|
"column": 5
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -69,7 +69,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 5
|
"column": 5
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -69,7 +69,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 5
|
"column": 5
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -69,7 +69,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 5
|
"column": 5
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -69,7 +69,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 5
|
"column": 5
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -69,7 +69,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 5
|
"column": 5
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -69,7 +69,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 5
|
"column": 5
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -68,13 +68,15 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 10
|
"column": 10
|
||||||
}
|
},
|
||||||
|
"identifierName": "Button"
|
||||||
},
|
},
|
||||||
"name": "Button"
|
"name": "Button"
|
||||||
},
|
},
|
||||||
"arguments": []
|
"arguments": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -69,7 +69,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -68,13 +68,15 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 10
|
"column": 10
|
||||||
}
|
},
|
||||||
|
"identifierName": "Button"
|
||||||
},
|
},
|
||||||
"name": "Button"
|
"name": "Button"
|
||||||
},
|
},
|
||||||
"arguments": []
|
"arguments": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -82,7 +82,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 11
|
"column": 11
|
||||||
}
|
},
|
||||||
|
"identifierName": "foo"
|
||||||
},
|
},
|
||||||
"name": "foo"
|
"name": "foo"
|
||||||
},
|
},
|
||||||
@ -91,6 +92,7 @@
|
|||||||
"arguments": []
|
"arguments": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -82,7 +82,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 11
|
"column": 11
|
||||||
}
|
},
|
||||||
|
"identifierName": "foo"
|
||||||
},
|
},
|
||||||
"name": "foo"
|
"name": "foo"
|
||||||
},
|
},
|
||||||
@ -91,6 +92,7 @@
|
|||||||
"arguments": []
|
"arguments": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -96,7 +96,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 7
|
"column": 7
|
||||||
}
|
},
|
||||||
|
"identifierName": "foo"
|
||||||
},
|
},
|
||||||
"name": "foo"
|
"name": "foo"
|
||||||
},
|
},
|
||||||
@ -114,7 +115,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 13
|
"column": 13
|
||||||
}
|
},
|
||||||
|
"identifierName": "bar"
|
||||||
},
|
},
|
||||||
"name": "bar"
|
"name": "bar"
|
||||||
},
|
},
|
||||||
@ -123,6 +125,7 @@
|
|||||||
"arguments": []
|
"arguments": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -82,7 +82,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 7
|
"column": 7
|
||||||
}
|
},
|
||||||
|
"identifierName": "foo"
|
||||||
},
|
},
|
||||||
"name": "foo"
|
"name": "foo"
|
||||||
},
|
},
|
||||||
@ -98,7 +99,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 11
|
"column": 11
|
||||||
}
|
},
|
||||||
|
"identifierName": "bar"
|
||||||
},
|
},
|
||||||
"name": "bar"
|
"name": "bar"
|
||||||
},
|
},
|
||||||
@ -107,6 +109,7 @@
|
|||||||
"arguments": []
|
"arguments": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -82,7 +82,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 7
|
"column": 7
|
||||||
}
|
},
|
||||||
|
"identifierName": "foo"
|
||||||
},
|
},
|
||||||
"name": "foo"
|
"name": "foo"
|
||||||
},
|
},
|
||||||
@ -98,7 +99,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 11
|
"column": 11
|
||||||
}
|
},
|
||||||
|
"identifierName": "bar"
|
||||||
},
|
},
|
||||||
"name": "bar"
|
"name": "bar"
|
||||||
},
|
},
|
||||||
@ -107,6 +109,7 @@
|
|||||||
"arguments": []
|
"arguments": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -96,13 +96,15 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 9
|
"column": 9
|
||||||
}
|
},
|
||||||
|
"identifierName": "foo"
|
||||||
},
|
},
|
||||||
"name": "foo"
|
"name": "foo"
|
||||||
},
|
},
|
||||||
"arguments": [],
|
"arguments": [],
|
||||||
"extra": {
|
"extra": {
|
||||||
"parenthesized": true
|
"parenthesized": true,
|
||||||
|
"parenStart": 0
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"property": {
|
"property": {
|
||||||
@ -117,7 +119,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 14
|
"column": 14
|
||||||
}
|
},
|
||||||
|
"identifierName": "bar"
|
||||||
},
|
},
|
||||||
"name": "bar"
|
"name": "bar"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 3
|
"column": 3
|
||||||
}
|
},
|
||||||
|
"identifierName": "foo"
|
||||||
},
|
},
|
||||||
"name": "foo"
|
"name": "foo"
|
||||||
},
|
},
|
||||||
@ -85,7 +86,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 7
|
"column": 7
|
||||||
}
|
},
|
||||||
|
"identifierName": "bar"
|
||||||
},
|
},
|
||||||
"name": "bar"
|
"name": "bar"
|
||||||
},
|
},
|
||||||
@ -101,13 +103,15 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 12
|
"column": 12
|
||||||
}
|
},
|
||||||
|
"identifierName": "baz"
|
||||||
},
|
},
|
||||||
"name": "baz"
|
"name": "baz"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -68,11 +68,13 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 8
|
"column": 8
|
||||||
}
|
},
|
||||||
|
"identifierName": "foo"
|
||||||
},
|
},
|
||||||
"name": "foo",
|
"name": "foo",
|
||||||
"extra": {
|
"extra": {
|
||||||
"parenthesized": true
|
"parenthesized": true,
|
||||||
|
"parenStart": 0
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"arguments": []
|
"arguments": []
|
||||||
|
|||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 8
|
"column": 8
|
||||||
}
|
},
|
||||||
|
"identifierName": "universe"
|
||||||
},
|
},
|
||||||
"name": "universe"
|
"name": "universe"
|
||||||
},
|
},
|
||||||
@ -84,13 +85,15 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 17
|
"column": 17
|
||||||
}
|
},
|
||||||
|
"identifierName": "milkyway"
|
||||||
},
|
},
|
||||||
"name": "milkyway"
|
"name": "milkyway"
|
||||||
},
|
},
|
||||||
"computed": false
|
"computed": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -69,7 +69,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -82,7 +82,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 8
|
"column": 8
|
||||||
}
|
},
|
||||||
|
"identifierName": "universe"
|
||||||
},
|
},
|
||||||
"name": "universe"
|
"name": "universe"
|
||||||
},
|
},
|
||||||
@ -98,7 +99,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 17
|
"column": 17
|
||||||
}
|
},
|
||||||
|
"identifierName": "milkyway"
|
||||||
},
|
},
|
||||||
"name": "milkyway"
|
"name": "milkyway"
|
||||||
},
|
},
|
||||||
@ -116,13 +118,15 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 29
|
"column": 29
|
||||||
}
|
},
|
||||||
|
"identifierName": "solarsystem"
|
||||||
},
|
},
|
||||||
"name": "solarsystem"
|
"name": "solarsystem"
|
||||||
},
|
},
|
||||||
"computed": false
|
"computed": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -96,7 +96,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 8
|
"column": 8
|
||||||
}
|
},
|
||||||
|
"identifierName": "universe"
|
||||||
},
|
},
|
||||||
"name": "universe"
|
"name": "universe"
|
||||||
},
|
},
|
||||||
@ -112,7 +113,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 17
|
"column": 17
|
||||||
}
|
},
|
||||||
|
"identifierName": "milkyway"
|
||||||
},
|
},
|
||||||
"name": "milkyway"
|
"name": "milkyway"
|
||||||
},
|
},
|
||||||
@ -130,7 +132,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 29
|
"column": 29
|
||||||
}
|
},
|
||||||
|
"identifierName": "solarsystem"
|
||||||
},
|
},
|
||||||
"name": "solarsystem"
|
"name": "solarsystem"
|
||||||
},
|
},
|
||||||
@ -148,13 +151,15 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 35
|
"column": 35
|
||||||
}
|
},
|
||||||
|
"identifierName": "Earth"
|
||||||
},
|
},
|
||||||
"name": "Earth"
|
"name": "Earth"
|
||||||
},
|
},
|
||||||
"computed": false
|
"computed": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 8
|
"column": 8
|
||||||
}
|
},
|
||||||
|
"identifierName": "universe"
|
||||||
},
|
},
|
||||||
"name": "universe"
|
"name": "universe"
|
||||||
},
|
},
|
||||||
@ -99,7 +100,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 19
|
"column": 19
|
||||||
}
|
},
|
||||||
|
"identifierName": "galaxyName"
|
||||||
},
|
},
|
||||||
"name": "galaxyName"
|
"name": "galaxyName"
|
||||||
},
|
},
|
||||||
@ -115,7 +117,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 37
|
"column": 37
|
||||||
}
|
},
|
||||||
|
"identifierName": "otherUselessName"
|
||||||
},
|
},
|
||||||
"name": "otherUselessName"
|
"name": "otherUselessName"
|
||||||
}
|
}
|
||||||
@ -124,6 +127,7 @@
|
|||||||
"computed": true
|
"computed": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 8
|
"column": 8
|
||||||
}
|
},
|
||||||
|
"identifierName": "universe"
|
||||||
},
|
},
|
||||||
"name": "universe"
|
"name": "universe"
|
||||||
},
|
},
|
||||||
@ -84,13 +85,15 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 19
|
"column": 19
|
||||||
}
|
},
|
||||||
|
"identifierName": "galaxyName"
|
||||||
},
|
},
|
||||||
"name": "galaxyName"
|
"name": "galaxyName"
|
||||||
},
|
},
|
||||||
"computed": true
|
"computed": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -82,7 +82,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 8
|
"column": 8
|
||||||
}
|
},
|
||||||
|
"identifierName": "universe"
|
||||||
},
|
},
|
||||||
"name": "universe"
|
"name": "universe"
|
||||||
},
|
},
|
||||||
@ -120,7 +121,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 21
|
"column": 21
|
||||||
}
|
},
|
||||||
|
"identifierName": "galaxies"
|
||||||
},
|
},
|
||||||
"name": "galaxies"
|
"name": "galaxies"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -82,7 +82,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 8
|
"column": 8
|
||||||
}
|
},
|
||||||
|
"identifierName": "universe"
|
||||||
},
|
},
|
||||||
"name": "universe"
|
"name": "universe"
|
||||||
},
|
},
|
||||||
@ -121,7 +122,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 21
|
"column": 21
|
||||||
}
|
},
|
||||||
|
"identifierName": "galaxies"
|
||||||
},
|
},
|
||||||
"name": "galaxies"
|
"name": "galaxies"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -110,7 +110,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 8
|
"column": 8
|
||||||
}
|
},
|
||||||
|
"identifierName": "universe"
|
||||||
},
|
},
|
||||||
"name": "universe"
|
"name": "universe"
|
||||||
},
|
},
|
||||||
@ -149,7 +150,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 21
|
"column": 21
|
||||||
}
|
},
|
||||||
|
"identifierName": "galaxies"
|
||||||
},
|
},
|
||||||
"name": "galaxies"
|
"name": "galaxies"
|
||||||
},
|
},
|
||||||
@ -230,7 +232,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 41
|
"column": 41
|
||||||
}
|
},
|
||||||
|
"identifierName": "milkyway"
|
||||||
},
|
},
|
||||||
"name": "milkyway"
|
"name": "milkyway"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -110,7 +110,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 5
|
"column": 5
|
||||||
}
|
},
|
||||||
|
"identifierName": "earth"
|
||||||
},
|
},
|
||||||
"name": "earth"
|
"name": "earth"
|
||||||
},
|
},
|
||||||
@ -126,7 +127,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 10
|
"column": 10
|
||||||
}
|
},
|
||||||
|
"identifierName": "asia"
|
||||||
},
|
},
|
||||||
"name": "asia"
|
"name": "asia"
|
||||||
},
|
},
|
||||||
@ -144,7 +146,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 20
|
"column": 20
|
||||||
}
|
},
|
||||||
|
"identifierName": "Indonesia"
|
||||||
},
|
},
|
||||||
"name": "Indonesia"
|
"name": "Indonesia"
|
||||||
},
|
},
|
||||||
@ -162,7 +165,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 39
|
"column": 39
|
||||||
}
|
},
|
||||||
|
"identifierName": "prepareForElection"
|
||||||
},
|
},
|
||||||
"name": "prepareForElection"
|
"name": "prepareForElection"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 8
|
"column": 8
|
||||||
}
|
},
|
||||||
|
"identifierName": "universe"
|
||||||
},
|
},
|
||||||
"name": "universe"
|
"name": "universe"
|
||||||
},
|
},
|
||||||
@ -84,13 +85,15 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 11
|
"column": 11
|
||||||
}
|
},
|
||||||
|
"identifierName": "if"
|
||||||
},
|
},
|
||||||
"name": "if"
|
"name": "if"
|
||||||
},
|
},
|
||||||
"computed": false
|
"computed": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 8
|
"column": 8
|
||||||
}
|
},
|
||||||
|
"identifierName": "universe"
|
||||||
},
|
},
|
||||||
"name": "universe"
|
"name": "universe"
|
||||||
},
|
},
|
||||||
@ -84,13 +85,15 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 13
|
"column": 13
|
||||||
}
|
},
|
||||||
|
"identifierName": "true"
|
||||||
},
|
},
|
||||||
"name": "true"
|
"name": "true"
|
||||||
},
|
},
|
||||||
"computed": false
|
"computed": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -69,7 +69,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 8
|
"column": 8
|
||||||
}
|
},
|
||||||
|
"identifierName": "universe"
|
||||||
},
|
},
|
||||||
"name": "universe"
|
"name": "universe"
|
||||||
},
|
},
|
||||||
@ -84,13 +85,15 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 14
|
"column": 14
|
||||||
}
|
},
|
||||||
|
"identifierName": "false"
|
||||||
},
|
},
|
||||||
"name": "false"
|
"name": "false"
|
||||||
},
|
},
|
||||||
"computed": false
|
"computed": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 8
|
"column": 8
|
||||||
}
|
},
|
||||||
|
"identifierName": "universe"
|
||||||
},
|
},
|
||||||
"name": "universe"
|
"name": "universe"
|
||||||
},
|
},
|
||||||
@ -84,13 +85,15 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 13
|
"column": 13
|
||||||
}
|
},
|
||||||
|
"identifierName": "null"
|
||||||
},
|
},
|
||||||
"name": "null"
|
"name": "null"
|
||||||
},
|
},
|
||||||
"computed": false
|
"computed": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -70,12 +70,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -70,12 +70,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -70,12 +70,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 4
|
"column": 4
|
||||||
}
|
},
|
||||||
|
"identifierName": "eval"
|
||||||
},
|
},
|
||||||
"name": "eval"
|
"name": "eval"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -70,12 +70,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 4
|
"column": 4
|
||||||
}
|
},
|
||||||
|
"identifierName": "eval"
|
||||||
},
|
},
|
||||||
"name": "eval"
|
"name": "eval"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -70,12 +70,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 9
|
"column": 9
|
||||||
}
|
},
|
||||||
|
"identifierName": "arguments"
|
||||||
},
|
},
|
||||||
"name": "arguments"
|
"name": "arguments"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -70,12 +70,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 9
|
"column": 9
|
||||||
}
|
},
|
||||||
|
"identifierName": "arguments"
|
||||||
},
|
},
|
||||||
"name": "arguments"
|
"name": "arguments"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -70,12 +70,17 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 3
|
"column": 3
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
|
},
|
||||||
|
"extra": {
|
||||||
|
"parenthesizedArgument": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -70,12 +70,17 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 3
|
"column": 3
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
|
},
|
||||||
|
"extra": {
|
||||||
|
"parenthesizedArgument": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -69,7 +69,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 3
|
"column": 3
|
||||||
}
|
},
|
||||||
|
"identifierName": "日本語"
|
||||||
},
|
},
|
||||||
"name": "日本語"
|
"name": "日本語"
|
||||||
},
|
},
|
||||||
@ -91,6 +92,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -70,12 +70,17 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 6
|
"column": 6
|
||||||
}
|
},
|
||||||
|
"identifierName": "eval"
|
||||||
},
|
},
|
||||||
"name": "eval"
|
"name": "eval"
|
||||||
|
},
|
||||||
|
"extra": {
|
||||||
|
"parenthesizedArgument": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -70,12 +70,17 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 6
|
"column": 6
|
||||||
}
|
},
|
||||||
|
"identifierName": "eval"
|
||||||
},
|
},
|
||||||
"name": "eval"
|
"name": "eval"
|
||||||
|
},
|
||||||
|
"extra": {
|
||||||
|
"parenthesizedArgument": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -70,12 +70,17 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 11
|
"column": 11
|
||||||
}
|
},
|
||||||
|
"identifierName": "arguments"
|
||||||
},
|
},
|
||||||
"name": "arguments"
|
"name": "arguments"
|
||||||
|
},
|
||||||
|
"extra": {
|
||||||
|
"parenthesizedArgument": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -70,12 +70,17 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 11
|
"column": 11
|
||||||
}
|
},
|
||||||
|
"identifierName": "arguments"
|
||||||
},
|
},
|
||||||
"name": "arguments"
|
"name": "arguments"
|
||||||
|
},
|
||||||
|
"extra": {
|
||||||
|
"parenthesizedArgument": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -70,12 +70,17 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 2
|
"column": 2
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
|
},
|
||||||
|
"extra": {
|
||||||
|
"parenthesizedArgument": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -70,12 +70,17 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 2
|
"column": 2
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
|
},
|
||||||
|
"extra": {
|
||||||
|
"parenthesizedArgument": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -70,12 +70,17 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 2
|
"column": 2
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
|
},
|
||||||
|
"extra": {
|
||||||
|
"parenthesizedArgument": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -70,12 +70,17 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 2
|
"column": 2
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
|
},
|
||||||
|
"extra": {
|
||||||
|
"parenthesizedArgument": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -70,12 +70,17 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 6
|
"column": 6
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
|
},
|
||||||
|
"extra": {
|
||||||
|
"parenthesizedArgument": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -70,12 +70,17 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 8
|
"column": 8
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
|
},
|
||||||
|
"extra": {
|
||||||
|
"parenthesizedArgument": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -69,7 +69,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 2
|
"column": 2
|
||||||
}
|
},
|
||||||
|
"identifierName": "T‿"
|
||||||
},
|
},
|
||||||
"name": "T‿"
|
"name": "T‿"
|
||||||
},
|
},
|
||||||
@ -91,6 +92,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -70,12 +70,17 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 8
|
"column": 8
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
|
},
|
||||||
|
"extra": {
|
||||||
|
"parenthesizedArgument": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
@ -85,12 +86,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 5
|
"column": 5
|
||||||
}
|
},
|
||||||
|
"identifierName": "y"
|
||||||
},
|
},
|
||||||
"name": "y"
|
"name": "y"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
@ -85,12 +86,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 5
|
"column": 5
|
||||||
}
|
},
|
||||||
|
"identifierName": "y"
|
||||||
},
|
},
|
||||||
"name": "y"
|
"name": "y"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
@ -85,12 +86,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 5
|
"column": 5
|
||||||
}
|
},
|
||||||
|
"identifierName": "y"
|
||||||
},
|
},
|
||||||
"name": "y"
|
"name": "y"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
@ -85,12 +86,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 5
|
"column": 5
|
||||||
}
|
},
|
||||||
|
"identifierName": "y"
|
||||||
},
|
},
|
||||||
"name": "y"
|
"name": "y"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
@ -85,12 +86,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 5
|
"column": 5
|
||||||
}
|
},
|
||||||
|
"identifierName": "y"
|
||||||
},
|
},
|
||||||
"name": "y"
|
"name": "y"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
@ -85,12 +86,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 6
|
"column": 6
|
||||||
}
|
},
|
||||||
|
"identifierName": "y"
|
||||||
},
|
},
|
||||||
"name": "y"
|
"name": "y"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
@ -85,12 +86,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 6
|
"column": 6
|
||||||
}
|
},
|
||||||
|
"identifierName": "y"
|
||||||
},
|
},
|
||||||
"name": "y"
|
"name": "y"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
@ -85,12 +86,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 7
|
"column": 7
|
||||||
}
|
},
|
||||||
|
"identifierName": "y"
|
||||||
},
|
},
|
||||||
"name": "y"
|
"name": "y"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
@ -85,12 +86,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 5
|
"column": 5
|
||||||
}
|
},
|
||||||
|
"identifierName": "y"
|
||||||
},
|
},
|
||||||
"name": "y"
|
"name": "y"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -69,7 +69,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 2
|
"column": 2
|
||||||
}
|
},
|
||||||
|
"identifierName": "T"
|
||||||
},
|
},
|
||||||
"name": "T"
|
"name": "T"
|
||||||
},
|
},
|
||||||
@ -91,6 +92,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
@ -85,12 +86,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 5
|
"column": 5
|
||||||
}
|
},
|
||||||
|
"identifierName": "y"
|
||||||
},
|
},
|
||||||
"name": "y"
|
"name": "y"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
@ -85,12 +86,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 6
|
"column": 6
|
||||||
}
|
},
|
||||||
|
"identifierName": "y"
|
||||||
},
|
},
|
||||||
"name": "y"
|
"name": "y"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
@ -85,12 +86,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 6
|
"column": 6
|
||||||
}
|
},
|
||||||
|
"identifierName": "y"
|
||||||
},
|
},
|
||||||
"name": "y"
|
"name": "y"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
@ -85,12 +86,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 6
|
"column": 6
|
||||||
}
|
},
|
||||||
|
"identifierName": "y"
|
||||||
},
|
},
|
||||||
"name": "y"
|
"name": "y"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
@ -85,12 +86,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 14
|
"column": 14
|
||||||
}
|
},
|
||||||
|
"identifierName": "y"
|
||||||
},
|
},
|
||||||
"name": "y"
|
"name": "y"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -82,7 +82,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
@ -99,7 +100,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 5
|
"column": 5
|
||||||
}
|
},
|
||||||
|
"identifierName": "y"
|
||||||
},
|
},
|
||||||
"name": "y"
|
"name": "y"
|
||||||
}
|
}
|
||||||
@ -117,12 +119,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 9
|
"column": 9
|
||||||
}
|
},
|
||||||
|
"identifierName": "z"
|
||||||
},
|
},
|
||||||
"name": "z"
|
"name": "z"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
@ -85,12 +86,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 6
|
"column": 6
|
||||||
}
|
},
|
||||||
|
"identifierName": "y"
|
||||||
},
|
},
|
||||||
"name": "y"
|
"name": "y"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
@ -85,12 +86,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 6
|
"column": 6
|
||||||
}
|
},
|
||||||
|
"identifierName": "y"
|
||||||
},
|
},
|
||||||
"name": "y"
|
"name": "y"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
@ -85,12 +86,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 7
|
"column": 7
|
||||||
}
|
},
|
||||||
|
"identifierName": "y"
|
||||||
},
|
},
|
||||||
"name": "y"
|
"name": "y"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
@ -85,12 +86,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 7
|
"column": 7
|
||||||
}
|
},
|
||||||
|
"identifierName": "y"
|
||||||
},
|
},
|
||||||
"name": "y"
|
"name": "y"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -69,7 +69,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 2
|
"column": 2
|
||||||
}
|
},
|
||||||
|
"identifierName": "T"
|
||||||
},
|
},
|
||||||
"name": "T"
|
"name": "T"
|
||||||
},
|
},
|
||||||
@ -91,6 +92,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
@ -85,12 +86,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 5
|
"column": 5
|
||||||
}
|
},
|
||||||
|
"identifierName": "y"
|
||||||
},
|
},
|
||||||
"name": "y"
|
"name": "y"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
@ -85,12 +86,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 5
|
"column": 5
|
||||||
}
|
},
|
||||||
|
"identifierName": "y"
|
||||||
},
|
},
|
||||||
"name": "y"
|
"name": "y"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -68,7 +68,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
@ -85,12 +86,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 5
|
"column": 5
|
||||||
}
|
},
|
||||||
|
"identifierName": "y"
|
||||||
},
|
},
|
||||||
"name": "y"
|
"name": "y"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -82,7 +82,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 1
|
"column": 1
|
||||||
}
|
},
|
||||||
|
"identifierName": "x"
|
||||||
},
|
},
|
||||||
"name": "x"
|
"name": "x"
|
||||||
},
|
},
|
||||||
@ -99,7 +100,8 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 5
|
"column": 5
|
||||||
}
|
},
|
||||||
|
"identifierName": "y"
|
||||||
},
|
},
|
||||||
"name": "y"
|
"name": "y"
|
||||||
}
|
}
|
||||||
@ -117,12 +119,14 @@
|
|||||||
"end": {
|
"end": {
|
||||||
"line": 1,
|
"line": 1,
|
||||||
"column": 9
|
"column": 9
|
||||||
}
|
},
|
||||||
|
"identifierName": "z"
|
||||||
},
|
},
|
||||||
"name": "z"
|
"name": "z"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"directives": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user