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/constructors.json

743 lines
25 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": [
1,
13
2016-11-02 17:50:05 +03:00
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Added the 'main' module"
},
{
"span": {
"insert": {
"start": [
3,
1
],
"end": [
5,
2
]
}
},
"summary": "Added the 'main' function"
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",
2017-01-17 23:26:07 +03:00
"index e69de29b..79058077 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",
2017-02-06 18:44:04 +03:00
"shas": "faa9fbbc723f20dd1c278ced316f35e0782f0234..977814b10acebf4bd9ef0c33c6a8b80b977119dc"
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": {
2016-12-02 00:07:40 +03:00
"changes": {
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
]
}
},
"summary": "Added the 'make(chan<- int)' function call in the main function"
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
]
}
},
"summary": "Added the 'make(chan<- int, …)' function call in the main function"
2016-11-11 00:19:53 +03:00
},
{
"span": {
"insert": {
"start": [
6,
1
],
"end": [
6,
24
2016-11-11 00:19:53 +03:00
]
}
},
"summary": "Added the 'make(chan<- int, 5, 10)' function call in the main function"
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
]
}
},
"summary": "Added the 'new(…)' function call in the main function"
2016-11-11 00:19:53 +03:00
}
]
2016-12-02 00:07:40 +03:00
},
"errors": {}
2016-11-11 00:19:53 +03:00
},
"filePaths": [
"constructors.go"
],
"patch": [
"diff --git a/constructors.go b/constructors.go",
2017-01-17 23:26:07 +03:00
"index 79058077..082e65fd 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",
2017-02-06 18:44:04 +03:00
"shas": "977814b10acebf4bd9ef0c33c6a8b80b977119dc..cb304692f838db1d40175831264ec740aae56e59"
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
]
}
]
},
2017-01-17 23:26:07 +03:00
"summary": "Replaced the 'int' identifier with the 'string' identifier in the chan<- string channel type 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
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
]
}
]
},
2017-01-17 23:26:07 +03:00
"summary": "Replaced the 'int' identifier with the 'string' identifier in the chan<- string channel type of the 'main' function"
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
]
}
]
},
2017-01-17 23:26:07 +03:00
"summary": "Replaced the 'int' identifier with the 'string' identifier in the chan<- string channel type of the 'main' function"
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
]
}
]
},
2017-01-17 23:26:07 +03:00
"summary": "Replaced '5' with '7' in the make(chan<- string, 7, 11) function call of the 'main' function"
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
]
}
]
},
2017-01-17 23:26:07 +03:00
"summary": "Replaced '10' with '11' in the make(chan<- string, 7, 11) function call of the 'main' function"
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:07:40 +03:00
"summary": "Replaced the 'string' identifier with the 'int' identifier in the new(…) function call of the 'main' function"
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:07:40 +03:00
"summary": "Replaced the 'string' identifier with the 'int' identifier in the new(…) function call of the 'main' function"
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",
2017-01-17 23:26:07 +03:00
"index 082e65fd..e4fdb2e9 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",
2017-02-06 18:44:04 +03:00
"shas": "cb304692f838db1d40175831264ec740aae56e59..74b776bd1caa296f9657c91ec1665799f6f6e75e"
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
]
}
]
},
2017-01-17 23:26:07 +03:00
"summary": "Replaced the 'string' identifier with the 'int' identifier in the chan<- int channel type 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
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
]
}
]
},
2017-01-17 23:26:07 +03:00
"summary": "Replaced the 'string' identifier with the 'int' identifier in the chan<- int channel type of the 'main' function"
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
]
}
]
},
2017-01-17 23:26:07 +03:00
"summary": "Replaced the 'string' identifier with the 'int' identifier in the chan<- int channel type of the 'main' function"
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
]
}
]
},
2017-01-17 23:26:07 +03:00
"summary": "Replaced '7' with '5' in the make(chan<- int, 5, 10) function call of the 'main' function"
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
]
}
]
},
2017-01-17 23:26:07 +03:00
"summary": "Replaced '11' with '10' in the make(chan<- int, 5, 10) function call of the 'main' function"
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:07:40 +03:00
"summary": "Replaced the 'int' identifier with the 'string' identifier in the new(…) function call of the 'main' function"
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:07:40 +03:00
"summary": "Replaced the 'int' identifier with the 'string' identifier in the new(…) function call of the 'main' function"
2016-11-11 00:19:53 +03:00
}
]
},
"errors": {}
},
"filePaths": [
"constructors.go"
],
"patch": [
"diff --git a/constructors.go b/constructors.go",
2017-01-17 23:26:07 +03:00
"index e4fdb2e9..082e65fd 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",
2017-02-06 18:44:04 +03:00
"shas": "74b776bd1caa296f9657c91ec1665799f6f6e75e..b37403fc18fd588a7e3abe2d799b60ffa348a0d3"
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": {
2016-12-02 00:07:40 +03:00
"changes": {
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
]
}
},
"summary": "Deleted the 'make(chan<- int)' function call in the main function"
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
]
}
},
"summary": "Deleted the 'make(chan<- int, …)' function call in the main function"
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
]
}
},
"summary": "Deleted the 'make(chan<- int, 5, 10)' function call in the main function"
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
]
}
},
"summary": "Deleted the 'new(…)' function call in the main function"
}
]
2016-12-02 00:07:40 +03:00
},
"errors": {}
},
"filePaths": [
"constructors.go"
],
"patch": [
"diff --git a/constructors.go b/constructors.go",
2017-01-17 23:26:07 +03:00
"index 082e65fd..79058077 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",
2017-02-06 18:44:04 +03:00
"shas": "b37403fc18fd588a7e3abe2d799b60ffa348a0d3..abecfd24381a925ba2031acf652c4a2bd9267445"
}
,{
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": [
1,
13
2016-11-02 17:50:05 +03:00
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Deleted the 'main' module"
},
{
"span": {
"delete": {
"start": [
3,
1
],
"end": [
5,
2
]
}
},
"summary": "Deleted the 'main' function"
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",
2017-01-17 23:26:07 +03:00
"index 79058077..e69de29b 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",
2017-02-06 18:44:04 +03:00
"shas": "abecfd24381a925ba2031acf652c4a2bd9267445..94bc6c0af023bccf8cd7c512076c1042bde6e921"
2016-11-02 17:50:05 +03:00
}]