You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/fixture/es6-import.output.json
+54-18Lines changed: 54 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -19,11 +19,11 @@
19
19
"column": 0
20
20
},
21
21
"end": {
22
-
"line": 33,
22
+
"line": 38,
23
23
"column": 1
24
24
}
25
25
},
26
-
"code": "/**\n * This function returns the number one.\n * @returns {Number} numberone\n */\nvar multiply = (a, b) => a * b;\n\n/**\n * This is a sink\n */\nclass Sink {\n /**\n * Is it empty\n */\n empty() {\n return 1;\n }\n\n /**\n * This method says hello\n */\n static hello() {\n return 'hello';\n }\n\n /**\n * @param {number} height the height of the thing\n * @param {number} width the width of the thing\n */\n constructor(height, width) {\n this.height = height;\n this.width = width;\n }\n}\n\nexport default multiply;\n"
26
+
"code": "/**\n * This function returns the number one.\n * @returns {Number} numberone\n */\nvar multiply = (a, b) => a * b;\n\n/**\n * This is a sink\n */\nclass Sink {\n /**\n * This is a property of the sink.\n */\n staticProp = 42;\n\n /**\n * Is it empty\n */\n empty() {\n return 1;\n }\n\n /**\n * This method says hello\n */\n static hello() {\n return 'hello';\n }\n\n /**\n * @param {number} height the height of the thing\n * @param {number} width the width of the thing\n */\n constructor(height, width) {\n this.height = height;\n this.width = width;\n }\n}\n\nexport default multiply;\n"
27
27
},
28
28
"errors": [],
29
29
"name": "Sink",
@@ -56,26 +56,26 @@
56
56
],
57
57
"loc": {
58
58
"start": {
59
-
"line": 25,
59
+
"line": 30,
60
60
"column": 2
61
61
},
62
62
"end": {
63
-
"line": 28,
63
+
"line": 33,
64
64
"column": 5
65
65
}
66
66
},
67
67
"context": {
68
68
"loc": {
69
69
"start": {
70
-
"line": 29,
70
+
"line": 34,
71
71
"column": 2
72
72
},
73
73
"end": {
74
-
"line": 32,
74
+
"line": 37,
75
75
"column": 3
76
76
}
77
77
},
78
-
"code": "/**\n * This function returns the number one.\n * @returns {Number} numberone\n */\nvar multiply = (a, b) => a * b;\n\n/**\n * This is a sink\n */\nclass Sink {\n /**\n * Is it empty\n */\n empty() {\n return 1;\n }\n\n /**\n * This method says hello\n */\n static hello() {\n return 'hello';\n }\n\n /**\n * @param {number} height the height of the thing\n * @param {number} width the width of the thing\n */\n constructor(height, width) {\n this.height = height;\n this.width = width;\n }\n}\n\nexport default multiply;\n"
78
+
"code": "/**\n * This function returns the number one.\n * @returns {Number} numberone\n */\nvar multiply = (a, b) => a * b;\n\n/**\n * This is a sink\n */\nclass Sink {\n /**\n * This is a property of the sink.\n */\n staticProp = 42;\n\n /**\n * Is it empty\n */\n empty() {\n return 1;\n }\n\n /**\n * This method says hello\n */\n static hello() {\n return 'hello';\n }\n\n /**\n * @param {number} height the height of the thing\n * @param {number} width the width of the thing\n */\n constructor(height, width) {\n this.height = height;\n this.width = width;\n }\n}\n\nexport default multiply;\n"
79
79
},
80
80
"errors": [],
81
81
"params": [
@@ -118,26 +118,26 @@
118
118
"tags": [],
119
119
"loc": {
120
120
"start": {
121
-
"line": 11,
121
+
"line": 16,
122
122
"column": 2
123
123
},
124
124
"end": {
125
-
"line": 13,
125
+
"line": 18,
126
126
"column": 5
127
127
}
128
128
},
129
129
"context": {
130
130
"loc": {
131
131
"start": {
132
-
"line": 14,
132
+
"line": 19,
133
133
"column": 2
134
134
},
135
135
"end": {
136
-
"line": 16,
136
+
"line": 21,
137
137
"column": 3
138
138
}
139
139
},
140
-
"code": "/**\n * This function returns the number one.\n * @returns {Number} numberone\n */\nvar multiply = (a, b) => a * b;\n\n/**\n * This is a sink\n */\nclass Sink {\n /**\n * Is it empty\n */\n empty() {\n return 1;\n }\n\n /**\n * This method says hello\n */\n static hello() {\n return 'hello';\n }\n\n /**\n * @param {number} height the height of the thing\n * @param {number} width the width of the thing\n */\n constructor(height, width) {\n this.height = height;\n this.width = width;\n }\n}\n\nexport default multiply;\n"
140
+
"code": "/**\n * This function returns the number one.\n * @returns {Number} numberone\n */\nvar multiply = (a, b) => a * b;\n\n/**\n * This is a sink\n */\nclass Sink {\n /**\n * This is a property of the sink.\n */\n staticProp = 42;\n\n /**\n * Is it empty\n */\n empty() {\n return 1;\n }\n\n /**\n * This method says hello\n */\n static hello() {\n return 'hello';\n }\n\n /**\n * @param {number} height the height of the thing\n * @param {number} width the width of the thing\n */\n constructor(height, width) {\n this.height = height;\n this.width = width;\n }\n}\n\nexport default multiply;\n"
141
141
},
142
142
"errors": [],
143
143
"name": "empty",
@@ -160,26 +160,26 @@
160
160
"tags": [],
161
161
"loc": {
162
162
"start": {
163
-
"line": 18,
163
+
"line": 23,
164
164
"column": 2
165
165
},
166
166
"end": {
167
-
"line": 20,
167
+
"line": 25,
168
168
"column": 5
169
169
}
170
170
},
171
171
"context": {
172
172
"loc": {
173
173
"start": {
174
-
"line": 21,
174
+
"line": 26,
175
175
"column": 2
176
176
},
177
177
"end": {
178
-
"line": 23,
178
+
"line": 28,
179
179
"column": 3
180
180
}
181
181
},
182
-
"code": "/**\n * This function returns the number one.\n * @returns {Number} numberone\n */\nvar multiply = (a, b) => a * b;\n\n/**\n * This is a sink\n */\nclass Sink {\n /**\n * Is it empty\n */\n empty() {\n return 1;\n }\n\n /**\n * This method says hello\n */\n static hello() {\n return 'hello';\n }\n\n /**\n * @param {number} height the height of the thing\n * @param {number} width the width of the thing\n */\n constructor(height, width) {\n this.height = height;\n this.width = width;\n }\n}\n\nexport default multiply;\n"
182
+
"code": "/**\n * This function returns the number one.\n * @returns {Number} numberone\n */\nvar multiply = (a, b) => a * b;\n\n/**\n * This is a sink\n */\nclass Sink {\n /**\n * This is a property of the sink.\n */\n staticProp = 42;\n\n /**\n * Is it empty\n */\n empty() {\n return 1;\n }\n\n /**\n * This method says hello\n */\n static hello() {\n return 'hello';\n }\n\n /**\n * @param {number} height the height of the thing\n * @param {number} width the width of the thing\n */\n constructor(height, width) {\n this.height = height;\n this.width = width;\n }\n}\n\nexport default multiply;\n"
183
183
},
184
184
"errors": [],
185
185
"name": "hello",
@@ -235,7 +235,7 @@
235
235
"column": 31
236
236
}
237
237
},
238
-
"code": "/**\n * This function returns the number one.\n * @returns {Number} numberone\n */\nvar multiply = (a, b) => a * b;\n\n/**\n * This is a sink\n */\nclass Sink {\n /**\n * Is it empty\n */\n empty() {\n return 1;\n }\n\n /**\n * This method says hello\n */\n static hello() {\n return 'hello';\n }\n\n /**\n * @param {number} height the height of the thing\n * @param {number} width the width of the thing\n */\n constructor(height, width) {\n this.height = height;\n this.width = width;\n }\n}\n\nexport default multiply;\n"
238
+
"code": "/**\n * This function returns the number one.\n * @returns {Number} numberone\n */\nvar multiply = (a, b) => a * b;\n\n/**\n * This is a sink\n */\nclass Sink {\n /**\n * This is a property of the sink.\n */\n staticProp = 42;\n\n /**\n * Is it empty\n */\n empty() {\n return 1;\n }\n\n /**\n * This method says hello\n */\n static hello() {\n return 'hello';\n }\n\n /**\n * @param {number} height the height of the thing\n * @param {number} width the width of the thing\n */\n constructor(height, width) {\n this.height = height;\n this.width = width;\n }\n}\n\nexport default multiply;\n"
239
239
},
240
240
"errors": [],
241
241
"returns": [
@@ -335,5 +335,41 @@
335
335
"path": [
336
336
"multiplyTwice"
337
337
]
338
+
},
339
+
{
340
+
"description": "This is a property of the sink.",
341
+
"tags": [],
342
+
"loc": {
343
+
"start": {
344
+
"line": 11,
345
+
"column": 2
346
+
},
347
+
"end": {
348
+
"line": 13,
349
+
"column": 5
350
+
}
351
+
},
352
+
"context": {
353
+
"loc": {
354
+
"start": {
355
+
"line": 14,
356
+
"column": 2
357
+
},
358
+
"end": {
359
+
"line": 14,
360
+
"column": 18
361
+
}
362
+
},
363
+
"code": "/**\n * This function returns the number one.\n * @returns {Number} numberone\n */\nvar multiply = (a, b) => a * b;\n\n/**\n * This is a sink\n */\nclass Sink {\n /**\n * This is a property of the sink.\n */\n staticProp = 42;\n\n /**\n * Is it empty\n */\n empty() {\n return 1;\n }\n\n /**\n * This method says hello\n */\n static hello() {\n return 'hello';\n }\n\n /**\n * @param {number} height the height of the thing\n * @param {number} width the width of the thing\n */\n constructor(height, width) {\n this.height = height;\n this.width = width;\n }\n}\n\nexport default multiply;\n"
0 commit comments