diff --git a/src/DiffSummary.hs b/src/DiffSummary.hs index ee857a9f4..0ec90ba8c 100644 --- a/src/DiffSummary.hs +++ b/src/DiffSummary.hs @@ -199,7 +199,7 @@ toTermName source term = case unwrap term of S.Indexed children -> fromMaybe "branch" $ (toCategoryName . category) . extract <$> head children Leaf leaf -> toS leaf S.Assignment identifier _ -> toTermName' identifier - S.Function identifier _ _ -> toTermName' identifier + S.Function identifier _ _ _ -> toTermName' identifier S.ParameterDecl _ _ -> termNameFromSource term S.FunctionCall i args -> case unwrap i of S.AnonymousFunction params _ -> diff --git a/src/Interpreter.hs b/src/Interpreter.hs index e6b3a80b3..cc14546f9 100644 --- a/src/Interpreter.hs +++ b/src/Interpreter.hs @@ -83,9 +83,10 @@ algorithmWithTerms construct t1 t2 = maybe (recursively t1 t2) (fmap annotate) $ <*> maybeRecursively tyA tyB <*> bySimilarity paramsA paramsB <*> bySimilarity expressionsA expressionsB - (S.Function idA paramsA bodyA, S.Function idB paramsB bodyB) -> Just $ + (S.Function idA paramsA tyA bodyA, S.Function idB paramsB tyB bodyB) -> Just $ S.Function <$> recursively idA idB <*> bySimilarity paramsA paramsB + <*> maybeRecursively tyA tyB <*> bySimilarity bodyA bodyB _ -> Nothing where diff --git a/src/Language/Go.hs b/src/Language/Go.hs index 25896a25f..a79c3d48c 100644 --- a/src/Language/Go.hs +++ b/src/Language/Go.hs @@ -29,7 +29,8 @@ termConstructor source sourceSpan category range children _ = pure $! case categ _ -> withRanges range Error children (S.Error children) Other "import_declaration" -> toImports children Function -> withDefaultInfo $ case children of - [id, params, block] -> S.Function id (toList $ unwrap params) (toList $ unwrap block) + [id, params, block] -> S.Function id (toList $ unwrap params) Nothing (toList $ unwrap block) + [id, params, ty, block] -> S.Function id (toList $ unwrap params) (Just ty) (toList $ unwrap block) rest -> S.Error rest For -> withDefaultInfo $ case children of diff --git a/src/Language/JavaScript.hs b/src/Language/JavaScript.hs index 588435129..7db8d6d25 100644 --- a/src/Language/JavaScript.hs +++ b/src/Language/JavaScript.hs @@ -98,7 +98,7 @@ termConstructor source sourceSpan category range children allChildren (Function, _) -> case children of [ body ] -> S.AnonymousFunction [] [body] [ params, body ] -> S.AnonymousFunction (toList (unwrap params)) [body] - [ id, params, body ] -> S.Function id (toList (unwrap params)) [body] + [ id, params, body ] -> S.Function id (toList (unwrap params)) Nothing [body] _ -> S.Error children (_, []) -> S.Leaf . toText $ slice range source _ -> S.Indexed children diff --git a/src/Renderer/JSON.hs b/src/Renderer/JSON.hs index e561602aa..f4ad2d664 100644 --- a/src/Renderer/JSON.hs +++ b/src/Renderer/JSON.hs @@ -104,7 +104,7 @@ syntaxToTermField syntax = case syntax of S.FunctionCall identifier parameters -> [ "identifier" .= identifier ] <> [ "parameters" .= parameters ] S.Ternary expression cases -> [ "expression" .= expression ] <> [ "cases" .= cases ] S.AnonymousFunction parameters c -> [ "parameters" .= parameters ] <> childrenFields c - S.Function identifier parameters c -> [ "identifier" .= identifier ] <> [ "parameters" .= parameters ] <> childrenFields c + S.Function identifier parameters ty c -> [ "identifier" .= identifier ] <> [ "parameters" .= parameters ] <> [ "type" .= ty ] <> childrenFields c S.Assignment assignmentId value -> [ "identifier" .= assignmentId ] <> [ "value" .= value ] S.OperatorAssignment identifier value -> [ "identifier" .= identifier ] <> [ "value" .= value ] S.MemberAccess identifier value -> [ "identifier" .= identifier ] <> [ "value" .= value ] diff --git a/src/Syntax.hs b/src/Syntax.hs index 050a42ac9..3418bd65d 100644 --- a/src/Syntax.hs +++ b/src/Syntax.hs @@ -25,7 +25,7 @@ data Syntax a f -- | An anonymous function has a list of expressions and params. | AnonymousFunction { params :: [f], expressions :: [f] } -- | A function has a list of expressions. - | Function { id :: f, params :: [f], expressions :: [f] } + | Function { id :: f, params :: [f], ty :: (Maybe f), expressions :: [f] } -- | An assignment has an identifier where f can be a member access, and the value is another syntax element (function call, leaf, etc.) | Assignment { assignmentId :: f, value :: f } -- | An operator assignment represents expressions with operators like math (e.g x += 1) or conditional (e.g. x ||= 1) assignment. @@ -117,7 +117,7 @@ instance Listable2 Syntax where \/ liftCons2 recur (liftTiers recur) FunctionCall \/ liftCons2 recur (liftTiers recur) Ternary \/ liftCons2 (liftTiers recur) (liftTiers recur) AnonymousFunction - \/ liftCons3 recur (liftTiers recur) (liftTiers recur) Function + \/ liftCons4 recur (liftTiers recur) (liftTiers recur) (liftTiers recur) Function \/ liftCons2 recur recur Assignment \/ liftCons2 recur recur OperatorAssignment \/ liftCons2 recur recur MemberAccess diff --git a/test/corpus/diff-summaries/go/array-types.json b/test/corpus/diff-summaries/go/array-types.json index 859959de8..c24c8ca46 100644 --- a/test/corpus/diff-summaries/go/array-types.json +++ b/test/corpus/diff-summaries/go/array-types.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "95b89b9b110156a8ff35bda066874de1c055bb2c..ae58e611b00e778cdc8a242378790d935889bbc0" + "shas": "2a8d9f01f7c78b4014cc0cf0057b991673c39dd0..2c7a579aacd6880fb8754faf1c5344053d1c2d0f" } ,{ "testCaseDescription": "go-array-types-insert-test", @@ -81,7 +81,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "ae58e611b00e778cdc8a242378790d935889bbc0..c813e84861bc89f360c0fa64743061968ba5686c" + "shas": "2c7a579aacd6880fb8754faf1c5344053d1c2d0f..ec664b52de32519f5ab8e36f4574394f41e4b355" } ,{ "testCaseDescription": "go-array-types-replacement-test", @@ -190,7 +190,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "c813e84861bc89f360c0fa64743061968ba5686c..c2f4e78ca2195544a4e0c0d572c9aa9b13828975" + "shas": "ec664b52de32519f5ab8e36f4574394f41e4b355..faa453789421465ab0581edc344b9b587d4a6085" } ,{ "testCaseDescription": "go-array-types-delete-replacement-test", @@ -299,7 +299,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "c2f4e78ca2195544a4e0c0d572c9aa9b13828975..133740a949b9891053624b8a9d519e2244e6d2ac" + "shas": "faa453789421465ab0581edc344b9b587d4a6085..28c283b6b69d706d24fa6797e8132b3dc19f77fb" } ,{ "testCaseDescription": "go-array-types-delete-insert-test", @@ -342,7 +342,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "133740a949b9891053624b8a9d519e2244e6d2ac..cc78ad7555ca4ccf1239b7be96f8219bd37aed0f" + "shas": "28c283b6b69d706d24fa6797e8132b3dc19f77fb..b48fc843a07daf06dcd9a8eebb418c6e6c5a3eb0" } ,{ "testCaseDescription": "go-array-types-teardown-test", @@ -384,5 +384,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "cc78ad7555ca4ccf1239b7be96f8219bd37aed0f..311f299ee4b5dcd8c757aaf89a1230d369bda6e3" + "shas": "b48fc843a07daf06dcd9a8eebb418c6e6c5a3eb0..50b59edcf73e7686cbfc6db242bf00346aebcf11" }] diff --git a/test/corpus/diff-summaries/go/array-with-implicit-length.json b/test/corpus/diff-summaries/go/array-with-implicit-length.json index 6c1ad7d50..e139962dc 100644 --- a/test/corpus/diff-summaries/go/array-with-implicit-length.json +++ b/test/corpus/diff-summaries/go/array-with-implicit-length.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "99d38d0dd43a990f37c709b49fa2eae7137a4acc..211a36fc067131cefd434c813f3d075171d40847" + "shas": "ce81a7d517fc9a2808b223f5e2ec2b77fd6fad64..500b648128cc717a6a3abe3c3aa11fc82556659e" } ,{ "testCaseDescription": "go-array-with-implicit-length-insert-test", @@ -81,7 +81,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "211a36fc067131cefd434c813f3d075171d40847..00142c98da414f4b9b004938c766a865ef9ca9cc" + "shas": "500b648128cc717a6a3abe3c3aa11fc82556659e..bc51671fc62602f0d5a1e399a8cd0cdd272507dd" } ,{ "testCaseDescription": "go-array-with-implicit-length-replacement-test", @@ -196,7 +196,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "00142c98da414f4b9b004938c766a865ef9ca9cc..3118925a075454560fa69ce5ebfacc1ab4a1fc22" + "shas": "bc51671fc62602f0d5a1e399a8cd0cdd272507dd..6a2f0882912e58d2f3e34875a6bb44804d586279" } ,{ "testCaseDescription": "go-array-with-implicit-length-delete-replacement-test", @@ -314,7 +314,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "3118925a075454560fa69ce5ebfacc1ab4a1fc22..ede962753105dbc124a103ff601756358a811053" + "shas": "6a2f0882912e58d2f3e34875a6bb44804d586279..b8316cf1b4504b16bf1ede60ccd875adbc2f737b" } ,{ "testCaseDescription": "go-array-with-implicit-length-delete-insert-test", @@ -357,7 +357,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "ede962753105dbc124a103ff601756358a811053..12750762f7c4a8ec1281438c128961c29ff33b44" + "shas": "b8316cf1b4504b16bf1ede60ccd875adbc2f737b..555892195608bc7b16f133fe3389a59785aa83bf" } ,{ "testCaseDescription": "go-array-with-implicit-length-teardown-test", @@ -399,5 +399,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "12750762f7c4a8ec1281438c128961c29ff33b44..64841687a4cbcda7d1eda64e527648f5cef1bf73" + "shas": "555892195608bc7b16f133fe3389a59785aa83bf..6e579109cc2a3c535790233b54306a5473f1a55d" }] diff --git a/test/corpus/diff-summaries/go/assignment-statements.json b/test/corpus/diff-summaries/go/assignment-statements.json index 1582d8421..1260eef3e 100644 --- a/test/corpus/diff-summaries/go/assignment-statements.json +++ b/test/corpus/diff-summaries/go/assignment-statements.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "d1b8d8617e07c628530185580966f2422d6ac7c7..e414eec18264d8961bb33da56e0257e2f395b8e0" + "shas": "091bc58290f6343880a29ef209a9d87aa7a3fcc0..545e6cd93c1d697e514d1fdad37a57f0d937a526" } ,{ "testCaseDescription": "go-assignment-statements-insert-test", @@ -144,7 +144,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "e414eec18264d8961bb33da56e0257e2f395b8e0..015f9e0df9afc9f66f2920fae048007f24e07ddf" + "shas": "545e6cd93c1d697e514d1fdad37a57f0d937a526..e0bbb0f31468f4684ee8e2777fc8993596caa1f0" } ,{ "testCaseDescription": "go-assignment-statements-replacement-test", @@ -292,7 +292,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "015f9e0df9afc9f66f2920fae048007f24e07ddf..d665ccee0f9f1e68527999700d02641d2dc0e3c0" + "shas": "e0bbb0f31468f4684ee8e2777fc8993596caa1f0..284fe9eeee9487470f4e11d93047de38ef682b7e" } ,{ "testCaseDescription": "go-assignment-statements-delete-replacement-test", @@ -464,7 +464,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "d665ccee0f9f1e68527999700d02641d2dc0e3c0..1d22eacf6e4af6688c82356959d4256233d59e8b" + "shas": "284fe9eeee9487470f4e11d93047de38ef682b7e..6ab478bb986f0227f287e5128a038117685d82f0" } ,{ "testCaseDescription": "go-assignment-statements-delete-insert-test", @@ -570,7 +570,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "1d22eacf6e4af6688c82356959d4256233d59e8b..f38f74af737d165d5c24b72046295dab7ca7fe1e" + "shas": "6ab478bb986f0227f287e5128a038117685d82f0..6963690336efde9f4763222a83afe4ce714bf5e7" } ,{ "testCaseDescription": "go-assignment-statements-teardown-test", @@ -612,5 +612,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "f38f74af737d165d5c24b72046295dab7ca7fe1e..67b21ca4a0eade527376ad1395eb7fd5fc5bea97" + "shas": "6963690336efde9f4763222a83afe4ce714bf5e7..2d4500613c50791e41a932edd1885da8e9830f8e" }] diff --git a/test/corpus/diff-summaries/go/call-expressions.json b/test/corpus/diff-summaries/go/call-expressions.json index 3f274ebd1..527b44177 100644 --- a/test/corpus/diff-summaries/go/call-expressions.json +++ b/test/corpus/diff-summaries/go/call-expressions.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "20ca91d3f69487f7d530b334333fdfe2a3743e03..f28c3d5ee5b66191bb89061bd551b60a74ac7c7c" + "shas": "47074688bbb73b3e4bf4fe48f221e411e5a9dcae..0bed7aaac9a7223bee7e747c7e956609d61b142f" } ,{ "testCaseDescription": "go-call-expressions-insert-test", @@ -113,7 +113,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "f28c3d5ee5b66191bb89061bd551b60a74ac7c7c..4bf42888f808e158884d8ba275440c1044ac7d9c" + "shas": "0bed7aaac9a7223bee7e747c7e956609d61b142f..aba38b132e19f43e2dbbe7c9f084f7e89348a63f" } ,{ "testCaseDescription": "go-call-expressions-replacement-test", @@ -235,7 +235,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "4bf42888f808e158884d8ba275440c1044ac7d9c..65d3fd0c110b229fa26172815f243a53541e4f0b" + "shas": "aba38b132e19f43e2dbbe7c9f084f7e89348a63f..a75e3fa8a8d7ff7860d1e63172a25e15146f8970" } ,{ "testCaseDescription": "go-call-expressions-delete-replacement-test", @@ -357,7 +357,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "65d3fd0c110b229fa26172815f243a53541e4f0b..6bf993afa56c99144a874460c89325303fc54b21" + "shas": "a75e3fa8a8d7ff7860d1e63172a25e15146f8970..a954830b0bda0e385a0a8eb61e6e4a123d2dfb66" } ,{ "testCaseDescription": "go-call-expressions-delete-insert-test", @@ -432,7 +432,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "6bf993afa56c99144a874460c89325303fc54b21..88b0afbe7ddf59f5ced55be27ce159f7899afd6b" + "shas": "a954830b0bda0e385a0a8eb61e6e4a123d2dfb66..d5de8ed9734efb140a7bb970951f13a1ca345dad" } ,{ "testCaseDescription": "go-call-expressions-teardown-test", @@ -474,5 +474,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "88b0afbe7ddf59f5ced55be27ce159f7899afd6b..ef42f9e80388d7180896d3d04b0140b1760b8cde" + "shas": "d5de8ed9734efb140a7bb970951f13a1ca345dad..a5f99e0c9f8b9b96e1f64f8b5fd79ed8c9490ebd" }] diff --git a/test/corpus/diff-summaries/go/case-statements.json b/test/corpus/diff-summaries/go/case-statements.json index 61f15df71..c7deb909e 100644 --- a/test/corpus/diff-summaries/go/case-statements.json +++ b/test/corpus/diff-summaries/go/case-statements.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "ef1ac04aeb5238b9f803a01487634a5dbb904dd2..e1760700810736700d364d42190327f8c9096457" + "shas": "d294ce5018da872a8921d3401c507217daf06328..c54949d55a43937b2ac33296ac3b5cecb50d6382" } ,{ "testCaseDescription": "go-case-statements-insert-test", @@ -81,7 +81,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "e1760700810736700d364d42190327f8c9096457..9b44a85844e0ef23b3b09c30db1cec12d678af5d" + "shas": "c54949d55a43937b2ac33296ac3b5cecb50d6382..c215ea9b6a3b10e2eaa8ae424350795e9f093004" } ,{ "testCaseDescription": "go-case-statements-replacement-test", @@ -124,7 +124,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "9b44a85844e0ef23b3b09c30db1cec12d678af5d..31744aa062708c7173fda2a34a2540e25abd163c" + "shas": "c215ea9b6a3b10e2eaa8ae424350795e9f093004..7d12abcf1f4702639d6e7363776cfdf6598491b7" } ,{ "testCaseDescription": "go-case-statements-delete-replacement-test", @@ -167,7 +167,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "31744aa062708c7173fda2a34a2540e25abd163c..71f2924e4064fa5e3ca8ac785dc500921da48ad9" + "shas": "7d12abcf1f4702639d6e7363776cfdf6598491b7..e7a7b4af3503fe63d5a954f7b5576a09d2185778" } ,{ "testCaseDescription": "go-case-statements-delete-insert-test", @@ -210,7 +210,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "71f2924e4064fa5e3ca8ac785dc500921da48ad9..108e96251525765a292026d6bf8c51025a38edce" + "shas": "e7a7b4af3503fe63d5a954f7b5576a09d2185778..4fc08573a3964379df9d9213e239adc5b9048eb5" } ,{ "testCaseDescription": "go-case-statements-teardown-test", @@ -252,5 +252,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "108e96251525765a292026d6bf8c51025a38edce..5deef7045822271505960ed4cec253dedf122c38" + "shas": "4fc08573a3964379df9d9213e239adc5b9048eb5..965eb67a3019ef8aea91e5f5a3975bd6c27ddbd5" }] diff --git a/test/corpus/diff-summaries/go/channel-types.json b/test/corpus/diff-summaries/go/channel-types.json index 29f1618ab..2e8a7fa98 100644 --- a/test/corpus/diff-summaries/go/channel-types.json +++ b/test/corpus/diff-summaries/go/channel-types.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "0ba70ac16df68cc3eb0b6318c3b784d701f4b216..7fe54090245afabf60eb382f4d8bc77c74f42fd4" + "shas": "ffe628ad363e676d5234caa95a87cf6b7f3626f8..ee8ae407698b4ba69acdd85afb82dcfe2afc2392" } ,{ "testCaseDescription": "go-channel-types-insert-test", @@ -115,7 +115,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "7fe54090245afabf60eb382f4d8bc77c74f42fd4..f6cd7d55c597210ce2a1acabe04cfd69c89ced1c" + "shas": "ee8ae407698b4ba69acdd85afb82dcfe2afc2392..9c27dde8873170108674ea419a12befe26e5f35a" } ,{ "testCaseDescription": "go-channel-types-replacement-test", @@ -262,7 +262,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "f6cd7d55c597210ce2a1acabe04cfd69c89ced1c..9b13e8ebe672fa8877fc1aee5ad42213d7543071" + "shas": "9c27dde8873170108674ea419a12befe26e5f35a..6f3368fcd07690cdf7f7d4d61f8eaa947c9e3f15" } ,{ "testCaseDescription": "go-channel-types-delete-replacement-test", @@ -379,7 +379,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "9b13e8ebe672fa8877fc1aee5ad42213d7543071..27c6d31f84167070386d9afcacf0f4cf4fa0c94a" + "shas": "6f3368fcd07690cdf7f7d4d61f8eaa947c9e3f15..fd1261f44224fa51c15b3a11b47a0cd38e79a9b7" } ,{ "testCaseDescription": "go-channel-types-delete-insert-test", @@ -456,7 +456,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "27c6d31f84167070386d9afcacf0f4cf4fa0c94a..1c77393f0b11aa6f61d05d68e5b06e9bdcc8ba10" + "shas": "fd1261f44224fa51c15b3a11b47a0cd38e79a9b7..492604fdcd016b630b1c780e3593d58aeb587a5b" } ,{ "testCaseDescription": "go-channel-types-teardown-test", @@ -498,5 +498,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "1c77393f0b11aa6f61d05d68e5b06e9bdcc8ba10..d16d600ec49ecf889ed54e257ff4891e281a3dab" + "shas": "492604fdcd016b630b1c780e3593d58aeb587a5b..cc8aac0f8db0de4e459571ae4c68771e7c442c63" }] diff --git a/test/corpus/diff-summaries/go/comment.json b/test/corpus/diff-summaries/go/comment.json index 43b5d0b31..ca78968c1 100644 --- a/test/corpus/diff-summaries/go/comment.json +++ b/test/corpus/diff-summaries/go/comment.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "2ff7aeec9c5efbeaf3a7b681f718640926ca1f90..74e82f0e6d4689ed73a303f79e35a56f42fd47d2" + "shas": "d6bf5b852da48acbbdc8d627de9e645d28d7f38d..72de8c7f39e9b0669a38c1babcdffcff64e96ea5" } ,{ "testCaseDescription": "go-comment-insert-test", @@ -81,7 +81,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "74e82f0e6d4689ed73a303f79e35a56f42fd47d2..0d4ddf5fe3e61320b81f8c2392116951ac63bc19" + "shas": "72de8c7f39e9b0669a38c1babcdffcff64e96ea5..52ce6212c93764a59bdb61da67e20b54d3f288c6" } ,{ "testCaseDescription": "go-comment-replacement-test", @@ -138,7 +138,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "0d4ddf5fe3e61320b81f8c2392116951ac63bc19..910896385d213cb7c06e2ead55a4b9abba069a36" + "shas": "52ce6212c93764a59bdb61da67e20b54d3f288c6..0224d1c4ae63ed9bc69a5b9da5a691cae9c3b34a" } ,{ "testCaseDescription": "go-comment-delete-replacement-test", @@ -195,7 +195,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "910896385d213cb7c06e2ead55a4b9abba069a36..f129ff19da478611e72dc4a472f1fe440e32d7a8" + "shas": "0224d1c4ae63ed9bc69a5b9da5a691cae9c3b34a..2dd7c846c7d7ee0360f5421181a1c014158ae61e" } ,{ "testCaseDescription": "go-comment-delete-insert-test", @@ -238,7 +238,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "f129ff19da478611e72dc4a472f1fe440e32d7a8..9db6c10b7cd6aeeda4a153ac070d38768258f376" + "shas": "2dd7c846c7d7ee0360f5421181a1c014158ae61e..3e6d5559211855ffca53000e0b49d8c5d1e68bde" } ,{ "testCaseDescription": "go-comment-teardown-test", @@ -280,5 +280,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "9db6c10b7cd6aeeda4a153ac070d38768258f376..96429faca853f0301df4b0d4d43ce26e3011129c" + "shas": "3e6d5559211855ffca53000e0b49d8c5d1e68bde..ab3e3926dc779249680c1d053599892d614e1cbf" }] diff --git a/test/corpus/diff-summaries/go/const-declarations-with-types.json b/test/corpus/diff-summaries/go/const-declarations-with-types.json index 5681e3be4..c02a7e8f6 100644 --- a/test/corpus/diff-summaries/go/const-declarations-with-types.json +++ b/test/corpus/diff-summaries/go/const-declarations-with-types.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "644992bcb04ee1c62efa585521dfe3bb1afbfe6e..0297a4066d1956454a339a227ecaa544f80c73bb" + "shas": "49e6e021a47203dec0d5eef92e0afd35f24628a1..d888fa9002a01cd57957e18377a0498dd5f67341" } ,{ "testCaseDescription": "go-const-declarations-with-types-insert-test", @@ -81,7 +81,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "0297a4066d1956454a339a227ecaa544f80c73bb..3f0ce32c60d690ee561e359b990714387959f548" + "shas": "d888fa9002a01cd57957e18377a0498dd5f67341..04775f661102a38b009cb92e1ac97e69c3b8a279" } ,{ "testCaseDescription": "go-const-declarations-with-types-replacement-test", @@ -178,7 +178,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "3f0ce32c60d690ee561e359b990714387959f548..d6726b3d4b9d3f399970027b9c1f44336005fe5f" + "shas": "04775f661102a38b009cb92e1ac97e69c3b8a279..8837603403d627dfaafe8982de7f1b4783ce3fe5" } ,{ "testCaseDescription": "go-const-declarations-with-types-delete-replacement-test", @@ -275,7 +275,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "d6726b3d4b9d3f399970027b9c1f44336005fe5f..b4888b03cfd4e5faafd4fb28038de44168602f45" + "shas": "8837603403d627dfaafe8982de7f1b4783ce3fe5..687838a4cbf247779e1fa5a133b868839b4d6f8c" } ,{ "testCaseDescription": "go-const-declarations-with-types-delete-insert-test", @@ -318,7 +318,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "b4888b03cfd4e5faafd4fb28038de44168602f45..9fb1ea0a14644ad80945502ac972cfc78e083a72" + "shas": "687838a4cbf247779e1fa5a133b868839b4d6f8c..67348ad5cb4f13aa0f0d2b14b092f9747b950b0f" } ,{ "testCaseDescription": "go-const-declarations-with-types-teardown-test", @@ -360,5 +360,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "9fb1ea0a14644ad80945502ac972cfc78e083a72..0d1fc5e6274224d81271e5fc10b3dcd839d2c59e" + "shas": "67348ad5cb4f13aa0f0d2b14b092f9747b950b0f..d7c7c21bb12a3b1d9bc3d7ac212a3bdada677d71" }] diff --git a/test/corpus/diff-summaries/go/const-declarations-without-types.json b/test/corpus/diff-summaries/go/const-declarations-without-types.json index 5fead9196..3bcd2f60b 100644 --- a/test/corpus/diff-summaries/go/const-declarations-without-types.json +++ b/test/corpus/diff-summaries/go/const-declarations-without-types.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "87617fd8faafd24f6979854f3e3b13694e836665..0ceb7e8e61fc3d084f24c489a88b9dbb6d1d90fa" + "shas": "802da3fcac3bb5bd8d87025c78e2dd27694ea5c4..ec2a7031fea2ff0233a9e1c9fe24a97d924abfea" } ,{ "testCaseDescription": "go-const-declarations-without-types-insert-test", @@ -81,7 +81,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "0ceb7e8e61fc3d084f24c489a88b9dbb6d1d90fa..45ad9f7abd0719ce42c5cdccf4628274d2b5d5f7" + "shas": "ec2a7031fea2ff0233a9e1c9fe24a97d924abfea..4214dd04363c5d7668acb7f4468a4cdb8da3a931" } ,{ "testCaseDescription": "go-const-declarations-without-types-replacement-test", @@ -178,7 +178,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "45ad9f7abd0719ce42c5cdccf4628274d2b5d5f7..1bafc1b266246fd616154a54053daa3ea7b06642" + "shas": "4214dd04363c5d7668acb7f4468a4cdb8da3a931..4ea74b4fbd9a5a19f10019dcd75e772aad148469" } ,{ "testCaseDescription": "go-const-declarations-without-types-delete-replacement-test", @@ -275,7 +275,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "1bafc1b266246fd616154a54053daa3ea7b06642..656d4d3a01b343421bdd2347bf9c81a4eafe2975" + "shas": "4ea74b4fbd9a5a19f10019dcd75e772aad148469..ad9ba646f6304dddedc688f25eb07527ada8874a" } ,{ "testCaseDescription": "go-const-declarations-without-types-delete-insert-test", @@ -318,7 +318,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "656d4d3a01b343421bdd2347bf9c81a4eafe2975..a4ea9bfdc4648c4ab77b9378a7afae80e33c8085" + "shas": "ad9ba646f6304dddedc688f25eb07527ada8874a..cc7080fad53918620542bcf3106f75416db8009c" } ,{ "testCaseDescription": "go-const-declarations-without-types-teardown-test", @@ -360,5 +360,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "a4ea9bfdc4648c4ab77b9378a7afae80e33c8085..644992bcb04ee1c62efa585521dfe3bb1afbfe6e" + "shas": "cc7080fad53918620542bcf3106f75416db8009c..49e6e021a47203dec0d5eef92e0afd35f24628a1" }] diff --git a/test/corpus/diff-summaries/go/const-with-implicit-values.json b/test/corpus/diff-summaries/go/const-with-implicit-values.json index 5afde3430..31b18f41b 100644 --- a/test/corpus/diff-summaries/go/const-with-implicit-values.json +++ b/test/corpus/diff-summaries/go/const-with-implicit-values.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "358b31625272f975d35624a18f8337974c7a142d..e107a76ae19047adbef4f2592b27bbaa0763e858" + "shas": "cbaa77e08635ce41d412574590df4152cae3e4bc..e0c8f19fd1c161ea882f3f342c32cffec193ec12" } ,{ "testCaseDescription": "go-const-with-implicit-values-insert-test", @@ -115,7 +115,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "e107a76ae19047adbef4f2592b27bbaa0763e858..5927bf13ce0779493a7306cdab8a1e613616de7a" + "shas": "e0c8f19fd1c161ea882f3f342c32cffec193ec12..cdd8a3bc77b30595aa011aa0c1b0de5421c7ad7f" } ,{ "testCaseDescription": "go-const-with-implicit-values-replacement-test", @@ -229,7 +229,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "5927bf13ce0779493a7306cdab8a1e613616de7a..181005c8bc218381c82e9554c9b7802f493a2781" + "shas": "cdd8a3bc77b30595aa011aa0c1b0de5421c7ad7f..6f35b88ea479e8069a61e7cb6615e8932d6898de" } ,{ "testCaseDescription": "go-const-with-implicit-values-delete-replacement-test", @@ -343,7 +343,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "181005c8bc218381c82e9554c9b7802f493a2781..991bc37844c90993f716c7496c5778ec3ef7f612" + "shas": "6f35b88ea479e8069a61e7cb6615e8932d6898de..8956f659859ecfc3c8399d8d7b60825aeee2aebf" } ,{ "testCaseDescription": "go-const-with-implicit-values-delete-insert-test", @@ -420,7 +420,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "991bc37844c90993f716c7496c5778ec3ef7f612..2cc4ccb68ae849d4332a1e8c89a17225522db446" + "shas": "8956f659859ecfc3c8399d8d7b60825aeee2aebf..55a0deb4c32a514960cfc33bae65b4c42e5c3a11" } ,{ "testCaseDescription": "go-const-with-implicit-values-teardown-test", @@ -462,5 +462,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "2cc4ccb68ae849d4332a1e8c89a17225522db446..d857a5e809451235a1566b3bd2e315a9cdf9213f" + "shas": "55a0deb4c32a514960cfc33bae65b4c42e5c3a11..e18c5b5c1ca8b1a73b3c2e745671fc99a77f14af" }] diff --git a/test/corpus/diff-summaries/go/constructors.json b/test/corpus/diff-summaries/go/constructors.json index acc6cf34f..7ca12c941 100644 --- a/test/corpus/diff-summaries/go/constructors.json +++ b/test/corpus/diff-summaries/go/constructors.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "d857a5e809451235a1566b3bd2e315a9cdf9213f..7f3ea3338ef4b4efa3eb722676645b35bf7e2219" + "shas": "e18c5b5c1ca8b1a73b3c2e745671fc99a77f14af..25fba0aed3ea4c1773ec3549eaff40d913c079d1" } ,{ "testCaseDescription": "go-constructors-insert-test", @@ -129,7 +129,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "7f3ea3338ef4b4efa3eb722676645b35bf7e2219..71ab81613288be4a1bc41470a41213c54fc32d9c" + "shas": "25fba0aed3ea4c1773ec3549eaff40d913c079d1..e63a03ba5fd522be40676c7ab9df3fa580a42ce1" } ,{ "testCaseDescription": "go-constructors-replacement-test", @@ -352,7 +352,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "71ab81613288be4a1bc41470a41213c54fc32d9c..ab855120e03c61d6936aa3e7d542b3da4bf08754" + "shas": "e63a03ba5fd522be40676c7ab9df3fa580a42ce1..663d1012955d9772510ea5a37c0e4875dca5ae3b" } ,{ "testCaseDescription": "go-constructors-delete-replacement-test", @@ -575,7 +575,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "ab855120e03c61d6936aa3e7d542b3da4bf08754..35d4317a645faac48756c0097ecb2ddee8eb6f6c" + "shas": "663d1012955d9772510ea5a37c0e4875dca5ae3b..a87fbe18288708a89f31aea5f2dfbe4469bd6440" } ,{ "testCaseDescription": "go-constructors-delete-insert-test", @@ -666,7 +666,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "35d4317a645faac48756c0097ecb2ddee8eb6f6c..c4979ddf83c2bf3ef239a79940067fe2af652820" + "shas": "a87fbe18288708a89f31aea5f2dfbe4469bd6440..234571e05897ca34177bb1df91bb9beee6be2258" } ,{ "testCaseDescription": "go-constructors-teardown-test", @@ -708,5 +708,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "c4979ddf83c2bf3ef239a79940067fe2af652820..2e1fbc3488b3a5250246698b500360fa5c6cfcf2" + "shas": "234571e05897ca34177bb1df91bb9beee6be2258..92abc0a7c86e4fde9374babdb2efcd398d27f6ac" }] diff --git a/test/corpus/diff-summaries/go/float-literals.json b/test/corpus/diff-summaries/go/float-literals.json index 72015b9de..ddf1a3d99 100644 --- a/test/corpus/diff-summaries/go/float-literals.json +++ b/test/corpus/diff-summaries/go/float-literals.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "2f519cce92d26f6a9c43d21d062dc065afef2bbb..b6beb80d930a2bc6ae6c0d5df76200c507250209" + "shas": "bd47547e797a6e76a34e259077fc32181d6667f5..f5e354dad5a3fbf87368c8d94c2a5f3afe01144b" } ,{ "testCaseDescription": "go-float-literals-insert-test", @@ -145,7 +145,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "b6beb80d930a2bc6ae6c0d5df76200c507250209..fea5991ebfc78f18039f803e422e7d6dce4f9201" + "shas": "f5e354dad5a3fbf87368c8d94c2a5f3afe01144b..6bffa6e449c92bd384ef85d90fd502ae13553a94" } ,{ "testCaseDescription": "go-float-literals-replacement-test", @@ -316,7 +316,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "fea5991ebfc78f18039f803e422e7d6dce4f9201..3b4830ed00129bac691be2171faa828b86110889" + "shas": "6bffa6e449c92bd384ef85d90fd502ae13553a94..be9a2fd6304558d0123d42b545eb6de27b3d7e58" } ,{ "testCaseDescription": "go-float-literals-delete-replacement-test", @@ -487,7 +487,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "3b4830ed00129bac691be2171faa828b86110889..64c465ac26aef821ef49295f5582cc212f1f1eea" + "shas": "be9a2fd6304558d0123d42b545eb6de27b3d7e58..eba46660d9fd1d6bcb4320bbcabd63ef2f97de45" } ,{ "testCaseDescription": "go-float-literals-delete-insert-test", @@ -594,7 +594,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "64c465ac26aef821ef49295f5582cc212f1f1eea..6b76359426eb9a1c5af1ae948688f187f919c9b0" + "shas": "eba46660d9fd1d6bcb4320bbcabd63ef2f97de45..bcccf71a9ce250474dd60b0f6d2b6361c4e83b03" } ,{ "testCaseDescription": "go-float-literals-teardown-test", @@ -636,5 +636,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "6b76359426eb9a1c5af1ae948688f187f919c9b0..0b52228e533b01beb1e33054e72003307726533c" + "shas": "bcccf71a9ce250474dd60b0f6d2b6361c4e83b03..39b5a7d4eaa477c3d1636e32ab2c5cf5c930372a" }] diff --git a/test/corpus/diff-summaries/go/for-statements.json b/test/corpus/diff-summaries/go/for-statements.json index 557570712..f0e43941a 100644 --- a/test/corpus/diff-summaries/go/for-statements.json +++ b/test/corpus/diff-summaries/go/for-statements.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "e8a0a2912cf6fee72c6e0cc0d96c5babf1cd4df1..9ae64fc2be083d6a80c7a2a870ebdb98edc623dd" + "shas": "a759987355f2393c92a9df39d4c9e56a2ea2ce19..96a05e960540a57f232ce834347a05b414d55d05" } ,{ "testCaseDescription": "go-for-statements-insert-test", @@ -160,7 +160,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "9ae64fc2be083d6a80c7a2a870ebdb98edc623dd..d2d67882694cf618b4b0236fc2d4c1429d5c76da" + "shas": "96a05e960540a57f232ce834347a05b414d55d05..51b3d18d617cd963d917fb4792134e63ceb460df" } ,{ "testCaseDescription": "go-for-statements-replacement-test", @@ -330,7 +330,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "d2d67882694cf618b4b0236fc2d4c1429d5c76da..3cd84da69fc85aa2b54fffcadd31b818a13593cf" + "shas": "51b3d18d617cd963d917fb4792134e63ceb460df..bc8c77df5715b792acde0ee8f5348762365c458e" } ,{ "testCaseDescription": "go-for-statements-delete-replacement-test", @@ -500,7 +500,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "3cd84da69fc85aa2b54fffcadd31b818a13593cf..fa8ef6297ac3ba4df986080f0beee427c3e5faaa" + "shas": "bc8c77df5715b792acde0ee8f5348762365c458e..8053ecd74ec3e0c07b9fea654f0b8fcce78a3d76" } ,{ "testCaseDescription": "go-for-statements-delete-insert-test", @@ -622,7 +622,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "fa8ef6297ac3ba4df986080f0beee427c3e5faaa..ccc25ba06c31afa638442976a2a83284dd02efa3" + "shas": "8053ecd74ec3e0c07b9fea654f0b8fcce78a3d76..109ecfd74440e6d35d565ab30dc4fa34a656edbd" } ,{ "testCaseDescription": "go-for-statements-teardown-test", @@ -664,5 +664,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "ccc25ba06c31afa638442976a2a83284dd02efa3..6cbe8d53838858e6ff83e2890cd6d51da63e06dd" + "shas": "109ecfd74440e6d35d565ab30dc4fa34a656edbd..090bcfe2072c5d36d06f9f588c308abeb046e46e" }] diff --git a/test/corpus/diff-summaries/go/function-declarations.json b/test/corpus/diff-summaries/go/function-declarations.json index d289514ee..c6d28e88e 100644 --- a/test/corpus/diff-summaries/go/function-declarations.json +++ b/test/corpus/diff-summaries/go/function-declarations.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "6cbe8d53838858e6ff83e2890cd6d51da63e06dd..c9165a22e802c84a4c84603433208209bf8ecd58" + "shas": "090bcfe2072c5d36d06f9f588c308abeb046e46e..4c821ecfcd1dffc01f8b59326d656fa810c27da1" } ,{ "testCaseDescription": "go-function-declarations-insert-test", @@ -96,7 +96,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "c9165a22e802c84a4c84603433208209bf8ecd58..14ddaf5c44b68da54ac1e6080f651683b00abd0d" + "shas": "4c821ecfcd1dffc01f8b59326d656fa810c27da1..bcd66229a828820e1dc6df15bdc2e17348f1adcb" } ,{ "testCaseDescription": "go-function-declarations-replacement-test", @@ -155,7 +155,7 @@ } ] }, - "summary": "Replaced the 'f2' identifier with the 'fb' identifier in the main module" + "summary": "Replaced the 'f2' identifier with the 'fb' identifier in the fb function of the 'main' module" }, { "span": { @@ -182,7 +182,7 @@ } ] }, - "summary": "Replaced the 'f2' identifier with the 'fc' identifier in the main module" + "summary": "Replaced the 'f2' identifier with the 'fc' identifier in the fc function of the 'main' module" }, { "span": { @@ -209,7 +209,7 @@ } ] }, - "summary": "Replaced the 'f2' identifier with the 'fd' identifier in the main module" + "summary": "Replaced the 'f2' identifier with the 'fd' identifier in the fd function of the 'main' module" } ] }, @@ -238,7 +238,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "14ddaf5c44b68da54ac1e6080f651683b00abd0d..da31b44611dfde41b3500e215d049e0ae08decd1" + "shas": "bcd66229a828820e1dc6df15bdc2e17348f1adcb..25682bee4a82b03d9d7f9ab96c28428ad50270dc" } ,{ "testCaseDescription": "go-function-declarations-delete-replacement-test", @@ -297,7 +297,7 @@ } ] }, - "summary": "Replaced the 'fb' identifier with the 'f2' identifier in the main module" + "summary": "Replaced the 'fb' identifier with the 'f2' identifier in the f2 function of the 'main' module" }, { "span": { @@ -324,7 +324,7 @@ } ] }, - "summary": "Replaced the 'fc' identifier with the 'f2' identifier in the main module" + "summary": "Replaced the 'fc' identifier with the 'f2' identifier in the f2 function of the 'main' module" }, { "span": { @@ -351,7 +351,7 @@ } ] }, - "summary": "Replaced the 'fd' identifier with the 'f2' identifier in the main module" + "summary": "Replaced the 'fd' identifier with the 'f2' identifier in the f2 function of the 'main' module" } ] }, @@ -380,7 +380,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "da31b44611dfde41b3500e215d049e0ae08decd1..cd07dffb2fde011ff7d80b7e9fe6319aadafcba7" + "shas": "25682bee4a82b03d9d7f9ab96c28428ad50270dc..fe1c5c29ff27e556e88630190814a22566eaf082" } ,{ "testCaseDescription": "go-function-declarations-delete-insert-test", @@ -438,7 +438,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "cd07dffb2fde011ff7d80b7e9fe6319aadafcba7..15310f0e4a692c1ebd2a48e7512e71ae63cbd02f" + "shas": "fe1c5c29ff27e556e88630190814a22566eaf082..e5826998ff4221f34b05da09b478a8136e3c4ff0" } ,{ "testCaseDescription": "go-function-declarations-teardown-test", @@ -480,5 +480,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "15310f0e4a692c1ebd2a48e7512e71ae63cbd02f..15dbaf1c2f3cba362af5abba2a6aa9d2f1a92990" + "shas": "e5826998ff4221f34b05da09b478a8136e3c4ff0..e5224329c24b2e2d564a10269e63b36c492d7bf5" }] diff --git a/test/corpus/diff-summaries/go/function-literals.json b/test/corpus/diff-summaries/go/function-literals.json index e455874e6..35ff4777c 100644 --- a/test/corpus/diff-summaries/go/function-literals.json +++ b/test/corpus/diff-summaries/go/function-literals.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "ef42f9e80388d7180896d3d04b0140b1760b8cde..1fb1e9f61f626d60fe3e512332836e31a56fc8b7" + "shas": "a5f99e0c9f8b9b96e1f64f8b5fd79ed8c9490ebd..3551d67225e67a496d576b38b507dddf941970af" } ,{ "testCaseDescription": "go-function-literals-insert-test", @@ -83,7 +83,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "1fb1e9f61f626d60fe3e512332836e31a56fc8b7..3ab7c922ad81c7b10bc94a5a9fd51735a79671f9" + "shas": "3551d67225e67a496d576b38b507dddf941970af..4a0681b812c1080f3b42dcdb472f7cdf6689ca3c" } ,{ "testCaseDescription": "go-function-literals-replacement-test", @@ -167,7 +167,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "3ab7c922ad81c7b10bc94a5a9fd51735a79671f9..2c577ddb1557a779eba3c8e71cc1d0fbcb2cba8d" + "shas": "4a0681b812c1080f3b42dcdb472f7cdf6689ca3c..b8b10ef9de564860494347b02f5e0fe36f915b14" } ,{ "testCaseDescription": "go-function-literals-delete-replacement-test", @@ -251,7 +251,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "2c577ddb1557a779eba3c8e71cc1d0fbcb2cba8d..7dcf732eb420094b92c6079a6a179d728d2df17c" + "shas": "b8b10ef9de564860494347b02f5e0fe36f915b14..3dfb64b1ce98af88f0435b8cfb6b46ba8a1caa08" } ,{ "testCaseDescription": "go-function-literals-delete-insert-test", @@ -296,7 +296,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "7dcf732eb420094b92c6079a6a179d728d2df17c..c2c89a674013bfa2b8679db2532dee1d1453becb" + "shas": "3dfb64b1ce98af88f0435b8cfb6b46ba8a1caa08..b48bee5be118ec48670688a78247ef8e8d46a97f" } ,{ "testCaseDescription": "go-function-literals-teardown-test", @@ -338,5 +338,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "c2c89a674013bfa2b8679db2532dee1d1453becb..87617fd8faafd24f6979854f3e3b13694e836665" + "shas": "b48bee5be118ec48670688a78247ef8e8d46a97f..802da3fcac3bb5bd8d87025c78e2dd27694ea5c4" }] diff --git a/test/corpus/diff-summaries/go/function-types.json b/test/corpus/diff-summaries/go/function-types.json index 687335b46..b1e9ff713 100644 --- a/test/corpus/diff-summaries/go/function-types.json +++ b/test/corpus/diff-summaries/go/function-types.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "d16d600ec49ecf889ed54e257ff4891e281a3dab..e174b9832330316dd904f215a57a895a427b7baa" + "shas": "cc8aac0f8db0de4e459571ae4c68771e7c442c63..d0826f8e4f35be91943404925263e1e1e9603357" } ,{ "testCaseDescription": "go-function-types-insert-test", @@ -99,7 +99,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "e174b9832330316dd904f215a57a895a427b7baa..d3bc3ecfa6fbe86d502f08349e94afba0bb7b3b0" + "shas": "d0826f8e4f35be91943404925263e1e1e9603357..40f24f05af6d2ed0d4b263cf4991347c84103a50" } ,{ "testCaseDescription": "go-function-types-replacement-test", @@ -313,7 +313,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "d3bc3ecfa6fbe86d502f08349e94afba0bb7b3b0..4ae6ba4c2226fc206e7bd0616d386ce563e5940f" + "shas": "40f24f05af6d2ed0d4b263cf4991347c84103a50..9b9fdaa9a541472468aecf2a623c190ed8aa71bc" } ,{ "testCaseDescription": "go-function-types-delete-replacement-test", @@ -527,7 +527,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "4ae6ba4c2226fc206e7bd0616d386ce563e5940f..b0ad7154c547ccfb91b146dfd87c5df80287b982" + "shas": "9b9fdaa9a541472468aecf2a623c190ed8aa71bc..10c85ec2a8794ad974c5931a228bdd533464b5e6" } ,{ "testCaseDescription": "go-function-types-delete-insert-test", @@ -588,7 +588,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "b0ad7154c547ccfb91b146dfd87c5df80287b982..ff109d3edbe7834f2da3f35579a99c1d06f81a03" + "shas": "10c85ec2a8794ad974c5931a228bdd533464b5e6..a42e34067a86f039ab807cab9b0f18af0e2af0f6" } ,{ "testCaseDescription": "go-function-types-teardown-test", @@ -630,5 +630,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "ff109d3edbe7834f2da3f35579a99c1d06f81a03..df3298de1cff4cc80875946fc6abeec7bf257f39" + "shas": "a42e34067a86f039ab807cab9b0f18af0e2af0f6..e8d08e2eedd6b2a25ec4649df0ad12534a6c3c09" }] diff --git a/test/corpus/diff-summaries/go/go-and-defer-statements.json b/test/corpus/diff-summaries/go/go-and-defer-statements.json index 340de5c60..cb2f80cd1 100644 --- a/test/corpus/diff-summaries/go/go-and-defer-statements.json +++ b/test/corpus/diff-summaries/go/go-and-defer-statements.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "c14d55dd062dc340dde5986bd08c8b6aa1173023..278def98e925c3f8c4c39e7b82e6d4e93d3f6f01" + "shas": "8ae829c0b1cf177164c31d8a3d6678bbc51d20c5..6a61b25a986a2736faaaa06dfb1f4abcf40739dc" } ,{ "testCaseDescription": "go-go-and-defer-statements-insert-test", @@ -97,7 +97,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "278def98e925c3f8c4c39e7b82e6d4e93d3f6f01..77af86d247af5374e02a3083387901e4f6055d85" + "shas": "6a61b25a986a2736faaaa06dfb1f4abcf40739dc..913fcfe4be1ad959ae12965780f22e6b6484358a" } ,{ "testCaseDescription": "go-go-and-defer-statements-replacement-test", @@ -235,7 +235,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "77af86d247af5374e02a3083387901e4f6055d85..3195df01c958961855d16db8dd512ca3db0b4cec" + "shas": "913fcfe4be1ad959ae12965780f22e6b6484358a..6d08af2b7f337f388175cd015e74670d2b2d0de2" } ,{ "testCaseDescription": "go-go-and-defer-statements-delete-replacement-test", @@ -373,7 +373,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "3195df01c958961855d16db8dd512ca3db0b4cec..66da4d913b11ceae987aa3dbbcce0da116e3ee12" + "shas": "6d08af2b7f337f388175cd015e74670d2b2d0de2..8f41e4a938613f3989caee22a4e442573e580e94" } ,{ "testCaseDescription": "go-go-and-defer-statements-delete-insert-test", @@ -432,7 +432,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "66da4d913b11ceae987aa3dbbcce0da116e3ee12..385153e6284f16b53e7195c7f3e4d8d0299ecc15" + "shas": "8f41e4a938613f3989caee22a4e442573e580e94..2364dc45f38f6de83d0ee043be6aa264c4d53406" } ,{ "testCaseDescription": "go-go-and-defer-statements-teardown-test", @@ -474,5 +474,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "385153e6284f16b53e7195c7f3e4d8d0299ecc15..f9136e3be46a93bc0e0b6dc467c7b9ced1b97894" + "shas": "2364dc45f38f6de83d0ee043be6aa264c4d53406..27df5c61699f3ed1d465e409ed4793a9a141e7bd" }] diff --git a/test/corpus/diff-summaries/go/grouped-import-declarations.json b/test/corpus/diff-summaries/go/grouped-import-declarations.json index 08fc6737e..d2bf6ccc9 100644 --- a/test/corpus/diff-summaries/go/grouped-import-declarations.json +++ b/test/corpus/diff-summaries/go/grouped-import-declarations.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "6bee120701f5e3c15b3f8a13d4ead70d225091d1..c5b7e7d94b3d71f376c335e1fef631814f11a748" + "shas": "2c47fd719e136db59fa2b3ccfab4572fe4c1be2c..c6819c24c299e2220e4f833a52987d0ab624030f" } ,{ "testCaseDescription": "go-grouped-import-declarations-insert-test", @@ -85,7 +85,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "c5b7e7d94b3d71f376c335e1fef631814f11a748..f7d189cc5f3c9f36ecf1a2e78f21b522b2d5f8fd" + "shas": "c6819c24c299e2220e4f833a52987d0ab624030f..19482fe3d5e6dddd8e28228c1af0952ceac64894" } ,{ "testCaseDescription": "go-grouped-import-declarations-replacement-test", @@ -199,7 +199,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "f7d189cc5f3c9f36ecf1a2e78f21b522b2d5f8fd..998dec80a305b10415e56b3ee3b87e5204450f83" + "shas": "19482fe3d5e6dddd8e28228c1af0952ceac64894..99e842e6e87b98e39d823e8d6c543d41ee49ed2c" } ,{ "testCaseDescription": "go-grouped-import-declarations-delete-replacement-test", @@ -313,7 +313,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "998dec80a305b10415e56b3ee3b87e5204450f83..de107f343c5ef74a0ffff791e8b1f0a277065bd1" + "shas": "99e842e6e87b98e39d823e8d6c543d41ee49ed2c..25c7452f65645a864deb0d14a037205de2740e2f" } ,{ "testCaseDescription": "go-grouped-import-declarations-delete-insert-test", @@ -360,7 +360,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "de107f343c5ef74a0ffff791e8b1f0a277065bd1..81ec082bb841b347028b400c179a10de3b443f10" + "shas": "25c7452f65645a864deb0d14a037205de2740e2f..baf2152faedc0a6facf152568c6b680c7e52fd86" } ,{ "testCaseDescription": "go-grouped-import-declarations-teardown-test", @@ -402,5 +402,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "81ec082bb841b347028b400c179a10de3b443f10..35a378ca062939544c7a2fbd82b9ed4962db60d0" + "shas": "baf2152faedc0a6facf152568c6b680c7e52fd86..038d3fd0f1c08ca004a0a2d0c61ecc27b0535e67" }] diff --git a/test/corpus/diff-summaries/go/grouped-var-declarations.json b/test/corpus/diff-summaries/go/grouped-var-declarations.json index 641aa5028..23f622453 100644 --- a/test/corpus/diff-summaries/go/grouped-var-declarations.json +++ b/test/corpus/diff-summaries/go/grouped-var-declarations.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "784a2032a8b3f1926b4874446b0dc9672ace15be..23198d8d7b54c07e1f3ebcb5cca172d62d75e934" + "shas": "e75c5ac355ded95806073c70e83be9e9b3634163..79a6631220e4e84f5dcce34f797e4144d06d4962" } ,{ "testCaseDescription": "go-grouped-var-declarations-insert-test", @@ -99,7 +99,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "23198d8d7b54c07e1f3ebcb5cca172d62d75e934..1fdf3278a33b044ce8f71f7c081767f244b6ac04" + "shas": "79a6631220e4e84f5dcce34f797e4144d06d4962..06f0d2493c8d5b70a8dee0ee3905f151ea506795" } ,{ "testCaseDescription": "go-grouped-var-declarations-replacement-test", @@ -184,7 +184,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "1fdf3278a33b044ce8f71f7c081767f244b6ac04..b4aed6bf12bb1f171ed58e6b082645e4cd0aeae9" + "shas": "06f0d2493c8d5b70a8dee0ee3905f151ea506795..f73a7fc0adae36e82e2aaeb5d696abea6b23a3fb" } ,{ "testCaseDescription": "go-grouped-var-declarations-delete-replacement-test", @@ -269,7 +269,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "b4aed6bf12bb1f171ed58e6b082645e4cd0aeae9..9a29fa861e06cb7e02d16e7ab8fcd66de3c2f825" + "shas": "f73a7fc0adae36e82e2aaeb5d696abea6b23a3fb..035552bf16bcde92ba554125718245d842b7d9d3" } ,{ "testCaseDescription": "go-grouped-var-declarations-delete-insert-test", @@ -330,7 +330,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "9a29fa861e06cb7e02d16e7ab8fcd66de3c2f825..ace9280be87d31336c3425f6e703c009840e7cfc" + "shas": "035552bf16bcde92ba554125718245d842b7d9d3..d30e22d42d938d8dc1099d7fb7f6e692aad85407" } ,{ "testCaseDescription": "go-grouped-var-declarations-teardown-test", @@ -372,5 +372,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "ace9280be87d31336c3425f6e703c009840e7cfc..f5fe5786c0b546d3a5a224d7b5875f31f57db459" + "shas": "d30e22d42d938d8dc1099d7fb7f6e692aad85407..6e1ebffb2ad214b1c4a7ab7a8efed9b6a25e8470" }] diff --git a/test/corpus/diff-summaries/go/if-statements.json b/test/corpus/diff-summaries/go/if-statements.json index 4ddf10787..66b1b24db 100644 --- a/test/corpus/diff-summaries/go/if-statements.json +++ b/test/corpus/diff-summaries/go/if-statements.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "67b21ca4a0eade527376ad1395eb7fd5fc5bea97..44348782059614a329e455e4c93a15380953b35d" + "shas": "2d4500613c50791e41a932edd1885da8e9830f8e..c98826eee37b8054f73558f3295f06a90ca954c1" } ,{ "testCaseDescription": "go-if-statements-insert-test", @@ -121,7 +121,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "44348782059614a329e455e4c93a15380953b35d..15dfc6156abddf36067e347cc9960195349a924a" + "shas": "c98826eee37b8054f73558f3295f06a90ca954c1..8d270696b97d37fa644ea92e22e8f8aaff35c2ff" } ,{ "testCaseDescription": "go-if-statements-replacement-test", @@ -240,7 +240,7 @@ " c()" ], "gitDir": "test/corpus/repos/go", - "shas": "15dfc6156abddf36067e347cc9960195349a924a..63f6cb996de5cab0b4c0b6c6d69d26ce44e595df" + "shas": "8d270696b97d37fa644ea92e22e8f8aaff35c2ff..88d296f03520e7b0c4358f9b31cb5c8098fb763b" } ,{ "testCaseDescription": "go-if-statements-delete-replacement-test", @@ -359,7 +359,7 @@ " c()" ], "gitDir": "test/corpus/repos/go", - "shas": "63f6cb996de5cab0b4c0b6c6d69d26ce44e595df..1a40ce7a1e45f7ef87ccf0a8a59eaeffaa51a1a5" + "shas": "88d296f03520e7b0c4358f9b31cb5c8098fb763b..37697f71afa721d3e1b6be5604618344b856808a" } ,{ "testCaseDescription": "go-if-statements-delete-insert-test", @@ -442,7 +442,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "1a40ce7a1e45f7ef87ccf0a8a59eaeffaa51a1a5..d4ef05cad7067ddfd19a4b4fc0576226d9adaa5d" + "shas": "37697f71afa721d3e1b6be5604618344b856808a..d216b0b498b90c21e79ccadfedd6c57e66289d1c" } ,{ "testCaseDescription": "go-if-statements-teardown-test", @@ -484,5 +484,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "d4ef05cad7067ddfd19a4b4fc0576226d9adaa5d..6ccea258bd2125cbbe34266069b39fc47fe5d4e3" + "shas": "d216b0b498b90c21e79ccadfedd6c57e66289d1c..b534a2624a6f74eebed7bd6da21bc7df27018a96" }] diff --git a/test/corpus/diff-summaries/go/imaginary-literals.json b/test/corpus/diff-summaries/go/imaginary-literals.json index 34a761394..65690ab25 100644 --- a/test/corpus/diff-summaries/go/imaginary-literals.json +++ b/test/corpus/diff-summaries/go/imaginary-literals.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "3a475c2e781c97178d1986bf754545dbb051440c..60f0ccdaef54bc0e05404d360648e0588d257a91" + "shas": "a43f5210e8e5da594371eacab324e27889547ce0..aad2c18c5e34b74bf3c0326af866aa1031297abf" } ,{ "testCaseDescription": "go-imaginary-literals-insert-test", @@ -99,7 +99,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "60f0ccdaef54bc0e05404d360648e0588d257a91..58218e7b9abee0cf80f6a9e0b2e2f2a98f94e492" + "shas": "aad2c18c5e34b74bf3c0326af866aa1031297abf..1e90859d681fb50b514a36f0a4d00fa96c1f0331" } ,{ "testCaseDescription": "go-imaginary-literals-replacement-test", @@ -184,7 +184,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "58218e7b9abee0cf80f6a9e0b2e2f2a98f94e492..704fd72c32fffccaecb8ff6ca11b809782f39ba0" + "shas": "1e90859d681fb50b514a36f0a4d00fa96c1f0331..71841ec35c87085fe43e09014faf9d861f63307a" } ,{ "testCaseDescription": "go-imaginary-literals-delete-replacement-test", @@ -269,7 +269,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "704fd72c32fffccaecb8ff6ca11b809782f39ba0..af8ba14e709eb94413834b2e03a1dd5508cff999" + "shas": "71841ec35c87085fe43e09014faf9d861f63307a..978db2c8b0ffe2143eb8a281234c6129fa285e9a" } ,{ "testCaseDescription": "go-imaginary-literals-delete-insert-test", @@ -330,7 +330,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "af8ba14e709eb94413834b2e03a1dd5508cff999..3d14efd12e0c51ea5f90f6237364665c745de057" + "shas": "978db2c8b0ffe2143eb8a281234c6129fa285e9a..25724e370d9a7945d55448d91da88ab0001fcebc" } ,{ "testCaseDescription": "go-imaginary-literals-teardown-test", @@ -372,5 +372,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "3d14efd12e0c51ea5f90f6237364665c745de057..29b7d780794e2ee8d37771310cebb2000b677aec" + "shas": "25724e370d9a7945d55448d91da88ab0001fcebc..1ed63b35351e352f6ae6a546bb49920585747c54" }] diff --git a/test/corpus/diff-summaries/go/increment-decrement-statements.json b/test/corpus/diff-summaries/go/increment-decrement-statements.json index c43c4d7d9..14d9f1635 100644 --- a/test/corpus/diff-summaries/go/increment-decrement-statements.json +++ b/test/corpus/diff-summaries/go/increment-decrement-statements.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "7f8d4e43555f3b5d3f723b58c0fbf874612c614f..aa4d66200c9a9aa7faf6a95a5409a8ffd4adfdd3" + "shas": "adb2401da7e74b66c885cf959788358c7ba5c3ee..59dcf1fcc48c84b1a9938e79d788af6b13a328a8" } ,{ "testCaseDescription": "go-increment-decrement-statements-insert-test", @@ -97,7 +97,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "aa4d66200c9a9aa7faf6a95a5409a8ffd4adfdd3..7486326aeb5e953caf6a177f94fe81f873dd3f82" + "shas": "59dcf1fcc48c84b1a9938e79d788af6b13a328a8..b2a71db8b841f85ec6d62c4ee5cb758a502bfcb3" } ,{ "testCaseDescription": "go-increment-decrement-statements-replacement-test", @@ -184,7 +184,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "7486326aeb5e953caf6a177f94fe81f873dd3f82..815af0d4d7514f7e49a17dfcfc7cc7d7e2037117" + "shas": "b2a71db8b841f85ec6d62c4ee5cb758a502bfcb3..6b16aefff065ed5a41e6891dd94ad040e85f312b" } ,{ "testCaseDescription": "go-increment-decrement-statements-delete-replacement-test", @@ -271,7 +271,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "815af0d4d7514f7e49a17dfcfc7cc7d7e2037117..89228c00eab271cd2f80899a63562fc9393d59dc" + "shas": "6b16aefff065ed5a41e6891dd94ad040e85f312b..cceed70a20fed7d8cd1d84eb6800ca37ea02bc01" } ,{ "testCaseDescription": "go-increment-decrement-statements-delete-insert-test", @@ -330,7 +330,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "89228c00eab271cd2f80899a63562fc9393d59dc..65de8108663b2ceeaa6c6e5d491ad1c4cb6dc8f6" + "shas": "cceed70a20fed7d8cd1d84eb6800ca37ea02bc01..f82a411f0daeb75a2800293d5651522df8f1bbd6" } ,{ "testCaseDescription": "go-increment-decrement-statements-teardown-test", @@ -372,5 +372,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "65de8108663b2ceeaa6c6e5d491ad1c4cb6dc8f6..96a2caf2b396eb1844dfd668cb913452ae09c4a6" + "shas": "f82a411f0daeb75a2800293d5651522df8f1bbd6..9b6482e7bca1a74c6ecdc400cf0ed146ebb6a29a" }] diff --git a/test/corpus/diff-summaries/go/indexing-expressions.json b/test/corpus/diff-summaries/go/indexing-expressions.json index 65a5d4092..0c9ce8e26 100644 --- a/test/corpus/diff-summaries/go/indexing-expressions.json +++ b/test/corpus/diff-summaries/go/indexing-expressions.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "584515bfe655665166b3a9a5db100a4bd4ae398b..49ee4bf0f25a7fb1e2c42d0b6107bcbc4576e208" + "shas": "54cc2c98c56816e321a4fffb6927c2793f3cc794..d19eab9ef64c9690bb40f960167fe7f379050ce1" } ,{ "testCaseDescription": "go-indexing-expressions-insert-test", @@ -161,7 +161,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "49ee4bf0f25a7fb1e2c42d0b6107bcbc4576e208..f5c5e4b19f663fcce75b43c825cd80b015e8022e" + "shas": "d19eab9ef64c9690bb40f960167fe7f379050ce1..7b7e60ce9893393670010e1b0c82c393d0bbc87f" } ,{ "testCaseDescription": "go-indexing-expressions-replacement-test", @@ -285,7 +285,7 @@ " f[1:2:3]" ], "gitDir": "test/corpus/repos/go", - "shas": "f5c5e4b19f663fcce75b43c825cd80b015e8022e..a2027cb09c6afa951fbfaafc7f62680397c78e6d" + "shas": "7b7e60ce9893393670010e1b0c82c393d0bbc87f..3cb474bb7624520b7d6f16188a5949810d92dd20" } ,{ "testCaseDescription": "go-indexing-expressions-delete-replacement-test", @@ -418,7 +418,7 @@ " f[1:2:3]" ], "gitDir": "test/corpus/repos/go", - "shas": "a2027cb09c6afa951fbfaafc7f62680397c78e6d..869a3b6f40ec9b9a432c4e95f94741fb91718cd9" + "shas": "3cb474bb7624520b7d6f16188a5949810d92dd20..2ca22a76ba48f867fd999d0f99608d38b55809fc" } ,{ "testCaseDescription": "go-indexing-expressions-delete-insert-test", @@ -541,7 +541,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "869a3b6f40ec9b9a432c4e95f94741fb91718cd9..6d143a53bdfcbd5212f7ff9403616263a083a37c" + "shas": "2ca22a76ba48f867fd999d0f99608d38b55809fc..dd710f15cf06e30adfc658dabf70fbbd8b0958fa" } ,{ "testCaseDescription": "go-indexing-expressions-teardown-test", @@ -583,5 +583,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "6d143a53bdfcbd5212f7ff9403616263a083a37c..e4c6a9b9a1f1cbf3dd7a4ce717333fb847b7fbac" + "shas": "dd710f15cf06e30adfc658dabf70fbbd8b0958fa..668c02674516194c0623120c957d1be93af6cde5" }] diff --git a/test/corpus/diff-summaries/go/int-literals.json b/test/corpus/diff-summaries/go/int-literals.json index b193943ad..3e844f9a2 100644 --- a/test/corpus/diff-summaries/go/int-literals.json +++ b/test/corpus/diff-summaries/go/int-literals.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "35a378ca062939544c7a2fbd82b9ed4962db60d0..e7432deda0730afa92fc14d0040e4e506261f045" + "shas": "038d3fd0f1c08ca004a0a2d0c61ecc27b0535e67..b49dc2a86107a6125c6c6b5b27a10b97c349c951" } ,{ "testCaseDescription": "go-int-literals-insert-test", @@ -98,7 +98,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "e7432deda0730afa92fc14d0040e4e506261f045..183d0ecb655c1c289e12f7bfdb573e09814e2b8b" + "shas": "b49dc2a86107a6125c6c6b5b27a10b97c349c951..7922f4a2649ec54d9aa444582b20ef48b8a0c49b" } ,{ "testCaseDescription": "go-int-literals-replacement-test", @@ -208,7 +208,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "183d0ecb655c1c289e12f7bfdb573e09814e2b8b..6e4687bb2cf85d85865619b7e5d05b14c825074a" + "shas": "7922f4a2649ec54d9aa444582b20ef48b8a0c49b..e978725a447db93523c51453ac03fe50b8f32e8f" } ,{ "testCaseDescription": "go-int-literals-delete-replacement-test", @@ -318,7 +318,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "6e4687bb2cf85d85865619b7e5d05b14c825074a..0f0762f96d2e9392ffd3748800c1e1a16e83e0a9" + "shas": "e978725a447db93523c51453ac03fe50b8f32e8f..8801fe8fbe85f6c7fde621d02bb69ae1d8d2f117" } ,{ "testCaseDescription": "go-int-literals-delete-insert-test", @@ -378,7 +378,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "0f0762f96d2e9392ffd3748800c1e1a16e83e0a9..94ad672147c576dce128e86e59faedfbd95926e9" + "shas": "8801fe8fbe85f6c7fde621d02bb69ae1d8d2f117..508d9327fa16fb7a1a03998a5214526d9c6bebf0" } ,{ "testCaseDescription": "go-int-literals-teardown-test", @@ -420,5 +420,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "94ad672147c576dce128e86e59faedfbd95926e9..d1b8d8617e07c628530185580966f2422d6ac7c7" + "shas": "508d9327fa16fb7a1a03998a5214526d9c6bebf0..091bc58290f6343880a29ef209a9d87aa7a3fcc0" }] diff --git a/test/corpus/diff-summaries/go/interface-types.json b/test/corpus/diff-summaries/go/interface-types.json index c7173fc29..c9a66c531 100644 --- a/test/corpus/diff-summaries/go/interface-types.json +++ b/test/corpus/diff-summaries/go/interface-types.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "8b9132202584b9cb77727d35fc5933c26eca6b3c..05f174ca0361352203a7d61ff484d16b59f7a35a" + "shas": "80f368e3e339a6f6cd13071fff11a504b589ebaa..fed0e7aa61d5c427a357795cbab25ac4992d6307" } ,{ "testCaseDescription": "go-interface-types-insert-test", @@ -117,7 +117,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "05f174ca0361352203a7d61ff484d16b59f7a35a..a33a0d6ca8ca62b9272edab5ea3d7c95f0abecd3" + "shas": "fed0e7aa61d5c427a357795cbab25ac4992d6307..4c36f6466089c121fbcd9047274f757155b0462f" } ,{ "testCaseDescription": "go-interface-types-replacement-test", @@ -232,7 +232,7 @@ " SomeMethod(s string) error" ], "gitDir": "test/corpus/repos/go", - "shas": "a33a0d6ca8ca62b9272edab5ea3d7c95f0abecd3..8e1af67f8e4799d33dda9790076d3ebd0f992ae9" + "shas": "4c36f6466089c121fbcd9047274f757155b0462f..71c93c1227a15f14856489f78b757630be715422" } ,{ "testCaseDescription": "go-interface-types-delete-replacement-test", @@ -347,7 +347,7 @@ " SomeMethod(s string) error" ], "gitDir": "test/corpus/repos/go", - "shas": "8e1af67f8e4799d33dda9790076d3ebd0f992ae9..d38eef21ef5c858651ded42d3546f79843ba436e" + "shas": "71c93c1227a15f14856489f78b757630be715422..d28b95cd4d1b0ce38f2a6a41b9299929b5e547d3" } ,{ "testCaseDescription": "go-interface-types-delete-insert-test", @@ -426,7 +426,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "d38eef21ef5c858651ded42d3546f79843ba436e..c3779f6bce6cf4a13e0e123647ff20ecb94a941d" + "shas": "d28b95cd4d1b0ce38f2a6a41b9299929b5e547d3..3833ebb48a526a3a7eef7b4f7d939cf60eaf88be" } ,{ "testCaseDescription": "go-interface-types-teardown-test", @@ -468,5 +468,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "c3779f6bce6cf4a13e0e123647ff20ecb94a941d..537b856e670ab8ae8aa4d420943369b4ba180c16" + "shas": "3833ebb48a526a3a7eef7b4f7d939cf60eaf88be..08a4feef4554fd83bb199f7d6aa2017f2d5dcf95" }] diff --git a/test/corpus/diff-summaries/go/label-statements.json b/test/corpus/diff-summaries/go/label-statements.json index 75c9dba18..9daa078e2 100644 --- a/test/corpus/diff-summaries/go/label-statements.json +++ b/test/corpus/diff-summaries/go/label-statements.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "f9136e3be46a93bc0e0b6dc467c7b9ced1b97894..d7212f336c9c60b14c59e8e94e1ecd4aede3cc09" + "shas": "27df5c61699f3ed1d465e409ed4793a9a141e7bd..5118722fef5fb98edf5863588a5d6f1a932b1776" } ,{ "testCaseDescription": "go-label-statements-insert-test", @@ -83,7 +83,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "d7212f336c9c60b14c59e8e94e1ecd4aede3cc09..0f74fcb7d75eeebfc2e1a28388fa94535683467b" + "shas": "5118722fef5fb98edf5863588a5d6f1a932b1776..86e5386c51e472b69c96dee0f11f13101ea549db" } ,{ "testCaseDescription": "go-label-statements-replacement-test", @@ -139,7 +139,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "0f74fcb7d75eeebfc2e1a28388fa94535683467b..a34375d5b52b45a8d48f0540b89d62710a4c6be1" + "shas": "86e5386c51e472b69c96dee0f11f13101ea549db..5a05fa05c7fc5750b9b13926bc8c051100f8dbbf" } ,{ "testCaseDescription": "go-label-statements-delete-replacement-test", @@ -195,7 +195,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "a34375d5b52b45a8d48f0540b89d62710a4c6be1..60dc5a9a3a91da069f329c5ae369d80c47e9cc42" + "shas": "5a05fa05c7fc5750b9b13926bc8c051100f8dbbf..0a064cd984a675ea6f57a157f4e410711dcef167" } ,{ "testCaseDescription": "go-label-statements-delete-insert-test", @@ -240,7 +240,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "60dc5a9a3a91da069f329c5ae369d80c47e9cc42..5a07dfd5ebb6f9aac2fc62a67df29e9f002ae2fb" + "shas": "0a064cd984a675ea6f57a157f4e410711dcef167..84dde822378492f82447d8959a9978ab56a05ce7" } ,{ "testCaseDescription": "go-label-statements-teardown-test", @@ -282,5 +282,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "5a07dfd5ebb6f9aac2fc62a67df29e9f002ae2fb..e8a0a2912cf6fee72c6e0cc0d96c5babf1cd4df1" + "shas": "84dde822378492f82447d8959a9978ab56a05ce7..a759987355f2393c92a9df39d4c9e56a2ea2ce19" }] diff --git a/test/corpus/diff-summaries/go/map-literals.json b/test/corpus/diff-summaries/go/map-literals.json index e9ac7e202..f12a1c7cb 100644 --- a/test/corpus/diff-summaries/go/map-literals.json +++ b/test/corpus/diff-summaries/go/map-literals.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "64841687a4cbcda7d1eda64e527648f5cef1bf73..b2485087ecf70a7b996361b966bdfb6373510813" + "shas": "6e579109cc2a3c535790233b54306a5473f1a55d..842453c29866c4f8c23dffae58363865fdd48a9a" } ,{ "testCaseDescription": "go-map-literals-insert-test", @@ -84,7 +84,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "b2485087ecf70a7b996361b966bdfb6373510813..dd38ad1ed6fda4e26d6065861e629ba29b8dd33e" + "shas": "842453c29866c4f8c23dffae58363865fdd48a9a..3386b91dd71edc5df18367f888ecc0e74380be0a" } ,{ "testCaseDescription": "go-map-literals-replacement-test", @@ -201,7 +201,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "dd38ad1ed6fda4e26d6065861e629ba29b8dd33e..c4484b12af87ff7331e23808d5474b9f4534bb71" + "shas": "3386b91dd71edc5df18367f888ecc0e74380be0a..b39961ba674aa0fab4180fe2cf44a1bfe0f1eb7c" } ,{ "testCaseDescription": "go-map-literals-delete-replacement-test", @@ -369,7 +369,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "c4484b12af87ff7331e23808d5474b9f4534bb71..fa3a274956f58eb7630b0a1d75d0ee0566068672" + "shas": "b39961ba674aa0fab4180fe2cf44a1bfe0f1eb7c..148e204c29ec76ed54356dcc2ce2798967ea1dd0" } ,{ "testCaseDescription": "go-map-literals-delete-insert-test", @@ -415,7 +415,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "fa3a274956f58eb7630b0a1d75d0ee0566068672..6f805cd7db38b8dd4bce3f304e7e11953170db5d" + "shas": "148e204c29ec76ed54356dcc2ce2798967ea1dd0..b42901f3f75330eff8ccf7342150ffc969e39861" } ,{ "testCaseDescription": "go-map-literals-teardown-test", @@ -457,5 +457,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "6f805cd7db38b8dd4bce3f304e7e11953170db5d..c7c9b52a2e3477a5c5970b67af95fa2a603c8359" + "shas": "b42901f3f75330eff8ccf7342150ffc969e39861..d8371152b551458e89b4e39819c41792bba80076" }] diff --git a/test/corpus/diff-summaries/go/map-types.json b/test/corpus/diff-summaries/go/map-types.json index 441a2018c..b7f37daa3 100644 --- a/test/corpus/diff-summaries/go/map-types.json +++ b/test/corpus/diff-summaries/go/map-types.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "537b856e670ab8ae8aa4d420943369b4ba180c16..9ae70588c8e1d6409ce49d3c7e81096bfc7a1d40" + "shas": "08a4feef4554fd83bb199f7d6aa2017f2d5dcf95..4490608b153d81227926e7fac6306bbbd15cd297" } ,{ "testCaseDescription": "go-map-types-insert-test", @@ -81,7 +81,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "9ae70588c8e1d6409ce49d3c7e81096bfc7a1d40..44568c991c3070bcb1d05df16e1decb8ef8405f8" + "shas": "4490608b153d81227926e7fac6306bbbd15cd297..429d94f8628a073b8c3cb6694c09df6a2bf5a50c" } ,{ "testCaseDescription": "go-map-types-replacement-test", @@ -136,7 +136,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "44568c991c3070bcb1d05df16e1decb8ef8405f8..b67e615d6f6edf3c3f181556c6a1bf9d77b80e88" + "shas": "429d94f8628a073b8c3cb6694c09df6a2bf5a50c..64b519e321b5bb0774efbbfd0de8701be8cfc68d" } ,{ "testCaseDescription": "go-map-types-delete-replacement-test", @@ -191,7 +191,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "b67e615d6f6edf3c3f181556c6a1bf9d77b80e88..8adfcb96271210db7e6ff4d4f8e9614e18a7ea2d" + "shas": "64b519e321b5bb0774efbbfd0de8701be8cfc68d..466082ac269bd4c15cd23acfabfcd6f667b3feb6" } ,{ "testCaseDescription": "go-map-types-delete-insert-test", @@ -234,7 +234,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "8adfcb96271210db7e6ff4d4f8e9614e18a7ea2d..d71ece556522fb22d8dce8a04232dd7b084db88a" + "shas": "466082ac269bd4c15cd23acfabfcd6f667b3feb6..a6fdcf70dd35754327a61460deefe9aa8d544f94" } ,{ "testCaseDescription": "go-map-types-teardown-test", @@ -276,5 +276,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "d71ece556522fb22d8dce8a04232dd7b084db88a..2f35db8e0302874790f1e855b1604464a758129c" + "shas": "a6fdcf70dd35754327a61460deefe9aa8d544f94..d2b5df75d8f6fa05372019f64a86177f47d3e2f6" }] diff --git a/test/corpus/diff-summaries/go/method-declarations.json b/test/corpus/diff-summaries/go/method-declarations.json index c006ff0b0..4c64334c3 100644 --- a/test/corpus/diff-summaries/go/method-declarations.json +++ b/test/corpus/diff-summaries/go/method-declarations.json @@ -38,7 +38,7 @@ "+" ], "gitDir": "test/corpus/repos/go", - "shas": "ab4793c039457a689359c3fb317a49df66dfcae9..0aab85d381c6d815597cb70fce68680899d8c22b" + "shas": "2e4178577ebab07e2229a6846523de7a1a01d863..4236b968718153403eb7474c665ec2564c45d4af" } ,{ "testCaseDescription": "go-method-declarations-insert-test", @@ -80,7 +80,7 @@ "+func (self Person) Equals(other Person) bool {}" ], "gitDir": "test/corpus/repos/go", - "shas": "0aab85d381c6d815597cb70fce68680899d8c22b..b60a3cbefce2d299d301563d2944ef8834481c42" + "shas": "4236b968718153403eb7474c665ec2564c45d4af..1be9a817b553812d204fbf84bdcdceeb09eda9aa" } ,{ "testCaseDescription": "go-method-declarations-replacement-test", @@ -161,7 +161,7 @@ "+func (self Num) Equals(other Num) bool {}" ], "gitDir": "test/corpus/repos/go", - "shas": "b60a3cbefce2d299d301563d2944ef8834481c42..0936760e2daa8cf4c05b39f00e92c0ff5bb5d25b" + "shas": "1be9a817b553812d204fbf84bdcdceeb09eda9aa..09e86485c7afef0d482a0f495713487f6af20df9" } ,{ "testCaseDescription": "go-method-declarations-delete-replacement-test", @@ -242,7 +242,7 @@ "+func (self Person) Equals(other Person) bool {}" ], "gitDir": "test/corpus/repos/go", - "shas": "0936760e2daa8cf4c05b39f00e92c0ff5bb5d25b..fc3aa3ec6c42297ba67ddcdf38a3e365ac9a3696" + "shas": "09e86485c7afef0d482a0f495713487f6af20df9..4c2bf0fb4d489fa2924346c61f289cc66a591413" } ,{ "testCaseDescription": "go-method-declarations-delete-insert-test", @@ -284,7 +284,7 @@ "+" ], "gitDir": "test/corpus/repos/go", - "shas": "fc3aa3ec6c42297ba67ddcdf38a3e365ac9a3696..9c10ec1dcb8029b88ac1f51ee4bd6f0de220e1c2" + "shas": "4c2bf0fb4d489fa2924346c61f289cc66a591413..7e9cc3775968f27c92b41ed9f4c8494fbcd30edc" } ,{ "testCaseDescription": "go-method-declarations-teardown-test", @@ -326,5 +326,5 @@ "-" ], "gitDir": "test/corpus/repos/go", - "shas": "9c10ec1dcb8029b88ac1f51ee4bd6f0de220e1c2..96c8359530072c03347732bdcc542a967aa6d2b2" + "shas": "7e9cc3775968f27c92b41ed9f4c8494fbcd30edc..7193c3cab8046a6b2b57792ecbef7f2ad5f318b7" }] diff --git a/test/corpus/diff-summaries/go/modifying-struct-fields.json b/test/corpus/diff-summaries/go/modifying-struct-fields.json index babdcfd95..c3fb1f0a2 100644 --- a/test/corpus/diff-summaries/go/modifying-struct-fields.json +++ b/test/corpus/diff-summaries/go/modifying-struct-fields.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "96429faca853f0301df4b0d4d43ce26e3011129c..327d46912a0379199ca874a02de94cbd4822e017" + "shas": "ab3e3926dc779249680c1d053599892d614e1cbf..7ece7fde5d7183a337db7501da3cfd85b9cf1ff2" } ,{ "testCaseDescription": "go-modifying-struct-fields-insert-test", @@ -83,7 +83,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "327d46912a0379199ca874a02de94cbd4822e017..edbdc72526206b55a5a68574067653f9a012139e" + "shas": "7ece7fde5d7183a337db7501da3cfd85b9cf1ff2..fe6d2e1a264c84287b55eaf223fd9c43c0de0b6a" } ,{ "testCaseDescription": "go-modifying-struct-fields-replacement-test", @@ -139,7 +139,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "edbdc72526206b55a5a68574067653f9a012139e..d297555f9562fdc2f07263c0d3f4448a2d993af6" + "shas": "fe6d2e1a264c84287b55eaf223fd9c43c0de0b6a..9d128deb722f6b1cc8daec493627470571d6aa22" } ,{ "testCaseDescription": "go-modifying-struct-fields-delete-replacement-test", @@ -195,7 +195,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "d297555f9562fdc2f07263c0d3f4448a2d993af6..0424e6283242743718ac65313bf399f22e87003f" + "shas": "9d128deb722f6b1cc8daec493627470571d6aa22..aae84499c2f50275110bf5576621b7d40d40f5fc" } ,{ "testCaseDescription": "go-modifying-struct-fields-delete-insert-test", @@ -240,7 +240,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "0424e6283242743718ac65313bf399f22e87003f..1e8d55f993118e8493fd77e4029b4126ca55ea76" + "shas": "aae84499c2f50275110bf5576621b7d40d40f5fc..785536c2045d588c9ac110cb6b5f084eba52ce59" } ,{ "testCaseDescription": "go-modifying-struct-fields-teardown-test", @@ -282,5 +282,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "1e8d55f993118e8493fd77e4029b4126ca55ea76..cabeb4be978509ff8b604c14a85f64a96314cd7a" + "shas": "785536c2045d588c9ac110cb6b5f084eba52ce59..13e9de620f0e981a263aa8306692c8e3b7bae8a9" }] diff --git a/test/corpus/diff-summaries/go/parameter-declarations-with-types.json b/test/corpus/diff-summaries/go/parameter-declarations-with-types.json index 283aaaad9..b30b4ecb3 100644 --- a/test/corpus/diff-summaries/go/parameter-declarations-with-types.json +++ b/test/corpus/diff-summaries/go/parameter-declarations-with-types.json @@ -39,7 +39,7 @@ "+" ], "gitDir": "test/corpus/repos/go", - "shas": "df3298de1cff4cc80875946fc6abeec7bf257f39..932c7e3ec9b93568845977a43626bb4a0fd3b90d" + "shas": "e8d08e2eedd6b2a25ec4649df0ad12534a6c3c09..adce0d5ed52ba8b1d7bca9e8a2bfb5364cda9502" } ,{ "testCaseDescription": "go-parameter-declarations-with-types-insert-test", @@ -82,7 +82,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "932c7e3ec9b93568845977a43626bb4a0fd3b90d..a1a774045a4b7922d5e0e70622f298763f8fe5d7" + "shas": "adce0d5ed52ba8b1d7bca9e8a2bfb5364cda9502..44490f03e295a0757ccab40c7b512e055e542679" } ,{ "testCaseDescription": "go-parameter-declarations-with-types-replacement-test", @@ -218,7 +218,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "a1a774045a4b7922d5e0e70622f298763f8fe5d7..54ff8e688514bd1a0ee7e588fffff1be0ce47645" + "shas": "44490f03e295a0757ccab40c7b512e055e542679..e9a034ba8648ede7074592effb77584769908921" } ,{ "testCaseDescription": "go-parameter-declarations-with-types-delete-replacement-test", @@ -303,7 +303,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "54ff8e688514bd1a0ee7e588fffff1be0ce47645..ca8a328836cd4073670d5fbb553d60a2d5da5149" + "shas": "e9a034ba8648ede7074592effb77584769908921..a62c254b900279d25d32867f50b43f29cf80e00f" } ,{ "testCaseDescription": "go-parameter-declarations-with-types-delete-insert-test", @@ -346,7 +346,7 @@ "+" ], "gitDir": "test/corpus/repos/go", - "shas": "ca8a328836cd4073670d5fbb553d60a2d5da5149..17afa32d5d35d9b2169715bf8e3cf7b6c8dbfd74" + "shas": "a62c254b900279d25d32867f50b43f29cf80e00f..9bc7d216469b8d8a278b807dca1cace07b3cffdc" } ,{ "testCaseDescription": "go-parameter-declarations-with-types-teardown-test", @@ -389,5 +389,5 @@ "-" ], "gitDir": "test/corpus/repos/go", - "shas": "17afa32d5d35d9b2169715bf8e3cf7b6c8dbfd74..ef1ac04aeb5238b9f803a01487634a5dbb904dd2" + "shas": "9bc7d216469b8d8a278b807dca1cace07b3cffdc..d294ce5018da872a8921d3401c507217daf06328" }] diff --git a/test/corpus/diff-summaries/go/pointer-types.json b/test/corpus/diff-summaries/go/pointer-types.json index b4043038c..8d998ac76 100644 --- a/test/corpus/diff-summaries/go/pointer-types.json +++ b/test/corpus/diff-summaries/go/pointer-types.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "2f35db8e0302874790f1e855b1604464a758129c..e0303fed6749f451d05079830f899ce0f494f614" + "shas": "d2b5df75d8f6fa05372019f64a86177f47d3e2f6..9731904c92acb4d04b65d34e08b9d71071dcdc9a" } ,{ "testCaseDescription": "go-pointer-types-insert-test", @@ -99,7 +99,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "e0303fed6749f451d05079830f899ce0f494f614..a2a702f361a75afe7a57eca5f42338b32f802f8d" + "shas": "9731904c92acb4d04b65d34e08b9d71071dcdc9a..ed7d7ffc0969e8a9322c568c4b5691192fa53e29" } ,{ "testCaseDescription": "go-pointer-types-replacement-test", @@ -184,7 +184,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "a2a702f361a75afe7a57eca5f42338b32f802f8d..c29c8cd9b06066a9f9b95f6d90abf0d388121621" + "shas": "ed7d7ffc0969e8a9322c568c4b5691192fa53e29..9c67261772de0af3f1d3a1daf03e9f2366d893c9" } ,{ "testCaseDescription": "go-pointer-types-delete-replacement-test", @@ -269,7 +269,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "c29c8cd9b06066a9f9b95f6d90abf0d388121621..dc43d6e290768816185a12d2bfc43db015eb8960" + "shas": "9c67261772de0af3f1d3a1daf03e9f2366d893c9..144a9aa0c6060fe481a5fd96f5bcdecfa3e3a4f1" } ,{ "testCaseDescription": "go-pointer-types-delete-insert-test", @@ -330,7 +330,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "dc43d6e290768816185a12d2bfc43db015eb8960..1c982494af2b508fae567a6c441a7a15c54d4a24" + "shas": "144a9aa0c6060fe481a5fd96f5bcdecfa3e3a4f1..4070351f018be548cadfc29137148e78bcab00d9" } ,{ "testCaseDescription": "go-pointer-types-teardown-test", @@ -372,5 +372,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "1c982494af2b508fae567a6c441a7a15c54d4a24..0ba70ac16df68cc3eb0b6318c3b784d701f4b216" + "shas": "4070351f018be548cadfc29137148e78bcab00d9..ffe628ad363e676d5234caa95a87cf6b7f3626f8" }] diff --git a/test/corpus/diff-summaries/go/qualified-types.json b/test/corpus/diff-summaries/go/qualified-types.json index e358a9221..a2ac17fe8 100644 --- a/test/corpus/diff-summaries/go/qualified-types.json +++ b/test/corpus/diff-summaries/go/qualified-types.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "96a2caf2b396eb1844dfd668cb913452ae09c4a6..4aef9a3bb124cee7c7246a2692ef219fdb688a75" + "shas": "9b6482e7bca1a74c6ecdc400cf0ed146ebb6a29a..3b06e2854335bedd951acd5f610a193a8950ba8d" } ,{ "testCaseDescription": "go-qualified-types-insert-test", @@ -81,7 +81,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "4aef9a3bb124cee7c7246a2692ef219fdb688a75..0f7f533345885a7f2cbe3e6215ff7a30da263beb" + "shas": "3b06e2854335bedd951acd5f610a193a8950ba8d..fa461b7018b844b35433dc120e6e9d5eb5ee403e" } ,{ "testCaseDescription": "go-qualified-types-replacement-test", @@ -163,7 +163,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "0f7f533345885a7f2cbe3e6215ff7a30da263beb..aa7d555ba3072f33619a27337bbb9507ad6f70ca" + "shas": "fa461b7018b844b35433dc120e6e9d5eb5ee403e..98c0500dc82c4fbe24656621178b4815b96fdfc9" } ,{ "testCaseDescription": "go-qualified-types-delete-replacement-test", @@ -245,7 +245,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "aa7d555ba3072f33619a27337bbb9507ad6f70ca..e1cbca9a58ecb01bc8bda3e35530cc3d579e90c4" + "shas": "98c0500dc82c4fbe24656621178b4815b96fdfc9..b282ee0787fec70acb2eb0e3902092f4e9947f79" } ,{ "testCaseDescription": "go-qualified-types-delete-insert-test", @@ -288,7 +288,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "e1cbca9a58ecb01bc8bda3e35530cc3d579e90c4..6abb1901a0a0ffc573d2e8f2fc6d61b22921eb75" + "shas": "b282ee0787fec70acb2eb0e3902092f4e9947f79..846ee6590bfa7e86f523096b8a876a557732af95" } ,{ "testCaseDescription": "go-qualified-types-teardown-test", @@ -330,5 +330,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "6abb1901a0a0ffc573d2e8f2fc6d61b22921eb75..95b89b9b110156a8ff35bda066874de1c055bb2c" + "shas": "846ee6590bfa7e86f523096b8a876a557732af95..2a8d9f01f7c78b4014cc0cf0057b991673c39dd0" }] diff --git a/test/corpus/diff-summaries/go/rune-literals.json b/test/corpus/diff-summaries/go/rune-literals.json index 5203e55f9..8710c145d 100644 --- a/test/corpus/diff-summaries/go/rune-literals.json +++ b/test/corpus/diff-summaries/go/rune-literals.json @@ -35,7 +35,7 @@ "+" ], "gitDir": "test/corpus/repos/go", - "shas": "0b52228e533b01beb1e33054e72003307726533c..f03dd1370b43b8725f7d9827112fd522bc66b6f3" + "shas": "39b5a7d4eaa477c3d1636e32ab2c5cf5c930372a..23dc2a672c4cc4345fe894e56e3d0db174dec0a9" } ,{ "testCaseDescription": "go-rune-literals-insert-test", @@ -202,7 +202,7 @@ "+)" ], "gitDir": "test/corpus/repos/go", - "shas": "f03dd1370b43b8725f7d9827112fd522bc66b6f3..e6e1d68cbaa666c2681a25a27113902d8f1ee84c" + "shas": "23dc2a672c4cc4345fe894e56e3d0db174dec0a9..7aed7c8739c2eac0863eacaf994d8eabdce7cb1d" } ,{ "testCaseDescription": "go-rune-literals-replacement-test", @@ -449,7 +449,7 @@ " )" ], "gitDir": "test/corpus/repos/go", - "shas": "e6e1d68cbaa666c2681a25a27113902d8f1ee84c..07b515ef93f8ca7f6d5fd5760d06502b3726fe6f" + "shas": "7aed7c8739c2eac0863eacaf994d8eabdce7cb1d..ec461a8fd869ec7d76f4fd58bc588149153f716f" } ,{ "testCaseDescription": "go-rune-literals-delete-replacement-test", @@ -696,7 +696,7 @@ " )" ], "gitDir": "test/corpus/repos/go", - "shas": "07b515ef93f8ca7f6d5fd5760d06502b3726fe6f..29397c86faaf45a301de097d6e051502954906c7" + "shas": "ec461a8fd869ec7d76f4fd58bc588149153f716f..9993f655e33779241cf9c1eac0effb677eab220e" } ,{ "testCaseDescription": "go-rune-literals-delete-insert-test", @@ -863,7 +863,7 @@ "+" ], "gitDir": "test/corpus/repos/go", - "shas": "29397c86faaf45a301de097d6e051502954906c7..7c099f8699e7c7742ad383be5ba07326fb3e6087" + "shas": "9993f655e33779241cf9c1eac0effb677eab220e..36a9483d64f31ef89f73f8aee014ca4a1dfc4d58" } ,{ "testCaseDescription": "go-rune-literals-teardown-test", @@ -902,5 +902,5 @@ "-" ], "gitDir": "test/corpus/repos/go", - "shas": "7c099f8699e7c7742ad383be5ba07326fb3e6087..3a475c2e781c97178d1986bf754545dbb051440c" + "shas": "36a9483d64f31ef89f73f8aee014ca4a1dfc4d58..a43f5210e8e5da594371eacab324e27889547ce0" }] diff --git a/test/corpus/diff-summaries/go/select-statements.json b/test/corpus/diff-summaries/go/select-statements.json index 10a6917f2..b1065077d 100644 --- a/test/corpus/diff-summaries/go/select-statements.json +++ b/test/corpus/diff-summaries/go/select-statements.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "5ef8bc0eb6c5afcf5b71c3773b50aacebffe32d5..fc27fba6f9c1e19251a29214c0bc8599c48a93dc" + "shas": "a5c82828c92a590f5a64d58dd4a626b294a2c565..931059c522f5de3c9c26c635a0d8309c5a15b163" } ,{ "testCaseDescription": "go-select-statements-insert-test", @@ -90,7 +90,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "fc27fba6f9c1e19251a29214c0bc8599c48a93dc..5b3000889bd5f6fed85f762e41c07c37d058fce5" + "shas": "931059c522f5de3c9c26c635a0d8309c5a15b163..783bd292c6edd57dbeecda21a7fa4779dd7df37e" } ,{ "testCaseDescription": "go-select-statements-replacement-test", @@ -207,7 +207,7 @@ " return" ], "gitDir": "test/corpus/repos/go", - "shas": "5b3000889bd5f6fed85f762e41c07c37d058fce5..cfad5a03e0e5e2b92b80d8013221c57bb8b54dbb" + "shas": "783bd292c6edd57dbeecda21a7fa4779dd7df37e..f41ff4cddf48a52a085d1342eb0f99089f143658" } ,{ "testCaseDescription": "go-select-statements-delete-replacement-test", @@ -324,7 +324,7 @@ " return" ], "gitDir": "test/corpus/repos/go", - "shas": "cfad5a03e0e5e2b92b80d8013221c57bb8b54dbb..ef37033c96b063deb172c7ceb9cbc6c659cb6f70" + "shas": "f41ff4cddf48a52a085d1342eb0f99089f143658..cccdfbcb5e7e96a105a3dc63051bd47d7f2a518e" } ,{ "testCaseDescription": "go-select-statements-delete-insert-test", @@ -376,7 +376,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "ef37033c96b063deb172c7ceb9cbc6c659cb6f70..b4c5ae05e9993d2a8f9abcfa1b1a5e1ff4677aed" + "shas": "cccdfbcb5e7e96a105a3dc63051bd47d7f2a518e..016dfc524f2334477842e78c5c8e0d9a63760013" } ,{ "testCaseDescription": "go-select-statements-teardown-test", @@ -418,5 +418,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "b4c5ae05e9993d2a8f9abcfa1b1a5e1ff4677aed..c14d55dd062dc340dde5986bd08c8b6aa1173023" + "shas": "016dfc524f2334477842e78c5c8e0d9a63760013..8ae829c0b1cf177164c31d8a3d6678bbc51d20c5" }] diff --git a/test/corpus/diff-summaries/go/selector-expressions.json b/test/corpus/diff-summaries/go/selector-expressions.json index 2a6aa5945..af06150d7 100644 --- a/test/corpus/diff-summaries/go/selector-expressions.json +++ b/test/corpus/diff-summaries/go/selector-expressions.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "2e1fbc3488b3a5250246698b500360fa5c6cfcf2..e42a971b5a20ca75eb3c72bde201c371aa234e47" + "shas": "92abc0a7c86e4fde9374babdb2efcd398d27f6ac..d801e97024f83d9e1877e12a313446d798b56cc8" } ,{ "testCaseDescription": "go-selector-expressions-insert-test", @@ -81,7 +81,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "e42a971b5a20ca75eb3c72bde201c371aa234e47..aca59151a934c5b7d22a87aa964022b68a778cb1" + "shas": "d801e97024f83d9e1877e12a313446d798b56cc8..ea2eeeacd1bd254d9b113e7743aca93de78e20c4" } ,{ "testCaseDescription": "go-selector-expressions-replacement-test", @@ -190,7 +190,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "aca59151a934c5b7d22a87aa964022b68a778cb1..dc7fcc07a9355e4a2ec338447082958991a735e2" + "shas": "ea2eeeacd1bd254d9b113e7743aca93de78e20c4..5f3a65a2146a6f53f7898a59138cd7eff5ba13a7" } ,{ "testCaseDescription": "go-selector-expressions-delete-replacement-test", @@ -299,7 +299,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "dc7fcc07a9355e4a2ec338447082958991a735e2..7b10b01b498546d1d3e0e6c9b28fdfeb6a1087f7" + "shas": "5f3a65a2146a6f53f7898a59138cd7eff5ba13a7..c5794aa359e1f8866d3de42d8dc71b730f6cddec" } ,{ "testCaseDescription": "go-selector-expressions-delete-insert-test", @@ -342,7 +342,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "7b10b01b498546d1d3e0e6c9b28fdfeb6a1087f7..a909f7c3616574addb8ffea18320f3bb8d50c85e" + "shas": "c5794aa359e1f8866d3de42d8dc71b730f6cddec..166ba5c0c7069627f7f405f4b1b0e88c638f6cd8" } ,{ "testCaseDescription": "go-selector-expressions-teardown-test", @@ -384,5 +384,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "a909f7c3616574addb8ffea18320f3bb8d50c85e..584515bfe655665166b3a9a5db100a4bd4ae398b" + "shas": "166ba5c0c7069627f7f405f4b1b0e88c638f6cd8..54cc2c98c56816e321a4fffb6927c2793f3cc794" }] diff --git a/test/corpus/diff-summaries/go/send-statements.json b/test/corpus/diff-summaries/go/send-statements.json index 9562d6092..ed004e1f0 100644 --- a/test/corpus/diff-summaries/go/send-statements.json +++ b/test/corpus/diff-summaries/go/send-statements.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "c6c8175bf350bd238c29e1300d79724e6acf5d8f..e9256862e31c38270d1bec9360c4dc47c10838ca" + "shas": "80bb1d299fa3720eb3cdcef8c428f696467572a8..ba6c9f47972e2a5d648603c09f723d009d6e8d18" } ,{ "testCaseDescription": "go-send-statements-insert-test", @@ -81,7 +81,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "e9256862e31c38270d1bec9360c4dc47c10838ca..4b8e19ec7308259990ef6868862ae26f9517c905" + "shas": "ba6c9f47972e2a5d648603c09f723d009d6e8d18..c42ab69df8aec76fe7bf0ca080bf1f79dd2b676e" } ,{ "testCaseDescription": "go-send-statements-replacement-test", @@ -163,7 +163,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "4b8e19ec7308259990ef6868862ae26f9517c905..71f509fd773bfe971497f7dab87fbb8d5f286c14" + "shas": "c42ab69df8aec76fe7bf0ca080bf1f79dd2b676e..a3e71dbd1f3ef1035d929f31add8b1fa600d972d" } ,{ "testCaseDescription": "go-send-statements-delete-replacement-test", @@ -245,7 +245,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "71f509fd773bfe971497f7dab87fbb8d5f286c14..289dff55b2757ee11a20854ec6325e34f53dcb91" + "shas": "a3e71dbd1f3ef1035d929f31add8b1fa600d972d..7c616dcf9e47d1a400931f274ccc02c3b73079bf" } ,{ "testCaseDescription": "go-send-statements-delete-insert-test", @@ -288,7 +288,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "289dff55b2757ee11a20854ec6325e34f53dcb91..d2e4520caddff99d3bc5ba1e63f495a53a6e84d4" + "shas": "7c616dcf9e47d1a400931f274ccc02c3b73079bf..fa350bf0e3bd5e40724cf87b2fe792b32420ac11" } ,{ "testCaseDescription": "go-send-statements-teardown-test", @@ -330,5 +330,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "d2e4520caddff99d3bc5ba1e63f495a53a6e84d4..7f8d4e43555f3b5d3f723b58c0fbf874612c614f" + "shas": "fa350bf0e3bd5e40724cf87b2fe792b32420ac11..adb2401da7e74b66c885cf959788358c7ba5c3ee" }] diff --git a/test/corpus/diff-summaries/go/short-var-declarations.json b/test/corpus/diff-summaries/go/short-var-declarations.json index c3190581e..e4bcc090f 100644 --- a/test/corpus/diff-summaries/go/short-var-declarations.json +++ b/test/corpus/diff-summaries/go/short-var-declarations.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "6ccea258bd2125cbbe34266069b39fc47fe5d4e3..d86a797bca0743cdc0eb4671f5b3eb25921e46b5" + "shas": "b534a2624a6f74eebed7bd6da21bc7df27018a96..a338438394d4abed73faf1a18db50b9ce7fd5d05" } ,{ "testCaseDescription": "go-short-var-declarations-insert-test", @@ -96,7 +96,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "d86a797bca0743cdc0eb4671f5b3eb25921e46b5..949f040e38e0adb5a87c9b9ea7c42568058a2b32" + "shas": "a338438394d4abed73faf1a18db50b9ce7fd5d05..1e403ac766aab96d8b2aaabca728c1ed81699dc5" } ,{ "testCaseDescription": "go-short-var-declarations-replacement-test", @@ -232,7 +232,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "949f040e38e0adb5a87c9b9ea7c42568058a2b32..cee7f55944490cc3fd074d9b92e033c52b44a036" + "shas": "1e403ac766aab96d8b2aaabca728c1ed81699dc5..e31233f516ea4df97b36bffc70f140f6af79caa3" } ,{ "testCaseDescription": "go-short-var-declarations-delete-replacement-test", @@ -368,7 +368,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "cee7f55944490cc3fd074d9b92e033c52b44a036..d8c62fa2d207d7d564ca6f2673d47a697ecea20e" + "shas": "e31233f516ea4df97b36bffc70f140f6af79caa3..fe209f5ee06cef0653f60cd08571fd635a66b457" } ,{ "testCaseDescription": "go-short-var-declarations-delete-insert-test", @@ -426,7 +426,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "d8c62fa2d207d7d564ca6f2673d47a697ecea20e..38ed1694da804c308df6058dd3cbc3c4c552418d" + "shas": "fe209f5ee06cef0653f60cd08571fd635a66b457..c57c2196ef90d21ae6ecd07593b7e224ce45f1f2" } ,{ "testCaseDescription": "go-short-var-declarations-teardown-test", @@ -468,5 +468,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "38ed1694da804c308df6058dd3cbc3c4c552418d..20ca91d3f69487f7d530b334333fdfe2a3743e03" + "shas": "c57c2196ef90d21ae6ecd07593b7e224ce45f1f2..47074688bbb73b3e4bf4fe48f221e411e5a9dcae" }] diff --git a/test/corpus/diff-summaries/go/single-import-declarations.json b/test/corpus/diff-summaries/go/single-import-declarations.json index 8f5579181..a9c7ea3e3 100644 --- a/test/corpus/diff-summaries/go/single-import-declarations.json +++ b/test/corpus/diff-summaries/go/single-import-declarations.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "af763902e530bed278bc8bd2365c849366e38e1e..33684cfbcbf7f857d0cf6372e81358ed343475b6" + "shas": "f4187df470bc7a1989964a210ecab051ffbf6ee6..ecb901a6762362605dadbdffaf473d73e6b94df5" } ,{ "testCaseDescription": "go-single-import-declarations-insert-test", @@ -173,7 +173,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "33684cfbcbf7f857d0cf6372e81358ed343475b6..82413533e0a6e87a167fc5e1e8d954b9ad174170" + "shas": "ecb901a6762362605dadbdffaf473d73e6b94df5..c0a1539d6ec6fcae30b6d51910d103da40611255" } ,{ "testCaseDescription": "go-single-import-declarations-replacement-test", @@ -286,7 +286,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "82413533e0a6e87a167fc5e1e8d954b9ad174170..5cb40d42444d6e9c304a9f5197b39bdf0d2df990" + "shas": "c0a1539d6ec6fcae30b6d51910d103da40611255..9969e0e7578020fd9e352796aaed70ff7c363470" } ,{ "testCaseDescription": "go-single-import-declarations-delete-replacement-test", @@ -399,7 +399,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "5cb40d42444d6e9c304a9f5197b39bdf0d2df990..9da104e0d0cd486bb3cbabe632ae91311e49d86f" + "shas": "9969e0e7578020fd9e352796aaed70ff7c363470..c27faf90add827958f33afdb42e202228554d956" } ,{ "testCaseDescription": "go-single-import-declarations-delete-insert-test", @@ -534,7 +534,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "9da104e0d0cd486bb3cbabe632ae91311e49d86f..7f99e097d059b403e991c7649ce9bac1b8925333" + "shas": "c27faf90add827958f33afdb42e202228554d956..eb482cb703294d1f5cd117ad9c0a350463a0eb28" } ,{ "testCaseDescription": "go-single-import-declarations-teardown-test", @@ -576,5 +576,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "7f99e097d059b403e991c7649ce9bac1b8925333..6bee120701f5e3c15b3f8a13d4ead70d225091d1" + "shas": "eb482cb703294d1f5cd117ad9c0a350463a0eb28..2c47fd719e136db59fa2b3ccfab4572fe4c1be2c" }] diff --git a/test/corpus/diff-summaries/go/single-line-function-declarations.json b/test/corpus/diff-summaries/go/single-line-function-declarations.json index b04bb4231..55ad7c7bb 100644 --- a/test/corpus/diff-summaries/go/single-line-function-declarations.json +++ b/test/corpus/diff-summaries/go/single-line-function-declarations.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "15dbaf1c2f3cba362af5abba2a6aa9d2f1a92990..1cfb73a77cdd0f33c8083b2ba398b88a5768962e" + "shas": "e5224329c24b2e2d564a10269e63b36c492d7bf5..3312d6a7e5ab88bd23a6abafd432862a90f72e77" } ,{ "testCaseDescription": "go-single-line-function-declarations-insert-test", @@ -188,7 +188,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "1cfb73a77cdd0f33c8083b2ba398b88a5768962e..45325d9bb638e3f0ec912829e4655bb3c55d36b7" + "shas": "3312d6a7e5ab88bd23a6abafd432862a90f72e77..3b4e43cd88706feb3352b0d5cb5b3a31cc71995f" } ,{ "testCaseDescription": "go-single-line-function-declarations-replacement-test", @@ -304,7 +304,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "45325d9bb638e3f0ec912829e4655bb3c55d36b7..32b04cc1d447c547bd0d358059bb56f72907f26f" + "shas": "3b4e43cd88706feb3352b0d5cb5b3a31cc71995f..e5af3487fd74f8e7848f798682e4e440cae6b7c6" } ,{ "testCaseDescription": "go-single-line-function-declarations-delete-replacement-test", @@ -420,7 +420,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "32b04cc1d447c547bd0d358059bb56f72907f26f..d4acd503a8b68f01b4010e16c820e37477878eb7" + "shas": "e5af3487fd74f8e7848f798682e4e440cae6b7c6..bac460f21956d6e7fe9ab2ef377e0815765c16b7" } ,{ "testCaseDescription": "go-single-line-function-declarations-delete-insert-test", @@ -570,7 +570,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "d4acd503a8b68f01b4010e16c820e37477878eb7..c91e71f353ff1bb9b14a92330b79cc0f725f8a36" + "shas": "bac460f21956d6e7fe9ab2ef377e0815765c16b7..ced62ce15d64d383929a5e60c092f3fccef6beb2" } ,{ "testCaseDescription": "go-single-line-function-declarations-teardown-test", @@ -612,5 +612,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "c91e71f353ff1bb9b14a92330b79cc0f725f8a36..38625d07b620985fecbe285c34631bd03093d3f1" + "shas": "ced62ce15d64d383929a5e60c092f3fccef6beb2..6eefcab8de06ce411a43f0fe718199942aa7d74b" }] diff --git a/test/corpus/diff-summaries/go/slice-literals.json b/test/corpus/diff-summaries/go/slice-literals.json index 590e050a7..d9e3d9a55 100644 --- a/test/corpus/diff-summaries/go/slice-literals.json +++ b/test/corpus/diff-summaries/go/slice-literals.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "bd87198971225ff85fa587a26c2dd6deb8510b32..c9c6443b2e8022c659cd31c5d86aad9618c51688" + "shas": "7f89178b8db506e68863bdca31d6ed7b5ef34432..9cbed93dd18fb5a433067f07af286fc91e37d580" } ,{ "testCaseDescription": "go-slice-literals-insert-test", @@ -116,7 +116,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "c9c6443b2e8022c659cd31c5d86aad9618c51688..29fdb841b857fda14c6399b67fd61d23832f2e4f" + "shas": "9cbed93dd18fb5a433067f07af286fc91e37d580..2d2bda48aedbb35ebadaacf82ace9b0df85a4f4a" } ,{ "testCaseDescription": "go-slice-literals-replacement-test", @@ -260,7 +260,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "29fdb841b857fda14c6399b67fd61d23832f2e4f..9f0128a9f93aea99042f33f76a6ac5c756959f2c" + "shas": "2d2bda48aedbb35ebadaacf82ace9b0df85a4f4a..7fbf589cc2afd7e04cfe40ea0a43f595d29c315f" } ,{ "testCaseDescription": "go-slice-literals-delete-replacement-test", @@ -404,7 +404,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "9f0128a9f93aea99042f33f76a6ac5c756959f2c..777713eba10a1b4a80a2186b41cb42bfae652da8" + "shas": "7fbf589cc2afd7e04cfe40ea0a43f595d29c315f..82f42fdce01229819499fe0259f515475b325643" } ,{ "testCaseDescription": "go-slice-literals-delete-insert-test", @@ -482,7 +482,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "777713eba10a1b4a80a2186b41cb42bfae652da8..d57127d7aeb6bc75de7dbae9fda7cd75bb47f25f" + "shas": "82f42fdce01229819499fe0259f515475b325643..e2beb2e207d48d0916488297474e7ebc528a9ebb" } ,{ "testCaseDescription": "go-slice-literals-teardown-test", @@ -524,5 +524,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "d57127d7aeb6bc75de7dbae9fda7cd75bb47f25f..99d38d0dd43a990f37c709b49fa2eae7137a4acc" + "shas": "e2beb2e207d48d0916488297474e7ebc528a9ebb..ce81a7d517fc9a2808b223f5e2ec2b77fd6fad64" }] diff --git a/test/corpus/diff-summaries/go/slice-types.json b/test/corpus/diff-summaries/go/slice-types.json index 6d1283599..5af453b4c 100644 --- a/test/corpus/diff-summaries/go/slice-types.json +++ b/test/corpus/diff-summaries/go/slice-types.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "311f299ee4b5dcd8c757aaf89a1230d369bda6e3..5b990ff2106f3abbc479873635bac339a21d6afb" + "shas": "50b59edcf73e7686cbfc6db242bf00346aebcf11..d6310fb2cb6a3013e2b74fbb86ad3747cbc8c3b0" } ,{ "testCaseDescription": "go-slice-types-insert-test", @@ -97,7 +97,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "5b990ff2106f3abbc479873635bac339a21d6afb..0e862cac95a31a3480314af2809e1f175461c5fe" + "shas": "d6310fb2cb6a3013e2b74fbb86ad3747cbc8c3b0..28aecb53c4b8319c2ccc461e4dcda828d54e2519" } ,{ "testCaseDescription": "go-slice-types-replacement-test", @@ -187,7 +187,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "0e862cac95a31a3480314af2809e1f175461c5fe..35cf4e9f2a798bf438bbbed46cd73c1d9ae3cd49" + "shas": "28aecb53c4b8319c2ccc461e4dcda828d54e2519..7c99446920a5d7a179e4ad80f488390954ac9926" } ,{ "testCaseDescription": "go-slice-types-delete-replacement-test", @@ -277,7 +277,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "35cf4e9f2a798bf438bbbed46cd73c1d9ae3cd49..9e465999e8152c5cced37c02e235f8c3d9212832" + "shas": "7c99446920a5d7a179e4ad80f488390954ac9926..b3d602bfbf09eaebab6252dbafa11cf16eea486a" } ,{ "testCaseDescription": "go-slice-types-delete-insert-test", @@ -336,7 +336,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "9e465999e8152c5cced37c02e235f8c3d9212832..46775e18357ab321b7292332655630dcec7f44ec" + "shas": "b3d602bfbf09eaebab6252dbafa11cf16eea486a..c56ff2e3361eee55cbbe9c7f88a4b98bc660603b" } ,{ "testCaseDescription": "go-slice-types-teardown-test", @@ -378,5 +378,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "46775e18357ab321b7292332655630dcec7f44ec..ecc6c1cfaa7cfdb57813875656d848f4eb240af1" + "shas": "c56ff2e3361eee55cbbe9c7f88a4b98bc660603b..e7ced9b59ed0acd00138211528dda1ac5c7c084a" }] diff --git a/test/corpus/diff-summaries/go/string-literals.json b/test/corpus/diff-summaries/go/string-literals.json index d1a52c493..75fdf7d4c 100644 --- a/test/corpus/diff-summaries/go/string-literals.json +++ b/test/corpus/diff-summaries/go/string-literals.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "29b7d780794e2ee8d37771310cebb2000b677aec..286e0bd256ddfafc7c560e9c2669787b66381d46" + "shas": "1ed63b35351e352f6ae6a546bb49920585747c54..c56cc611221c01bb9287c12f7a140673e10ab90d" } ,{ "testCaseDescription": "go-string-literals-insert-test", @@ -99,7 +99,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "286e0bd256ddfafc7c560e9c2669787b66381d46..b8f816256c7413358be4f5ff760a9cd7d826b702" + "shas": "c56cc611221c01bb9287c12f7a140673e10ab90d..5c98f182bc937bb033e29f8fba6b4815154c9ddf" } ,{ "testCaseDescription": "go-string-literals-replacement-test", @@ -184,7 +184,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "b8f816256c7413358be4f5ff760a9cd7d826b702..00903da3545a103befa3655622e1b972f3da1a46" + "shas": "5c98f182bc937bb033e29f8fba6b4815154c9ddf..625fbd81d426bac45985add4c251aef9b07bdb9a" } ,{ "testCaseDescription": "go-string-literals-delete-replacement-test", @@ -269,7 +269,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "00903da3545a103befa3655622e1b972f3da1a46..c1868273a476bcafa2067beb8a0b93f46627f003" + "shas": "625fbd81d426bac45985add4c251aef9b07bdb9a..fb189b28aeac87b0e47f67f9cd4fcff3f5025568" } ,{ "testCaseDescription": "go-string-literals-delete-insert-test", @@ -330,7 +330,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "c1868273a476bcafa2067beb8a0b93f46627f003..e059052145abd6701de2673af30bfa861b2b3382" + "shas": "fb189b28aeac87b0e47f67f9cd4fcff3f5025568..6b98b0bc60654ce90e6f87db94145bc968e516b6" } ,{ "testCaseDescription": "go-string-literals-teardown-test", @@ -372,5 +372,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "e059052145abd6701de2673af30bfa861b2b3382..bd87198971225ff85fa587a26c2dd6deb8510b32" + "shas": "6b98b0bc60654ce90e6f87db94145bc968e516b6..7f89178b8db506e68863bdca31d6ed7b5ef34432" }] diff --git a/test/corpus/diff-summaries/go/struct-field-declarations.json b/test/corpus/diff-summaries/go/struct-field-declarations.json index 0b4f3a713..3847b3d6f 100644 --- a/test/corpus/diff-summaries/go/struct-field-declarations.json +++ b/test/corpus/diff-summaries/go/struct-field-declarations.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "5deef7045822271505960ed4cec253dedf122c38..62f0f3e2454b8e3a44f76f779c28deb62c42fd62" + "shas": "965eb67a3019ef8aea91e5f5a3975bd6c27ddbd5..9ee5a9f77efee88839be792650cb42006c9944db" } ,{ "testCaseDescription": "go-struct-field-declarations-insert-test", @@ -83,7 +83,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "62f0f3e2454b8e3a44f76f779c28deb62c42fd62..03c576b5debd2c48337432cb2de75b1188457088" + "shas": "9ee5a9f77efee88839be792650cb42006c9944db..dc61e6a712517a5a39433d0e53b63273a01d6fbb" } ,{ "testCaseDescription": "go-struct-field-declarations-replacement-test", @@ -139,7 +139,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "03c576b5debd2c48337432cb2de75b1188457088..b565b45f613603ee651612ec4f5015000d30e207" + "shas": "dc61e6a712517a5a39433d0e53b63273a01d6fbb..50cb546cb19607f9c8a093b477ac5d44274dff8d" } ,{ "testCaseDescription": "go-struct-field-declarations-delete-replacement-test", @@ -195,7 +195,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "b565b45f613603ee651612ec4f5015000d30e207..2276d09f9b7b1fa0729ea0fddcdfebff360c8f5d" + "shas": "50cb546cb19607f9c8a093b477ac5d44274dff8d..9c7b8ddb39b33db0564ba9e22a6e6802e14ad008" } ,{ "testCaseDescription": "go-struct-field-declarations-delete-insert-test", @@ -240,7 +240,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "2276d09f9b7b1fa0729ea0fddcdfebff360c8f5d..0e91f39b4267ac56153c02a6ce70ca1bd9e98919" + "shas": "9c7b8ddb39b33db0564ba9e22a6e6802e14ad008..38cf3544fbd1e1cfb3b4aa39964fce74939ef046" } ,{ "testCaseDescription": "go-struct-field-declarations-teardown-test", @@ -282,5 +282,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "0e91f39b4267ac56153c02a6ce70ca1bd9e98919..2ff7aeec9c5efbeaf3a7b681f718640926ca1f90" + "shas": "38cf3544fbd1e1cfb3b4aa39964fce74939ef046..d6bf5b852da48acbbdc8d627de9e645d28d7f38d" }] diff --git a/test/corpus/diff-summaries/go/struct-literals.json b/test/corpus/diff-summaries/go/struct-literals.json index c7b7c5f03..935915549 100644 --- a/test/corpus/diff-summaries/go/struct-literals.json +++ b/test/corpus/diff-summaries/go/struct-literals.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "c7c9b52a2e3477a5c5970b67af95fa2a603c8359..8d66af77430491c28641c31f14c1e81f288a825e" + "shas": "d8371152b551458e89b4e39819c41792bba80076..96eafb3baf0354f59b4e4ead7603dcb9a8c610c9" } ,{ "testCaseDescription": "go-struct-literals-insert-test", @@ -116,7 +116,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "8d66af77430491c28641c31f14c1e81f288a825e..df1830408002c6cb7789af837352777daceca83f" + "shas": "96eafb3baf0354f59b4e4ead7603dcb9a8c610c9..787d8b0d4326b990ca39ecfa787d21dacfce56ea" } ,{ "testCaseDescription": "go-struct-literals-replacement-test", @@ -286,7 +286,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "df1830408002c6cb7789af837352777daceca83f..53ce2a2659da80b01af2204645a5ecaf7c9ce648" + "shas": "787d8b0d4326b990ca39ecfa787d21dacfce56ea..b1e1747bfe7b356b150181c65accb131af2adc1a" } ,{ "testCaseDescription": "go-struct-literals-delete-replacement-test", @@ -456,7 +456,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "53ce2a2659da80b01af2204645a5ecaf7c9ce648..0dfb212f1383ebf4bd18fc18f884813675a16291" + "shas": "b1e1747bfe7b356b150181c65accb131af2adc1a..9062d2928c093b9470596646a5802e7375970a2e" } ,{ "testCaseDescription": "go-struct-literals-delete-insert-test", @@ -534,7 +534,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "0dfb212f1383ebf4bd18fc18f884813675a16291..2121bdbc46ad88c104fc3e30aa7b161c4989b86c" + "shas": "9062d2928c093b9470596646a5802e7375970a2e..e3dccb9f0e80e1d4dd95ad8f77fc1f3d70da1c56" } ,{ "testCaseDescription": "go-struct-literals-teardown-test", @@ -576,5 +576,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "2121bdbc46ad88c104fc3e30aa7b161c4989b86c..c6c8175bf350bd238c29e1300d79724e6acf5d8f" + "shas": "e3dccb9f0e80e1d4dd95ad8f77fc1f3d70da1c56..80bb1d299fa3720eb3cdcef8c428f696467572a8" }] diff --git a/test/corpus/diff-summaries/go/struct-types.json b/test/corpus/diff-summaries/go/struct-types.json index 3264dd432..0c95c086d 100644 --- a/test/corpus/diff-summaries/go/struct-types.json +++ b/test/corpus/diff-summaries/go/struct-types.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "ecc6c1cfaa7cfdb57813875656d848f4eb240af1..857275968bd7cbc1fe5e4e289f89f6663267f0e4" + "shas": "e7ced9b59ed0acd00138211528dda1ac5c7c084a..b52397c136bdd9b41868a929f0d416ee1c6abf97" } ,{ "testCaseDescription": "go-struct-types-insert-test", @@ -134,7 +134,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "857275968bd7cbc1fe5e4e289f89f6663267f0e4..20cee4164a3674eca7823cdda7b7f1cc47507e97" + "shas": "b52397c136bdd9b41868a929f0d416ee1c6abf97..3ec9ffbcf213c0e967d076756419ac146619b5cd" } ,{ "testCaseDescription": "go-struct-types-replacement-test", @@ -280,7 +280,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "20cee4164a3674eca7823cdda7b7f1cc47507e97..4f5bba08d7d526cc668661f48c8394d668da0b15" + "shas": "3ec9ffbcf213c0e967d076756419ac146619b5cd..895c808dc6465df7bf6059e4e773bb901b678834" } ,{ "testCaseDescription": "go-struct-types-delete-replacement-test", @@ -426,7 +426,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "4f5bba08d7d526cc668661f48c8394d668da0b15..accfa3bdac2a03b86dd69edb6f2eae0ad0ac01ee" + "shas": "895c808dc6465df7bf6059e4e773bb901b678834..8794ab0649ceafe5f2b499a7313b43a94ece3a30" } ,{ "testCaseDescription": "go-struct-types-delete-insert-test", @@ -522,7 +522,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "accfa3bdac2a03b86dd69edb6f2eae0ad0ac01ee..729aa3b076058bccf9ae611776a8a83f5f0c268f" + "shas": "8794ab0649ceafe5f2b499a7313b43a94ece3a30..604abe90628f68bfb8810ae9d7e6ea0d76547972" } ,{ "testCaseDescription": "go-struct-types-teardown-test", @@ -564,5 +564,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "729aa3b076058bccf9ae611776a8a83f5f0c268f..8b9132202584b9cb77727d35fc5933c26eca6b3c" + "shas": "604abe90628f68bfb8810ae9d7e6ea0d76547972..80f368e3e339a6f6cd13071fff11a504b589ebaa" }] diff --git a/test/corpus/diff-summaries/go/switch-statements.json b/test/corpus/diff-summaries/go/switch-statements.json index 24a3e6118..b12dcdc1e 100644 --- a/test/corpus/diff-summaries/go/switch-statements.json +++ b/test/corpus/diff-summaries/go/switch-statements.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "f5fe5786c0b546d3a5a224d7b5875f31f57db459..97371be1b990d91b2ec115a8b644e29f3e8b87a5" + "shas": "6e1ebffb2ad214b1c4a7ab7a8efed9b6a25e8470..c86fa331f18f6196397e3ac03e3751626b49f22a" } ,{ "testCaseDescription": "go-switch-statements-insert-test", @@ -84,7 +84,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "97371be1b990d91b2ec115a8b644e29f3e8b87a5..49aad18e625ab33b2ed01a02b011d4343ba7e395" + "shas": "c86fa331f18f6196397e3ac03e3751626b49f22a..fafd2357a4acfa84a9f5b4e59953c2e5ee9bd666" } ,{ "testCaseDescription": "go-switch-statements-replacement-test", @@ -279,7 +279,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "49aad18e625ab33b2ed01a02b011d4343ba7e395..3353e64f25a4b4a3b27eabe36f289b7ed2eefa85" + "shas": "fafd2357a4acfa84a9f5b4e59953c2e5ee9bd666..59e626e9c3a21904b5361949d71bcaa64083a9e8" } ,{ "testCaseDescription": "go-switch-statements-delete-replacement-test", @@ -474,7 +474,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "3353e64f25a4b4a3b27eabe36f289b7ed2eefa85..34bc509ec97b06440974346db573df7f8e93e7e0" + "shas": "59e626e9c3a21904b5361949d71bcaa64083a9e8..977098a7b050b573c879012ec716ae25e7009039" } ,{ "testCaseDescription": "go-switch-statements-delete-insert-test", @@ -520,7 +520,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "34bc509ec97b06440974346db573df7f8e93e7e0..c292cdb6883c5306c7f7f46268333b01851ecdd8" + "shas": "977098a7b050b573c879012ec716ae25e7009039..810ba951cb71bf751f77c956ce2666316d21149f" } ,{ "testCaseDescription": "go-switch-statements-teardown-test", @@ -562,5 +562,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "c292cdb6883c5306c7f7f46268333b01851ecdd8..846045886cec5887a42533f48de771ee58d766a0" + "shas": "810ba951cb71bf751f77c956ce2666316d21149f..4c5c96874eeb7170044dd451dcc92cb8f852ec31" }] diff --git a/test/corpus/diff-summaries/go/type-assertion-expressions.json b/test/corpus/diff-summaries/go/type-assertion-expressions.json index 268df2f8d..ea773ab43 100644 --- a/test/corpus/diff-summaries/go/type-assertion-expressions.json +++ b/test/corpus/diff-summaries/go/type-assertion-expressions.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "e4c6a9b9a1f1cbf3dd7a4ce717333fb847b7fbac..494715cafe3834303fecb34caa2592d77712ab31" + "shas": "668c02674516194c0623120c957d1be93af6cde5..a41667e052309ce89c4f555ccef62ea1f8765762" } ,{ "testCaseDescription": "go-type-assertion-expressions-insert-test", @@ -81,7 +81,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "494715cafe3834303fecb34caa2592d77712ab31..57a6ec4effeb9f05a122238d323ce7dcd69df07f" + "shas": "a41667e052309ce89c4f555ccef62ea1f8765762..41c4503413f54d4de3eecfe0dda21cec03dd0bf4" } ,{ "testCaseDescription": "go-type-assertion-expressions-replacement-test", @@ -163,7 +163,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "57a6ec4effeb9f05a122238d323ce7dcd69df07f..0316d3acd42da2101c8d933617d7eeb30eee52d5" + "shas": "41c4503413f54d4de3eecfe0dda21cec03dd0bf4..7da6d7ad5b540a8e4d65b29ee231d9243b59245e" } ,{ "testCaseDescription": "go-type-assertion-expressions-delete-replacement-test", @@ -245,7 +245,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "0316d3acd42da2101c8d933617d7eeb30eee52d5..f7e6434ce30a5b34a67cfe802722b1a51fd24052" + "shas": "7da6d7ad5b540a8e4d65b29ee231d9243b59245e..961545675dd701b933d6dd097dbec5c972f857a5" } ,{ "testCaseDescription": "go-type-assertion-expressions-delete-insert-test", @@ -288,7 +288,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "f7e6434ce30a5b34a67cfe802722b1a51fd24052..b4e4fd587390ce7fd5b4b6c95ac01261eb97c17c" + "shas": "961545675dd701b933d6dd097dbec5c972f857a5..bc66239ed573f0367fd6330bd280f89c82fa4f0a" } ,{ "testCaseDescription": "go-type-assertion-expressions-teardown-test", @@ -330,5 +330,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "b4e4fd587390ce7fd5b4b6c95ac01261eb97c17c..d47123e6fd9c69b12607e0236be45289b764ce8b" + "shas": "bc66239ed573f0367fd6330bd280f89c82fa4f0a..8cdc2760c296eb120ea2b2e67102c869542473e8" }] diff --git a/test/corpus/diff-summaries/go/type-conversion-expressions.json b/test/corpus/diff-summaries/go/type-conversion-expressions.json index 07282a8e9..f91cc9903 100644 --- a/test/corpus/diff-summaries/go/type-conversion-expressions.json +++ b/test/corpus/diff-summaries/go/type-conversion-expressions.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "d47123e6fd9c69b12607e0236be45289b764ce8b..2295a64ba4b51a33fb10e4f15334c064fc693f38" + "shas": "8cdc2760c296eb120ea2b2e67102c869542473e8..060d556effe82691e9785813855a9ecac4c3d447" } ,{ "testCaseDescription": "go-type-conversion-expressions-insert-test", @@ -129,7 +129,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "2295a64ba4b51a33fb10e4f15334c064fc693f38..ea6a60af4f877c1ff46a539776d2893d1268c4a5" + "shas": "060d556effe82691e9785813855a9ecac4c3d447..dba7ae9fc8a9a4600aa19a679d5bc6590832a890" } ,{ "testCaseDescription": "go-type-conversion-expressions-replacement-test", @@ -487,7 +487,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "ea6a60af4f877c1ff46a539776d2893d1268c4a5..726d84b24c74206d9ba8612e5595e5c1d34c8234" + "shas": "dba7ae9fc8a9a4600aa19a679d5bc6590832a890..a5265cf460047217db17509db12cb7f501c39614" } ,{ "testCaseDescription": "go-type-conversion-expressions-delete-replacement-test", @@ -845,7 +845,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "726d84b24c74206d9ba8612e5595e5c1d34c8234..9138ddb9e7c8d3be78dd7cd750ceb0f307a30065" + "shas": "a5265cf460047217db17509db12cb7f501c39614..9bafa4b73c30416434a72d73bcf0c361015e479e" } ,{ "testCaseDescription": "go-type-conversion-expressions-delete-insert-test", @@ -936,7 +936,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "9138ddb9e7c8d3be78dd7cd750ceb0f307a30065..d5e1f18c7c2feeee39275f304cacd1575d22ac1a" + "shas": "9bafa4b73c30416434a72d73bcf0c361015e479e..cc6f207a8227743f511bd5cfa2c09ea9890641e3" } ,{ "testCaseDescription": "go-type-conversion-expressions-teardown-test", @@ -978,5 +978,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "d5e1f18c7c2feeee39275f304cacd1575d22ac1a..17539bd3043b11a2ee479a191c1a1b3c10116161" + "shas": "cc6f207a8227743f511bd5cfa2c09ea9890641e3..bee7c2fa1efb34386277ca0b38c74178200faf54" }] diff --git a/test/corpus/diff-summaries/go/type-declarations.json b/test/corpus/diff-summaries/go/type-declarations.json index d7f093a51..f03b9c367 100644 --- a/test/corpus/diff-summaries/go/type-declarations.json +++ b/test/corpus/diff-summaries/go/type-declarations.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "96c8359530072c03347732bdcc542a967aa6d2b2..0a7a0ec697af683bb053af5d6f194aefc91e59c9" + "shas": "7193c3cab8046a6b2b57792ecbef7f2ad5f318b7..997e04ad887b3f63f5916a484d39b82b21e0a21e" } ,{ "testCaseDescription": "go-type-declarations-insert-test", @@ -115,7 +115,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "0a7a0ec697af683bb053af5d6f194aefc91e59c9..f0c1048d3039c68c0dc43d49181462414c3f2977" + "shas": "997e04ad887b3f63f5916a484d39b82b21e0a21e..226a0ad42c1df879c6765ffd98a880b49f4286f1" } ,{ "testCaseDescription": "go-type-declarations-replacement-test", @@ -311,7 +311,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "f0c1048d3039c68c0dc43d49181462414c3f2977..894fe5946c95f6d2a2e54b6dbba5e478fd854390" + "shas": "226a0ad42c1df879c6765ffd98a880b49f4286f1..b5068ea221a9731fae1c7d524ca4dd9821bc7b3d" } ,{ "testCaseDescription": "go-type-declarations-delete-replacement-test", @@ -507,7 +507,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "894fe5946c95f6d2a2e54b6dbba5e478fd854390..ef9f3f89f2fc4ff7971c64a35be17a3f29ec483b" + "shas": "b5068ea221a9731fae1c7d524ca4dd9821bc7b3d..5e5e473cd63105a7795c6570d5d73e7bbd1280ea" } ,{ "testCaseDescription": "go-type-declarations-delete-insert-test", @@ -584,7 +584,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "ef9f3f89f2fc4ff7971c64a35be17a3f29ec483b..c0475d256af46752264401c96e960fb4d1d6c00a" + "shas": "5e5e473cd63105a7795c6570d5d73e7bbd1280ea..0ea75c3e64c69c71df42e9afad3038188c8fa020" } ,{ "testCaseDescription": "go-type-declarations-teardown-test", @@ -626,5 +626,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "c0475d256af46752264401c96e960fb4d1d6c00a..358b31625272f975d35624a18f8337974c7a142d" + "shas": "0ea75c3e64c69c71df42e9afad3038188c8fa020..cbaa77e08635ce41d412574590df4152cae3e4bc" }] diff --git a/test/corpus/diff-summaries/go/type-switch-statements.json b/test/corpus/diff-summaries/go/type-switch-statements.json index c0ddd2f08..3883fce83 100644 --- a/test/corpus/diff-summaries/go/type-switch-statements.json +++ b/test/corpus/diff-summaries/go/type-switch-statements.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "846045886cec5887a42533f48de771ee58d766a0..4ff1c192d8ce792d43135c481bc6ac2038e9a75b" + "shas": "4c5c96874eeb7170044dd451dcc92cb8f852ec31..da66ddde911a1d26b2d8d388027db09d8cfaccaf" } ,{ "testCaseDescription": "go-type-switch-statements-insert-test", @@ -86,7 +86,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "4ff1c192d8ce792d43135c481bc6ac2038e9a75b..4c5713dc076428d72a0468a2016d850ec4da21ff" + "shas": "da66ddde911a1d26b2d8d388027db09d8cfaccaf..c2416cc9d2b6aa03bb39c797332c3a2dbbb3aadf" } ,{ "testCaseDescription": "go-type-switch-statements-replacement-test", @@ -143,7 +143,7 @@ " case *Dog:" ], "gitDir": "test/corpus/repos/go", - "shas": "4c5713dc076428d72a0468a2016d850ec4da21ff..bb88efe8967423243277e2c5baf1ffa430e98601" + "shas": "c2416cc9d2b6aa03bb39c797332c3a2dbbb3aadf..8f2aea4bcb8da8f7c64a86bc338497b0e7fc69c5" } ,{ "testCaseDescription": "go-type-switch-statements-delete-replacement-test", @@ -200,7 +200,7 @@ " case *Dog:" ], "gitDir": "test/corpus/repos/go", - "shas": "bb88efe8967423243277e2c5baf1ffa430e98601..3bec68c0b122bbb4ea1dbbf39abac06c3ae0ad07" + "shas": "8f2aea4bcb8da8f7c64a86bc338497b0e7fc69c5..a7781525b33688effa3e79836f8902782f74c427" } ,{ "testCaseDescription": "go-type-switch-statements-delete-insert-test", @@ -248,7 +248,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "3bec68c0b122bbb4ea1dbbf39abac06c3ae0ad07..9497bebe3b0e4c555d273a7c99f0f0937a9c158b" + "shas": "a7781525b33688effa3e79836f8902782f74c427..5bd6c81f2a297de8cdf8f186d8b834e893c1f78f" } ,{ "testCaseDescription": "go-type-switch-statements-teardown-test", @@ -290,5 +290,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "9497bebe3b0e4c555d273a7c99f0f0937a9c158b..5ef8bc0eb6c5afcf5b71c3773b50aacebffe32d5" + "shas": "5bd6c81f2a297de8cdf8f186d8b834e893c1f78f..a5c82828c92a590f5a64d58dd4a626b294a2c565" }] diff --git a/test/corpus/diff-summaries/go/unary-expressions.json b/test/corpus/diff-summaries/go/unary-expressions.json index e09661b21..0fee2b567 100644 --- a/test/corpus/diff-summaries/go/unary-expressions.json +++ b/test/corpus/diff-summaries/go/unary-expressions.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "17539bd3043b11a2ee479a191c1a1b3c10116161..95d724a0a09fadc48ea2890dee7d75ac5b9aa7af" + "shas": "bee7c2fa1efb34386277ca0b38c74178200faf54..ff56fcf05a07472f07956bf2d2b259658ae68b0b" } ,{ "testCaseDescription": "go-unary-expressions-insert-test", @@ -97,7 +97,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "95d724a0a09fadc48ea2890dee7d75ac5b9aa7af..a1314a7b82e8afb936c41bc2b1f8f7f6dea61f0a" + "shas": "ff56fcf05a07472f07956bf2d2b259658ae68b0b..1a5ce5871077dfe3c63a9af84f81b078f35d8c70" } ,{ "testCaseDescription": "go-unary-expressions-replacement-test", @@ -181,7 +181,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "a1314a7b82e8afb936c41bc2b1f8f7f6dea61f0a..fc3fe7fe5250957e38223499d73968baa410b221" + "shas": "1a5ce5871077dfe3c63a9af84f81b078f35d8c70..8650a686e3cce038628c50e77b00a5ff7943bfd8" } ,{ "testCaseDescription": "go-unary-expressions-delete-replacement-test", @@ -265,7 +265,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "fc3fe7fe5250957e38223499d73968baa410b221..8432ee8db9ae0dc6e5b596495e564e1ead822991" + "shas": "8650a686e3cce038628c50e77b00a5ff7943bfd8..91bf29df3a0efe16134c69b6a8af7c63a7a62541" } ,{ "testCaseDescription": "go-unary-expressions-delete-insert-test", @@ -324,7 +324,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "8432ee8db9ae0dc6e5b596495e564e1ead822991..22c7306ff2ebc9176ca41b89ca4020751157e748" + "shas": "91bf29df3a0efe16134c69b6a8af7c63a7a62541..b338ed0baff81143d1d5d24cd717b936335955b7" } ,{ "testCaseDescription": "go-unary-expressions-teardown-test", @@ -366,5 +366,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "22c7306ff2ebc9176ca41b89ca4020751157e748..2f519cce92d26f6a9c43d21d062dc065afef2bbb" + "shas": "b338ed0baff81143d1d5d24cd717b936335955b7..bd47547e797a6e76a34e259077fc32181d6667f5" }] diff --git a/test/corpus/diff-summaries/go/var-declarations-with-no-expressions.json b/test/corpus/diff-summaries/go/var-declarations-with-no-expressions.json index de1158618..95d56a29b 100644 --- a/test/corpus/diff-summaries/go/var-declarations-with-no-expressions.json +++ b/test/corpus/diff-summaries/go/var-declarations-with-no-expressions.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "6f294740ad6a127c66874266a39c55d6f279067a..28fd7c1aac60275cc6e07250ce2bf9f7f2f34af8" + "shas": "beaafb3d07a00910a1446a55ba991cc61f22aa65..f23f1b776ac8b43fcb4ffbd5ff576564a0e407f8" } ,{ "testCaseDescription": "go-var-declarations-with-no-expressions-insert-test", @@ -112,7 +112,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "28fd7c1aac60275cc6e07250ce2bf9f7f2f34af8..94444d86a80c26e413cef05550efcfc2e5903dac" + "shas": "f23f1b776ac8b43fcb4ffbd5ff576564a0e407f8..ab684a45678699db4bf01cc3613b936f7b785c22" } ,{ "testCaseDescription": "go-var-declarations-with-no-expressions-replacement-test", @@ -223,7 +223,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "94444d86a80c26e413cef05550efcfc2e5903dac..d18dd508ad93803291e3fef6826b53a24261361c" + "shas": "ab684a45678699db4bf01cc3613b936f7b785c22..a6ef8521dd858d3ada22ca793179985b651835c1" } ,{ "testCaseDescription": "go-var-declarations-with-no-expressions-delete-replacement-test", @@ -334,7 +334,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "d18dd508ad93803291e3fef6826b53a24261361c..cddc950eb862c4f5f4ef826268ce03055ef4941e" + "shas": "a6ef8521dd858d3ada22ca793179985b651835c1..8ad019fda61a53d0fbc5438d5cd29ad3c8182152" } ,{ "testCaseDescription": "go-var-declarations-with-no-expressions-delete-insert-test", @@ -408,7 +408,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "cddc950eb862c4f5f4ef826268ce03055ef4941e..fca013c75804ecc36f13bf1bccee63f21c15119d" + "shas": "8ad019fda61a53d0fbc5438d5cd29ad3c8182152..d7aa7780028d8b79dcd30f425239703123a19c15" } ,{ "testCaseDescription": "go-var-declarations-with-no-expressions-teardown-test", @@ -450,5 +450,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "fca013c75804ecc36f13bf1bccee63f21c15119d..784a2032a8b3f1926b4874446b0dc9672ace15be" + "shas": "d7aa7780028d8b79dcd30f425239703123a19c15..e75c5ac355ded95806073c70e83be9e9b3634163" }] diff --git a/test/corpus/diff-summaries/go/var-declarations-with-types.json b/test/corpus/diff-summaries/go/var-declarations-with-types.json index d2821ef48..994dcc2c0 100644 --- a/test/corpus/diff-summaries/go/var-declarations-with-types.json +++ b/test/corpus/diff-summaries/go/var-declarations-with-types.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "cf089a91e3b3b63ace66353bbce1bc27a3607561..f225c3b9f2b833487a893a9f56e607fdf52bad2b" + "shas": "166ab1d1dfa2b18943f9d328cc47a34b4e4288fa..c72c09d81f43fbcbe4836588ced1f3a4fb63731f" } ,{ "testCaseDescription": "go-var-declarations-with-types-insert-test", @@ -112,7 +112,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "f225c3b9f2b833487a893a9f56e607fdf52bad2b..c00515e4efbd5f7d6912816d717ce1bfcb670bd0" + "shas": "c72c09d81f43fbcbe4836588ced1f3a4fb63731f..46f18357b783f8a73ac8112e238e667ff4bc1378" } ,{ "testCaseDescription": "go-var-declarations-with-types-replacement-test", @@ -223,7 +223,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "c00515e4efbd5f7d6912816d717ce1bfcb670bd0..8fb77729dcda7f53596574e17001bb7ec2d20396" + "shas": "46f18357b783f8a73ac8112e238e667ff4bc1378..e7e4dfb126d1a6b2fb2bf72dd548beda84ffbfb4" } ,{ "testCaseDescription": "go-var-declarations-with-types-delete-replacement-test", @@ -334,7 +334,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "8fb77729dcda7f53596574e17001bb7ec2d20396..21f55db94ef8f793a90580e51238d359719777c5" + "shas": "e7e4dfb126d1a6b2fb2bf72dd548beda84ffbfb4..82cfefb733a9091542c79228bb43a5cbcc284228" } ,{ "testCaseDescription": "go-var-declarations-with-types-delete-insert-test", @@ -408,7 +408,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "21f55db94ef8f793a90580e51238d359719777c5..03a9cd454081a8e6645d83610f7d4c2f4a4c967f" + "shas": "82cfefb733a9091542c79228bb43a5cbcc284228..9d2bb849a481840629ed6bcb2a17afc5e8e49a50" } ,{ "testCaseDescription": "go-var-declarations-with-types-teardown-test", @@ -450,5 +450,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "03a9cd454081a8e6645d83610f7d4c2f4a4c967f..6f294740ad6a127c66874266a39c55d6f279067a" + "shas": "9d2bb849a481840629ed6bcb2a17afc5e8e49a50..beaafb3d07a00910a1446a55ba991cc61f22aa65" }] diff --git a/test/corpus/diff-summaries/go/var-declarations-without-types.json b/test/corpus/diff-summaries/go/var-declarations-without-types.json index 845ce4a2c..ac02c255a 100644 --- a/test/corpus/diff-summaries/go/var-declarations-without-types.json +++ b/test/corpus/diff-summaries/go/var-declarations-without-types.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "0d1fc5e6274224d81271e5fc10b3dcd839d2c59e..4f349ef4ddc8d1d7deac3ed064c34755b0f4ed44" + "shas": "d7c7c21bb12a3b1d9bc3d7ac212a3bdada677d71..a5335e2199db7d1bb83520b275684bccb917d0ec" } ,{ "testCaseDescription": "go-var-declarations-without-types-insert-test", @@ -81,7 +81,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "4f349ef4ddc8d1d7deac3ed064c34755b0f4ed44..1d981614331bf437a9bb4f3a578dbdb8d3bb3c45" + "shas": "a5335e2199db7d1bb83520b275684bccb917d0ec..433d75dc1cf7583ffafeaddfe1742fe6c5024680" } ,{ "testCaseDescription": "go-var-declarations-without-types-replacement-test", @@ -178,7 +178,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "1d981614331bf437a9bb4f3a578dbdb8d3bb3c45..7f5e7e4333182d20de657082c23e1853052b359f" + "shas": "433d75dc1cf7583ffafeaddfe1742fe6c5024680..ff82d77c3bc0e5e12d28e5f0f9c19ff110e613f9" } ,{ "testCaseDescription": "go-var-declarations-without-types-delete-replacement-test", @@ -275,7 +275,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "7f5e7e4333182d20de657082c23e1853052b359f..3d01fe832a3e6572514a45abe30ead81377a6e30" + "shas": "ff82d77c3bc0e5e12d28e5f0f9c19ff110e613f9..8eea9984326d8bd0bda50b717d44cab9f6ff80cc" } ,{ "testCaseDescription": "go-var-declarations-without-types-delete-insert-test", @@ -318,7 +318,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "3d01fe832a3e6572514a45abe30ead81377a6e30..ecb8c963c2e5f9ac0cf79f8f75fd35a9df5edff3" + "shas": "8eea9984326d8bd0bda50b717d44cab9f6ff80cc..87768b01d903d82a18843fe351755f1eaae28448" } ,{ "testCaseDescription": "go-var-declarations-without-types-teardown-test", @@ -360,5 +360,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "ecb8c963c2e5f9ac0cf79f8f75fd35a9df5edff3..cf089a91e3b3b63ace66353bbce1bc27a3607561" + "shas": "87768b01d903d82a18843fe351755f1eaae28448..166ab1d1dfa2b18943f9d328cc47a34b4e4288fa" }] diff --git a/test/corpus/diff-summaries/go/variadic-function-declarations.json b/test/corpus/diff-summaries/go/variadic-function-declarations.json index 612a4576a..31153ff8f 100644 --- a/test/corpus/diff-summaries/go/variadic-function-declarations.json +++ b/test/corpus/diff-summaries/go/variadic-function-declarations.json @@ -38,7 +38,7 @@ "+}" ], "gitDir": "test/corpus/repos/go", - "shas": "38625d07b620985fecbe285c34631bd03093d3f1..1a1ef7f3a48dae788491ddbc01fd99b0beea911a" + "shas": "6eefcab8de06ce411a43f0fe718199942aa7d74b..cbc15452a6708013f0559031ebb0190234de7422" } ,{ "testCaseDescription": "go-variadic-function-declarations-insert-test", @@ -161,7 +161,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "1a1ef7f3a48dae788491ddbc01fd99b0beea911a..d723621053ed6e52f1cadf57aa69a960e65ed18b" + "shas": "cbc15452a6708013f0559031ebb0190234de7422..b5a661d6c9c6eda94de5c3e4bf688ce16f57692a" } ,{ "testCaseDescription": "go-variadic-function-declarations-replacement-test", @@ -274,7 +274,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "d723621053ed6e52f1cadf57aa69a960e65ed18b..ea6e9c4bab2c724c3404b58da92be55cfdbaac59" + "shas": "b5a661d6c9c6eda94de5c3e4bf688ce16f57692a..49205166c96eb0c07161f0e204911499761b30bc" } ,{ "testCaseDescription": "go-variadic-function-declarations-delete-replacement-test", @@ -387,7 +387,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "ea6e9c4bab2c724c3404b58da92be55cfdbaac59..2e724b51b58479e3a5c18adec03c2d3432b9a294" + "shas": "49205166c96eb0c07161f0e204911499761b30bc..400b767878ef457aa783e1fe6d9448a474322df9" } ,{ "testCaseDescription": "go-variadic-function-declarations-delete-insert-test", @@ -510,7 +510,7 @@ " }" ], "gitDir": "test/corpus/repos/go", - "shas": "2e724b51b58479e3a5c18adec03c2d3432b9a294..28dcb81132bc5030b250aa5d4b2cf1ca8ddf7959" + "shas": "400b767878ef457aa783e1fe6d9448a474322df9..cdcea7ca79996d80a7294a25aaafc60468b769ae" } ,{ "testCaseDescription": "go-variadic-function-declarations-teardown-test", @@ -552,5 +552,5 @@ "-}" ], "gitDir": "test/corpus/repos/go", - "shas": "28dcb81132bc5030b250aa5d4b2cf1ca8ddf7959..ab4793c039457a689359c3fb317a49df66dfcae9" + "shas": "cdcea7ca79996d80a7294a25aaafc60468b769ae..2e4178577ebab07e2229a6846523de7a1a01d863" }] diff --git a/test/corpus/repos/go b/test/corpus/repos/go index cabeb4be9..13e9de620 160000 --- a/test/corpus/repos/go +++ b/test/corpus/repos/go @@ -1 +1 @@ -Subproject commit cabeb4be978509ff8b604c14a85f64a96314cd7a +Subproject commit 13e9de620f0e981a263aa8306692c8e3b7bae8a9