1
1
mirror of https://github.com/github/semantic.git synced 2024-12-24 07:25:44 +03:00
semantic/test/corpus/diff-summaries/go/slice-literals.json

813 lines
26 KiB
JSON
Raw Normal View History

2016-11-02 04:36:43 +03:00
[{
2016-11-02 21:37:30 +03:00
"testCaseDescription": "go-slice-literals-insert-test",
2016-11-02 04:36:43 +03:00
"expectedResult": {
"changes": {
2016-11-02 21:37:30 +03:00
"slice-literals.go": [
2016-11-02 04:36:43 +03:00
{
"span": {
"insert": {
"start": [
2016-11-11 00:19:53 +03:00
1,
2016-11-02 04:36:43 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
1,
2016-11-02 21:37:30 +03:00
22
2016-11-02 04:36:43 +03:00
]
}
},
"summary": "Added the 's1' variable"
2016-11-02 04:36:43 +03:00
},
{
"span": {
"insert": {
"start": [
2016-11-11 00:19:53 +03:00
2,
2016-11-02 04:36:43 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
2,
2016-11-02 21:37:30 +03:00
26
2016-11-02 04:36:43 +03:00
]
}
},
"summary": "Added the 's2' variable"
2016-11-02 21:37:30 +03:00
},
2016-11-02 04:36:43 +03:00
{
"span": {
"insert": {
"start": [
2016-11-11 00:19:53 +03:00
3,
2016-11-02 04:36:43 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
6,
2016-11-02 21:37:30 +03:00
2
2016-11-02 04:36:43 +03:00
]
}
},
"summary": "Added the 's3' variable"
2016-11-02 04:36:43 +03:00
}
]
2016-11-02 21:37:30 +03:00
},
"errors": {}
2016-11-02 04:36:43 +03:00
},
"filePaths": [
2016-11-02 21:37:30 +03:00
"slice-literals.go"
2016-11-02 04:36:43 +03:00
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/slice-literals.go b/slice-literals.go",
"index e69de29..9b1eb7a 100644",
"--- a/slice-literals.go",
"+++ b/slice-literals.go",
"@@ -0,0 +1,6 @@",
"+const s1 = []string{}",
"+const s2 = []string{\"hi\"}",
"+const s3 = []string{",
"+\"hi\",",
"+ \"hello\",",
"+}"
],
2016-11-02 04:36:43 +03:00
"gitDir": "test/corpus/repos/go",
2016-11-21 23:47:41 +03:00
"shas": "1c3168ee8d918ef3e634abc7f0efb6af42d5c457..167f97a44ff2dd15ae4472d4dbd20d1a6b8cafe6"
2016-11-02 04:36:43 +03:00
}
,{
2016-11-02 21:37:30 +03:00
"testCaseDescription": "go-slice-literals-replacement-insert-test",
2016-11-02 04:36:43 +03:00
"expectedResult": {
"changes": {
2016-11-02 21:37:30 +03:00
"slice-literals.go": [
2016-11-02 04:36:43 +03:00
{
"span": {
"insert": {
"start": [
2016-11-11 00:19:53 +03:00
1,
2016-11-02 04:36:43 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
1,
2016-11-02 21:37:30 +03:00
27
2016-11-02 04:36:43 +03:00
]
}
},
"summary": "Added the 's1' variable"
2016-11-02 04:36:43 +03:00
},
{
"span": {
"insert": {
"start": [
2016-11-11 00:19:53 +03:00
2,
2016-11-02 04:36:43 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
2,
2016-11-02 21:37:30 +03:00
29
2016-11-02 04:36:43 +03:00
]
}
},
"summary": "Added the 's2' variable"
2016-11-02 04:36:43 +03:00
},
{
"span": {
"insert": {
"start": [
2016-11-11 00:19:53 +03:00
3,
2016-11-02 04:36:43 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
6,
2016-11-02 21:37:30 +03:00
2
2016-11-02 04:36:43 +03:00
]
}
},
"summary": "Added the 's3' variable"
2016-11-02 04:36:43 +03:00
},
{
"span": {
"insert": {
"start": [
2016-11-11 00:19:53 +03:00
7,
2016-11-02 04:36:43 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
7,
2016-11-02 21:37:30 +03:00
22
2016-11-02 04:36:43 +03:00
]
}
},
"summary": "Added the 's1' variable"
2016-11-02 21:37:30 +03:00
},
2016-11-02 04:36:43 +03:00
{
"span": {
"insert": {
"start": [
2016-11-11 00:19:53 +03:00
8,
2016-11-02 04:36:43 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
8,
2016-11-02 21:37:30 +03:00
26
2016-11-02 04:36:43 +03:00
]
}
},
"summary": "Added the 's2' variable"
2016-11-02 04:36:43 +03:00
},
{
"span": {
"insert": {
"start": [
2016-11-11 00:19:53 +03:00
9,
2016-11-02 04:36:43 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
12,
2016-11-02 21:37:30 +03:00
2
2016-11-02 04:36:43 +03:00
]
}
},
"summary": "Added the 's3' variable"
2016-11-02 04:36:43 +03:00
}
]
2016-11-02 21:37:30 +03:00
},
"errors": {}
2016-11-02 04:36:43 +03:00
},
"filePaths": [
2016-11-02 21:37:30 +03:00
"slice-literals.go"
2016-11-02 04:36:43 +03:00
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/slice-literals.go b/slice-literals.go",
"index 9b1eb7a..4555163 100644",
"--- a/slice-literals.go",
"+++ b/slice-literals.go",
"@@ -1,3 +1,15 @@",
"+const s1 = []string{\"sup\"}",
"+const s2 = []string{\"hello\"}",
"+const s3 = []string{",
"+\"bar\",",
"+ \"baz\",",
"+}",
"+const s1 = []string{}",
"+const s2 = []string{\"hi\"}",
"+const s3 = []string{",
"+\"hi\",",
"+ \"hello\",",
"+}",
" const s1 = []string{}",
" const s2 = []string{\"hi\"}",
" const s3 = []string{"
],
2016-11-02 04:36:43 +03:00
"gitDir": "test/corpus/repos/go",
2016-11-21 23:47:41 +03:00
"shas": "167f97a44ff2dd15ae4472d4dbd20d1a6b8cafe6..a4a9915dd92184927a4389fbd0e1974b77768a92"
2016-11-02 04:36:43 +03:00
}
,{
2016-11-02 21:37:30 +03:00
"testCaseDescription": "go-slice-literals-delete-insert-test",
2016-11-02 04:36:43 +03:00
"expectedResult": {
"changes": {
2016-11-02 21:37:30 +03:00
"slice-literals.go": [
2016-11-02 04:36:43 +03:00
{
"span": {
"replace": [
{
"start": [
2016-11-11 00:19:53 +03:00
1,
21
2016-11-02 04:36:43 +03:00
],
"end": [
2016-11-11 00:19:53 +03:00
1,
26
2016-11-02 04:36:43 +03:00
]
},
{
"start": [
2016-11-11 00:19:53 +03:00
1,
20
2016-11-02 04:36:43 +03:00
],
"end": [
2016-11-11 00:19:53 +03:00
1,
22
2016-11-02 04:36:43 +03:00
]
}
]
},
2016-11-11 00:19:53 +03:00
"summary": "Replaced the \"sup\" string with the '{}' literal_value in the s1 variable"
2016-11-02 04:36:43 +03:00
},
{
"span": {
"replace": [
{
"start": [
2016-11-11 00:19:53 +03:00
2,
2016-11-02 21:37:30 +03:00
21
2016-11-02 04:36:43 +03:00
],
"end": [
2016-11-11 00:19:53 +03:00
2,
28
2016-11-02 04:36:43 +03:00
]
},
{
"start": [
2016-11-11 00:19:53 +03:00
2,
2016-11-02 21:37:30 +03:00
21
2016-11-02 04:36:43 +03:00
],
"end": [
2016-11-11 00:19:53 +03:00
2,
2016-11-02 21:37:30 +03:00
25
2016-11-02 04:36:43 +03:00
]
}
]
},
2016-11-11 00:19:53 +03:00
"summary": "Replaced the \"hello\" string with the \"hi\" string in the s2 variable"
2016-11-02 04:36:43 +03:00
},
{
"span": {
"replace": [
{
"start": [
2016-11-11 00:19:53 +03:00
4,
1
2016-11-02 04:36:43 +03:00
],
"end": [
2016-11-11 00:19:53 +03:00
4,
6
2016-11-02 04:36:43 +03:00
]
},
{
"start": [
2016-11-11 00:19:53 +03:00
4,
1
2016-11-02 04:36:43 +03:00
],
"end": [
2016-11-11 00:19:53 +03:00
4,
5
2016-11-02 04:36:43 +03:00
]
}
]
},
2016-11-11 00:19:53 +03:00
"summary": "Replaced the \"bar\" string with the \"hi\" string in the s3 variable"
2016-11-02 21:37:30 +03:00
},
{
"span": {
"replace": [
{
"start": [
2016-11-11 00:19:53 +03:00
5,
2
],
"end": [
2016-11-11 00:19:53 +03:00
5,
7
]
},
{
"start": [
2016-11-11 00:19:53 +03:00
5,
2
],
"end": [
2016-11-11 00:19:53 +03:00
5,
9
]
}
]
2016-11-02 21:37:30 +03:00
},
2016-11-11 00:19:53 +03:00
"summary": "Replaced the \"baz\" string with the \"hello\" string in the s3 variable"
2016-11-02 04:36:43 +03:00
}
]
},
"errors": {}
},
"filePaths": [
2016-11-02 21:37:30 +03:00
"slice-literals.go"
2016-11-02 04:36:43 +03:00
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/slice-literals.go b/slice-literals.go",
"index 4555163..39a2067 100644",
"--- a/slice-literals.go",
"+++ b/slice-literals.go",
"@@ -1,8 +1,8 @@",
"-const s1 = []string{\"sup\"}",
"-const s2 = []string{\"hello\"}",
"+const s1 = []string{}",
"+const s2 = []string{\"hi\"}",
" const s3 = []string{",
"-\"bar\",",
"- \"baz\",",
"+\"hi\",",
"+ \"hello\",",
" }",
" const s1 = []string{}",
" const s2 = []string{\"hi\"}"
],
2016-11-02 04:36:43 +03:00
"gitDir": "test/corpus/repos/go",
2016-11-21 23:47:41 +03:00
"shas": "a4a9915dd92184927a4389fbd0e1974b77768a92..0282fa8fe4e3f3c10056781a58fb727d33a1a18a"
2016-11-02 04:36:43 +03:00
}
,{
2016-11-02 21:37:30 +03:00
"testCaseDescription": "go-slice-literals-replacement-test",
2016-11-02 04:36:43 +03:00
"expectedResult": {
"changes": {
2016-11-02 21:37:30 +03:00
"slice-literals.go": [
2016-11-02 04:36:43 +03:00
{
"span": {
"replace": [
{
"start": [
2016-11-11 00:19:53 +03:00
1,
2016-11-02 21:37:30 +03:00
20
2016-11-02 04:36:43 +03:00
],
"end": [
2016-11-11 00:19:53 +03:00
1,
2016-11-02 21:37:30 +03:00
22
2016-11-02 04:36:43 +03:00
]
},
{
"start": [
2016-11-11 00:19:53 +03:00
1,
2016-11-02 21:37:30 +03:00
21
2016-11-02 04:36:43 +03:00
],
"end": [
2016-11-11 00:19:53 +03:00
1,
2016-11-02 21:37:30 +03:00
26
2016-11-02 04:36:43 +03:00
]
}
]
},
2016-11-11 00:19:53 +03:00
"summary": "Replaced the '{}' literal_value with the \"sup\" string in the s1 variable"
2016-11-02 04:36:43 +03:00
},
{
"span": {
"replace": [
{
"start": [
2016-11-11 00:19:53 +03:00
2,
2016-11-02 21:37:30 +03:00
21
2016-11-02 04:36:43 +03:00
],
"end": [
2016-11-11 00:19:53 +03:00
2,
2016-11-02 21:37:30 +03:00
25
]
},
{
"start": [
2016-11-11 00:19:53 +03:00
2,
2016-11-02 21:37:30 +03:00
21
],
"end": [
2016-11-11 00:19:53 +03:00
2,
2016-11-02 04:36:43 +03:00
28
]
2016-11-02 21:37:30 +03:00
}
]
},
2016-11-11 00:19:53 +03:00
"summary": "Replaced the \"hi\" string with the \"hello\" string in the s2 variable"
2016-11-02 21:37:30 +03:00
},
{
"span": {
"replace": [
{
"start": [
2016-11-11 00:19:53 +03:00
4,
2016-11-02 21:37:30 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
4,
2016-11-02 21:37:30 +03:00
5
]
},
{
"start": [
2016-11-11 00:19:53 +03:00
4,
2016-11-02 21:37:30 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
4,
2016-11-02 21:37:30 +03:00
6
]
}
]
},
2016-11-11 00:19:53 +03:00
"summary": "Replaced the \"hi\" string with the \"bar\" string in the s3 variable"
2016-11-02 21:37:30 +03:00
},
{
"span": {
"replace": [
{
"start": [
2016-11-11 00:19:53 +03:00
5,
2016-11-02 21:37:30 +03:00
2
],
"end": [
2016-11-11 00:19:53 +03:00
5,
2016-11-02 21:37:30 +03:00
9
]
},
{
"start": [
2016-11-11 00:19:53 +03:00
5,
2016-11-02 21:37:30 +03:00
2
],
"end": [
2016-11-11 00:19:53 +03:00
5,
2016-11-02 21:37:30 +03:00
7
]
}
]
},
2016-11-11 00:19:53 +03:00
"summary": "Replaced the \"hello\" string with the \"baz\" string in the s3 variable"
2016-11-02 04:36:43 +03:00
}
]
},
"errors": {}
},
"filePaths": [
2016-11-02 21:37:30 +03:00
"slice-literals.go"
2016-11-02 04:36:43 +03:00
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/slice-literals.go b/slice-literals.go",
"index 39a2067..4555163 100644",
"--- a/slice-literals.go",
"+++ b/slice-literals.go",
"@@ -1,8 +1,8 @@",
"-const s1 = []string{}",
"-const s2 = []string{\"hi\"}",
"+const s1 = []string{\"sup\"}",
"+const s2 = []string{\"hello\"}",
" const s3 = []string{",
"-\"hi\",",
"- \"hello\",",
"+\"bar\",",
"+ \"baz\",",
" }",
" const s1 = []string{}",
" const s2 = []string{\"hi\"}"
],
2016-11-02 04:36:43 +03:00
"gitDir": "test/corpus/repos/go",
2016-11-21 23:47:41 +03:00
"shas": "0282fa8fe4e3f3c10056781a58fb727d33a1a18a..d138dd59f8a7d676ba1093b8c2e90849bee1fa71"
2016-11-02 04:36:43 +03:00
}
,{
2016-11-02 21:37:30 +03:00
"testCaseDescription": "go-slice-literals-delete-replacement-test",
2016-11-02 04:36:43 +03:00
"expectedResult": {
"changes": {
2016-11-02 21:37:30 +03:00
"slice-literals.go": [
2016-11-02 04:36:43 +03:00
{
"span": {
"delete": {
"start": [
2016-11-11 00:19:53 +03:00
1,
2016-11-02 04:36:43 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
1,
2016-11-02 21:37:30 +03:00
27
2016-11-02 04:36:43 +03:00
]
}
},
"summary": "Deleted the 's1' variable"
2016-11-02 04:36:43 +03:00
},
{
"span": {
"delete": {
"start": [
2016-11-11 00:19:53 +03:00
2,
2016-11-02 04:36:43 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
2,
2016-11-02 21:37:30 +03:00
29
2016-11-02 04:36:43 +03:00
]
}
},
"summary": "Deleted the 's2' variable"
2016-11-02 04:36:43 +03:00
},
{
"span": {
"delete": {
"start": [
2016-11-11 00:19:53 +03:00
3,
2016-11-02 04:36:43 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
6,
2016-11-02 21:37:30 +03:00
2
2016-11-02 04:36:43 +03:00
]
}
},
"summary": "Deleted the 's3' variable"
2016-11-02 04:36:43 +03:00
},
{
"span": {
"delete": {
"start": [
2016-11-11 00:19:53 +03:00
7,
2016-11-02 04:36:43 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
7,
2016-11-02 21:37:30 +03:00
22
2016-11-02 04:36:43 +03:00
]
}
},
"summary": "Deleted the 's1' variable"
2016-11-02 04:36:43 +03:00
},
{
"span": {
2016-11-02 21:37:30 +03:00
"delete": {
2016-11-02 04:36:43 +03:00
"start": [
2016-11-11 00:19:53 +03:00
8,
2016-11-02 04:36:43 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
8,
2016-11-02 21:37:30 +03:00
26
2016-11-02 04:36:43 +03:00
]
}
},
"summary": "Deleted the 's2' variable"
2016-11-02 04:36:43 +03:00
},
{
"span": {
2016-11-02 21:37:30 +03:00
"delete": {
2016-11-02 04:36:43 +03:00
"start": [
2016-11-11 00:19:53 +03:00
9,
2016-11-02 04:36:43 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
12,
2016-11-02 21:37:30 +03:00
2
2016-11-02 04:36:43 +03:00
]
}
},
"summary": "Deleted the 's3' variable"
2016-11-02 21:37:30 +03:00
},
2016-11-02 04:36:43 +03:00
{
"span": {
2016-11-02 21:37:30 +03:00
"insert": {
2016-11-02 04:36:43 +03:00
"start": [
2016-11-11 00:19:53 +03:00
7,
2016-11-02 04:36:43 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
7,
2016-11-02 21:37:30 +03:00
27
2016-11-02 04:36:43 +03:00
]
}
},
"summary": "Added the 's1' variable"
2016-11-02 04:36:43 +03:00
},
{
"span": {
2016-11-02 21:37:30 +03:00
"insert": {
2016-11-02 04:36:43 +03:00
"start": [
2016-11-11 00:19:53 +03:00
8,
2016-11-02 04:36:43 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
8,
2016-11-02 21:37:30 +03:00
29
2016-11-02 04:36:43 +03:00
]
}
},
"summary": "Added the 's2' variable"
2016-11-02 04:36:43 +03:00
},
{
"span": {
"insert": {
"start": [
2016-11-11 00:19:53 +03:00
9,
2016-11-02 04:36:43 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
12,
2016-11-02 21:37:30 +03:00
2
2016-11-02 04:36:43 +03:00
]
}
},
"summary": "Added the 's3' variable"
2016-11-02 04:36:43 +03:00
}
]
2016-11-02 21:37:30 +03:00
},
"errors": {}
2016-11-02 04:36:43 +03:00
},
"filePaths": [
2016-11-02 21:37:30 +03:00
"slice-literals.go"
2016-11-02 04:36:43 +03:00
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/slice-literals.go b/slice-literals.go",
"index 4555163..d3fb29c 100644",
"--- a/slice-literals.go",
"+++ b/slice-literals.go",
"@@ -1,18 +1,12 @@",
"-const s1 = []string{\"sup\"}",
"-const s2 = []string{\"hello\"}",
"-const s3 = []string{",
"-\"bar\",",
"- \"baz\",",
"-}",
" const s1 = []string{}",
" const s2 = []string{\"hi\"}",
" const s3 = []string{",
" \"hi\",",
" \"hello\",",
" }",
"-const s1 = []string{}",
"-const s2 = []string{\"hi\"}",
"+const s1 = []string{\"sup\"}",
"+const s2 = []string{\"hello\"}",
" const s3 = []string{",
"-\"hi\",",
"- \"hello\",",
"+\"bar\",",
"+ \"baz\",",
" }"
],
2016-11-02 04:36:43 +03:00
"gitDir": "test/corpus/repos/go",
2016-11-21 23:47:41 +03:00
"shas": "d138dd59f8a7d676ba1093b8c2e90849bee1fa71..d622ba9f0003a2f9365e0b842a9228352c6901d0"
2016-11-02 04:36:43 +03:00
}
,{
2016-11-02 21:37:30 +03:00
"testCaseDescription": "go-slice-literals-delete-test",
2016-11-02 04:36:43 +03:00
"expectedResult": {
"changes": {
2016-11-02 21:37:30 +03:00
"slice-literals.go": [
2016-11-02 04:36:43 +03:00
{
"span": {
"delete": {
"start": [
2016-11-11 00:19:53 +03:00
1,
2016-11-02 04:36:43 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
1,
2016-11-02 21:37:30 +03:00
22
2016-11-02 04:36:43 +03:00
]
}
},
"summary": "Deleted the 's1' variable"
2016-11-02 04:36:43 +03:00
},
{
"span": {
"delete": {
"start": [
2016-11-11 00:19:53 +03:00
2,
2016-11-02 04:36:43 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
2,
2016-11-02 21:37:30 +03:00
26
2016-11-02 04:36:43 +03:00
]
}
},
"summary": "Deleted the 's2' variable"
2016-11-02 21:37:30 +03:00
},
2016-11-02 04:36:43 +03:00
{
"span": {
"delete": {
"start": [
2016-11-11 00:19:53 +03:00
3,
2016-11-02 04:36:43 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
6,
2016-11-02 21:37:30 +03:00
2
2016-11-02 04:36:43 +03:00
]
}
},
"summary": "Deleted the 's3' variable"
2016-11-02 04:36:43 +03:00
}
]
2016-11-02 21:37:30 +03:00
},
"errors": {}
2016-11-02 04:36:43 +03:00
},
"filePaths": [
2016-11-02 21:37:30 +03:00
"slice-literals.go"
2016-11-02 04:36:43 +03:00
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/slice-literals.go b/slice-literals.go",
"index d3fb29c..e3fd378 100644",
"--- a/slice-literals.go",
"+++ b/slice-literals.go",
"@@ -1,9 +1,3 @@",
"-const s1 = []string{}",
"-const s2 = []string{\"hi\"}",
"-const s3 = []string{",
"-\"hi\",",
"- \"hello\",",
"-}",
" const s1 = []string{\"sup\"}",
" const s2 = []string{\"hello\"}",
" const s3 = []string{"
],
2016-11-02 04:36:43 +03:00
"gitDir": "test/corpus/repos/go",
2016-11-21 23:47:41 +03:00
"shas": "d622ba9f0003a2f9365e0b842a9228352c6901d0..f7c615e0b5706efe9897ef9cc6f52b57201561f5"
2016-11-02 04:36:43 +03:00
}
,{
2016-11-02 21:37:30 +03:00
"testCaseDescription": "go-slice-literals-delete-rest-test",
2016-11-02 04:36:43 +03:00
"expectedResult": {
"changes": {
2016-11-02 21:37:30 +03:00
"slice-literals.go": [
2016-11-02 04:36:43 +03:00
{
"span": {
"delete": {
"start": [
2016-11-11 00:19:53 +03:00
1,
2016-11-02 04:36:43 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
1,
2016-11-02 21:37:30 +03:00
27
2016-11-02 04:36:43 +03:00
]
}
},
"summary": "Deleted the 's1' variable"
2016-11-02 04:36:43 +03:00
},
{
"span": {
"delete": {
"start": [
2016-11-11 00:19:53 +03:00
2,
2016-11-02 04:36:43 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
2,
2016-11-02 21:37:30 +03:00
29
2016-11-02 04:36:43 +03:00
]
}
},
"summary": "Deleted the 's2' variable"
2016-11-02 21:37:30 +03:00
},
2016-11-02 04:36:43 +03:00
{
"span": {
"delete": {
"start": [
2016-11-11 00:19:53 +03:00
3,
2016-11-02 04:36:43 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
6,
2016-11-02 21:37:30 +03:00
2
2016-11-02 04:36:43 +03:00
]
}
},
"summary": "Deleted the 's3' variable"
2016-11-02 04:36:43 +03:00
}
]
2016-11-02 21:37:30 +03:00
},
"errors": {}
2016-11-02 04:36:43 +03:00
},
"filePaths": [
2016-11-02 21:37:30 +03:00
"slice-literals.go"
2016-11-02 04:36:43 +03:00
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/slice-literals.go b/slice-literals.go",
"index e3fd378..e69de29 100644",
"--- a/slice-literals.go",
"+++ b/slice-literals.go",
"@@ -1,6 +0,0 @@",
"-const s1 = []string{\"sup\"}",
"-const s2 = []string{\"hello\"}",
"-const s3 = []string{",
"-\"bar\",",
"- \"baz\",",
"-}"
],
2016-11-02 04:36:43 +03:00
"gitDir": "test/corpus/repos/go",
2016-11-21 23:47:41 +03:00
"shas": "f7c615e0b5706efe9897ef9cc6f52b57201561f5..6d1ce7698c0643e9ec216b0c91910e196f3146e1"
2016-11-02 04:36:43 +03:00
}]