mirror of
https://github.com/github/semantic.git
synced 2024-12-23 14:54:16 +03:00
479 lines
16 KiB
JSON
479 lines
16 KiB
JSON
[{
|
|
"testCaseDescription": "go-go-and-defer-statements-setup-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"go-and-defer-statements.go": [
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
1,
|
|
1
|
|
],
|
|
"end": [
|
|
6,
|
|
1
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added the 'main' module"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"go-and-defer-statements.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/go-and-defer-statements.go b/go-and-defer-statements.go",
|
|
"index e69de29..7905807 100644",
|
|
"--- a/go-and-defer-statements.go",
|
|
"+++ b/go-and-defer-statements.go",
|
|
"@@ -0,0 +1,5 @@",
|
|
"+package main",
|
|
"+",
|
|
"+func main() {",
|
|
"+",
|
|
"+}"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "f21ba099d655b37714a236465a82972c65927645..5a673347de2954526349a14d44172537a229dd96"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-go-and-defer-statements-insert-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"go-and-defer-statements.go": [
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
4,
|
|
1
|
|
],
|
|
"end": [
|
|
4,
|
|
12
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added the 'x[y]()' defer statement in the main function of the 'main' module"
|
|
},
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
5,
|
|
1
|
|
],
|
|
"end": [
|
|
5,
|
|
9
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added the 'x[y]()' go statement in the main function of the 'main' module"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"go-and-defer-statements.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/go-and-defer-statements.go b/go-and-defer-statements.go",
|
|
"index 7905807..4eab499 100644",
|
|
"--- a/go-and-defer-statements.go",
|
|
"+++ b/go-and-defer-statements.go",
|
|
"@@ -1,5 +1,6 @@",
|
|
" package main",
|
|
" ",
|
|
" func main() {",
|
|
"-",
|
|
"+defer x.y()",
|
|
"+go x.y()",
|
|
" }"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "5a673347de2954526349a14d44172537a229dd96..9c2388fc2fb7a4cd57759617e88b0821b09adf72"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-go-and-defer-statements-replacement-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"go-and-defer-statements.go": [
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
4,
|
|
7
|
|
],
|
|
"end": [
|
|
4,
|
|
8
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
4,
|
|
7
|
|
],
|
|
"end": [
|
|
4,
|
|
8
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'x' identifier with the 'a' identifier in the a[b] subscript access of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
4,
|
|
9
|
|
],
|
|
"end": [
|
|
4,
|
|
10
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
4,
|
|
9
|
|
],
|
|
"end": [
|
|
4,
|
|
10
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'y' identifier with the 'b' identifier in the a[b] subscript access of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
5,
|
|
4
|
|
],
|
|
"end": [
|
|
5,
|
|
5
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
5,
|
|
4
|
|
],
|
|
"end": [
|
|
5,
|
|
5
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'x' identifier with the 'c' identifier in the c[d] subscript access of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
5,
|
|
6
|
|
],
|
|
"end": [
|
|
5,
|
|
7
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
5,
|
|
6
|
|
],
|
|
"end": [
|
|
5,
|
|
7
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'y' identifier with the 'd' identifier in the c[d] subscript access of the 'main' function"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"go-and-defer-statements.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/go-and-defer-statements.go b/go-and-defer-statements.go",
|
|
"index 4eab499..0537c4b 100644",
|
|
"--- a/go-and-defer-statements.go",
|
|
"+++ b/go-and-defer-statements.go",
|
|
"@@ -1,6 +1,6 @@",
|
|
" package main",
|
|
" ",
|
|
" func main() {",
|
|
"-defer x.y()",
|
|
"-go x.y()",
|
|
"+defer a.b()",
|
|
"+go c.d()",
|
|
" }"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "9c2388fc2fb7a4cd57759617e88b0821b09adf72..973df49da4619834c51222816b2227217f8cc695"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-go-and-defer-statements-delete-replacement-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"go-and-defer-statements.go": [
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
4,
|
|
7
|
|
],
|
|
"end": [
|
|
4,
|
|
8
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
4,
|
|
7
|
|
],
|
|
"end": [
|
|
4,
|
|
8
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'a' identifier with the 'x' identifier in the x[y] subscript access of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
4,
|
|
9
|
|
],
|
|
"end": [
|
|
4,
|
|
10
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
4,
|
|
9
|
|
],
|
|
"end": [
|
|
4,
|
|
10
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'b' identifier with the 'y' identifier in the x[y] subscript access of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
5,
|
|
4
|
|
],
|
|
"end": [
|
|
5,
|
|
5
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
5,
|
|
4
|
|
],
|
|
"end": [
|
|
5,
|
|
5
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'c' identifier with the 'x' identifier in the x[y] subscript access of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
5,
|
|
6
|
|
],
|
|
"end": [
|
|
5,
|
|
7
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
5,
|
|
6
|
|
],
|
|
"end": [
|
|
5,
|
|
7
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'd' identifier with the 'y' identifier in the x[y] subscript access of the 'main' function"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"go-and-defer-statements.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/go-and-defer-statements.go b/go-and-defer-statements.go",
|
|
"index 0537c4b..4eab499 100644",
|
|
"--- a/go-and-defer-statements.go",
|
|
"+++ b/go-and-defer-statements.go",
|
|
"@@ -1,6 +1,6 @@",
|
|
" package main",
|
|
" ",
|
|
" func main() {",
|
|
"-defer a.b()",
|
|
"-go c.d()",
|
|
"+defer x.y()",
|
|
"+go x.y()",
|
|
" }"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "973df49da4619834c51222816b2227217f8cc695..509239a14f5808f40254f22c6c97f6a1972801d2"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-go-and-defer-statements-delete-insert-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"go-and-defer-statements.go": [
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
4,
|
|
1
|
|
],
|
|
"end": [
|
|
4,
|
|
12
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted the 'x[y]()' defer statement in the main function of the 'main' module"
|
|
},
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
5,
|
|
1
|
|
],
|
|
"end": [
|
|
5,
|
|
9
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted the 'x[y]()' go statement in the main function of the 'main' module"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"go-and-defer-statements.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/go-and-defer-statements.go b/go-and-defer-statements.go",
|
|
"index 4eab499..7905807 100644",
|
|
"--- a/go-and-defer-statements.go",
|
|
"+++ b/go-and-defer-statements.go",
|
|
"@@ -1,6 +1,5 @@",
|
|
" package main",
|
|
" ",
|
|
" func main() {",
|
|
"-defer x.y()",
|
|
"-go x.y()",
|
|
"+",
|
|
" }"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "509239a14f5808f40254f22c6c97f6a1972801d2..acf918e942d072dfca0874ad062804291c3b3f0a"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-go-and-defer-statements-teardown-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"go-and-defer-statements.go": [
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
1,
|
|
1
|
|
],
|
|
"end": [
|
|
6,
|
|
1
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted the 'main' module"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"go-and-defer-statements.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/go-and-defer-statements.go b/go-and-defer-statements.go",
|
|
"index 7905807..e69de29 100644",
|
|
"--- a/go-and-defer-statements.go",
|
|
"+++ b/go-and-defer-statements.go",
|
|
"@@ -1,5 +0,0 @@",
|
|
"-package main",
|
|
"-",
|
|
"-func main() {",
|
|
"-",
|
|
"-}"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "acf918e942d072dfca0874ad062804291c3b3f0a..7493fe72a554c0b5c9bc43fb4c4188a18b5b873a"
|
|
}]
|