[{ "testCaseDescription": "go-go-and-defer-statements-setup-test", "expectedResult": { "changes": { "go-and-defer-statements.go": [ { "span": { "insert": { "start": [ 1, 1 ], "end": [ 6, 1 ] } }, "summary": "Added the 'main' module" } ] }, "errors": {} }, "filePaths": [ "go-and-defer-statements.go" ], "patch": [ "diff --git a/go-and-defer-statements.go b/go-and-defer-statements.go", "index e69de29..7905807 100644", "--- a/go-and-defer-statements.go", "+++ b/go-and-defer-statements.go", "@@ -0,0 +1,5 @@", "+package main", "+", "+func main() {", "+", "+}" ], "gitDir": "test/corpus/repos/go", "shas": "995665dc2a5a206afa84348c94b2f2b063716b6b..b7696ed51755fad5ab25f445153000950e669e97" } ,{ "testCaseDescription": "go-go-and-defer-statements-insert-test", "expectedResult": { "changes": { "go-and-defer-statements.go": [ { "span": { "insert": { "start": [ 4, 1 ], "end": [ 4, 12 ] } }, "summary": "Added the 'x[y]()' defer statement in the main function of the 'main' module" }, { "span": { "insert": { "start": [ 5, 1 ], "end": [ 5, 9 ] } }, "summary": "Added the 'x[y]()' go statement in the main function of the 'main' module" } ] }, "errors": {} }, "filePaths": [ "go-and-defer-statements.go" ], "patch": [ "diff --git a/go-and-defer-statements.go b/go-and-defer-statements.go", "index 7905807..4eab499 100644", "--- a/go-and-defer-statements.go", "+++ b/go-and-defer-statements.go", "@@ -1,5 +1,6 @@", " package main", " ", " func main() {", "-", "+defer x.y()", "+go x.y()", " }" ], "gitDir": "test/corpus/repos/go", "shas": "b7696ed51755fad5ab25f445153000950e669e97..9cce31d764aaffc28a4efeb268542c56f3a0e18e" } ,{ "testCaseDescription": "go-go-and-defer-statements-replacement-test", "expectedResult": { "changes": { "go-and-defer-statements.go": [ { "span": { "replace": [ { "start": [ 4, 7 ], "end": [ 4, 8 ] }, { "start": [ 4, 7 ], "end": [ 4, 8 ] } ] }, "summary": "Replaced the 'x' identifier with the 'a' identifier in the a[b] subscript access of the 'main' function" }, { "span": { "replace": [ { "start": [ 4, 9 ], "end": [ 4, 10 ] }, { "start": [ 4, 9 ], "end": [ 4, 10 ] } ] }, "summary": "Replaced the 'y' identifier with the 'b' identifier in the a[b] subscript access of the 'main' function" }, { "span": { "replace": [ { "start": [ 5, 4 ], "end": [ 5, 5 ] }, { "start": [ 5, 4 ], "end": [ 5, 5 ] } ] }, "summary": "Replaced the 'x' identifier with the 'c' identifier in the c[d] subscript access of the 'main' function" }, { "span": { "replace": [ { "start": [ 5, 6 ], "end": [ 5, 7 ] }, { "start": [ 5, 6 ], "end": [ 5, 7 ] } ] }, "summary": "Replaced the 'y' identifier with the 'd' identifier in the c[d] subscript access of the 'main' function" } ] }, "errors": {} }, "filePaths": [ "go-and-defer-statements.go" ], "patch": [ "diff --git a/go-and-defer-statements.go b/go-and-defer-statements.go", "index 4eab499..0537c4b 100644", "--- a/go-and-defer-statements.go", "+++ b/go-and-defer-statements.go", "@@ -1,6 +1,6 @@", " package main", " ", " func main() {", "-defer x.y()", "-go x.y()", "+defer a.b()", "+go c.d()", " }" ], "gitDir": "test/corpus/repos/go", "shas": "9cce31d764aaffc28a4efeb268542c56f3a0e18e..8a1cab73f46dac682e3ed1c646a5e58bb26d6fd0" } ,{ "testCaseDescription": "go-go-and-defer-statements-delete-replacement-test", "expectedResult": { "changes": { "go-and-defer-statements.go": [ { "span": { "replace": [ { "start": [ 4, 7 ], "end": [ 4, 8 ] }, { "start": [ 4, 7 ], "end": [ 4, 8 ] } ] }, "summary": "Replaced the 'a' identifier with the 'x' identifier in the x[y] subscript access of the 'main' function" }, { "span": { "replace": [ { "start": [ 4, 9 ], "end": [ 4, 10 ] }, { "start": [ 4, 9 ], "end": [ 4, 10 ] } ] }, "summary": "Replaced the 'b' identifier with the 'y' identifier in the x[y] subscript access of the 'main' function" }, { "span": { "replace": [ { "start": [ 5, 4 ], "end": [ 5, 5 ] }, { "start": [ 5, 4 ], "end": [ 5, 5 ] } ] }, "summary": "Replaced the 'c' identifier with the 'x' identifier in the x[y] subscript access of the 'main' function" }, { "span": { "replace": [ { "start": [ 5, 6 ], "end": [ 5, 7 ] }, { "start": [ 5, 6 ], "end": [ 5, 7 ] } ] }, "summary": "Replaced the 'd' identifier with the 'y' identifier in the x[y] subscript access of the 'main' function" } ] }, "errors": {} }, "filePaths": [ "go-and-defer-statements.go" ], "patch": [ "diff --git a/go-and-defer-statements.go b/go-and-defer-statements.go", "index 0537c4b..4eab499 100644", "--- a/go-and-defer-statements.go", "+++ b/go-and-defer-statements.go", "@@ -1,6 +1,6 @@", " package main", " ", " func main() {", "-defer a.b()", "-go c.d()", "+defer x.y()", "+go x.y()", " }" ], "gitDir": "test/corpus/repos/go", "shas": "8a1cab73f46dac682e3ed1c646a5e58bb26d6fd0..10b34af8f31d013f39a448b6e92ba8de97fa3b54" } ,{ "testCaseDescription": "go-go-and-defer-statements-delete-insert-test", "expectedResult": { "changes": { "go-and-defer-statements.go": [ { "span": { "delete": { "start": [ 4, 1 ], "end": [ 4, 12 ] } }, "summary": "Deleted the 'x[y]()' defer statement in the main function of the 'main' module" }, { "span": { "delete": { "start": [ 5, 1 ], "end": [ 5, 9 ] } }, "summary": "Deleted the 'x[y]()' go statement in the main function of the 'main' module" } ] }, "errors": {} }, "filePaths": [ "go-and-defer-statements.go" ], "patch": [ "diff --git a/go-and-defer-statements.go b/go-and-defer-statements.go", "index 4eab499..7905807 100644", "--- a/go-and-defer-statements.go", "+++ b/go-and-defer-statements.go", "@@ -1,6 +1,5 @@", " package main", " ", " func main() {", "-defer x.y()", "-go x.y()", "+", " }" ], "gitDir": "test/corpus/repos/go", "shas": "10b34af8f31d013f39a448b6e92ba8de97fa3b54..0f3528d3f16e4e1b68fe84774950dd57dfc2022f" } ,{ "testCaseDescription": "go-go-and-defer-statements-teardown-test", "expectedResult": { "changes": { "go-and-defer-statements.go": [ { "span": { "delete": { "start": [ 1, 1 ], "end": [ 6, 1 ] } }, "summary": "Deleted the 'main' module" } ] }, "errors": {} }, "filePaths": [ "go-and-defer-statements.go" ], "patch": [ "diff --git a/go-and-defer-statements.go b/go-and-defer-statements.go", "index 7905807..e69de29 100644", "--- a/go-and-defer-statements.go", "+++ b/go-and-defer-statements.go", "@@ -1,5 +0,0 @@", "-package main", "-", "-func main() {", "-", "-}" ], "gitDir": "test/corpus/repos/go", "shas": "0f3528d3f16e4e1b68fe84774950dd57dfc2022f..a0b25b647b5bf5cd35beae5fdf542e57796009ec" }]