mirror of
https://github.com/github/semantic.git
synced 2024-12-23 23:11:50 +03:00
404 lines
13 KiB
JSON
404 lines
13 KiB
JSON
[{
|
|
"testCaseDescription": "go-array-with-implicit-length-setup-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"array-with-implicit-length.go": [
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
1,
|
|
1
|
|
],
|
|
"end": [
|
|
6,
|
|
1
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added the 'main' module"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"array-with-implicit-length.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/array-with-implicit-length.go b/array-with-implicit-length.go",
|
|
"index e69de29b..79058077 100644",
|
|
"--- a/array-with-implicit-length.go",
|
|
"+++ b/array-with-implicit-length.go",
|
|
"@@ -0,0 +1,5 @@",
|
|
"+package main",
|
|
"+",
|
|
"+func main() {",
|
|
"+",
|
|
"+}"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "ee30d44ab033e2fd4058fe9eec02a7fbf7db7d1c..2827bc13f03758f2f4516375768d82455b149c60"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-array-with-implicit-length-insert-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"array-with-implicit-length.go": [
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
4,
|
|
7
|
|
],
|
|
"end": [
|
|
4,
|
|
29
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added the 'a1' var assignment in the main function of the 'main' module"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"array-with-implicit-length.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/array-with-implicit-length.go b/array-with-implicit-length.go",
|
|
"index 79058077..a53dc8c5 100644",
|
|
"--- a/array-with-implicit-length.go",
|
|
"+++ b/array-with-implicit-length.go",
|
|
"@@ -1,5 +1,5 @@",
|
|
" package main",
|
|
" ",
|
|
" func main() {",
|
|
"-",
|
|
"+const a1 = [...]int{1, 2, 3}",
|
|
" }"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "2827bc13f03758f2f4516375768d82455b149c60..d3a701db112df5bfc5e7d4a636458fe687dc0131"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-array-with-implicit-length-replacement-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"array-with-implicit-length.go": [
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
4,
|
|
21
|
|
],
|
|
"end": [
|
|
4,
|
|
22
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added '4' in the [...]int array of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
4,
|
|
21
|
|
],
|
|
"end": [
|
|
4,
|
|
22
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
4,
|
|
23
|
|
],
|
|
"end": [
|
|
4,
|
|
24
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced '1' with '5' in the [...]int array of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
4,
|
|
25
|
|
],
|
|
"end": [
|
|
4,
|
|
26
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added '6' in the [...]int array of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
4,
|
|
24
|
|
],
|
|
"end": [
|
|
4,
|
|
25
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted '2' in the [...]int array of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
4,
|
|
27
|
|
],
|
|
"end": [
|
|
4,
|
|
28
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted '3' in the [...]int array of the 'main' function"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"array-with-implicit-length.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/array-with-implicit-length.go b/array-with-implicit-length.go",
|
|
"index a53dc8c5..e9e3d08f 100644",
|
|
"--- a/array-with-implicit-length.go",
|
|
"+++ b/array-with-implicit-length.go",
|
|
"@@ -1,5 +1,5 @@",
|
|
" package main",
|
|
" ",
|
|
" func main() {",
|
|
"-const a1 = [...]int{1, 2, 3}",
|
|
"+const a1 = [...]int{4,5,6}",
|
|
" }"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "d3a701db112df5bfc5e7d4a636458fe687dc0131..aa908fd9636ff5b334b94c491269b0266f1d4ab1"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-array-with-implicit-length-delete-replacement-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"array-with-implicit-length.go": [
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
4,
|
|
21
|
|
],
|
|
"end": [
|
|
4,
|
|
22
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added '1' in the [...]int array of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
4,
|
|
24
|
|
],
|
|
"end": [
|
|
4,
|
|
25
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added '2' in the [...]int array of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
4,
|
|
27
|
|
],
|
|
"end": [
|
|
4,
|
|
28
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added '3' in the [...]int array of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
4,
|
|
21
|
|
],
|
|
"end": [
|
|
4,
|
|
22
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted '4' in the [...]int array of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
4,
|
|
23
|
|
],
|
|
"end": [
|
|
4,
|
|
24
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted '5' in the [...]int array of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
4,
|
|
25
|
|
],
|
|
"end": [
|
|
4,
|
|
26
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted '6' in the [...]int array of the 'main' function"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"array-with-implicit-length.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/array-with-implicit-length.go b/array-with-implicit-length.go",
|
|
"index e9e3d08f..a53dc8c5 100644",
|
|
"--- a/array-with-implicit-length.go",
|
|
"+++ b/array-with-implicit-length.go",
|
|
"@@ -1,5 +1,5 @@",
|
|
" package main",
|
|
" ",
|
|
" func main() {",
|
|
"-const a1 = [...]int{4,5,6}",
|
|
"+const a1 = [...]int{1, 2, 3}",
|
|
" }"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "aa908fd9636ff5b334b94c491269b0266f1d4ab1..712d5c5e972c626547972cff52acd709b8955779"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-array-with-implicit-length-delete-insert-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"array-with-implicit-length.go": [
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
4,
|
|
7
|
|
],
|
|
"end": [
|
|
4,
|
|
29
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted the 'a1' var assignment in the main function of the 'main' module"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"array-with-implicit-length.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/array-with-implicit-length.go b/array-with-implicit-length.go",
|
|
"index a53dc8c5..79058077 100644",
|
|
"--- a/array-with-implicit-length.go",
|
|
"+++ b/array-with-implicit-length.go",
|
|
"@@ -1,5 +1,5 @@",
|
|
" package main",
|
|
" ",
|
|
" func main() {",
|
|
"-const a1 = [...]int{1, 2, 3}",
|
|
"+",
|
|
" }"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "712d5c5e972c626547972cff52acd709b8955779..0412b11da9bd1b1852dc97a6f26dfee0d9c00d99"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-array-with-implicit-length-teardown-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"array-with-implicit-length.go": [
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
1,
|
|
1
|
|
],
|
|
"end": [
|
|
6,
|
|
1
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted the 'main' module"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"array-with-implicit-length.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/array-with-implicit-length.go b/array-with-implicit-length.go",
|
|
"index 79058077..e69de29b 100644",
|
|
"--- a/array-with-implicit-length.go",
|
|
"+++ b/array-with-implicit-length.go",
|
|
"@@ -1,5 +0,0 @@",
|
|
"-package main",
|
|
"-",
|
|
"-func main() {",
|
|
"-",
|
|
"-}"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "0412b11da9bd1b1852dc97a6f26dfee0d9c00d99..4148cf70d2e64e6adbdec056e296448eb43c8255"
|
|
}]
|