From 3a5c30a581e2b3863889ae68ac95d96c48901faf Mon Sep 17 00:00:00 2001 From: Dmitriy Novozhilov Date: Wed, 11 Mar 2020 12:08:49 +0300 Subject: [PATCH] [FIR] Remove `ortho` splines mode from CFG dump --- .../kotlin/fir/resolve/dfa/cfg/ControlFlowGraphRenderer.kt | 2 +- compiler/fir/resolve/testData/resolve/cfg/binaryOperations.dot | 2 +- .../resolve/testData/resolve/cfg/booleanOperatorsWithConsts.dot | 2 +- compiler/fir/resolve/testData/resolve/cfg/complex.dot | 2 +- compiler/fir/resolve/testData/resolve/cfg/emptyWhen.dot | 2 +- compiler/fir/resolve/testData/resolve/cfg/initBlock.dot | 2 +- .../resolve/testData/resolve/cfg/initBlockAndInPlaceLambda.dot | 2 +- compiler/fir/resolve/testData/resolve/cfg/jumps.dot | 2 +- .../fir/resolve/testData/resolve/cfg/lambdaAsReturnOfLambda.dot | 2 +- compiler/fir/resolve/testData/resolve/cfg/lambdas.dot | 2 +- compiler/fir/resolve/testData/resolve/cfg/loops.dot | 2 +- compiler/fir/resolve/testData/resolve/cfg/postponedLambdas.dot | 2 +- .../resolve/testData/resolve/cfg/propertiesAndInitBlocks.dot | 2 +- .../fir/resolve/testData/resolve/cfg/returnValuesFromLambda.dot | 2 +- compiler/fir/resolve/testData/resolve/cfg/safeCalls.dot | 2 +- compiler/fir/resolve/testData/resolve/cfg/simple.dot | 2 +- compiler/fir/resolve/testData/resolve/cfg/tryCatch.dot | 2 +- compiler/fir/resolve/testData/resolve/cfg/when.dot | 2 +- .../fir/resolve/testData/resolve/exhaustiveWhenAndDNNType.dot | 2 +- compiler/fir/resolve/testData/resolve/smartcasts/bangbang.dot | 2 +- .../testData/resolve/smartcasts/booleans/booleanOperators.dot | 2 +- .../testData/resolve/smartcasts/booleans/equalsToBoolean.dot | 2 +- .../resolve/smartcasts/booleans/jumpFromRhsOfOperator.dot | 2 +- .../resolve/smartcasts/boundSmartcasts/boundSmartcasts.dot | 2 +- .../smartcasts/boundSmartcasts/boundSmartcastsInBranches.dot | 2 +- .../resolve/smartcasts/boundSmartcasts/functionCallBound.dot | 2 +- compiler/fir/resolve/testData/resolve/smartcasts/casts.dot | 2 +- .../testData/resolve/smartcasts/controlStructures/elvis.dot | 2 +- .../testData/resolve/smartcasts/controlStructures/returns.dot | 2 +- .../testData/resolve/smartcasts/controlStructures/simpleIf.dot | 2 +- .../smartcasts/controlStructures/smartcastFromArgument.dot | 2 +- .../testData/resolve/smartcasts/controlStructures/when.dot | 2 +- .../resolve/testData/resolve/smartcasts/equalsAndIdentity.dot | 2 +- .../testData/resolve/smartcasts/lambdas/inPlaceLambdas.dot | 2 +- .../testData/resolve/smartcasts/lambdas/smartcastOnLambda.dot | 2 +- .../resolve/smartcasts/loops/dataFlowInfoFromWhileCondition.dot | 2 +- .../resolve/testData/resolve/smartcasts/loops/endlessLoops.dot | 2 +- .../fir/resolve/testData/resolve/smartcasts/multipleCasts.dot | 2 +- .../fir/resolve/testData/resolve/smartcasts/nullability.dot | 2 +- .../smartcasts/receivers/implicitReceiverAsWhenSubject.dot | 2 +- .../testData/resolve/smartcasts/receivers/implicitReceivers.dot | 2 +- .../resolve/smartcasts/receivers/thisOfExtensionProperty.dot | 2 +- .../testData/resolve/smartcasts/safeCalls/assignSafeCall.dot | 2 +- .../resolve/smartcasts/safeCalls/safeCallAndEqualityToBool.dot | 2 +- .../resolve/testData/resolve/smartcasts/safeCalls/safeCalls.dot | 2 +- .../fir/resolve/testData/resolve/smartcasts/smartCastInInit.dot | 2 +- .../resolve/testData/resolve/smartcasts/smartcastToNothing.dot | 2 +- .../testData/resolve/smartcasts/stability/overridenOpenVal.dot | 2 +- .../testData/resolve/smartcasts/variables/delayedAssignment.dot | 2 +- .../resolve/smartcasts/variables/smartcastAfterReassignment.dot | 2 +- .../testData/resolveWithStdlib/contracts/callsInPlace.dot | 2 +- .../testData/resolveWithStdlib/contracts/conditionalEffects.dot | 2 +- .../resolveWithStdlib/delegates/delegateWithAnonymousObject.dot | 2 +- .../resolveWithStdlib/smartcasts/tryWithLambdaInside.dot | 2 +- 54 files changed, 54 insertions(+), 54 deletions(-) diff --git a/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/dfa/cfg/ControlFlowGraphRenderer.kt b/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/dfa/cfg/ControlFlowGraphRenderer.kt index 8247beca432..e5b73718fad 100644 --- a/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/dfa/cfg/ControlFlowGraphRenderer.kt +++ b/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/dfa/cfg/ControlFlowGraphRenderer.kt @@ -47,7 +47,7 @@ class FirControlFlowGraphRenderVisitor( printer .println("digraph ${file.name.replace(".", "_")} {") .pushIndent() - .println("graph [splines=ortho nodesep=3]") + .println("graph [nodesep=3]") .println("node [shape=box penwidth=2]") .println("edge [penwidth=2]") .println() diff --git a/compiler/fir/resolve/testData/resolve/cfg/binaryOperations.dot b/compiler/fir/resolve/testData/resolve/cfg/binaryOperations.dot index e8be9c237ce..aa9eda59a31 100644 --- a/compiler/fir/resolve/testData/resolve/cfg/binaryOperations.dot +++ b/compiler/fir/resolve/testData/resolve/cfg/binaryOperations.dot @@ -1,5 +1,5 @@ digraph binaryOperations_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/cfg/booleanOperatorsWithConsts.dot b/compiler/fir/resolve/testData/resolve/cfg/booleanOperatorsWithConsts.dot index ece191a2c1a..6d69381b216 100644 --- a/compiler/fir/resolve/testData/resolve/cfg/booleanOperatorsWithConsts.dot +++ b/compiler/fir/resolve/testData/resolve/cfg/booleanOperatorsWithConsts.dot @@ -1,5 +1,5 @@ digraph booleanOperatorsWithConsts_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/cfg/complex.dot b/compiler/fir/resolve/testData/resolve/cfg/complex.dot index 56d68612d84..db4e5bc94b8 100644 --- a/compiler/fir/resolve/testData/resolve/cfg/complex.dot +++ b/compiler/fir/resolve/testData/resolve/cfg/complex.dot @@ -1,5 +1,5 @@ digraph complex_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/cfg/emptyWhen.dot b/compiler/fir/resolve/testData/resolve/cfg/emptyWhen.dot index e8599c2cf39..613bd010684 100644 --- a/compiler/fir/resolve/testData/resolve/cfg/emptyWhen.dot +++ b/compiler/fir/resolve/testData/resolve/cfg/emptyWhen.dot @@ -1,5 +1,5 @@ digraph emptyWhen_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/cfg/initBlock.dot b/compiler/fir/resolve/testData/resolve/cfg/initBlock.dot index 6dcaa4ca9ce..540658dc9e3 100644 --- a/compiler/fir/resolve/testData/resolve/cfg/initBlock.dot +++ b/compiler/fir/resolve/testData/resolve/cfg/initBlock.dot @@ -1,5 +1,5 @@ digraph initBlock_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/cfg/initBlockAndInPlaceLambda.dot b/compiler/fir/resolve/testData/resolve/cfg/initBlockAndInPlaceLambda.dot index 8acc243d53f..5dab1faa8ff 100644 --- a/compiler/fir/resolve/testData/resolve/cfg/initBlockAndInPlaceLambda.dot +++ b/compiler/fir/resolve/testData/resolve/cfg/initBlockAndInPlaceLambda.dot @@ -1,5 +1,5 @@ digraph initBlockAndInPlaceLambda_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/cfg/jumps.dot b/compiler/fir/resolve/testData/resolve/cfg/jumps.dot index c4f0d152b82..d984b9d4830 100644 --- a/compiler/fir/resolve/testData/resolve/cfg/jumps.dot +++ b/compiler/fir/resolve/testData/resolve/cfg/jumps.dot @@ -1,5 +1,5 @@ digraph jumps_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/cfg/lambdaAsReturnOfLambda.dot b/compiler/fir/resolve/testData/resolve/cfg/lambdaAsReturnOfLambda.dot index 6f396847070..5e2b0e3ffa3 100644 --- a/compiler/fir/resolve/testData/resolve/cfg/lambdaAsReturnOfLambda.dot +++ b/compiler/fir/resolve/testData/resolve/cfg/lambdaAsReturnOfLambda.dot @@ -1,5 +1,5 @@ digraph lambdaAsReturnOfLambda_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/cfg/lambdas.dot b/compiler/fir/resolve/testData/resolve/cfg/lambdas.dot index 021c13c61ea..f5c75218506 100644 --- a/compiler/fir/resolve/testData/resolve/cfg/lambdas.dot +++ b/compiler/fir/resolve/testData/resolve/cfg/lambdas.dot @@ -1,5 +1,5 @@ digraph lambdas_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/cfg/loops.dot b/compiler/fir/resolve/testData/resolve/cfg/loops.dot index a2cd4892335..5a86e8328dd 100644 --- a/compiler/fir/resolve/testData/resolve/cfg/loops.dot +++ b/compiler/fir/resolve/testData/resolve/cfg/loops.dot @@ -1,5 +1,5 @@ digraph loops_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/cfg/postponedLambdas.dot b/compiler/fir/resolve/testData/resolve/cfg/postponedLambdas.dot index 6bada39bebc..0a3becc06a5 100644 --- a/compiler/fir/resolve/testData/resolve/cfg/postponedLambdas.dot +++ b/compiler/fir/resolve/testData/resolve/cfg/postponedLambdas.dot @@ -1,5 +1,5 @@ digraph postponedLambdas_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/cfg/propertiesAndInitBlocks.dot b/compiler/fir/resolve/testData/resolve/cfg/propertiesAndInitBlocks.dot index b4027c688a4..aa36a576218 100644 --- a/compiler/fir/resolve/testData/resolve/cfg/propertiesAndInitBlocks.dot +++ b/compiler/fir/resolve/testData/resolve/cfg/propertiesAndInitBlocks.dot @@ -1,5 +1,5 @@ digraph propertiesAndInitBlocks_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/cfg/returnValuesFromLambda.dot b/compiler/fir/resolve/testData/resolve/cfg/returnValuesFromLambda.dot index df08ff099d3..fe6eb6b64ad 100644 --- a/compiler/fir/resolve/testData/resolve/cfg/returnValuesFromLambda.dot +++ b/compiler/fir/resolve/testData/resolve/cfg/returnValuesFromLambda.dot @@ -1,5 +1,5 @@ digraph returnValuesFromLambda_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/cfg/safeCalls.dot b/compiler/fir/resolve/testData/resolve/cfg/safeCalls.dot index 71b42b3c4f5..24d7f05a704 100644 --- a/compiler/fir/resolve/testData/resolve/cfg/safeCalls.dot +++ b/compiler/fir/resolve/testData/resolve/cfg/safeCalls.dot @@ -1,5 +1,5 @@ digraph safeCalls_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/cfg/simple.dot b/compiler/fir/resolve/testData/resolve/cfg/simple.dot index 0b0073d13fc..10ec5c7c81a 100644 --- a/compiler/fir/resolve/testData/resolve/cfg/simple.dot +++ b/compiler/fir/resolve/testData/resolve/cfg/simple.dot @@ -1,5 +1,5 @@ digraph simple_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/cfg/tryCatch.dot b/compiler/fir/resolve/testData/resolve/cfg/tryCatch.dot index 98f767edc5a..0b0142b093a 100644 --- a/compiler/fir/resolve/testData/resolve/cfg/tryCatch.dot +++ b/compiler/fir/resolve/testData/resolve/cfg/tryCatch.dot @@ -1,5 +1,5 @@ digraph tryCatch_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/cfg/when.dot b/compiler/fir/resolve/testData/resolve/cfg/when.dot index a920592ffaf..d7a020084c5 100644 --- a/compiler/fir/resolve/testData/resolve/cfg/when.dot +++ b/compiler/fir/resolve/testData/resolve/cfg/when.dot @@ -1,5 +1,5 @@ digraph when_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/exhaustiveWhenAndDNNType.dot b/compiler/fir/resolve/testData/resolve/exhaustiveWhenAndDNNType.dot index c7fc59de8eb..8d92a61f9f0 100644 --- a/compiler/fir/resolve/testData/resolve/exhaustiveWhenAndDNNType.dot +++ b/compiler/fir/resolve/testData/resolve/exhaustiveWhenAndDNNType.dot @@ -1,5 +1,5 @@ digraph exhaustiveWhenAndDNNType_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/bangbang.dot b/compiler/fir/resolve/testData/resolve/smartcasts/bangbang.dot index a133bf031a4..be346f518af 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/bangbang.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/bangbang.dot @@ -1,5 +1,5 @@ digraph bangbang_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/booleans/booleanOperators.dot b/compiler/fir/resolve/testData/resolve/smartcasts/booleans/booleanOperators.dot index 6e9847652b9..1e84e6be66f 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/booleans/booleanOperators.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/booleans/booleanOperators.dot @@ -1,5 +1,5 @@ digraph booleanOperators_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/booleans/equalsToBoolean.dot b/compiler/fir/resolve/testData/resolve/smartcasts/booleans/equalsToBoolean.dot index 4eff0d026cc..8a52b28c58e 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/booleans/equalsToBoolean.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/booleans/equalsToBoolean.dot @@ -1,5 +1,5 @@ digraph equalsToBoolean_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/booleans/jumpFromRhsOfOperator.dot b/compiler/fir/resolve/testData/resolve/smartcasts/booleans/jumpFromRhsOfOperator.dot index 9d10308af73..ba471301a16 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/booleans/jumpFromRhsOfOperator.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/booleans/jumpFromRhsOfOperator.dot @@ -1,5 +1,5 @@ digraph jumpFromRhsOfOperator_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/boundSmartcasts/boundSmartcasts.dot b/compiler/fir/resolve/testData/resolve/smartcasts/boundSmartcasts/boundSmartcasts.dot index 80bf63a1b9e..b4e7d870fce 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/boundSmartcasts/boundSmartcasts.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/boundSmartcasts/boundSmartcasts.dot @@ -1,5 +1,5 @@ digraph boundSmartcasts_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/boundSmartcasts/boundSmartcastsInBranches.dot b/compiler/fir/resolve/testData/resolve/smartcasts/boundSmartcasts/boundSmartcastsInBranches.dot index 9b6fbebf5f7..20238a56d83 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/boundSmartcasts/boundSmartcastsInBranches.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/boundSmartcasts/boundSmartcastsInBranches.dot @@ -1,5 +1,5 @@ digraph boundSmartcastsInBranches_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/boundSmartcasts/functionCallBound.dot b/compiler/fir/resolve/testData/resolve/smartcasts/boundSmartcasts/functionCallBound.dot index c5df2f6f227..cec3a974cb1 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/boundSmartcasts/functionCallBound.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/boundSmartcasts/functionCallBound.dot @@ -1,5 +1,5 @@ digraph functionCallBound_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/casts.dot b/compiler/fir/resolve/testData/resolve/smartcasts/casts.dot index b9d3a0e347a..26959b76551 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/casts.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/casts.dot @@ -1,5 +1,5 @@ digraph casts_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/controlStructures/elvis.dot b/compiler/fir/resolve/testData/resolve/smartcasts/controlStructures/elvis.dot index 5d61bc25364..06c9c95eb11 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/controlStructures/elvis.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/controlStructures/elvis.dot @@ -1,5 +1,5 @@ digraph elvis_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/controlStructures/returns.dot b/compiler/fir/resolve/testData/resolve/smartcasts/controlStructures/returns.dot index 21ca24889da..683a6284d13 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/controlStructures/returns.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/controlStructures/returns.dot @@ -1,5 +1,5 @@ digraph returns_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/controlStructures/simpleIf.dot b/compiler/fir/resolve/testData/resolve/smartcasts/controlStructures/simpleIf.dot index 5c65c66dd28..edf973d71e3 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/controlStructures/simpleIf.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/controlStructures/simpleIf.dot @@ -1,5 +1,5 @@ digraph simpleIf_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/controlStructures/smartcastFromArgument.dot b/compiler/fir/resolve/testData/resolve/smartcasts/controlStructures/smartcastFromArgument.dot index 470c51c7d6f..bbfe1da298b 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/controlStructures/smartcastFromArgument.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/controlStructures/smartcastFromArgument.dot @@ -1,5 +1,5 @@ digraph smartcastFromArgument_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/controlStructures/when.dot b/compiler/fir/resolve/testData/resolve/smartcasts/controlStructures/when.dot index 8f057f2c730..52015bd8d76 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/controlStructures/when.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/controlStructures/when.dot @@ -1,5 +1,5 @@ digraph when_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/equalsAndIdentity.dot b/compiler/fir/resolve/testData/resolve/smartcasts/equalsAndIdentity.dot index 54ba3f5db26..7466c35eba1 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/equalsAndIdentity.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/equalsAndIdentity.dot @@ -1,5 +1,5 @@ digraph equalsAndIdentity_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/lambdas/inPlaceLambdas.dot b/compiler/fir/resolve/testData/resolve/smartcasts/lambdas/inPlaceLambdas.dot index d800bef4058..67c971e8411 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/lambdas/inPlaceLambdas.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/lambdas/inPlaceLambdas.dot @@ -1,5 +1,5 @@ digraph inPlaceLambdas_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/lambdas/smartcastOnLambda.dot b/compiler/fir/resolve/testData/resolve/smartcasts/lambdas/smartcastOnLambda.dot index 2df1a010620..f3c0104beb6 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/lambdas/smartcastOnLambda.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/lambdas/smartcastOnLambda.dot @@ -1,5 +1,5 @@ digraph smartcastOnLambda_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/loops/dataFlowInfoFromWhileCondition.dot b/compiler/fir/resolve/testData/resolve/smartcasts/loops/dataFlowInfoFromWhileCondition.dot index c8a5a57c7f2..5cf47207fe2 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/loops/dataFlowInfoFromWhileCondition.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/loops/dataFlowInfoFromWhileCondition.dot @@ -1,5 +1,5 @@ digraph dataFlowInfoFromWhileCondition_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/loops/endlessLoops.dot b/compiler/fir/resolve/testData/resolve/smartcasts/loops/endlessLoops.dot index 3458f3313e1..9340551aa28 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/loops/endlessLoops.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/loops/endlessLoops.dot @@ -1,5 +1,5 @@ digraph endlessLoops_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/multipleCasts.dot b/compiler/fir/resolve/testData/resolve/smartcasts/multipleCasts.dot index a735a7f4625..b21913f97bc 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/multipleCasts.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/multipleCasts.dot @@ -1,5 +1,5 @@ digraph multipleCasts_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/nullability.dot b/compiler/fir/resolve/testData/resolve/smartcasts/nullability.dot index a0c28ca3c88..e3ba1407eef 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/nullability.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/nullability.dot @@ -1,5 +1,5 @@ digraph nullability_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/receivers/implicitReceiverAsWhenSubject.dot b/compiler/fir/resolve/testData/resolve/smartcasts/receivers/implicitReceiverAsWhenSubject.dot index 2d4502b207c..82fcb2b3ad5 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/receivers/implicitReceiverAsWhenSubject.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/receivers/implicitReceiverAsWhenSubject.dot @@ -1,5 +1,5 @@ digraph implicitReceiverAsWhenSubject_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/receivers/implicitReceivers.dot b/compiler/fir/resolve/testData/resolve/smartcasts/receivers/implicitReceivers.dot index 9c537c81e2e..e6d923cd203 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/receivers/implicitReceivers.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/receivers/implicitReceivers.dot @@ -1,5 +1,5 @@ digraph implicitReceivers_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/receivers/thisOfExtensionProperty.dot b/compiler/fir/resolve/testData/resolve/smartcasts/receivers/thisOfExtensionProperty.dot index 34ff1a2f568..7bd859d08f9 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/receivers/thisOfExtensionProperty.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/receivers/thisOfExtensionProperty.dot @@ -1,5 +1,5 @@ digraph thisOfExtensionProperty_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/safeCalls/assignSafeCall.dot b/compiler/fir/resolve/testData/resolve/smartcasts/safeCalls/assignSafeCall.dot index dcd2f28c095..ef7667bbfa4 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/safeCalls/assignSafeCall.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/safeCalls/assignSafeCall.dot @@ -1,5 +1,5 @@ digraph assignSafeCall_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/safeCalls/safeCallAndEqualityToBool.dot b/compiler/fir/resolve/testData/resolve/smartcasts/safeCalls/safeCallAndEqualityToBool.dot index 41dcdda0be2..dfd48da8e3f 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/safeCalls/safeCallAndEqualityToBool.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/safeCalls/safeCallAndEqualityToBool.dot @@ -1,5 +1,5 @@ digraph safeCallAndEqualityToBool_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/safeCalls/safeCalls.dot b/compiler/fir/resolve/testData/resolve/smartcasts/safeCalls/safeCalls.dot index debbaddf34b..02e7a98a1c5 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/safeCalls/safeCalls.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/safeCalls/safeCalls.dot @@ -1,5 +1,5 @@ digraph safeCalls_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/smartCastInInit.dot b/compiler/fir/resolve/testData/resolve/smartcasts/smartCastInInit.dot index ff95381a0c6..908bf8d840a 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/smartCastInInit.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/smartCastInInit.dot @@ -1,5 +1,5 @@ digraph smartCastInInit_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/smartcastToNothing.dot b/compiler/fir/resolve/testData/resolve/smartcasts/smartcastToNothing.dot index c8a2765b083..a755a2823d1 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/smartcastToNothing.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/smartcastToNothing.dot @@ -1,5 +1,5 @@ digraph smartcastToNothing_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/stability/overridenOpenVal.dot b/compiler/fir/resolve/testData/resolve/smartcasts/stability/overridenOpenVal.dot index ae818bf50e9..1ba679ee251 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/stability/overridenOpenVal.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/stability/overridenOpenVal.dot @@ -1,5 +1,5 @@ digraph overridenOpenVal_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/variables/delayedAssignment.dot b/compiler/fir/resolve/testData/resolve/smartcasts/variables/delayedAssignment.dot index 49d679ea664..d278af32553 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/variables/delayedAssignment.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/variables/delayedAssignment.dot @@ -1,5 +1,5 @@ digraph delayedAssignment_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolve/smartcasts/variables/smartcastAfterReassignment.dot b/compiler/fir/resolve/testData/resolve/smartcasts/variables/smartcastAfterReassignment.dot index 5d9382ce36e..3606b595173 100644 --- a/compiler/fir/resolve/testData/resolve/smartcasts/variables/smartcastAfterReassignment.dot +++ b/compiler/fir/resolve/testData/resolve/smartcasts/variables/smartcastAfterReassignment.dot @@ -1,5 +1,5 @@ digraph smartcastAfterReassignment_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolveWithStdlib/contracts/callsInPlace.dot b/compiler/fir/resolve/testData/resolveWithStdlib/contracts/callsInPlace.dot index 9e6121337f4..0d6159febd0 100644 --- a/compiler/fir/resolve/testData/resolveWithStdlib/contracts/callsInPlace.dot +++ b/compiler/fir/resolve/testData/resolveWithStdlib/contracts/callsInPlace.dot @@ -1,5 +1,5 @@ digraph callsInPlace_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolveWithStdlib/contracts/conditionalEffects.dot b/compiler/fir/resolve/testData/resolveWithStdlib/contracts/conditionalEffects.dot index 0f7ef7cbfbe..a5afe765547 100644 --- a/compiler/fir/resolve/testData/resolveWithStdlib/contracts/conditionalEffects.dot +++ b/compiler/fir/resolve/testData/resolveWithStdlib/contracts/conditionalEffects.dot @@ -1,5 +1,5 @@ digraph conditionalEffects_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolveWithStdlib/delegates/delegateWithAnonymousObject.dot b/compiler/fir/resolve/testData/resolveWithStdlib/delegates/delegateWithAnonymousObject.dot index 1961f1325da..528016bcf69 100644 --- a/compiler/fir/resolve/testData/resolveWithStdlib/delegates/delegateWithAnonymousObject.dot +++ b/compiler/fir/resolve/testData/resolveWithStdlib/delegates/delegateWithAnonymousObject.dot @@ -1,5 +1,5 @@ digraph delegateWithAnonymousObject_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] diff --git a/compiler/fir/resolve/testData/resolveWithStdlib/smartcasts/tryWithLambdaInside.dot b/compiler/fir/resolve/testData/resolveWithStdlib/smartcasts/tryWithLambdaInside.dot index 4827f1c9054..0653178bfe9 100644 --- a/compiler/fir/resolve/testData/resolveWithStdlib/smartcasts/tryWithLambdaInside.dot +++ b/compiler/fir/resolve/testData/resolveWithStdlib/smartcasts/tryWithLambdaInside.dot @@ -1,5 +1,5 @@ digraph tryWithLambdaInside_kt { - graph [splines=ortho nodesep=3] + graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2]