1
1
mirror of https://github.com/github/semantic.git synced 2024-12-23 23:11:50 +03:00
semantic/test/corpus/diff-summaries/go/constructors.json

713 lines
24 KiB
JSON
Raw Normal View History

2016-11-02 17:50:05 +03:00
[{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-constructors-setup-test",
2016-11-02 17:50:05 +03:00
"expectedResult": {
2016-12-02 00:03:52 +03:00
"changes": {
2016-11-02 17:50:05 +03:00
"constructors.go": [
{
"span": {
"insert": {
"start": [
2016-11-11 00:19:53 +03:00
1,
2016-11-02 17:50:05 +03:00
1
],
"end": [
2016-12-02 00:03:52 +03:00
6,
2016-11-02 17:50:05 +03:00
1
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Added the 'main' module"
2016-11-11 00:19:53 +03:00
}
]
2016-12-02 00:03:52 +03:00
},
"errors": {}
2016-11-11 00:19:53 +03:00
},
"filePaths": [
"constructors.go"
],
"patch": [
"diff --git a/constructors.go b/constructors.go",
2016-12-02 00:03:52 +03:00
"index e69de29..7905807 100644",
2016-11-11 00:19:53 +03:00
"--- a/constructors.go",
"+++ b/constructors.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
],
"gitDir": "test/corpus/repos/go",
2016-12-02 00:03:52 +03:00
"shas": "21e727f376a9c78c9ad9d0828abd21c3361ca339..c6cbd6861b982731b97f7a277261893ba9672182"
2016-11-11 00:19:53 +03:00
}
,{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-constructors-insert-test",
2016-11-11 00:19:53 +03:00
"expectedResult": {
"changes": {},
"errors": {
2016-11-11 00:19:53 +03:00
"constructors.go": [
2016-11-02 17:50:05 +03:00
{
"span": {
"insert": {
"start": [
2016-11-11 00:19:53 +03:00
4,
2016-12-02 00:03:52 +03:00
1
2016-11-02 17:50:05 +03:00
],
"end": [
2016-11-11 00:19:53 +03:00
4,
2016-12-02 00:03:52 +03:00
17
2016-11-02 17:50:05 +03:00
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Added the 'make(chan<- int)' at line 4, column 1 - line 4, column 17 in the main function of the 'main' module"
2016-11-11 00:19:53 +03:00
},
2016-11-02 17:50:05 +03:00
{
"span": {
2016-11-11 00:19:53 +03:00
"insert": {
"start": [
5,
1
],
"end": [
5,
2016-12-02 00:03:52 +03:00
30
2016-11-11 00:19:53 +03:00
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Added the 'make(chan<- int, (new - old))' at line 5, column 1 - line 5, column 30 in the main function of the 'main' module"
2016-11-11 00:19:53 +03:00
},
{
"span": {
"insert": {
"start": [
6,
1
],
"end": [
6,
24
2016-11-11 00:19:53 +03:00
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Added the 'make(chan<- int, 5, 10)' at line 6, column 1 - line 6, column 24 in the main function of the 'main' module"
2016-11-11 00:19:53 +03:00
},
{
"span": {
"insert": {
"start": [
2016-12-02 00:03:52 +03:00
7,
2
2016-11-11 00:19:53 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
7,
24
2016-11-11 00:19:53 +03:00
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Added the 'new(map[string]string)' at line 7, column 2 - line 7, column 24 in the main function of the 'main' module"
2016-11-11 00:19:53 +03:00
}
]
}
2016-11-11 00:19:53 +03:00
},
"filePaths": [
"constructors.go"
],
"patch": [
"diff --git a/constructors.go b/constructors.go",
2016-12-02 00:03:52 +03:00
"index 7905807..082e65f 100644",
2016-11-11 00:19:53 +03:00
"--- a/constructors.go",
"+++ b/constructors.go",
2016-12-02 00:03:52 +03:00
"@@ -1,5 +1,8 @@",
" package main",
" ",
" func main() {",
"-",
2016-11-11 00:19:53 +03:00
"+make(chan<- int)",
"+make(chan<- int, (new - old))",
"+make(chan<- int, 5, 10)",
"+ new(map[string]string)",
2016-12-02 00:03:52 +03:00
" }"
2016-11-11 00:19:53 +03:00
],
"gitDir": "test/corpus/repos/go",
2016-12-02 00:03:52 +03:00
"shas": "c6cbd6861b982731b97f7a277261893ba9672182..129f4848b7f01bbb8345b0c292de53bf2768f845"
2016-11-11 00:19:53 +03:00
}
,{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-constructors-replacement-test",
2016-11-11 00:19:53 +03:00
"expectedResult": {
"changes": {
"constructors.go": [
{
"span": {
"replace": [
{
2016-11-02 17:50:05 +03:00
"start": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 17:50:05 +03:00
13
],
"end": [
2016-12-02 00:03:52 +03:00
4,
16
2016-11-02 17:50:05 +03:00
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 17:50:05 +03:00
13
],
"end": [
2016-12-02 00:03:52 +03:00
4,
19
2016-11-02 17:50:05 +03:00
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced the 'int' identifier with the 'string' identifier in the main function of the 'main' module"
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
13
],
"end": [
2016-12-02 00:03:52 +03:00
5,
16
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
13
],
"end": [
2016-12-02 00:03:52 +03:00
5,
19
2016-11-02 17:50:05 +03:00
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced the 'int' identifier with the 'string' identifier in the main function of the 'main' module"
2016-11-02 17:50:05 +03:00
},
{
"span": {
"replace": [
{
"start": [
2016-12-02 00:03:52 +03:00
6,
2016-11-11 00:19:53 +03:00
13
],
"end": [
2016-12-02 00:03:52 +03:00
6,
16
2016-11-11 00:19:53 +03:00
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
6,
2016-11-11 00:19:53 +03:00
13
],
"end": [
2016-12-02 00:03:52 +03:00
6,
19
2016-11-11 00:19:53 +03:00
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced the 'int' identifier with the 'string' identifier in the main function of the 'main' module"
2016-11-11 00:19:53 +03:00
},
{
"span": {
"replace": [
{
"start": [
2016-12-02 00:03:52 +03:00
6,
18
2016-11-02 17:50:05 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
6,
19
2016-11-02 17:50:05 +03:00
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
6,
21
2016-11-02 17:50:05 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
6,
22
2016-11-02 17:50:05 +03:00
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced '5' with '7' in the main function of the 'main' module"
2016-11-02 17:50:05 +03:00
},
{
"span": {
"replace": [
{
"start": [
2016-12-02 00:03:52 +03:00
6,
21
2016-11-02 17:50:05 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
6,
23
2016-11-02 17:50:05 +03:00
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
6,
24
2016-11-02 17:50:05 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
6,
26
2016-11-02 17:50:05 +03:00
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced '10' with '11' in the main function of the 'main' module"
2016-11-02 17:50:05 +03:00
},
{
"span": {
"replace": [
{
"start": [
2016-12-02 00:03:52 +03:00
7,
2016-11-02 17:50:05 +03:00
10
],
"end": [
2016-12-02 00:03:52 +03:00
7,
16
2016-11-02 17:50:05 +03:00
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
7,
2016-11-02 17:50:05 +03:00
10
],
"end": [
2016-12-02 00:03:52 +03:00
7,
13
2016-11-02 17:50:05 +03:00
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced the 'string' identifier with the 'int' identifier in the main function of the 'main' module"
2016-11-02 17:50:05 +03:00
},
{
"span": {
"replace": [
{
"start": [
2016-12-02 00:03:52 +03:00
7,
17
2016-11-02 17:50:05 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
7,
23
2016-11-02 17:50:05 +03:00
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
7,
14
2016-11-02 17:50:05 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
7,
17
2016-11-02 17:50:05 +03:00
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced the 'string' identifier with the 'int' identifier in the main function of the 'main' module"
2016-11-02 17:50:05 +03:00
}
]
},
"errors": {}
},
"filePaths": [
"constructors.go"
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/constructors.go b/constructors.go",
2016-12-02 00:03:52 +03:00
"index 082e65f..e4fdb2e 100644",
2016-11-11 00:19:53 +03:00
"--- a/constructors.go",
"+++ b/constructors.go",
2016-12-02 00:03:52 +03:00
"@@ -1,8 +1,8 @@",
" package main",
" ",
" func main() {",
"-make(chan<- int)",
"-make(chan<- int, (new - old))",
"-make(chan<- int, 5, 10)",
"- new(map[string]string)",
"+make(chan<- string)",
"+make(chan<- string, (new - old))",
"+make(chan<- string, 7, 11)",
"+ new(map[int]int)",
" }"
2016-11-11 00:19:53 +03:00
],
2016-11-02 17:50:05 +03:00
"gitDir": "test/corpus/repos/go",
2016-12-02 00:03:52 +03:00
"shas": "129f4848b7f01bbb8345b0c292de53bf2768f845..dcfd4dc038c351edbad4dacca2cea5616d17bf6e"
2016-11-02 17:50:05 +03:00
}
,{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-constructors-delete-replacement-test",
2016-11-02 17:50:05 +03:00
"expectedResult": {
"changes": {
"constructors.go": [
{
"span": {
"replace": [
{
"start": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 17:50:05 +03:00
13
],
"end": [
2016-12-02 00:03:52 +03:00
4,
19
2016-11-02 17:50:05 +03:00
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 17:50:05 +03:00
13
],
"end": [
2016-12-02 00:03:52 +03:00
4,
16
2016-11-02 17:50:05 +03:00
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced the 'string' identifier with the 'int' identifier in the main function of the 'main' module"
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
13
],
"end": [
2016-12-02 00:03:52 +03:00
5,
19
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
13
],
"end": [
2016-12-02 00:03:52 +03:00
5,
16
2016-11-02 17:50:05 +03:00
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced the 'string' identifier with the 'int' identifier in the main function of the 'main' module"
2016-11-02 17:50:05 +03:00
},
{
"span": {
"replace": [
{
"start": [
2016-12-02 00:03:52 +03:00
6,
2016-11-02 17:50:05 +03:00
13
],
"end": [
2016-12-02 00:03:52 +03:00
6,
19
2016-11-02 17:50:05 +03:00
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
6,
2016-11-02 17:50:05 +03:00
13
],
"end": [
2016-12-02 00:03:52 +03:00
6,
16
2016-11-02 17:50:05 +03:00
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced the 'string' identifier with the 'int' identifier in the main function of the 'main' module"
2016-11-02 17:50:05 +03:00
},
{
"span": {
"replace": [
{
"start": [
2016-12-02 00:03:52 +03:00
6,
21
2016-11-02 17:50:05 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
6,
22
2016-11-02 17:50:05 +03:00
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
6,
18
2016-11-02 17:50:05 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
6,
19
2016-11-02 17:50:05 +03:00
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced '7' with '5' in the main function of the 'main' module"
2016-11-02 17:50:05 +03:00
},
{
"span": {
"replace": [
{
"start": [
2016-12-02 00:03:52 +03:00
6,
24
2016-11-02 17:50:05 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
6,
26
2016-11-02 17:50:05 +03:00
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
6,
21
2016-11-02 17:50:05 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
6,
23
2016-11-02 17:50:05 +03:00
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced '11' with '10' in the main function of the 'main' module"
2016-11-02 17:50:05 +03:00
},
{
"span": {
"replace": [
{
"start": [
2016-12-02 00:03:52 +03:00
7,
2016-11-02 17:50:05 +03:00
10
],
"end": [
2016-12-02 00:03:52 +03:00
7,
13
2016-11-02 17:50:05 +03:00
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
7,
2016-11-02 17:50:05 +03:00
10
],
"end": [
2016-12-02 00:03:52 +03:00
7,
16
2016-11-02 17:50:05 +03:00
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced the 'int' identifier with the 'string' identifier in the main function of the 'main' module"
2016-11-02 17:50:05 +03:00
},
{
"span": {
"replace": [
{
"start": [
2016-12-02 00:03:52 +03:00
7,
14
],
"end": [
2016-12-02 00:03:52 +03:00
7,
17
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
7,
17
],
"end": [
2016-12-02 00:03:52 +03:00
7,
23
]
}
]
2016-11-02 17:50:05 +03:00
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced the 'int' identifier with the 'string' identifier in the main function of the 'main' module"
2016-11-11 00:19:53 +03:00
}
]
},
"errors": {}
},
"filePaths": [
"constructors.go"
],
"patch": [
"diff --git a/constructors.go b/constructors.go",
2016-12-02 00:03:52 +03:00
"index e4fdb2e..082e65f 100644",
2016-11-11 00:19:53 +03:00
"--- a/constructors.go",
"+++ b/constructors.go",
2016-12-02 00:03:52 +03:00
"@@ -1,8 +1,8 @@",
" package main",
" ",
" func main() {",
"-make(chan<- string)",
"-make(chan<- string, (new - old))",
"-make(chan<- string, 7, 11)",
"- new(map[int]int)",
2016-12-02 00:03:52 +03:00
"+make(chan<- int)",
"+make(chan<- int, (new - old))",
"+make(chan<- int, 5, 10)",
"+ new(map[string]string)",
" }"
2016-11-11 00:19:53 +03:00
],
2016-11-02 17:50:05 +03:00
"gitDir": "test/corpus/repos/go",
2016-12-02 00:03:52 +03:00
"shas": "dcfd4dc038c351edbad4dacca2cea5616d17bf6e..a4c42877e9dfd541fcde44659a4140139b16216f"
2016-11-02 17:50:05 +03:00
}
,{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-constructors-delete-insert-test",
2016-11-02 17:50:05 +03:00
"expectedResult": {
"changes": {},
"errors": {
2016-11-02 17:50:05 +03:00
"constructors.go": [
{
"span": {
"delete": {
"start": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 17:50:05 +03:00
1
],
"end": [
2016-12-02 00:03:52 +03:00
4,
17
2016-11-02 17:50:05 +03:00
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Deleted the 'make(chan<- int)' at line 4, column 1 - line 4, column 17 in the main function of the 'main' module"
2016-11-02 17:50:05 +03:00
},
{
"span": {
"delete": {
"start": [
2016-12-02 00:03:52 +03:00
5,
2016-11-02 17:50:05 +03:00
1
],
"end": [
2016-12-02 00:03:52 +03:00
5,
30
2016-11-02 17:50:05 +03:00
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Deleted the 'make(chan<- int, (new - old))' at line 5, column 1 - line 5, column 30 in the main function of the 'main' module"
2016-11-02 17:50:05 +03:00
},
{
"span": {
"delete": {
"start": [
2016-12-02 00:03:52 +03:00
6,
1
2016-11-02 17:50:05 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
6,
24
2016-11-02 17:50:05 +03:00
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Deleted the 'make(chan<- int, 5, 10)' at line 6, column 1 - line 6, column 24 in the main function of the 'main' module"
2016-11-02 17:50:05 +03:00
},
{
"span": {
"delete": {
"start": [
2016-12-02 00:03:52 +03:00
7,
2
2016-11-02 17:50:05 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
7,
24
2016-11-02 17:50:05 +03:00
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Deleted the 'new(map[string]string)' at line 7, column 2 - line 7, column 24 in the main function of the 'main' module"
}
]
}
},
"filePaths": [
"constructors.go"
],
"patch": [
"diff --git a/constructors.go b/constructors.go",
2016-12-02 00:03:52 +03:00
"index 082e65f..7905807 100644",
"--- a/constructors.go",
"+++ b/constructors.go",
2016-12-02 00:03:52 +03:00
"@@ -1,8 +1,5 @@",
" package main",
" ",
" func main() {",
"-make(chan<- int)",
"-make(chan<- int, (new - old))",
"-make(chan<- int, 5, 10)",
"- new(map[string]string)",
2016-12-02 00:03:52 +03:00
"+",
" }"
],
"gitDir": "test/corpus/repos/go",
2016-12-02 00:03:52 +03:00
"shas": "a4c42877e9dfd541fcde44659a4140139b16216f..ce8fcfc4cec00f77323276fcc4530ab4cf230a86"
}
,{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-constructors-teardown-test",
"expectedResult": {
2016-12-02 00:03:52 +03:00
"changes": {
"constructors.go": [
2016-11-02 17:50:05 +03:00
{
"span": {
"delete": {
"start": [
1,
2016-11-02 17:50:05 +03:00
1
],
"end": [
2016-12-02 00:03:52 +03:00
6,
1
2016-11-02 17:50:05 +03:00
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Deleted the 'main' module"
2016-11-02 17:50:05 +03:00
}
]
2016-12-02 00:03:52 +03:00
},
"errors": {}
2016-11-02 17:50:05 +03:00
},
"filePaths": [
"constructors.go"
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/constructors.go b/constructors.go",
2016-12-02 00:03:52 +03:00
"index 7905807..e69de29 100644",
2016-11-11 00:19:53 +03:00
"--- a/constructors.go",
"+++ b/constructors.go",
2016-12-02 00:03:52 +03:00
"@@ -1,5 +0,0 @@",
"-package main",
"-",
"-func main() {",
"-",
"-}"
2016-11-02 17:50:05 +03:00
],
"gitDir": "test/corpus/repos/go",
2016-12-02 00:03:52 +03:00
"shas": "ce8fcfc4cec00f77323276fcc4530ab4cf230a86..e3fdc3dffa62a0c8db531accad41fd5b55963868"
2016-11-02 17:50:05 +03:00
}]