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/call-expressions.json

503 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-call-expressions-setup-test",
2016-11-02 17:50:05 +03:00
"expectedResult": {
2016-12-02 00:03:52 +03:00
"changes": {
2016-11-02 21:37:30 +03:00
"call-expressions.go": [
2016-11-02 17:50:05 +03:00
{
"span": {
2016-11-11 00:19:53 +03:00
"insert": {
"start": [
1,
1
],
"end": [
1,
13
2016-11-11 00:19:53 +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-02 17:50:05 +03:00
}
]
2016-12-02 00:03:52 +03:00
},
"errors": {}
2016-11-02 17:50:05 +03:00
},
"filePaths": [
2016-11-02 21:37:30 +03:00
"call-expressions.go"
2016-11-02 17:50:05 +03:00
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/call-expressions.go b/call-expressions.go",
2017-01-17 23:26:07 +03:00
"index e69de29b..79058077 100644",
2016-11-11 00:19:53 +03:00
"--- a/call-expressions.go",
"+++ b/call-expressions.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 17:50:05 +03:00
"gitDir": "test/corpus/repos/go",
2017-02-07 19:37:47 +03:00
"shas": "373c46bee0b8179cf5d2f00412173597e503cdd3..3647e58e37fefb500235f7b03c45bf4fdf4fd353"
2016-11-02 17:50:05 +03:00
}
,{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-call-expressions-insert-test",
2016-11-02 17:50:05 +03:00
"expectedResult": {
2016-12-02 00:07:40 +03:00
"changes": {
2016-11-02 21:37:30 +03:00
"call-expressions.go": [
2016-11-02 17:50:05 +03:00
{
"span": {
"insert": {
"start": [
2016-11-11 00:19:53 +03:00
4,
2016-11-02 21:37:30 +03:00
1
2016-11-02 17:50:05 +03:00
],
"end": [
2016-11-11 00:19:53 +03:00
4,
11
2016-11-02 17:50:05 +03:00
]
}
},
"summary": "Added the 'x(b, c)' function call in the main function"
2016-11-02 17:50:05 +03:00
},
{
"span": {
"insert": {
"start": [
2016-11-11 00:19:53 +03:00
5,
2016-11-02 21:37:30 +03:00
1
2016-11-02 17:50:05 +03:00
],
"end": [
2016-11-11 00:19:53 +03:00
5,
9
2016-11-02 17:50:05 +03:00
]
}
},
"summary": "Added the 'y(b, c)' function call in the main function"
2016-11-02 17:50:05 +03:00
},
{
"span": {
"insert": {
"start": [
2016-11-11 00:19:53 +03:00
6,
2016-11-02 21:37:30 +03:00
1
2016-11-02 17:50:05 +03:00
],
"end": [
2016-11-11 00:19:53 +03:00
6,
11
2016-11-02 17:50:05 +03:00
]
}
},
"summary": "Added the 'z(b, c)' function call in the main function"
2016-11-02 21:37:30 +03:00
}
]
2016-12-02 00:07:40 +03:00
},
"errors": {}
2016-11-02 21:37:30 +03:00
},
"filePaths": [
"call-expressions.go"
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/call-expressions.go b/call-expressions.go",
2017-01-17 23:26:07 +03:00
"index 79058077..72918e59 100644",
2016-11-11 00:19:53 +03:00
"--- a/call-expressions.go",
"+++ b/call-expressions.go",
2016-12-02 00:03:52 +03:00
"@@ -1,5 +1,7 @@",
" package main",
" ",
" func main() {",
"-",
2016-11-11 00:19:53 +03:00
"+x(b, c...)",
"+y(b, c,)",
"+z(b,c...,)",
2016-12-02 00:03:52 +03:00
" }"
2016-11-11 00:19:53 +03:00
],
2016-11-02 21:37:30 +03:00
"gitDir": "test/corpus/repos/go",
2017-02-07 19:37:47 +03:00
"shas": "3647e58e37fefb500235f7b03c45bf4fdf4fd353..fdf200e5448db3d0c33a098158f58cc50a96bf92"
}
,{
"testCaseDescription": "go-call-expressions-replacement-test",
"expectedResult": {
2016-12-02 00:03:52 +03:00
"changes": {
"call-expressions.go": [
2016-11-02 17:50:05 +03:00
{
"span": {
2017-01-17 23:26:07 +03:00
"insert": {
"start": [
4,
1
],
"end": [
4,
11
]
}
2016-12-02 00:03:52 +03:00
},
"summary": "Added the 'a(b, c)' function call in the main function"
2016-11-02 17:50:05 +03:00
},
{
"span": {
2017-02-06 18:44:04 +03:00
"replace": [
{
"start": [
4,
1
],
"end": [
4,
2
]
},
{
"start": [
5,
1
],
"end": [
5,
2
]
}
]
2016-12-02 00:03:52 +03:00
},
2017-02-06 18:44:04 +03:00
"summary": "Replaced the 'x' identifier with the 'b' identifier in the b(b, c) function call of the 'main' function"
2016-11-02 17:50:05 +03:00
},
{
"span": {
2017-01-17 23:26:07 +03:00
"insert": {
"start": [
6,
1
],
"end": [
6,
11
]
}
2016-12-02 00:03:52 +03:00
},
"summary": "Added the 'c(b, c)' function call in the main function"
2017-01-17 23:26:07 +03:00
},
{
"span": {
"delete": {
"start": [
5,
1
],
"end": [
5,
9
]
}
},
"summary": "Deleted the 'y(b, c)' function call in the main function"
2017-01-17 23:26:07 +03:00
},
{
"span": {
"delete": {
"start": [
6,
1
],
"end": [
6,
11
]
}
},
"summary": "Deleted the 'z(b, c)' function call in 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": [
2016-11-02 21:37:30 +03:00
"call-expressions.go"
2016-11-02 17:50:05 +03:00
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/call-expressions.go b/call-expressions.go",
2017-01-17 23:26:07 +03:00
"index 72918e59..2d5e765c 100644",
2016-11-11 00:19:53 +03:00
"--- a/call-expressions.go",
"+++ b/call-expressions.go",
2016-12-02 00:03:52 +03:00
"@@ -1,7 +1,7 @@",
" package main",
" ",
" func main() {",
2016-11-11 00:19:53 +03:00
"-x(b, c...)",
"-y(b, c,)",
"-z(b,c...,)",
"+a(b, c...)",
"+b(b, c,)",
"+c(b,c...,)",
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-02-07 19:37:47 +03:00
"shas": "fdf200e5448db3d0c33a098158f58cc50a96bf92..fd62f603e7f0fbcd87c5d3e9259b56af869c8df9"
2016-11-02 17:50:05 +03:00
}
,{
"testCaseDescription": "go-call-expressions-delete-replacement-test",
2016-11-02 17:50:05 +03:00
"expectedResult": {
2016-12-02 00:03:52 +03:00
"changes": {
2016-11-02 21:37:30 +03:00
"call-expressions.go": [
2016-11-02 17:50:05 +03:00
{
"span": {
2017-01-17 23:26:07 +03:00
"insert": {
"start": [
4,
1
],
"end": [
4,
11
]
}
},
"summary": "Added the 'x(b, c)' function call in the main function"
2017-01-17 23:26:07 +03:00
},
{
"span": {
2017-02-06 18:44:04 +03:00
"replace": [
{
"start": [
4,
1
],
"end": [
4,
2
]
},
{
"start": [
5,
1
],
"end": [
5,
2
]
}
]
2016-12-02 00:03:52 +03:00
},
2017-02-06 18:44:04 +03:00
"summary": "Replaced the 'a' identifier with the 'y' identifier in the y(b, c) function call of the 'main' function"
2016-11-02 17:50:05 +03:00
},
{
"span": {
2017-01-17 23:26:07 +03:00
"insert": {
"start": [
6,
1
],
"end": [
6,
11
]
}
2016-12-02 00:03:52 +03:00
},
"summary": "Added the 'z(b, c)' function call in the main function"
2016-11-02 17:50:05 +03:00
},
2017-01-17 23:26:07 +03:00
{
"span": {
"delete": {
"start": [
5,
1
],
"end": [
5,
9
]
}
},
"summary": "Deleted the 'b(b, c)' function call in the main function"
2017-01-17 23:26:07 +03:00
},
{
"span": {
"delete": {
"start": [
6,
1
],
"end": [
6,
11
]
}
2016-12-02 00:03:52 +03:00
},
"summary": "Deleted the 'c(b, c)' function call in 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": [
2016-11-02 21:37:30 +03:00
"call-expressions.go"
2016-11-02 17:50:05 +03:00
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/call-expressions.go b/call-expressions.go",
2017-01-17 23:26:07 +03:00
"index 2d5e765c..72918e59 100644",
2016-11-11 00:19:53 +03:00
"--- a/call-expressions.go",
"+++ b/call-expressions.go",
2016-12-02 00:03:52 +03:00
"@@ -1,7 +1,7 @@",
" package main",
" ",
" func main() {",
"-a(b, c...)",
"-b(b, c,)",
"-c(b,c...,)",
2016-12-02 00:03:52 +03:00
"+x(b, c...)",
"+y(b, c,)",
"+z(b,c...,)",
" }"
2016-11-11 00:19:53 +03:00
],
2016-11-02 17:50:05 +03:00
"gitDir": "test/corpus/repos/go",
2017-02-07 19:37:47 +03:00
"shas": "fd62f603e7f0fbcd87c5d3e9259b56af869c8df9..c0baf110edbc43a5181ed54a0275ec81f704845a"
2016-11-02 17:50:05 +03:00
}
,{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-call-expressions-delete-insert-test",
2016-11-02 17:50:05 +03:00
"expectedResult": {
2016-12-02 00:07:40 +03:00
"changes": {
2016-11-02 21:37:30 +03:00
"call-expressions.go": [
2016-11-02 17:50:05 +03:00
{
"span": {
2016-11-11 00:19:53 +03:00
"delete": {
"start": [
2016-12-02 00:03:52 +03:00
4,
2016-11-11 00:19:53 +03:00
1
],
"end": [
2016-12-02 00:03:52 +03:00
4,
11
2016-11-11 00:19:53 +03:00
]
}
},
"summary": "Deleted the 'x(b, c)' function call in the main function"
2016-11-11 00:19:53 +03:00
},
{
"span": {
"delete": {
"start": [
2016-12-02 00:03:52 +03:00
5,
2016-11-11 00:19:53 +03:00
1
],
"end": [
2016-12-02 00:03:52 +03:00
5,
9
2016-11-11 00:19:53 +03:00
]
}
},
"summary": "Deleted the 'y(b, c)' function call in the main function"
2016-11-11 00:19:53 +03:00
},
{
"span": {
"delete": {
"start": [
2016-12-02 00:03:52 +03:00
6,
1
2016-11-11 00:19:53 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
6,
11
2016-11-11 00:19:53 +03:00
]
}
},
"summary": "Deleted the 'z(b, c)' function call in the main function"
}
]
2016-12-02 00:07:40 +03:00
},
"errors": {}
},
"filePaths": [
"call-expressions.go"
],
"patch": [
"diff --git a/call-expressions.go b/call-expressions.go",
2017-01-17 23:26:07 +03:00
"index 72918e59..79058077 100644",
"--- a/call-expressions.go",
"+++ b/call-expressions.go",
2016-12-02 00:03:52 +03:00
"@@ -1,7 +1,5 @@",
" package main",
" ",
" func main() {",
"-x(b, c...)",
"-y(b, c,)",
"-z(b,c...,)",
2016-12-02 00:03:52 +03:00
"+",
" }"
],
"gitDir": "test/corpus/repos/go",
2017-02-07 19:37:47 +03:00
"shas": "c0baf110edbc43a5181ed54a0275ec81f704845a..4877e00f14f3b561922b7e0cc5388fee41ed8c13"
}
,{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-call-expressions-teardown-test",
"expectedResult": {
2016-12-02 00:03:52 +03:00
"changes": {
"call-expressions.go": [
2016-11-11 00:19:53 +03:00
{
"span": {
"delete": {
"start": [
1,
2016-11-11 00:19:53 +03:00
1
],
"end": [
1,
13
2016-11-11 00:19:53 +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": [
2016-11-02 21:37:30 +03:00
"call-expressions.go"
2016-11-02 17:50:05 +03:00
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/call-expressions.go b/call-expressions.go",
2017-01-17 23:26:07 +03:00
"index 79058077..e69de29b 100644",
2016-11-11 00:19:53 +03:00
"--- a/call-expressions.go",
"+++ b/call-expressions.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-02-07 19:37:47 +03:00
"shas": "4877e00f14f3b561922b7e0cc5388fee41ed8c13..0bd1a3a45c722927b5d7c0c96d296bc01c1b333c"
2016-11-02 17:50:05 +03:00
}]