Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export const foo = (aaa, bbb) => {};
---

[Content] = 0:20-0:28
>--------<
0| export const foo = (aaa, bbb) => {};

[Domain] = 0:0-0:36
>------------------------------------<
0| export const foo = (aaa, bbb) => {};
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export default function(aaa, bbb) {}
---

[Content] = 0:24-0:32
>--------<
0| export default function(aaa, bbb) {}

[Domain] = 0:0-0:36
>------------------------------------<
0| export default function(aaa, bbb) {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export default function *(aaa, bbb) {}
---

[Content] = 0:26-0:34
>--------<
0| export default function *(aaa, bbb) {}

[Domain] = 0:0-0:38
>--------------------------------------<
0| export default function *(aaa, bbb) {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export default (aaa, bbb) => {};
---

[Content] = 0:16-0:24
>--------<
0| export default (aaa, bbb) => {};

[Domain] = 0:0-0:32
>--------------------------------<
0| export default (aaa, bbb) => {};
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
const foo = function bar(aaa, bbb) {};
---

[Content] = 0:25-0:33
>--------<
0| const foo = function bar(aaa, bbb) {};

[Domain] = 0:12-0:37
>-------------------------<
0| const foo = function bar(aaa, bbb) {};
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
const foo = function *bar(aaa, bbb) {};
---

[Content] = 0:26-0:34
>--------<
0| const foo = function *bar(aaa, bbb) {};

[Domain] = 0:12-0:38
>--------------------------<
0| const foo = function *bar(aaa, bbb) {};
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
function *foo(aaa, bbb) {}
---

[Content] = 0:14-0:22
>--------<
0| function *foo(aaa, bbb) {}

[Domain] = 0:0-0:26
>--------------------------<
0| function *foo(aaa, bbb) {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
const foo = function(aaa, bbb) {};
---

[Content] = 0:21-0:29
>--------<
0| const foo = function(aaa, bbb) {};

[Domain] = 0:0-0:34
>----------------------------------<
0| const foo = function(aaa, bbb) {};
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
const foo = function *(aaa, bbb) {};
---

[Content] = 0:23-0:31
>--------<
0| const foo = function *(aaa, bbb) {};

[Domain] = 0:0-0:36
>------------------------------------<
0| const foo = function *(aaa, bbb) {};
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
const foo = (aaa, bbb) => {};
---

[Content] = 0:13-0:21
>--------<
0| const foo = (aaa, bbb) => {};

[Domain] = 0:0-0:29
>-----------------------------<
0| const foo = (aaa, bbb) => {};
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export function foo(aaa, bbb) {}
---

[Content] = 0:20-0:28
>--------<
0| export function foo(aaa, bbb) {}

[Domain] = 0:0-0:32
>--------------------------------<
0| export function foo(aaa, bbb) {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export function *foo(aaa, bbb) {}
---

[Content] = 0:21-0:29
>--------<
0| export function *foo(aaa, bbb) {}

[Domain] = 0:0-0:33
>---------------------------------<
0| export function *foo(aaa, bbb) {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export const foo = function(aaa, bbb) {};
---

[Content] = 0:28-0:36
>--------<
0| export const foo = function(aaa, bbb) {};

[Domain] = 0:0-0:41
>-----------------------------------------<
0| export const foo = function(aaa, bbb) {};
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export const foo = function *(aaa, bbb) {};
---

[Content] = 0:30-0:38
>--------<
0| export const foo = function *(aaa, bbb) {};

[Domain] = 0:0-0:43
>-------------------------------------------<
0| export const foo = function *(aaa, bbb) {};
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
class Foo {
@baz
bar(aaa, bbb) {}
}
---

[Content] = 2:8-2:16
>--------<
2| bar(aaa, bbb) {}

[Domain] = 1:4-2:20
>----
1| @baz
2| bar(aaa, bbb) {}
--------------------<
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
class Foo {
bar = (aaa, bbb) => {}
}
---

[Content] = 1:11-1:19
>--------<
1| bar = (aaa, bbb) => {}

[Domain] = 1:4-1:26
>----------------------<
1| bar = (aaa, bbb) => {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
class Foo {
@baz
bar = (aaa, bbb) => {}
}
---

[Content] = 2:11-2:19
>--------<
2| bar = (aaa, bbb) => {}

[Domain] = 1:4-2:26
>----
1| @baz
2| bar = (aaa, bbb) => {}
--------------------------<
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
const foo = {
bar(aaa, bbb) {}
}
---

[Content] = 1:8-1:16
>--------<
1| bar(aaa, bbb) {}

[Domain] = 1:4-1:20
>----------------<
1| bar(aaa, bbb) {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
const foo = {
bar: function(aaa, bbb) {}
}
---

[Content] = 1:18-1:26
>--------<
1| bar: function(aaa, bbb) {}

[Domain] = 1:4-1:30
>--------------------------<
1| bar: function(aaa, bbb) {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
const foo = {
bar: function *(aaa, bbb) {}
}
---

[Content] = 1:20-1:28
>--------<
1| bar: function *(aaa, bbb) {}

[Domain] = 1:4-1:32
>----------------------------<
1| bar: function *(aaa, bbb) {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
const foo = {
bar: (aaa, bbb) => {}
}
---

[Content] = 1:10-1:18
>--------<
1| bar: (aaa, bbb) => {}

[Domain] = 1:4-1:25
>---------------------<
1| bar: (aaa, bbb) => {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
export const foo = () => {};
---

[Content] =
[Removal] = 0:20-0:20
><
0| export const foo = () => {};

[Domain] = 0:0-0:28
>----------------------------<
0| export const foo = () => {};

[Insertion delimiter] = ""
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
export default function() {}
---

[Content] =
[Removal] = 0:24-0:24
><
0| export default function() {}

[Domain] = 0:0-0:28
>----------------------------<
0| export default function() {}

[Insertion delimiter] = ""
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
export default function *() {}
---

[Content] =
[Removal] = 0:26-0:26
><
0| export default function *() {}

[Domain] = 0:0-0:30
>------------------------------<
0| export default function *() {}

[Insertion delimiter] = ""
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
export default () => {};
---

[Content] =
[Removal] = 0:16-0:16
><
0| export default () => {};

[Domain] = 0:0-0:24
>------------------------<
0| export default () => {};

[Insertion delimiter] = ""
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
const foo = function bar() {};
---

[Content] =
[Removal] = 0:25-0:25
><
0| const foo = function bar() {};

[Domain] = 0:12-0:29
>-----------------<
0| const foo = function bar() {};

[Insertion delimiter] = ""
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
const foo = function *bar() {};
---

[Content] =
[Removal] = 0:26-0:26
><
0| const foo = function *bar() {};

[Domain] = 0:12-0:30
>------------------<
0| const foo = function *bar() {};

[Insertion delimiter] = ""
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
function *foo() {}
---

[Content] =
[Removal] = 0:14-0:14
><
0| function *foo() {}

[Domain] = 0:0-0:18
>------------------<
0| function *foo() {}

[Insertion delimiter] = ""
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
const foo = function() {};
---

[Content] =
[Removal] = 0:21-0:21
><
0| const foo = function() {};

[Domain] = 0:0-0:26
>--------------------------<
0| const foo = function() {};

[Insertion delimiter] = ""
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
const foo = function *() {};
---

[Content] =
[Removal] = 0:23-0:23
><
0| const foo = function *() {};

[Domain] = 0:0-0:28
>----------------------------<
0| const foo = function *() {};

[Insertion delimiter] = ""
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
const foo = () => {};
---

[Content] =
[Removal] = 0:13-0:13
><
0| const foo = () => {};

[Domain] = 0:0-0:21
>---------------------<
0| const foo = () => {};

[Insertion delimiter] = ""
Loading
Loading