1
1
mirror of https://github.com/github/semantic.git synced 2024-12-23 14:54:16 +03:00
semantic/test/corpus/diff-summaries/go/go-and-defer-statements.json

479 lines
16 KiB
JSON
Raw Normal View History

2016-11-02 17:50:05 +03:00
[{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-go-and-defer-statements-setup-test",
2016-11-02 17:50:05 +03:00
"expectedResult": {
"changes": {
2016-11-02 21:37:30 +03:00
"go-and-defer-statements.go": [
{
"span": {
2016-11-11 00:19:53 +03:00
"insert": {
"start": [
1,
1
2016-11-11 00:19:53 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
6,
1
2016-11-11 00:19:53 +03:00
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Added the 'main' module"
2016-11-02 21:37:30 +03:00
}
]
},
"errors": {}
},
"filePaths": [
"go-and-defer-statements.go"
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/go-and-defer-statements.go b/go-and-defer-statements.go",
2016-12-02 00:03:52 +03:00
"index e69de29..7905807 100644",
2016-11-11 00:19:53 +03:00
"--- a/go-and-defer-statements.go",
"+++ b/go-and-defer-statements.go",
2016-12-02 00:03:52 +03:00
"@@ -0,0 +1,5 @@",
"+package main",
"+",
"+func main() {",
"+",
"+}"
2016-11-11 00:19:53 +03:00
],
2016-11-02 21:37:30 +03:00
"gitDir": "test/corpus/repos/go",
2017-01-10 23:09:09 +03:00
"shas": "995665dc2a5a206afa84348c94b2f2b063716b6b..b7696ed51755fad5ab25f445153000950e669e97"
2016-11-02 21:37:30 +03:00
}
,{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-go-and-defer-statements-insert-test",
2016-11-02 21:37:30 +03:00
"expectedResult": {
"changes": {
"go-and-defer-statements.go": [
2016-11-02 17:50:05 +03:00
{
"span": {
"insert": {
"start": [
2016-12-02 00:03:52 +03:00
4,
1
2016-11-02 17:50:05 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 17:50:05 +03:00
12
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Added the 'x[y]()' defer statement in the main function of the 'main' module"
2016-11-02 21:37:30 +03:00
},
{
"span": {
"insert": {
"start": [
2016-12-02 00:03:52 +03:00
5,
1
2016-11-02 21:37:30 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
5,
2016-11-02 21:37:30 +03:00
9
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Added the 'x[y]()' go statement in the main function of the 'main' module"
2016-11-02 17:50:05 +03:00
}
]
},
"errors": {}
},
"filePaths": [
2016-11-02 21:37:30 +03:00
"go-and-defer-statements.go"
2016-11-02 17:50:05 +03:00
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/go-and-defer-statements.go b/go-and-defer-statements.go",
2016-12-02 00:03:52 +03:00
"index 7905807..4eab499 100644",
2016-11-11 00:19:53 +03:00
"--- a/go-and-defer-statements.go",
"+++ b/go-and-defer-statements.go",
2016-12-02 00:03:52 +03:00
"@@ -1,5 +1,6 @@",
" package main",
" ",
" func main() {",
"-",
2016-11-11 00:19:53 +03:00
"+defer x.y()",
"+go x.y()",
2016-12-02 00:03:52 +03:00
" }"
2016-11-11 00:19:53 +03:00
],
2016-11-02 17:50:05 +03:00
"gitDir": "test/corpus/repos/go",
2017-01-10 23:09:09 +03:00
"shas": "b7696ed51755fad5ab25f445153000950e669e97..9cce31d764aaffc28a4efeb268542c56f3a0e18e"
2016-11-02 17:50:05 +03:00
}
,{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-go-and-defer-statements-replacement-test",
2016-11-02 17:50:05 +03:00
"expectedResult": {
"changes": {
2016-11-02 21:37:30 +03:00
"go-and-defer-statements.go": [
2016-11-02 17:50:05 +03:00
{
"span": {
"replace": [
{
"start": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 21:37:30 +03:00
7
2016-11-02 17:50:05 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 21:37:30 +03:00
8
2016-11-02 17:50:05 +03:00
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 21:37:30 +03:00
7
2016-11-02 17:50:05 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 21:37:30 +03:00
8
2016-11-02 17:50:05 +03:00
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced the 'x' identifier with the 'a' identifier in the a[b] subscript access of the 'main' function"
2016-11-02 21:37:30 +03:00
},
2016-11-02 17:50:05 +03:00
{
"span": {
"replace": [
{
"start": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 21:37:30 +03:00
9
2016-11-02 17:50:05 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 21:37:30 +03:00
10
2016-11-02 17:50:05 +03:00
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 21:37:30 +03:00
9
2016-11-02 17:50:05 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 21:37:30 +03:00
10
2016-11-02 17:50:05 +03:00
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced the 'y' identifier with the 'b' identifier in the a[b] subscript access of the 'main' function"
2016-11-02 17:50:05 +03:00
},
{
"span": {
"replace": [
{
"start": [
2016-12-02 00:03:52 +03:00
5,
2016-11-02 17:50:05 +03:00
4
],
"end": [
2016-12-02 00:03:52 +03:00
5,
2016-11-02 17:50:05 +03:00
5
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
5,
2016-11-02 17:50:05 +03:00
4
],
"end": [
2016-12-02 00:03:52 +03:00
5,
2016-11-02 17:50:05 +03:00
5
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced the 'x' identifier with the 'c' identifier in the c[d] subscript access of the 'main' function"
2016-11-02 17:50:05 +03:00
},
{
"span": {
"replace": [
{
"start": [
2016-12-02 00:03:52 +03:00
5,
2016-11-02 17:50:05 +03:00
6
],
"end": [
2016-12-02 00:03:52 +03:00
5,
2016-11-02 21:37:30 +03:00
7
2016-11-02 17:50:05 +03:00
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
5,
2016-11-02 17:50:05 +03:00
6
],
"end": [
2016-12-02 00:03:52 +03:00
5,
2016-11-02 21:37:30 +03:00
7
2016-11-02 17:50:05 +03:00
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced the 'y' identifier with the 'd' identifier in the c[d] subscript access of the 'main' function"
2016-11-02 17:50:05 +03:00
}
]
},
"errors": {}
},
"filePaths": [
2016-11-02 21:37:30 +03:00
"go-and-defer-statements.go"
2016-11-02 17:50:05 +03:00
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/go-and-defer-statements.go b/go-and-defer-statements.go",
2016-12-02 00:03:52 +03:00
"index 4eab499..0537c4b 100644",
2016-11-11 00:19:53 +03:00
"--- a/go-and-defer-statements.go",
"+++ b/go-and-defer-statements.go",
2016-12-02 00:03:52 +03:00
"@@ -1,6 +1,6 @@",
" package main",
" ",
" func main() {",
"-defer x.y()",
"-go x.y()",
"+defer a.b()",
"+go c.d()",
" }"
2016-11-11 00:19:53 +03:00
],
2016-11-02 17:50:05 +03:00
"gitDir": "test/corpus/repos/go",
2017-01-10 23:09:09 +03:00
"shas": "9cce31d764aaffc28a4efeb268542c56f3a0e18e..8a1cab73f46dac682e3ed1c646a5e58bb26d6fd0"
2016-11-02 17:50:05 +03:00
}
,{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-go-and-defer-statements-delete-replacement-test",
2016-11-02 17:50:05 +03:00
"expectedResult": {
"changes": {
2016-11-02 21:37:30 +03:00
"go-and-defer-statements.go": [
2016-11-02 17:50:05 +03:00
{
"span": {
"replace": [
{
"start": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 21:37:30 +03:00
7
2016-11-02 17:50:05 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 21:37:30 +03:00
8
2016-11-02 17:50:05 +03:00
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 21:37:30 +03:00
7
2016-11-02 17:50:05 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 21:37:30 +03:00
8
2016-11-02 17:50:05 +03:00
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced the 'a' identifier with the 'x' identifier in the x[y] subscript access of the 'main' function"
2016-11-02 17:50:05 +03:00
},
{
"span": {
"replace": [
{
"start": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 21:37:30 +03:00
9
2016-11-02 17:50:05 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 21:37:30 +03:00
10
2016-11-02 17:50:05 +03:00
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 21:37:30 +03:00
9
2016-11-02 17:50:05 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 21:37:30 +03:00
10
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced the 'b' identifier with the 'y' identifier in the x[y] subscript access of the 'main' function"
2016-11-02 21:37:30 +03:00
},
{
"span": {
"replace": [
{
"start": [
2016-12-02 00:03:52 +03:00
5,
2016-11-02 21:37:30 +03:00
4
],
"end": [
2016-12-02 00:03:52 +03:00
5,
2016-11-02 21:37:30 +03:00
5
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
5,
2016-11-02 21:37:30 +03:00
4
],
"end": [
2016-12-02 00:03:52 +03:00
5,
2016-11-02 17:50:05 +03:00
5
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced the 'c' identifier with the 'x' identifier in the x[y] subscript access of the 'main' function"
2016-11-02 17:50:05 +03:00
},
{
"span": {
"replace": [
{
"start": [
2016-12-02 00:03:52 +03:00
5,
2016-11-02 17:50:05 +03:00
6
],
"end": [
2016-12-02 00:03:52 +03:00
5,
2016-11-02 21:37:30 +03:00
7
2016-11-02 17:50:05 +03:00
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
5,
2016-11-02 17:50:05 +03:00
6
],
"end": [
2016-12-02 00:03:52 +03:00
5,
2016-11-02 21:37:30 +03:00
7
2016-11-02 17:50:05 +03:00
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced the 'd' identifier with the 'y' identifier in the x[y] subscript access of the 'main' function"
2016-11-02 17:50:05 +03:00
}
]
},
"errors": {}
},
"filePaths": [
2016-11-02 21:37:30 +03:00
"go-and-defer-statements.go"
2016-11-02 17:50:05 +03:00
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/go-and-defer-statements.go b/go-and-defer-statements.go",
2016-12-02 00:03:52 +03:00
"index 0537c4b..4eab499 100644",
2016-11-11 00:19:53 +03:00
"--- a/go-and-defer-statements.go",
"+++ b/go-and-defer-statements.go",
2016-12-02 00:03:52 +03:00
"@@ -1,6 +1,6 @@",
" package main",
" ",
" func main() {",
2016-11-11 00:19:53 +03:00
"-defer a.b()",
"-go c.d()",
2016-12-02 00:03:52 +03:00
"+defer x.y()",
"+go x.y()",
" }"
2016-11-11 00:19:53 +03:00
],
2016-11-02 21:37:30 +03:00
"gitDir": "test/corpus/repos/go",
2017-01-10 23:09:09 +03:00
"shas": "8a1cab73f46dac682e3ed1c646a5e58bb26d6fd0..10b34af8f31d013f39a448b6e92ba8de97fa3b54"
2016-11-02 21:37:30 +03:00
}
,{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-go-and-defer-statements-delete-insert-test",
2016-11-02 21:37:30 +03:00
"expectedResult": {
"changes": {
"go-and-defer-statements.go": [
2016-11-02 17:50:05 +03:00
{
"span": {
2016-11-02 21:37:30 +03:00
"delete": {
2016-11-02 17:50:05 +03:00
"start": [
2016-12-02 00:03:52 +03:00
4,
1
2016-11-02 17:50:05 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 21:37:30 +03:00
12
2016-11-02 17:50:05 +03:00
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Deleted the 'x[y]()' defer statement in the main function of the 'main' module"
2016-11-02 17:50:05 +03:00
},
{
"span": {
2016-11-02 21:37:30 +03:00
"delete": {
2016-11-02 17:50:05 +03:00
"start": [
2016-12-02 00:03:52 +03:00
5,
1
2016-11-02 17:50:05 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
5,
2016-11-02 17:50:05 +03:00
9
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Deleted the 'x[y]()' go statement in the main function of the 'main' module"
2016-11-02 17:50:05 +03:00
}
]
},
"errors": {}
},
"filePaths": [
2016-11-02 21:37:30 +03:00
"go-and-defer-statements.go"
2016-11-02 17:50:05 +03:00
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/go-and-defer-statements.go b/go-and-defer-statements.go",
2016-12-02 00:03:52 +03:00
"index 4eab499..7905807 100644",
2016-11-11 00:19:53 +03:00
"--- a/go-and-defer-statements.go",
"+++ b/go-and-defer-statements.go",
2016-12-02 00:03:52 +03:00
"@@ -1,6 +1,5 @@",
" package main",
" ",
" func main() {",
2016-11-11 00:19:53 +03:00
"-defer x.y()",
"-go x.y()",
2016-12-02 00:03:52 +03:00
"+",
" }"
2016-11-11 00:19:53 +03:00
],
2016-11-02 17:50:05 +03:00
"gitDir": "test/corpus/repos/go",
2017-01-10 23:09:09 +03:00
"shas": "10b34af8f31d013f39a448b6e92ba8de97fa3b54..0f3528d3f16e4e1b68fe84774950dd57dfc2022f"
2016-11-02 17:50:05 +03:00
}
,{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-go-and-defer-statements-teardown-test",
2016-11-02 17:50:05 +03:00
"expectedResult": {
"changes": {
2016-11-02 21:37:30 +03:00
"go-and-defer-statements.go": [
2016-11-02 17:50:05 +03:00
{
"span": {
2016-11-11 00:19:53 +03:00
"delete": {
"start": [
1,
1
2016-11-11 00:19:53 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
6,
1
2016-11-11 00:19:53 +03:00
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Deleted the 'main' module"
2016-11-02 17:50:05 +03:00
}
]
},
"errors": {}
},
"filePaths": [
2016-11-02 21:37:30 +03:00
"go-and-defer-statements.go"
2016-11-02 17:50:05 +03:00
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/go-and-defer-statements.go b/go-and-defer-statements.go",
2016-12-02 00:03:52 +03:00
"index 7905807..e69de29 100644",
2016-11-11 00:19:53 +03:00
"--- a/go-and-defer-statements.go",
"+++ b/go-and-defer-statements.go",
2016-12-02 00:03:52 +03:00
"@@ -1,5 +0,0 @@",
"-package main",
"-",
"-func main() {",
"-",
"-}"
2016-11-11 00:19:53 +03:00
],
2016-11-02 17:50:05 +03:00
"gitDir": "test/corpus/repos/go",
2017-01-10 23:09:09 +03:00
"shas": "0f3528d3f16e4e1b68fe84774950dd57dfc2022f..a0b25b647b5bf5cd35beae5fdf542e57796009ec"
2016-11-02 17:50:05 +03:00
}]