diff --git a/d2compiler/compile_test.go b/d2compiler/compile_test.go index 07dee8f17..ea9311d2a 100644 --- a/d2compiler/compile_test.go +++ b/d2compiler/compile_test.go @@ -1534,7 +1534,7 @@ dst.id <-> src.dst_id text: `x`, assertions: func(t *testing.T, g *d2graph.Graph) { - diff.AssertStringEq(t, "down", g.Objects[0].Attributes.Direction.Value) + diff.AssertStringEq(t, "", g.Objects[0].Attributes.Direction.Value) }, }, { diff --git a/d2graph/d2graph.go b/d2graph/d2graph.go index 69d8d918d..7bc2ba1cc 100644 --- a/d2graph/d2graph.go +++ b/d2graph/d2graph.go @@ -39,7 +39,6 @@ func NewGraph(ast *d2ast.Map) *Graph { Parent: nil, Children: make(map[string]*Object), } - d.Root.Attributes.Direction.Value = "down" return d } @@ -445,9 +444,6 @@ func (obj *Object) newObject(id string) *Object { Label: Scalar{ Value: idval, }, - Direction: Scalar{ - Value: "down", - }, }, Graph: obj.Graph, diff --git a/d2layouts/d2dagrelayout/layout.go b/d2layouts/d2dagrelayout/layout.go index 9fa88ccc3..672871226 100644 --- a/d2layouts/d2dagrelayout/layout.go +++ b/d2layouts/d2dagrelayout/layout.go @@ -74,6 +74,8 @@ func Layout(ctx context.Context, d2graph *d2graph.Graph) (err error) { rootAttrs.rankdir = "RL" case "up": rootAttrs.rankdir = "BT" + default: + rootAttrs.rankdir = "TB" } configJS := setGraphAttrs(rootAttrs) if _, err := v8ctx.RunScript(configJS, "config.js"); err != nil { diff --git a/d2layouts/d2elklayout/layout.go b/d2layouts/d2elklayout/layout.go index 9365949b7..2df4c65be 100644 --- a/d2layouts/d2elklayout/layout.go +++ b/d2layouts/d2elklayout/layout.go @@ -131,6 +131,8 @@ func Layout(ctx context.Context, g *d2graph.Graph) (err error) { elkGraph.LayoutOptions.Direction = "RIGHT" case "left": elkGraph.LayoutOptions.Direction = "LEFT" + default: + elkGraph.LayoutOptions.Direction = "DOWN" } elkNodes := make(map[*d2graph.Object]*ELKNode) diff --git a/testdata/d2compiler/TestCompile/basic_icon.exp.json b/testdata/d2compiler/TestCompile/basic_icon.exp.json index 1012941f5..25b5f7093 100644 --- a/testdata/d2compiler/TestCompile/basic_icon.exp.json +++ b/testdata/d2compiler/TestCompile/basic_icon.exp.json @@ -89,7 +89,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -146,7 +146,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/basic_sequence.exp.json b/testdata/d2compiler/TestCompile/basic_sequence.exp.json index c5b515b47..072abeff2 100644 --- a/testdata/d2compiler/TestCompile/basic_sequence.exp.json +++ b/testdata/d2compiler/TestCompile/basic_sequence.exp.json @@ -84,7 +84,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -129,7 +129,7 @@ "value": "sequence_diagram" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/basic_shape.exp.json b/testdata/d2compiler/TestCompile/basic_shape.exp.json index 468c18bbe..55a75ce1c 100644 --- a/testdata/d2compiler/TestCompile/basic_shape.exp.json +++ b/testdata/d2compiler/TestCompile/basic_shape.exp.json @@ -84,7 +84,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -129,7 +129,7 @@ "value": "circle" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/basic_style.exp.json b/testdata/d2compiler/TestCompile/basic_style.exp.json index 7b56aed92..1e2df17f0 100644 --- a/testdata/d2compiler/TestCompile/basic_style.exp.json +++ b/testdata/d2compiler/TestCompile/basic_style.exp.json @@ -91,7 +91,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -140,7 +140,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/class_paren.exp.json b/testdata/d2compiler/TestCompile/class_paren.exp.json index e1da1e1cf..c86f7f020 100644 --- a/testdata/d2compiler/TestCompile/class_paren.exp.json +++ b/testdata/d2compiler/TestCompile/class_paren.exp.json @@ -183,7 +183,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -249,7 +249,7 @@ "value": "class" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/class_style.exp.json b/testdata/d2compiler/TestCompile/class_style.exp.json index 1f56e2894..0b411d650 100644 --- a/testdata/d2compiler/TestCompile/class_style.exp.json +++ b/testdata/d2compiler/TestCompile/class_style.exp.json @@ -157,7 +157,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -216,7 +216,7 @@ "value": "class" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/default_direction.exp.json b/testdata/d2compiler/TestCompile/default_direction.exp.json index 92279ded8..22ac40c17 100644 --- a/testdata/d2compiler/TestCompile/default_direction.exp.json +++ b/testdata/d2compiler/TestCompile/default_direction.exp.json @@ -45,7 +45,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -90,7 +90,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/edge.exp.json b/testdata/d2compiler/TestCompile/edge.exp.json index f3dba8e45..09e4428ef 100644 --- a/testdata/d2compiler/TestCompile/edge.exp.json +++ b/testdata/d2compiler/TestCompile/edge.exp.json @@ -68,7 +68,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -144,7 +144,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -187,7 +187,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/edge_arrowhead_fields.exp.json b/testdata/d2compiler/TestCompile/edge_arrowhead_fields.exp.json index cf53b9e4e..bf32e2e02 100644 --- a/testdata/d2compiler/TestCompile/edge_arrowhead_fields.exp.json +++ b/testdata/d2compiler/TestCompile/edge_arrowhead_fields.exp.json @@ -247,7 +247,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -353,7 +353,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -396,7 +396,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/edge_chain.exp.json b/testdata/d2compiler/TestCompile/edge_chain.exp.json index 87a765414..4aa8282e0 100644 --- a/testdata/d2compiler/TestCompile/edge_chain.exp.json +++ b/testdata/d2compiler/TestCompile/edge_chain.exp.json @@ -115,7 +115,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -221,7 +221,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -284,7 +284,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -327,7 +327,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/edge_chain_map.exp.json b/testdata/d2compiler/TestCompile/edge_chain_map.exp.json index 39d081011..6c49a5af8 100644 --- a/testdata/d2compiler/TestCompile/edge_chain_map.exp.json +++ b/testdata/d2compiler/TestCompile/edge_chain_map.exp.json @@ -144,7 +144,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -250,7 +250,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -313,7 +313,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -356,7 +356,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/edge_column_index.exp.json b/testdata/d2compiler/TestCompile/edge_column_index.exp.json index e18d8951b..c3cf797ee 100644 --- a/testdata/d2compiler/TestCompile/edge_column_index.exp.json +++ b/testdata/d2compiler/TestCompile/edge_column_index.exp.json @@ -346,7 +346,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -471,7 +471,7 @@ "value": "sql_table" }, "direction": { - "value": "down" + "value": "" } } }, @@ -561,7 +561,7 @@ "value": "sql_table" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/edge_exclusive_style.exp.json b/testdata/d2compiler/TestCompile/edge_exclusive_style.exp.json index 95dd28a7f..b6b3c1a0d 100644 --- a/testdata/d2compiler/TestCompile/edge_exclusive_style.exp.json +++ b/testdata/d2compiler/TestCompile/edge_exclusive_style.exp.json @@ -113,7 +113,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -193,7 +193,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -236,7 +236,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/edge_flat_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_flat_arrowhead.exp.json index d4bf004df..d0220923f 100644 --- a/testdata/d2compiler/TestCompile/edge_flat_arrowhead.exp.json +++ b/testdata/d2compiler/TestCompile/edge_flat_arrowhead.exp.json @@ -156,7 +156,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -268,7 +268,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -331,7 +331,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/edge_flat_label_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_flat_label_arrowhead.exp.json index 04fa37c8c..4b56270c3 100644 --- a/testdata/d2compiler/TestCompile/edge_flat_label_arrowhead.exp.json +++ b/testdata/d2compiler/TestCompile/edge_flat_label_arrowhead.exp.json @@ -124,7 +124,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -213,7 +213,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -256,7 +256,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/edge_in_column.exp.json b/testdata/d2compiler/TestCompile/edge_in_column.exp.json index d5a808142..05c4e1e69 100644 --- a/testdata/d2compiler/TestCompile/edge_in_column.exp.json +++ b/testdata/d2compiler/TestCompile/edge_in_column.exp.json @@ -159,7 +159,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -214,7 +214,7 @@ "value": "sql_table" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/edge_index.exp.json b/testdata/d2compiler/TestCompile/edge_index.exp.json index 3fc6fd5df..1dab7db6a 100644 --- a/testdata/d2compiler/TestCompile/edge_index.exp.json +++ b/testdata/d2compiler/TestCompile/edge_index.exp.json @@ -139,7 +139,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -238,7 +238,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -301,7 +301,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/edge_index_map.exp.json b/testdata/d2compiler/TestCompile/edge_index_map.exp.json index 456776137..1e1a5ff30 100644 --- a/testdata/d2compiler/TestCompile/edge_index_map.exp.json +++ b/testdata/d2compiler/TestCompile/edge_index_map.exp.json @@ -158,7 +158,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -257,7 +257,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -320,7 +320,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/edge_index_nested.exp.json b/testdata/d2compiler/TestCompile/edge_index_nested.exp.json index da9f38f1d..9f77b4f31 100644 --- a/testdata/d2compiler/TestCompile/edge_index_nested.exp.json +++ b/testdata/d2compiler/TestCompile/edge_index_nested.exp.json @@ -168,7 +168,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -247,7 +247,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -310,7 +310,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -373,7 +373,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/edge_index_nested_cross_scope.exp.json b/testdata/d2compiler/TestCompile/edge_index_nested_cross_scope.exp.json index 75d8227b0..2be418922 100644 --- a/testdata/d2compiler/TestCompile/edge_index_nested_cross_scope.exp.json +++ b/testdata/d2compiler/TestCompile/edge_index_nested_cross_scope.exp.json @@ -184,7 +184,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -283,7 +283,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -346,7 +346,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -409,7 +409,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/edge_key_group_flat_nested.exp.json b/testdata/d2compiler/TestCompile/edge_key_group_flat_nested.exp.json index f7bb02166..3ace9b870 100644 --- a/testdata/d2compiler/TestCompile/edge_key_group_flat_nested.exp.json +++ b/testdata/d2compiler/TestCompile/edge_key_group_flat_nested.exp.json @@ -197,7 +197,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -300,7 +300,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -363,7 +363,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -426,7 +426,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/edge_key_group_flat_nested_underscore.exp.json b/testdata/d2compiler/TestCompile/edge_key_group_flat_nested_underscore.exp.json index 36b416b3c..34560630d 100644 --- a/testdata/d2compiler/TestCompile/edge_key_group_flat_nested_underscore.exp.json +++ b/testdata/d2compiler/TestCompile/edge_key_group_flat_nested_underscore.exp.json @@ -203,7 +203,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -286,7 +286,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -360,7 +360,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -434,7 +434,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/edge_key_group_map_flat_nested_underscore.exp.json b/testdata/d2compiler/TestCompile/edge_key_group_map_flat_nested_underscore.exp.json index 4955b0964..d1be6a904 100644 --- a/testdata/d2compiler/TestCompile/edge_key_group_map_flat_nested_underscore.exp.json +++ b/testdata/d2compiler/TestCompile/edge_key_group_map_flat_nested_underscore.exp.json @@ -216,7 +216,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -299,7 +299,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -373,7 +373,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -447,7 +447,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/edge_key_group_map_nested_underscore.exp.json b/testdata/d2compiler/TestCompile/edge_key_group_map_nested_underscore.exp.json index fac5b1939..8373caa0b 100644 --- a/testdata/d2compiler/TestCompile/edge_key_group_map_nested_underscore.exp.json +++ b/testdata/d2compiler/TestCompile/edge_key_group_map_nested_underscore.exp.json @@ -234,7 +234,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -317,7 +317,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -391,7 +391,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -465,7 +465,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/edge_label_map.exp.json b/testdata/d2compiler/TestCompile/edge_label_map.exp.json index 52c7a6fcb..e728aeb38 100644 --- a/testdata/d2compiler/TestCompile/edge_label_map.exp.json +++ b/testdata/d2compiler/TestCompile/edge_label_map.exp.json @@ -124,7 +124,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -204,7 +204,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -247,7 +247,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/edge_map.exp.json b/testdata/d2compiler/TestCompile/edge_map.exp.json index 518c2dc60..c314961d7 100644 --- a/testdata/d2compiler/TestCompile/edge_map.exp.json +++ b/testdata/d2compiler/TestCompile/edge_map.exp.json @@ -107,7 +107,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -183,7 +183,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -226,7 +226,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/edge_map_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_map_arrowhead.exp.json index a4ee8c582..961ff5094 100644 --- a/testdata/d2compiler/TestCompile/edge_map_arrowhead.exp.json +++ b/testdata/d2compiler/TestCompile/edge_map_arrowhead.exp.json @@ -136,7 +136,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -225,7 +225,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -268,7 +268,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/edge_map_group_flat.exp.json b/testdata/d2compiler/TestCompile/edge_map_group_flat.exp.json index 9da45162b..25c0db906 100644 --- a/testdata/d2compiler/TestCompile/edge_map_group_flat.exp.json +++ b/testdata/d2compiler/TestCompile/edge_map_group_flat.exp.json @@ -152,7 +152,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -255,7 +255,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -318,7 +318,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/edge_map_group_semiflat.exp.json b/testdata/d2compiler/TestCompile/edge_map_group_semiflat.exp.json index 2f74239fa..46422a6fe 100644 --- a/testdata/d2compiler/TestCompile/edge_map_group_semiflat.exp.json +++ b/testdata/d2compiler/TestCompile/edge_map_group_semiflat.exp.json @@ -170,7 +170,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -273,7 +273,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -336,7 +336,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/edge_map_nested.exp.json b/testdata/d2compiler/TestCompile/edge_map_nested.exp.json index 53d86398d..2097718a6 100644 --- a/testdata/d2compiler/TestCompile/edge_map_nested.exp.json +++ b/testdata/d2compiler/TestCompile/edge_map_nested.exp.json @@ -132,7 +132,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -212,7 +212,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -255,7 +255,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/edge_map_nested_flat.exp.json b/testdata/d2compiler/TestCompile/edge_map_nested_flat.exp.json index 4e00ec172..017d5dfc8 100644 --- a/testdata/d2compiler/TestCompile/edge_map_nested_flat.exp.json +++ b/testdata/d2compiler/TestCompile/edge_map_nested_flat.exp.json @@ -114,7 +114,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -194,7 +194,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -237,7 +237,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/edge_mixed_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_mixed_arrowhead.exp.json index 29802116f..9a50c75ff 100644 --- a/testdata/d2compiler/TestCompile/edge_mixed_arrowhead.exp.json +++ b/testdata/d2compiler/TestCompile/edge_mixed_arrowhead.exp.json @@ -224,7 +224,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -349,7 +349,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -412,7 +412,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/edge_non_shape_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_non_shape_arrowhead.exp.json index 7c90a88d1..5142f8595 100644 --- a/testdata/d2compiler/TestCompile/edge_non_shape_arrowhead.exp.json +++ b/testdata/d2compiler/TestCompile/edge_non_shape_arrowhead.exp.json @@ -118,7 +118,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -207,7 +207,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -250,7 +250,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/edge_semiflat_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_semiflat_arrowhead.exp.json index c0a0616cb..cd8446a1e 100644 --- a/testdata/d2compiler/TestCompile/edge_semiflat_arrowhead.exp.json +++ b/testdata/d2compiler/TestCompile/edge_semiflat_arrowhead.exp.json @@ -174,7 +174,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -286,7 +286,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -349,7 +349,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/escaped_id.exp.json b/testdata/d2compiler/TestCompile/escaped_id.exp.json index a19c4d04e..af200618f 100644 --- a/testdata/d2compiler/TestCompile/escaped_id.exp.json +++ b/testdata/d2compiler/TestCompile/escaped_id.exp.json @@ -45,7 +45,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -90,7 +90,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/image_style.exp.json b/testdata/d2compiler/TestCompile/image_style.exp.json index 531f86ed6..997030792 100644 --- a/testdata/d2compiler/TestCompile/image_style.exp.json +++ b/testdata/d2compiler/TestCompile/image_style.exp.json @@ -166,7 +166,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -227,7 +227,7 @@ "value": "image" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/nested_sql.exp.json b/testdata/d2compiler/TestCompile/nested_sql.exp.json index f8e959c2d..69e2f421c 100644 --- a/testdata/d2compiler/TestCompile/nested_sql.exp.json +++ b/testdata/d2compiler/TestCompile/nested_sql.exp.json @@ -179,7 +179,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -224,7 +224,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -283,7 +283,7 @@ "value": "sql_table" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/path_link.exp.json b/testdata/d2compiler/TestCompile/path_link.exp.json index 02465cd66..300cfe06f 100644 --- a/testdata/d2compiler/TestCompile/path_link.exp.json +++ b/testdata/d2compiler/TestCompile/path_link.exp.json @@ -84,7 +84,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -130,7 +130,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/reserved_icon_near_style.exp.json b/testdata/d2compiler/TestCompile/reserved_icon_near_style.exp.json index 46a4d5fa1..69651a4a9 100644 --- a/testdata/d2compiler/TestCompile/reserved_icon_near_style.exp.json +++ b/testdata/d2compiler/TestCompile/reserved_icon_near_style.exp.json @@ -279,7 +279,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -392,7 +392,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -435,7 +435,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/root_sequence.exp.json b/testdata/d2compiler/TestCompile/root_sequence.exp.json index 299489edb..7ee72472d 100644 --- a/testdata/d2compiler/TestCompile/root_sequence.exp.json +++ b/testdata/d2compiler/TestCompile/root_sequence.exp.json @@ -55,7 +55,7 @@ "value": "sequence_diagram" }, "direction": { - "value": "down" + "value": "" } } }, diff --git a/testdata/d2compiler/TestCompile/set_direction.exp.json b/testdata/d2compiler/TestCompile/set_direction.exp.json index 2cb21da2a..39c25c81d 100644 --- a/testdata/d2compiler/TestCompile/set_direction.exp.json +++ b/testdata/d2compiler/TestCompile/set_direction.exp.json @@ -84,7 +84,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, diff --git a/testdata/d2compiler/TestCompile/sql_paren.exp.json b/testdata/d2compiler/TestCompile/sql_paren.exp.json index 84a9188a6..13eff1ae6 100644 --- a/testdata/d2compiler/TestCompile/sql_paren.exp.json +++ b/testdata/d2compiler/TestCompile/sql_paren.exp.json @@ -160,7 +160,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -221,7 +221,7 @@ "value": "sql_table" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/stroke-width.exp.json b/testdata/d2compiler/TestCompile/stroke-width.exp.json index 5833e12fe..b947b14a2 100644 --- a/testdata/d2compiler/TestCompile/stroke-width.exp.json +++ b/testdata/d2compiler/TestCompile/stroke-width.exp.json @@ -91,7 +91,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -140,7 +140,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/table_style.exp.json b/testdata/d2compiler/TestCompile/table_style.exp.json index 3e1879643..f44f416b4 100644 --- a/testdata/d2compiler/TestCompile/table_style.exp.json +++ b/testdata/d2compiler/TestCompile/table_style.exp.json @@ -157,7 +157,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -216,7 +216,7 @@ "value": "sql_table" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/table_style_map.exp.json b/testdata/d2compiler/TestCompile/table_style_map.exp.json index 6f2450ceb..4b150db68 100644 --- a/testdata/d2compiler/TestCompile/table_style_map.exp.json +++ b/testdata/d2compiler/TestCompile/table_style_map.exp.json @@ -208,7 +208,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -267,7 +267,7 @@ "value": "sql_table" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/underscore_edge.exp.json b/testdata/d2compiler/TestCompile/underscore_edge.exp.json index 3533736bb..84d29cf9c 100644 --- a/testdata/d2compiler/TestCompile/underscore_edge.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_edge.exp.json @@ -119,7 +119,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -226,7 +226,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -280,7 +280,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/underscore_edge_chain.exp.json b/testdata/d2compiler/TestCompile/underscore_edge_chain.exp.json index 74ecea32a..c9eb30378 100644 --- a/testdata/d2compiler/TestCompile/underscore_edge_chain.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_edge_chain.exp.json @@ -178,7 +178,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -346,7 +346,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -400,7 +400,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -454,7 +454,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/underscore_edge_existing.exp.json b/testdata/d2compiler/TestCompile/underscore_edge_existing.exp.json index 073a57e74..4a3d687fe 100644 --- a/testdata/d2compiler/TestCompile/underscore_edge_existing.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_edge_existing.exp.json @@ -185,7 +185,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -291,7 +291,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -365,7 +365,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -439,7 +439,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/underscore_edge_index.exp.json b/testdata/d2compiler/TestCompile/underscore_edge_index.exp.json index 31a2202de..705d516f8 100644 --- a/testdata/d2compiler/TestCompile/underscore_edge_index.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_edge_index.exp.json @@ -190,7 +190,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -269,7 +269,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -343,7 +343,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -417,7 +417,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/underscore_edge_nested.exp.json b/testdata/d2compiler/TestCompile/underscore_edge_nested.exp.json index c2028d32b..7d1942adb 100644 --- a/testdata/d2compiler/TestCompile/underscore_edge_nested.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_edge_nested.exp.json @@ -159,7 +159,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -235,7 +235,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -309,7 +309,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -374,7 +374,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/underscore_parent_create.exp.json b/testdata/d2compiler/TestCompile/underscore_parent_create.exp.json index 128379ba8..830a09082 100644 --- a/testdata/d2compiler/TestCompile/underscore_parent_create.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_parent_create.exp.json @@ -85,7 +85,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -130,7 +130,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -184,7 +184,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/underscore_parent_not_root.exp.json b/testdata/d2compiler/TestCompile/underscore_parent_not_root.exp.json index 5d081d232..7ca34f0e3 100644 --- a/testdata/d2compiler/TestCompile/underscore_parent_not_root.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_parent_not_root.exp.json @@ -114,7 +114,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -159,7 +159,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -202,7 +202,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -256,7 +256,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/underscore_parent_preference_1.exp.json b/testdata/d2compiler/TestCompile/underscore_parent_preference_1.exp.json index be821ca29..69b1b036e 100644 --- a/testdata/d2compiler/TestCompile/underscore_parent_preference_1.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_parent_preference_1.exp.json @@ -128,7 +128,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -173,7 +173,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -247,7 +247,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/underscore_parent_preference_2.exp.json b/testdata/d2compiler/TestCompile/underscore_parent_preference_2.exp.json index d8dfd5ec9..00824907e 100644 --- a/testdata/d2compiler/TestCompile/underscore_parent_preference_2.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_parent_preference_2.exp.json @@ -128,7 +128,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -204,7 +204,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -247,7 +247,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/underscore_parent_squared.exp.json b/testdata/d2compiler/TestCompile/underscore_parent_squared.exp.json index 8d69b7330..1b9272a22 100644 --- a/testdata/d2compiler/TestCompile/underscore_parent_squared.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_parent_squared.exp.json @@ -125,7 +125,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -170,7 +170,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -213,7 +213,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -278,7 +278,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2compiler/TestCompile/url_link.exp.json b/testdata/d2compiler/TestCompile/url_link.exp.json index bab321736..ee7b7a06e 100644 --- a/testdata/d2compiler/TestCompile/url_link.exp.json +++ b/testdata/d2compiler/TestCompile/url_link.exp.json @@ -84,7 +84,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -130,7 +130,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestCreate/base.exp.json b/testdata/d2oracle/TestCreate/base.exp.json index 83817a6b9..a7ac1c375 100644 --- a/testdata/d2oracle/TestCreate/base.exp.json +++ b/testdata/d2oracle/TestCreate/base.exp.json @@ -45,7 +45,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -90,7 +90,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestCreate/container.exp.json b/testdata/d2oracle/TestCreate/container.exp.json index 9d138c280..dc7bbf8f1 100644 --- a/testdata/d2oracle/TestCreate/container.exp.json +++ b/testdata/d2oracle/TestCreate/container.exp.json @@ -74,7 +74,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -119,7 +119,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -162,7 +162,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestCreate/container_edge.exp.json b/testdata/d2oracle/TestCreate/container_edge.exp.json index 57e39774a..21565478e 100644 --- a/testdata/d2oracle/TestCreate/container_edge.exp.json +++ b/testdata/d2oracle/TestCreate/container_edge.exp.json @@ -97,7 +97,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -173,7 +173,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -216,7 +216,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -259,7 +259,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestCreate/container_edge_label.exp.json b/testdata/d2oracle/TestCreate/container_edge_label.exp.json index 7cd93536a..77f7b9a48 100644 --- a/testdata/d2oracle/TestCreate/container_edge_label.exp.json +++ b/testdata/d2oracle/TestCreate/container_edge_label.exp.json @@ -107,7 +107,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -183,7 +183,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -226,7 +226,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -269,7 +269,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestCreate/edge.exp.json b/testdata/d2oracle/TestCreate/edge.exp.json index e661c9dca..ec2ec4313 100644 --- a/testdata/d2oracle/TestCreate/edge.exp.json +++ b/testdata/d2oracle/TestCreate/edge.exp.json @@ -68,7 +68,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -144,7 +144,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -187,7 +187,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestCreate/edge_nested.exp.json b/testdata/d2oracle/TestCreate/edge_nested.exp.json index dd6f60222..5d8ed4b19 100644 --- a/testdata/d2oracle/TestCreate/edge_nested.exp.json +++ b/testdata/d2oracle/TestCreate/edge_nested.exp.json @@ -84,7 +84,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -160,7 +160,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -203,7 +203,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -246,7 +246,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestCreate/edge_scope.exp.json b/testdata/d2oracle/TestCreate/edge_scope.exp.json index 64df633f8..2ff35f256 100644 --- a/testdata/d2oracle/TestCreate/edge_scope.exp.json +++ b/testdata/d2oracle/TestCreate/edge_scope.exp.json @@ -97,7 +97,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -173,7 +173,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -216,7 +216,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -259,7 +259,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestCreate/edge_scope_flat.exp.json b/testdata/d2oracle/TestCreate/edge_scope_flat.exp.json index 2221724f4..fa3474290 100644 --- a/testdata/d2oracle/TestCreate/edge_scope_flat.exp.json +++ b/testdata/d2oracle/TestCreate/edge_scope_flat.exp.json @@ -97,7 +97,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -173,7 +173,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -216,7 +216,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -259,7 +259,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestCreate/edge_scope_nested.exp.json b/testdata/d2oracle/TestCreate/edge_scope_nested.exp.json index 78d36ffe6..32b0a3db0 100644 --- a/testdata/d2oracle/TestCreate/edge_scope_nested.exp.json +++ b/testdata/d2oracle/TestCreate/edge_scope_nested.exp.json @@ -108,7 +108,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -195,7 +195,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -249,7 +249,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -292,7 +292,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -335,7 +335,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestCreate/edge_unique.exp.json b/testdata/d2oracle/TestCreate/edge_unique.exp.json index aa12efff9..68eb01b49 100644 --- a/testdata/d2oracle/TestCreate/edge_unique.exp.json +++ b/testdata/d2oracle/TestCreate/edge_unique.exp.json @@ -254,7 +254,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -420,7 +420,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -463,7 +463,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -546,7 +546,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -629,7 +629,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -712,7 +712,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestCreate/gen_key.exp.json b/testdata/d2oracle/TestCreate/gen_key.exp.json index 8c27e5c74..ee6032e00 100644 --- a/testdata/d2oracle/TestCreate/gen_key.exp.json +++ b/testdata/d2oracle/TestCreate/gen_key.exp.json @@ -68,7 +68,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -113,7 +113,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -156,7 +156,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestCreate/gen_key_n.exp.json b/testdata/d2oracle/TestCreate/gen_key_n.exp.json index 33f2e3a9f..66a55f903 100644 --- a/testdata/d2oracle/TestCreate/gen_key_n.exp.json +++ b/testdata/d2oracle/TestCreate/gen_key_n.exp.json @@ -326,7 +326,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -393,7 +393,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -458,7 +458,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -523,7 +523,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -566,7 +566,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -609,7 +609,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -652,7 +652,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -695,7 +695,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -738,7 +738,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -781,7 +781,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -824,7 +824,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -867,7 +867,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -910,7 +910,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -953,7 +953,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -996,7 +996,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestCreate/gen_key_nested.exp.json b/testdata/d2oracle/TestCreate/gen_key_nested.exp.json index 00f7a04c9..ab99bdedd 100644 --- a/testdata/d2oracle/TestCreate/gen_key_nested.exp.json +++ b/testdata/d2oracle/TestCreate/gen_key_nested.exp.json @@ -134,7 +134,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -265,7 +265,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -394,7 +394,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -523,7 +523,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -599,7 +599,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -675,7 +675,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestCreate/gen_key_scope.exp.json b/testdata/d2oracle/TestCreate/gen_key_scope.exp.json index 8a569a940..e429b1605 100644 --- a/testdata/d2oracle/TestCreate/gen_key_scope.exp.json +++ b/testdata/d2oracle/TestCreate/gen_key_scope.exp.json @@ -119,7 +119,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -186,7 +186,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -251,7 +251,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -316,7 +316,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -359,7 +359,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -402,7 +402,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestCreate/gen_key_suffix.exp.json b/testdata/d2oracle/TestCreate/gen_key_suffix.exp.json index d2b2f15f0..4e34daf68 100644 --- a/testdata/d2oracle/TestCreate/gen_key_suffix.exp.json +++ b/testdata/d2oracle/TestCreate/gen_key_suffix.exp.json @@ -68,7 +68,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -113,7 +113,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -156,7 +156,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestCreate/make_scope_multiline.exp.json b/testdata/d2oracle/TestCreate/make_scope_multiline.exp.json index b6d879703..c2d340411 100644 --- a/testdata/d2oracle/TestCreate/make_scope_multiline.exp.json +++ b/testdata/d2oracle/TestCreate/make_scope_multiline.exp.json @@ -107,7 +107,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -152,7 +152,7 @@ "value": "circle" }, "direction": { - "value": "down" + "value": "" } } }, @@ -195,7 +195,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestCreate/make_scope_multiline_spacing_1.exp.json b/testdata/d2oracle/TestCreate/make_scope_multiline_spacing_1.exp.json index 9349bdb5f..73f6f3626 100644 --- a/testdata/d2oracle/TestCreate/make_scope_multiline_spacing_1.exp.json +++ b/testdata/d2oracle/TestCreate/make_scope_multiline_spacing_1.exp.json @@ -153,7 +153,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -198,7 +198,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -241,7 +241,7 @@ "value": "circle" }, "direction": { - "value": "down" + "value": "" } } }, @@ -284,7 +284,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -327,7 +327,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestCreate/make_scope_multiline_spacing_2.exp.json b/testdata/d2oracle/TestCreate/make_scope_multiline_spacing_2.exp.json index a4682746e..edaeba937 100644 --- a/testdata/d2oracle/TestCreate/make_scope_multiline_spacing_2.exp.json +++ b/testdata/d2oracle/TestCreate/make_scope_multiline_spacing_2.exp.json @@ -153,7 +153,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -198,7 +198,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -241,7 +241,7 @@ "value": "circle" }, "direction": { - "value": "down" + "value": "" } } }, @@ -284,7 +284,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -327,7 +327,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestCreate/nested.exp.json b/testdata/d2oracle/TestCreate/nested.exp.json index 62f175676..2ba4dcb6f 100644 --- a/testdata/d2oracle/TestCreate/nested.exp.json +++ b/testdata/d2oracle/TestCreate/nested.exp.json @@ -67,7 +67,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -134,7 +134,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -199,7 +199,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -264,7 +264,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestCreate/scope.exp.json b/testdata/d2oracle/TestCreate/scope.exp.json index 047518e59..56bce7e52 100644 --- a/testdata/d2oracle/TestCreate/scope.exp.json +++ b/testdata/d2oracle/TestCreate/scope.exp.json @@ -96,7 +96,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -163,7 +163,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -228,7 +228,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -293,7 +293,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -336,7 +336,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/breakup_arrowhead.exp.json b/testdata/d2oracle/TestDelete/breakup_arrowhead.exp.json index 8bc142be6..404e508c0 100644 --- a/testdata/d2oracle/TestDelete/breakup_arrowhead.exp.json +++ b/testdata/d2oracle/TestDelete/breakup_arrowhead.exp.json @@ -45,7 +45,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -90,7 +90,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/children.exp.json b/testdata/d2oracle/TestDelete/children.exp.json index 21901e5cf..4d7148816 100644 --- a/testdata/d2oracle/TestDelete/children.exp.json +++ b/testdata/d2oracle/TestDelete/children.exp.json @@ -91,7 +91,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -167,7 +167,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -210,7 +210,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -253,7 +253,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/children_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_conflicts.exp.json index ddfaea22b..8c9d70638 100644 --- a/testdata/d2oracle/TestDelete/children_conflicts.exp.json +++ b/testdata/d2oracle/TestDelete/children_conflicts.exp.json @@ -68,7 +68,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -113,7 +113,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -156,7 +156,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/children_edge_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_edge_conflicts.exp.json index 1bae6a67f..0f45cbe4c 100644 --- a/testdata/d2oracle/TestDelete/children_edge_conflicts.exp.json +++ b/testdata/d2oracle/TestDelete/children_edge_conflicts.exp.json @@ -124,7 +124,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -200,7 +200,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -263,7 +263,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -306,7 +306,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/children_edges_flat_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_edges_flat_conflicts.exp.json index 280026135..368b8310d 100644 --- a/testdata/d2oracle/TestDelete/children_edges_flat_conflicts.exp.json +++ b/testdata/d2oracle/TestDelete/children_edges_flat_conflicts.exp.json @@ -217,7 +217,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -323,7 +323,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -366,7 +366,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -429,7 +429,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -492,7 +492,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -555,7 +555,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/children_flat_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_flat_conflicts.exp.json index 1aa09a3a4..74f50700a 100644 --- a/testdata/d2oracle/TestDelete/children_flat_conflicts.exp.json +++ b/testdata/d2oracle/TestDelete/children_flat_conflicts.exp.json @@ -101,7 +101,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -166,7 +166,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -209,7 +209,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/children_multiple_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_multiple_conflicts.exp.json index e53bc9ec6..c49fc91ba 100644 --- a/testdata/d2oracle/TestDelete/children_multiple_conflicts.exp.json +++ b/testdata/d2oracle/TestDelete/children_multiple_conflicts.exp.json @@ -193,7 +193,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -309,7 +309,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -372,7 +372,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -415,7 +415,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -458,7 +458,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/children_nested_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_nested_conflicts.exp.json index be606cf92..313097061 100644 --- a/testdata/d2oracle/TestDelete/children_nested_conflicts.exp.json +++ b/testdata/d2oracle/TestDelete/children_nested_conflicts.exp.json @@ -97,7 +97,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -142,7 +142,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -185,7 +185,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -228,7 +228,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/children_nested_referenced_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_nested_referenced_conflicts.exp.json index 89421aace..725a50f18 100644 --- a/testdata/d2oracle/TestDelete/children_nested_referenced_conflicts.exp.json +++ b/testdata/d2oracle/TestDelete/children_nested_referenced_conflicts.exp.json @@ -156,7 +156,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -263,7 +263,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -348,7 +348,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -391,7 +391,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/children_no_self_conflict.exp.json b/testdata/d2oracle/TestDelete/children_no_self_conflict.exp.json index 35572283c..91f74c667 100644 --- a/testdata/d2oracle/TestDelete/children_no_self_conflict.exp.json +++ b/testdata/d2oracle/TestDelete/children_no_self_conflict.exp.json @@ -45,7 +45,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -90,7 +90,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/children_order.exp.json b/testdata/d2oracle/TestDelete/children_order.exp.json index 45a4f5ff3..ace7a8b31 100644 --- a/testdata/d2oracle/TestDelete/children_order.exp.json +++ b/testdata/d2oracle/TestDelete/children_order.exp.json @@ -120,7 +120,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -165,7 +165,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -208,7 +208,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -251,7 +251,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -294,7 +294,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/children_referenced_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_referenced_conflicts.exp.json index 6ca8b3cef..668543222 100644 --- a/testdata/d2oracle/TestDelete/children_referenced_conflicts.exp.json +++ b/testdata/d2oracle/TestDelete/children_referenced_conflicts.exp.json @@ -101,7 +101,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -166,7 +166,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -209,7 +209,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/children_scope.exp.json b/testdata/d2oracle/TestDelete/children_scope.exp.json index 6a3398790..7bd1b5112 100644 --- a/testdata/d2oracle/TestDelete/children_scope.exp.json +++ b/testdata/d2oracle/TestDelete/children_scope.exp.json @@ -131,7 +131,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -218,7 +218,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -272,7 +272,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -315,7 +315,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -358,7 +358,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -401,7 +401,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/container_near.exp.json b/testdata/d2oracle/TestDelete/container_near.exp.json index c45fe76d2..704202b70 100644 --- a/testdata/d2oracle/TestDelete/container_near.exp.json +++ b/testdata/d2oracle/TestDelete/container_near.exp.json @@ -169,7 +169,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -229,7 +229,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -272,7 +272,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -330,7 +330,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/delete_icon.exp.json b/testdata/d2oracle/TestDelete/delete_icon.exp.json index df319c471..9a370a688 100644 --- a/testdata/d2oracle/TestDelete/delete_icon.exp.json +++ b/testdata/d2oracle/TestDelete/delete_icon.exp.json @@ -95,7 +95,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -151,7 +151,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -206,7 +206,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/delete_link.exp.json b/testdata/d2oracle/TestDelete/delete_link.exp.json index cb519b429..bd4a60f19 100644 --- a/testdata/d2oracle/TestDelete/delete_link.exp.json +++ b/testdata/d2oracle/TestDelete/delete_link.exp.json @@ -45,7 +45,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -90,7 +90,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/delete_near.exp.json b/testdata/d2oracle/TestDelete/delete_near.exp.json index 6470d7bfa..5ec43d9a8 100644 --- a/testdata/d2oracle/TestDelete/delete_near.exp.json +++ b/testdata/d2oracle/TestDelete/delete_near.exp.json @@ -68,7 +68,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -113,7 +113,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -156,7 +156,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/delete_needed_flat_near.exp.json b/testdata/d2oracle/TestDelete/delete_needed_flat_near.exp.json index c2860dbc2..1fe0d5f5c 100644 --- a/testdata/d2oracle/TestDelete/delete_needed_flat_near.exp.json +++ b/testdata/d2oracle/TestDelete/delete_needed_flat_near.exp.json @@ -68,7 +68,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -113,7 +113,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -156,7 +156,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/delete_redundant_flat_near.exp.json b/testdata/d2oracle/TestDelete/delete_redundant_flat_near.exp.json index 35b873d8d..e7e41216f 100644 --- a/testdata/d2oracle/TestDelete/delete_redundant_flat_near.exp.json +++ b/testdata/d2oracle/TestDelete/delete_redundant_flat_near.exp.json @@ -68,7 +68,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -113,7 +113,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -156,7 +156,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/delete_tooltip.exp.json b/testdata/d2oracle/TestDelete/delete_tooltip.exp.json index 57ee7c154..cddd7377e 100644 --- a/testdata/d2oracle/TestDelete/delete_tooltip.exp.json +++ b/testdata/d2oracle/TestDelete/delete_tooltip.exp.json @@ -45,7 +45,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -90,7 +90,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/edge_both_identical_childs.exp.json b/testdata/d2oracle/TestDelete/edge_both_identical_childs.exp.json index f303e512e..c8c0b2a8f 100644 --- a/testdata/d2oracle/TestDelete/edge_both_identical_childs.exp.json +++ b/testdata/d2oracle/TestDelete/edge_both_identical_childs.exp.json @@ -101,7 +101,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -230,7 +230,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -295,7 +295,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -360,7 +360,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -414,7 +414,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/edge_common.exp.json b/testdata/d2oracle/TestDelete/edge_common.exp.json index 0e259a498..f268c4258 100644 --- a/testdata/d2oracle/TestDelete/edge_common.exp.json +++ b/testdata/d2oracle/TestDelete/edge_common.exp.json @@ -68,7 +68,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -144,7 +144,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -187,7 +187,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/edge_common_2.exp.json b/testdata/d2oracle/TestDelete/edge_common_2.exp.json index efbbd52d9..81c153998 100644 --- a/testdata/d2oracle/TestDelete/edge_common_2.exp.json +++ b/testdata/d2oracle/TestDelete/edge_common_2.exp.json @@ -68,7 +68,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -144,7 +144,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -187,7 +187,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/edge_common_3.exp.json b/testdata/d2oracle/TestDelete/edge_common_3.exp.json index f737c81fa..884567505 100644 --- a/testdata/d2oracle/TestDelete/edge_common_3.exp.json +++ b/testdata/d2oracle/TestDelete/edge_common_3.exp.json @@ -90,7 +90,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -177,7 +177,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -231,7 +231,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -285,7 +285,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/edge_common_4.exp.json b/testdata/d2oracle/TestDelete/edge_common_4.exp.json index f954d4ebe..b17687cc0 100644 --- a/testdata/d2oracle/TestDelete/edge_common_4.exp.json +++ b/testdata/d2oracle/TestDelete/edge_common_4.exp.json @@ -90,7 +90,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -177,7 +177,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -231,7 +231,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -285,7 +285,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/edge_conflict.exp.json b/testdata/d2oracle/TestDelete/edge_conflict.exp.json index 3d9a04177..151e6a69a 100644 --- a/testdata/d2oracle/TestDelete/edge_conflict.exp.json +++ b/testdata/d2oracle/TestDelete/edge_conflict.exp.json @@ -113,7 +113,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -189,7 +189,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -274,7 +274,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -328,7 +328,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -382,7 +382,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/edge_decrement.exp.json b/testdata/d2oracle/TestDelete/edge_decrement.exp.json index fa9f3f0da..7e8cd36b0 100644 --- a/testdata/d2oracle/TestDelete/edge_decrement.exp.json +++ b/testdata/d2oracle/TestDelete/edge_decrement.exp.json @@ -450,7 +450,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -768,7 +768,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -951,7 +951,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/edge_first.exp.json b/testdata/d2oracle/TestDelete/edge_first.exp.json index 03f2fc20e..ff36efa04 100644 --- a/testdata/d2oracle/TestDelete/edge_first.exp.json +++ b/testdata/d2oracle/TestDelete/edge_first.exp.json @@ -179,7 +179,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -307,7 +307,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -372,7 +372,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -437,7 +437,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -480,7 +480,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -523,7 +523,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -586,7 +586,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -629,7 +629,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/edge_flat_style.exp.json b/testdata/d2oracle/TestDelete/edge_flat_style.exp.json index 2ae0a34e2..305e6a4aa 100644 --- a/testdata/d2oracle/TestDelete/edge_flat_style.exp.json +++ b/testdata/d2oracle/TestDelete/edge_flat_style.exp.json @@ -45,7 +45,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -90,7 +90,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/edge_identical_child.exp.json b/testdata/d2oracle/TestDelete/edge_identical_child.exp.json index 2233f3e1d..eb781b86d 100644 --- a/testdata/d2oracle/TestDelete/edge_identical_child.exp.json +++ b/testdata/d2oracle/TestDelete/edge_identical_child.exp.json @@ -101,7 +101,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -199,7 +199,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -264,7 +264,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -329,7 +329,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -383,7 +383,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -437,7 +437,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/edge_key_style.exp.json b/testdata/d2oracle/TestDelete/edge_key_style.exp.json index 134edb759..7562e03e2 100644 --- a/testdata/d2oracle/TestDelete/edge_key_style.exp.json +++ b/testdata/d2oracle/TestDelete/edge_key_style.exp.json @@ -68,7 +68,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -144,7 +144,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -187,7 +187,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/edge_last.exp.json b/testdata/d2oracle/TestDelete/edge_last.exp.json index cf998ef66..ba877e571 100644 --- a/testdata/d2oracle/TestDelete/edge_last.exp.json +++ b/testdata/d2oracle/TestDelete/edge_last.exp.json @@ -216,7 +216,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -374,7 +374,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -439,7 +439,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -504,7 +504,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -547,7 +547,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -590,7 +590,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -653,7 +653,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -716,7 +716,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -759,7 +759,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/edge_map_style.exp.json b/testdata/d2oracle/TestDelete/edge_map_style.exp.json index e9975b9f8..9ff8ae11c 100644 --- a/testdata/d2oracle/TestDelete/edge_map_style.exp.json +++ b/testdata/d2oracle/TestDelete/edge_map_style.exp.json @@ -68,7 +68,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -144,7 +144,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -187,7 +187,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/edge_middle.exp.json b/testdata/d2oracle/TestDelete/edge_middle.exp.json index d78960b95..91b14b60f 100644 --- a/testdata/d2oracle/TestDelete/edge_middle.exp.json +++ b/testdata/d2oracle/TestDelete/edge_middle.exp.json @@ -202,7 +202,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -360,7 +360,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -425,7 +425,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -490,7 +490,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -533,7 +533,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -596,7 +596,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -639,7 +639,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -682,7 +682,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -725,7 +725,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/empty_map.exp.json b/testdata/d2oracle/TestDelete/empty_map.exp.json index 68d997381..2acea4509 100644 --- a/testdata/d2oracle/TestDelete/empty_map.exp.json +++ b/testdata/d2oracle/TestDelete/empty_map.exp.json @@ -74,7 +74,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -119,7 +119,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -162,7 +162,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/flat.exp.json b/testdata/d2oracle/TestDelete/flat.exp.json index 211d0bdb6..3f6f4cf3f 100644 --- a/testdata/d2oracle/TestDelete/flat.exp.json +++ b/testdata/d2oracle/TestDelete/flat.exp.json @@ -21,7 +21,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, diff --git a/testdata/d2oracle/TestDelete/flat_reserved.exp.json b/testdata/d2oracle/TestDelete/flat_reserved.exp.json index 8476e1edd..601cb3246 100644 --- a/testdata/d2oracle/TestDelete/flat_reserved.exp.json +++ b/testdata/d2oracle/TestDelete/flat_reserved.exp.json @@ -68,7 +68,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -144,7 +144,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -187,7 +187,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/hoist_children.exp.json b/testdata/d2oracle/TestDelete/hoist_children.exp.json index 97cfc87a8..6ef96aeff 100644 --- a/testdata/d2oracle/TestDelete/hoist_children.exp.json +++ b/testdata/d2oracle/TestDelete/hoist_children.exp.json @@ -74,7 +74,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -119,7 +119,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -162,7 +162,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/hoist_edge_children.exp.json b/testdata/d2oracle/TestDelete/hoist_edge_children.exp.json index b82328e95..26f1c0df6 100644 --- a/testdata/d2oracle/TestDelete/hoist_edge_children.exp.json +++ b/testdata/d2oracle/TestDelete/hoist_edge_children.exp.json @@ -91,7 +91,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -167,7 +167,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -210,7 +210,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -253,7 +253,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/key_with_edges.exp.json b/testdata/d2oracle/TestDelete/key_with_edges.exp.json index 8e97c26c9..92d07ef4d 100644 --- a/testdata/d2oracle/TestDelete/key_with_edges.exp.json +++ b/testdata/d2oracle/TestDelete/key_with_edges.exp.json @@ -90,7 +90,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -177,7 +177,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -231,7 +231,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -285,7 +285,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/key_with_edges_2.exp.json b/testdata/d2oracle/TestDelete/key_with_edges_2.exp.json index 5f3b819c6..1a050b474 100644 --- a/testdata/d2oracle/TestDelete/key_with_edges_2.exp.json +++ b/testdata/d2oracle/TestDelete/key_with_edges_2.exp.json @@ -56,7 +56,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -112,7 +112,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -166,7 +166,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/key_with_edges_3.exp.json b/testdata/d2oracle/TestDelete/key_with_edges_3.exp.json index 18207c839..972602ab8 100644 --- a/testdata/d2oracle/TestDelete/key_with_edges_3.exp.json +++ b/testdata/d2oracle/TestDelete/key_with_edges_3.exp.json @@ -56,7 +56,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -112,7 +112,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -166,7 +166,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/key_with_edges_4.exp.json b/testdata/d2oracle/TestDelete/key_with_edges_4.exp.json index 0c2b141a2..54537c67c 100644 --- a/testdata/d2oracle/TestDelete/key_with_edges_4.exp.json +++ b/testdata/d2oracle/TestDelete/key_with_edges_4.exp.json @@ -90,7 +90,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -177,7 +177,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -231,7 +231,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -285,7 +285,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/multi_near.exp.json b/testdata/d2oracle/TestDelete/multi_near.exp.json index 4e1a57bdb..52e790bd6 100644 --- a/testdata/d2oracle/TestDelete/multi_near.exp.json +++ b/testdata/d2oracle/TestDelete/multi_near.exp.json @@ -192,7 +192,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -237,7 +237,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -295,7 +295,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -353,7 +353,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -396,7 +396,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/multi_path_map_conflict.exp.json b/testdata/d2oracle/TestDelete/multi_path_map_conflict.exp.json index 99cf6d79d..512dee2e2 100644 --- a/testdata/d2oracle/TestDelete/multi_path_map_conflict.exp.json +++ b/testdata/d2oracle/TestDelete/multi_path_map_conflict.exp.json @@ -126,7 +126,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -191,7 +191,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -234,7 +234,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -277,7 +277,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/multi_path_map_no_conflict.exp.json b/testdata/d2oracle/TestDelete/multi_path_map_no_conflict.exp.json index ef6cf5761..fe559c369 100644 --- a/testdata/d2oracle/TestDelete/multi_path_map_no_conflict.exp.json +++ b/testdata/d2oracle/TestDelete/multi_path_map_no_conflict.exp.json @@ -97,7 +97,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -142,7 +142,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -185,7 +185,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -228,7 +228,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/multiple_flat_middle_container.exp.json b/testdata/d2oracle/TestDelete/multiple_flat_middle_container.exp.json index 10dd3d52d..c649b5ac0 100644 --- a/testdata/d2oracle/TestDelete/multiple_flat_middle_container.exp.json +++ b/testdata/d2oracle/TestDelete/multiple_flat_middle_container.exp.json @@ -90,7 +90,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -177,7 +177,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -231,7 +231,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -285,7 +285,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/multiple_flat_style.exp.json b/testdata/d2oracle/TestDelete/multiple_flat_style.exp.json index 959042a86..247e72c2f 100644 --- a/testdata/d2oracle/TestDelete/multiple_flat_style.exp.json +++ b/testdata/d2oracle/TestDelete/multiple_flat_style.exp.json @@ -73,7 +73,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -144,7 +144,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/multiple_map_styles.exp.json b/testdata/d2oracle/TestDelete/multiple_map_styles.exp.json index 4ccd4f7dc..cfa33cab0 100644 --- a/testdata/d2oracle/TestDelete/multiple_map_styles.exp.json +++ b/testdata/d2oracle/TestDelete/multiple_map_styles.exp.json @@ -109,7 +109,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -158,7 +158,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/near.exp.json b/testdata/d2oracle/TestDelete/near.exp.json index ffc235220..6991d9d32 100644 --- a/testdata/d2oracle/TestDelete/near.exp.json +++ b/testdata/d2oracle/TestDelete/near.exp.json @@ -45,7 +45,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -90,7 +90,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/nested.exp.json b/testdata/d2oracle/TestDelete/nested.exp.json index 50db24212..df80511e7 100644 --- a/testdata/d2oracle/TestDelete/nested.exp.json +++ b/testdata/d2oracle/TestDelete/nested.exp.json @@ -67,7 +67,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -134,7 +134,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -199,7 +199,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -264,7 +264,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/nested_2.exp.json b/testdata/d2oracle/TestDelete/nested_2.exp.json index a4a7a9425..8279fda83 100644 --- a/testdata/d2oracle/TestDelete/nested_2.exp.json +++ b/testdata/d2oracle/TestDelete/nested_2.exp.json @@ -67,7 +67,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -134,7 +134,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -199,7 +199,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -264,7 +264,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/nested_edge_key_style.exp.json b/testdata/d2oracle/TestDelete/nested_edge_key_style.exp.json index d25547e4f..c37eda91d 100644 --- a/testdata/d2oracle/TestDelete/nested_edge_key_style.exp.json +++ b/testdata/d2oracle/TestDelete/nested_edge_key_style.exp.json @@ -97,7 +97,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -173,7 +173,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -216,7 +216,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -259,7 +259,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/nested_flat_style.exp.json b/testdata/d2oracle/TestDelete/nested_flat_style.exp.json index ac8ea3cad..168b2d4b9 100644 --- a/testdata/d2oracle/TestDelete/nested_flat_style.exp.json +++ b/testdata/d2oracle/TestDelete/nested_flat_style.exp.json @@ -45,7 +45,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -90,7 +90,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/nested_reserved.exp.json b/testdata/d2oracle/TestDelete/nested_reserved.exp.json index a4e5bf400..3795fe11d 100644 --- a/testdata/d2oracle/TestDelete/nested_reserved.exp.json +++ b/testdata/d2oracle/TestDelete/nested_reserved.exp.json @@ -101,7 +101,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -199,7 +199,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -295,7 +295,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -360,7 +360,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/nested_underscore_update.exp.json b/testdata/d2oracle/TestDelete/nested_underscore_update.exp.json index 3e17f6a66..23921a096 100644 --- a/testdata/d2oracle/TestDelete/nested_underscore_update.exp.json +++ b/testdata/d2oracle/TestDelete/nested_underscore_update.exp.json @@ -85,7 +85,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -130,7 +130,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -184,7 +184,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/node_in_edge.exp.json b/testdata/d2oracle/TestDelete/node_in_edge.exp.json index b81594fdd..d56558fd8 100644 --- a/testdata/d2oracle/TestDelete/node_in_edge.exp.json +++ b/testdata/d2oracle/TestDelete/node_in_edge.exp.json @@ -166,7 +166,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -272,7 +272,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -315,7 +315,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -358,7 +358,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -401,7 +401,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -444,7 +444,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -487,7 +487,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/node_in_edge_last.exp.json b/testdata/d2oracle/TestDelete/node_in_edge_last.exp.json index f21f1f9c1..dd1456fcf 100644 --- a/testdata/d2oracle/TestDelete/node_in_edge_last.exp.json +++ b/testdata/d2oracle/TestDelete/node_in_edge_last.exp.json @@ -205,7 +205,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -352,7 +352,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -406,7 +406,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -449,7 +449,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -492,7 +492,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -555,7 +555,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -618,7 +618,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -661,7 +661,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/only_delete_edge_reserved.exp.json b/testdata/d2oracle/TestDelete/only_delete_edge_reserved.exp.json index 7d7ec783b..47a45ceaa 100644 --- a/testdata/d2oracle/TestDelete/only_delete_edge_reserved.exp.json +++ b/testdata/d2oracle/TestDelete/only_delete_edge_reserved.exp.json @@ -164,7 +164,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -264,7 +264,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -327,7 +327,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/only_delete_obj_reserved.exp.json b/testdata/d2oracle/TestDelete/only_delete_obj_reserved.exp.json index 1650550fa..61f9dcdee 100644 --- a/testdata/d2oracle/TestDelete/only_delete_obj_reserved.exp.json +++ b/testdata/d2oracle/TestDelete/only_delete_obj_reserved.exp.json @@ -164,7 +164,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -264,7 +264,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -327,7 +327,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/order_1.exp.json b/testdata/d2oracle/TestDelete/order_1.exp.json index 043baf74c..c83f093cc 100644 --- a/testdata/d2oracle/TestDelete/order_1.exp.json +++ b/testdata/d2oracle/TestDelete/order_1.exp.json @@ -91,7 +91,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -167,7 +167,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -210,7 +210,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -253,7 +253,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/order_2.exp.json b/testdata/d2oracle/TestDelete/order_2.exp.json index bd49c03b6..71042a674 100644 --- a/testdata/d2oracle/TestDelete/order_2.exp.json +++ b/testdata/d2oracle/TestDelete/order_2.exp.json @@ -68,7 +68,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -113,7 +113,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -156,7 +156,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/order_3.exp.json b/testdata/d2oracle/TestDelete/order_3.exp.json index 4bf4251eb..7c75321f9 100644 --- a/testdata/d2oracle/TestDelete/order_3.exp.json +++ b/testdata/d2oracle/TestDelete/order_3.exp.json @@ -68,7 +68,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -113,7 +113,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -156,7 +156,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/order_4.exp.json b/testdata/d2oracle/TestDelete/order_4.exp.json index aba81bcd3..ab41da5d0 100644 --- a/testdata/d2oracle/TestDelete/order_4.exp.json +++ b/testdata/d2oracle/TestDelete/order_4.exp.json @@ -45,7 +45,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -90,7 +90,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/order_5.exp.json b/testdata/d2oracle/TestDelete/order_5.exp.json index d45a8745a..c3336c5dd 100644 --- a/testdata/d2oracle/TestDelete/order_5.exp.json +++ b/testdata/d2oracle/TestDelete/order_5.exp.json @@ -143,7 +143,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -249,7 +249,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -292,7 +292,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -335,7 +335,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -378,7 +378,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -421,7 +421,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/order_6.exp.json b/testdata/d2oracle/TestDelete/order_6.exp.json index 921b3c295..3f2e88242 100644 --- a/testdata/d2oracle/TestDelete/order_6.exp.json +++ b/testdata/d2oracle/TestDelete/order_6.exp.json @@ -119,7 +119,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -206,7 +206,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -249,7 +249,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -314,7 +314,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -379,7 +379,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/order_7.exp.json b/testdata/d2oracle/TestDelete/order_7.exp.json index 1311a683d..d6744ebb7 100644 --- a/testdata/d2oracle/TestDelete/order_7.exp.json +++ b/testdata/d2oracle/TestDelete/order_7.exp.json @@ -130,7 +130,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -228,7 +228,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -271,7 +271,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -347,7 +347,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -423,7 +423,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -499,7 +499,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/order_8.exp.json b/testdata/d2oracle/TestDelete/order_8.exp.json index 2988c58d6..735aad526 100644 --- a/testdata/d2oracle/TestDelete/order_8.exp.json +++ b/testdata/d2oracle/TestDelete/order_8.exp.json @@ -137,7 +137,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -182,7 +182,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -225,7 +225,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -268,7 +268,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -311,7 +311,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -354,7 +354,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/shape_class.exp.json b/testdata/d2oracle/TestDelete/shape_class.exp.json index 76ae10fa7..ed1e50f18 100644 --- a/testdata/d2oracle/TestDelete/shape_class.exp.json +++ b/testdata/d2oracle/TestDelete/shape_class.exp.json @@ -45,7 +45,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -90,7 +90,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/shape_sql_table.exp.json b/testdata/d2oracle/TestDelete/shape_sql_table.exp.json index 7092dace0..419ea072a 100644 --- a/testdata/d2oracle/TestDelete/shape_sql_table.exp.json +++ b/testdata/d2oracle/TestDelete/shape_sql_table.exp.json @@ -265,7 +265,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -341,7 +341,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -445,7 +445,7 @@ "value": "sql_table" }, "direction": { - "value": "down" + "value": "" } } }, @@ -488,7 +488,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/singular_flat_style.exp.json b/testdata/d2oracle/TestDelete/singular_flat_style.exp.json index 7d00f1095..442097e70 100644 --- a/testdata/d2oracle/TestDelete/singular_flat_style.exp.json +++ b/testdata/d2oracle/TestDelete/singular_flat_style.exp.json @@ -45,7 +45,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -90,7 +90,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/singular_map_style.exp.json b/testdata/d2oracle/TestDelete/singular_map_style.exp.json index d747efc90..b75f55c35 100644 --- a/testdata/d2oracle/TestDelete/singular_map_style.exp.json +++ b/testdata/d2oracle/TestDelete/singular_map_style.exp.json @@ -45,7 +45,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -90,7 +90,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/underscore_no_conflict.exp.json b/testdata/d2oracle/TestDelete/underscore_no_conflict.exp.json index 25a4ae1d2..a19da74fe 100644 --- a/testdata/d2oracle/TestDelete/underscore_no_conflict.exp.json +++ b/testdata/d2oracle/TestDelete/underscore_no_conflict.exp.json @@ -108,7 +108,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -153,7 +153,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -207,7 +207,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -250,7 +250,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestDelete/underscore_remove.exp.json b/testdata/d2oracle/TestDelete/underscore_remove.exp.json index 0e954ca80..dd78e801c 100644 --- a/testdata/d2oracle/TestDelete/underscore_remove.exp.json +++ b/testdata/d2oracle/TestDelete/underscore_remove.exp.json @@ -137,7 +137,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -243,7 +243,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -286,7 +286,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -329,7 +329,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -372,7 +372,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -415,7 +415,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/append_multiple_styles.exp.json b/testdata/d2oracle/TestMove/append_multiple_styles.exp.json index 74a573244..5693019db 100644 --- a/testdata/d2oracle/TestMove/append_multiple_styles.exp.json +++ b/testdata/d2oracle/TestMove/append_multiple_styles.exp.json @@ -229,7 +229,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -274,7 +274,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -344,7 +344,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/basic.exp.json b/testdata/d2oracle/TestMove/basic.exp.json index dd3c56f27..9216171b9 100644 --- a/testdata/d2oracle/TestMove/basic.exp.json +++ b/testdata/d2oracle/TestMove/basic.exp.json @@ -45,7 +45,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -90,7 +90,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/basic_nested.exp.json b/testdata/d2oracle/TestMove/basic_nested.exp.json index 857faea54..5667c2d99 100644 --- a/testdata/d2oracle/TestMove/basic_nested.exp.json +++ b/testdata/d2oracle/TestMove/basic_nested.exp.json @@ -74,7 +74,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -119,7 +119,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -162,7 +162,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/basic_out_of_container.exp.json b/testdata/d2oracle/TestMove/basic_out_of_container.exp.json index c02e1a8d4..e80df6540 100644 --- a/testdata/d2oracle/TestMove/basic_out_of_container.exp.json +++ b/testdata/d2oracle/TestMove/basic_out_of_container.exp.json @@ -68,7 +68,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -113,7 +113,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -156,7 +156,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/between_containers.exp.json b/testdata/d2oracle/TestMove/between_containers.exp.json index 226a4c5cb..5b35c6d5e 100644 --- a/testdata/d2oracle/TestMove/between_containers.exp.json +++ b/testdata/d2oracle/TestMove/between_containers.exp.json @@ -97,7 +97,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -142,7 +142,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -185,7 +185,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -228,7 +228,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/chain_connected_nested.exp.json b/testdata/d2oracle/TestMove/chain_connected_nested.exp.json index 060dcc379..615332dbd 100644 --- a/testdata/d2oracle/TestMove/chain_connected_nested.exp.json +++ b/testdata/d2oracle/TestMove/chain_connected_nested.exp.json @@ -128,7 +128,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -234,7 +234,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -297,7 +297,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -360,7 +360,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/chain_connected_nested_no_extra_create.exp.json b/testdata/d2oracle/TestMove/chain_connected_nested_no_extra_create.exp.json index c776f06f6..865e6210b 100644 --- a/testdata/d2oracle/TestMove/chain_connected_nested_no_extra_create.exp.json +++ b/testdata/d2oracle/TestMove/chain_connected_nested_no_extra_create.exp.json @@ -116,7 +116,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -233,7 +233,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -287,7 +287,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -350,7 +350,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -393,7 +393,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/connected_nested.exp.json b/testdata/d2oracle/TestMove/connected_nested.exp.json index b649f7a21..a5792a9d1 100644 --- a/testdata/d2oracle/TestMove/connected_nested.exp.json +++ b/testdata/d2oracle/TestMove/connected_nested.exp.json @@ -91,7 +91,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -167,7 +167,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -210,7 +210,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -253,7 +253,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/container_near.exp.json b/testdata/d2oracle/TestMove/container_near.exp.json index a7ee162a6..2f8b2384c 100644 --- a/testdata/d2oracle/TestMove/container_near.exp.json +++ b/testdata/d2oracle/TestMove/container_near.exp.json @@ -199,7 +199,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -244,7 +244,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -324,7 +324,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -378,7 +378,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -432,7 +432,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -475,7 +475,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -518,7 +518,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/edge_across_containers.exp.json b/testdata/d2oracle/TestMove/edge_across_containers.exp.json index 4fcc9529a..6bb4de01d 100644 --- a/testdata/d2oracle/TestMove/edge_across_containers.exp.json +++ b/testdata/d2oracle/TestMove/edge_across_containers.exp.json @@ -142,7 +142,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -218,7 +218,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -303,7 +303,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -368,7 +368,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -411,7 +411,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/edge_basic.exp.json b/testdata/d2oracle/TestMove/edge_basic.exp.json index 70da245ca..353c67dc1 100644 --- a/testdata/d2oracle/TestMove/edge_basic.exp.json +++ b/testdata/d2oracle/TestMove/edge_basic.exp.json @@ -68,7 +68,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -144,7 +144,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -187,7 +187,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/edge_chain_basic.exp.json b/testdata/d2oracle/TestMove/edge_chain_basic.exp.json index 8518db578..03d087ec1 100644 --- a/testdata/d2oracle/TestMove/edge_chain_basic.exp.json +++ b/testdata/d2oracle/TestMove/edge_chain_basic.exp.json @@ -105,7 +105,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -211,7 +211,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -274,7 +274,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -317,7 +317,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/edge_chain_circular.exp.json b/testdata/d2oracle/TestMove/edge_chain_circular.exp.json index 856c5b91c..5e0fd751c 100644 --- a/testdata/d2oracle/TestMove/edge_chain_circular.exp.json +++ b/testdata/d2oracle/TestMove/edge_chain_circular.exp.json @@ -156,7 +156,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -262,7 +262,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -347,7 +347,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -410,7 +410,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/edge_chain_into_container.exp.json b/testdata/d2oracle/TestMove/edge_chain_into_container.exp.json index 2236b2fbc..e53bd0bec 100644 --- a/testdata/d2oracle/TestMove/edge_chain_into_container.exp.json +++ b/testdata/d2oracle/TestMove/edge_chain_into_container.exp.json @@ -139,7 +139,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -276,7 +276,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -330,7 +330,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -393,7 +393,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -436,7 +436,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/edge_chain_out_container.exp.json b/testdata/d2oracle/TestMove/edge_chain_out_container.exp.json index 3d320b686..38c443c4a 100644 --- a/testdata/d2oracle/TestMove/edge_chain_out_container.exp.json +++ b/testdata/d2oracle/TestMove/edge_chain_out_container.exp.json @@ -156,7 +156,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -262,7 +262,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -305,7 +305,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -390,7 +390,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -433,7 +433,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/edge_conflict.exp.json b/testdata/d2oracle/TestMove/edge_conflict.exp.json index 8fe85c030..62c325c64 100644 --- a/testdata/d2oracle/TestMove/edge_conflict.exp.json +++ b/testdata/d2oracle/TestMove/edge_conflict.exp.json @@ -142,7 +142,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -218,7 +218,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -261,7 +261,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -346,7 +346,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -400,7 +400,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -454,7 +454,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/edge_into_container.exp.json b/testdata/d2oracle/TestMove/edge_into_container.exp.json index 9a1b01320..6218e4fd0 100644 --- a/testdata/d2oracle/TestMove/edge_into_container.exp.json +++ b/testdata/d2oracle/TestMove/edge_into_container.exp.json @@ -131,7 +131,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -238,7 +238,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -281,7 +281,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -335,7 +335,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -378,7 +378,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/edge_nested_basic.exp.json b/testdata/d2oracle/TestMove/edge_nested_basic.exp.json index a9fab09b5..902b1a123 100644 --- a/testdata/d2oracle/TestMove/edge_nested_basic.exp.json +++ b/testdata/d2oracle/TestMove/edge_nested_basic.exp.json @@ -97,7 +97,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -173,7 +173,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -216,7 +216,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -259,7 +259,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/edge_out_of_container.exp.json b/testdata/d2oracle/TestMove/edge_out_of_container.exp.json index 2d9149f99..252f57ea1 100644 --- a/testdata/d2oracle/TestMove/edge_out_of_container.exp.json +++ b/testdata/d2oracle/TestMove/edge_out_of_container.exp.json @@ -108,7 +108,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -184,7 +184,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -238,7 +238,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -281,7 +281,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/extend_map.exp.json b/testdata/d2oracle/TestMove/extend_map.exp.json index 2ffb0ef4b..e1335c7f0 100644 --- a/testdata/d2oracle/TestMove/extend_map.exp.json +++ b/testdata/d2oracle/TestMove/extend_map.exp.json @@ -155,7 +155,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -220,7 +220,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -263,7 +263,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -306,7 +306,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -349,7 +349,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/extend_stationary_path.exp.json b/testdata/d2oracle/TestMove/extend_stationary_path.exp.json index 0075aa4bc..5ad3f58bd 100644 --- a/testdata/d2oracle/TestMove/extend_stationary_path.exp.json +++ b/testdata/d2oracle/TestMove/extend_stationary_path.exp.json @@ -148,7 +148,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -235,7 +235,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -320,7 +320,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -405,7 +405,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/flat_between_containers.exp.json b/testdata/d2oracle/TestMove/flat_between_containers.exp.json index c85b32880..b62a33065 100644 --- a/testdata/d2oracle/TestMove/flat_between_containers.exp.json +++ b/testdata/d2oracle/TestMove/flat_between_containers.exp.json @@ -97,7 +97,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -142,7 +142,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -185,7 +185,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -228,7 +228,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/flat_merge.exp.json b/testdata/d2oracle/TestMove/flat_merge.exp.json index 9df86b37a..483fdb5ce 100644 --- a/testdata/d2oracle/TestMove/flat_merge.exp.json +++ b/testdata/d2oracle/TestMove/flat_merge.exp.json @@ -130,7 +130,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -175,7 +175,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -218,7 +218,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -261,7 +261,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -304,7 +304,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/flat_middle_container.exp.json b/testdata/d2oracle/TestMove/flat_middle_container.exp.json index 3b6b7c094..a45b71135 100644 --- a/testdata/d2oracle/TestMove/flat_middle_container.exp.json +++ b/testdata/d2oracle/TestMove/flat_middle_container.exp.json @@ -108,7 +108,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -164,7 +164,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -218,7 +218,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -261,7 +261,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -304,7 +304,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/flat_nested_merge.exp.json b/testdata/d2oracle/TestMove/flat_nested_merge.exp.json index b38679467..737c1a629 100644 --- a/testdata/d2oracle/TestMove/flat_nested_merge.exp.json +++ b/testdata/d2oracle/TestMove/flat_nested_merge.exp.json @@ -186,7 +186,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -264,7 +264,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -340,7 +340,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -416,7 +416,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -492,7 +492,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -546,7 +546,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -600,7 +600,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -665,7 +665,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -730,7 +730,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -795,7 +795,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -838,7 +838,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/flat_nested_merge_multiple_refs.exp.json b/testdata/d2oracle/TestMove/flat_nested_merge_multiple_refs.exp.json index 4744bbdbe..56cde491e 100644 --- a/testdata/d2oracle/TestMove/flat_nested_merge_multiple_refs.exp.json +++ b/testdata/d2oracle/TestMove/flat_nested_merge_multiple_refs.exp.json @@ -284,7 +284,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -424,7 +424,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -573,7 +573,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -722,7 +722,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -765,7 +765,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -808,7 +808,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -851,7 +851,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -894,7 +894,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -970,7 +970,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/flat_reparent_with_map_value.exp.json b/testdata/d2oracle/TestMove/flat_reparent_with_map_value.exp.json index 6d206c312..b5a99a192 100644 --- a/testdata/d2oracle/TestMove/flat_reparent_with_map_value.exp.json +++ b/testdata/d2oracle/TestMove/flat_reparent_with_map_value.exp.json @@ -107,7 +107,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -152,7 +152,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -195,7 +195,7 @@ "value": "hexagon" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/flat_reparent_with_mixed_map_value.exp.json b/testdata/d2oracle/TestMove/flat_reparent_with_mixed_map_value.exp.json index 185a8b0b0..be6599d0a 100644 --- a/testdata/d2oracle/TestMove/flat_reparent_with_mixed_map_value.exp.json +++ b/testdata/d2oracle/TestMove/flat_reparent_with_mixed_map_value.exp.json @@ -148,7 +148,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -193,7 +193,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -236,7 +236,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -279,7 +279,7 @@ "value": "hexagon" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/flat_reparent_with_value.exp.json b/testdata/d2oracle/TestMove/flat_reparent_with_value.exp.json index 37dedfb5a..f4586228d 100644 --- a/testdata/d2oracle/TestMove/flat_reparent_with_value.exp.json +++ b/testdata/d2oracle/TestMove/flat_reparent_with_value.exp.json @@ -78,7 +78,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -123,7 +123,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -166,7 +166,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/flat_style.exp.json b/testdata/d2oracle/TestMove/flat_style.exp.json index 749b3e5fc..8e0bcea62 100644 --- a/testdata/d2oracle/TestMove/flat_style.exp.json +++ b/testdata/d2oracle/TestMove/flat_style.exp.json @@ -157,7 +157,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -202,7 +202,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -316,7 +316,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/full_edge_slice.exp.json b/testdata/d2oracle/TestMove/full_edge_slice.exp.json index 50aa53678..238363e12 100644 --- a/testdata/d2oracle/TestMove/full_edge_slice.exp.json +++ b/testdata/d2oracle/TestMove/full_edge_slice.exp.json @@ -211,7 +211,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -348,7 +348,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -391,7 +391,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -485,7 +485,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -559,7 +559,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/full_slice.exp.json b/testdata/d2oracle/TestMove/full_slice.exp.json index bf8ba0be7..b7ffc8ff5 100644 --- a/testdata/d2oracle/TestMove/full_slice.exp.json +++ b/testdata/d2oracle/TestMove/full_slice.exp.json @@ -97,7 +97,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -142,7 +142,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -185,7 +185,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -228,7 +228,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/gnarly_1.exp.json b/testdata/d2oracle/TestMove/gnarly_1.exp.json index e358c1cdc..0c46d052f 100644 --- a/testdata/d2oracle/TestMove/gnarly_1.exp.json +++ b/testdata/d2oracle/TestMove/gnarly_1.exp.json @@ -355,7 +355,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -553,7 +553,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -596,7 +596,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -701,7 +701,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -775,7 +775,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -840,7 +840,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -905,7 +905,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -970,7 +970,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -1035,7 +1035,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -1100,7 +1100,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -1154,7 +1154,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -1208,7 +1208,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -1262,7 +1262,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/hoist_container_children.exp.json b/testdata/d2oracle/TestMove/hoist_container_children.exp.json index bd73ed54b..729b716c4 100644 --- a/testdata/d2oracle/TestMove/hoist_container_children.exp.json +++ b/testdata/d2oracle/TestMove/hoist_container_children.exp.json @@ -120,7 +120,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -165,7 +165,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -208,7 +208,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -251,7 +251,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -294,7 +294,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/into_container_existing_map.exp.json b/testdata/d2oracle/TestMove/into_container_existing_map.exp.json index 6106713d1..cef9f69ca 100644 --- a/testdata/d2oracle/TestMove/into_container_existing_map.exp.json +++ b/testdata/d2oracle/TestMove/into_container_existing_map.exp.json @@ -97,7 +97,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -142,7 +142,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -185,7 +185,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -228,7 +228,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/into_container_nonexisting_map.exp.json b/testdata/d2oracle/TestMove/into_container_nonexisting_map.exp.json index 9504ca2c5..be51f69ce 100644 --- a/testdata/d2oracle/TestMove/into_container_nonexisting_map.exp.json +++ b/testdata/d2oracle/TestMove/into_container_nonexisting_map.exp.json @@ -74,7 +74,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -119,7 +119,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -162,7 +162,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/into_container_with_flat_keys.exp.json b/testdata/d2oracle/TestMove/into_container_with_flat_keys.exp.json index 7b9397ffb..8fc2045a0 100644 --- a/testdata/d2oracle/TestMove/into_container_with_flat_keys.exp.json +++ b/testdata/d2oracle/TestMove/into_container_with_flat_keys.exp.json @@ -208,7 +208,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -253,7 +253,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -306,7 +306,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/into_container_with_flat_style.exp.json b/testdata/d2oracle/TestMove/into_container_with_flat_style.exp.json index 1db5479ac..493b4cff5 100644 --- a/testdata/d2oracle/TestMove/into_container_with_flat_style.exp.json +++ b/testdata/d2oracle/TestMove/into_container_with_flat_style.exp.json @@ -114,7 +114,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -163,7 +163,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -206,7 +206,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/map_transplant.exp.json b/testdata/d2oracle/TestMove/map_transplant.exp.json index 026cd6b82..0bcc93844 100644 --- a/testdata/d2oracle/TestMove/map_transplant.exp.json +++ b/testdata/d2oracle/TestMove/map_transplant.exp.json @@ -217,7 +217,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -262,7 +262,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -305,7 +305,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -348,7 +348,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -395,7 +395,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/map_with_label.exp.json b/testdata/d2oracle/TestMove/map_with_label.exp.json index 874bd3ac4..0f55d724b 100644 --- a/testdata/d2oracle/TestMove/map_with_label.exp.json +++ b/testdata/d2oracle/TestMove/map_with_label.exp.json @@ -107,7 +107,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -152,7 +152,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -195,7 +195,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -238,7 +238,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/merge_nested_maps.exp.json b/testdata/d2oracle/TestMove/merge_nested_maps.exp.json index afb377ea3..4d5eb8c56 100644 --- a/testdata/d2oracle/TestMove/merge_nested_maps.exp.json +++ b/testdata/d2oracle/TestMove/merge_nested_maps.exp.json @@ -268,7 +268,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -313,7 +313,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -460,7 +460,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -514,7 +514,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -588,7 +588,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -653,7 +653,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -718,7 +718,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -761,7 +761,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -804,7 +804,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/merge_reserved.exp.json b/testdata/d2oracle/TestMove/merge_reserved.exp.json index 74ad308c4..439d97217 100644 --- a/testdata/d2oracle/TestMove/merge_reserved.exp.json +++ b/testdata/d2oracle/TestMove/merge_reserved.exp.json @@ -259,7 +259,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -304,7 +304,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -440,7 +440,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -494,7 +494,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -548,7 +548,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -602,7 +602,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -645,7 +645,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/middle_container.exp.json b/testdata/d2oracle/TestMove/middle_container.exp.json index f7c71bf8b..d0dd56f55 100644 --- a/testdata/d2oracle/TestMove/middle_container.exp.json +++ b/testdata/d2oracle/TestMove/middle_container.exp.json @@ -97,7 +97,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -142,7 +142,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -185,7 +185,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -228,7 +228,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/move_container_children.exp.json b/testdata/d2oracle/TestMove/move_container_children.exp.json index 14991f3c6..f9c22268a 100644 --- a/testdata/d2oracle/TestMove/move_container_children.exp.json +++ b/testdata/d2oracle/TestMove/move_container_children.exp.json @@ -143,7 +143,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -188,7 +188,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -231,7 +231,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -274,7 +274,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -317,7 +317,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -360,7 +360,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/move_container_conflict_children.exp.json b/testdata/d2oracle/TestMove/move_container_conflict_children.exp.json index 62d7d566d..b8bfb2e10 100644 --- a/testdata/d2oracle/TestMove/move_container_conflict_children.exp.json +++ b/testdata/d2oracle/TestMove/move_container_conflict_children.exp.json @@ -143,7 +143,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -188,7 +188,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -231,7 +231,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -274,7 +274,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -317,7 +317,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -360,7 +360,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/move_into_key_with_value.exp.json b/testdata/d2oracle/TestMove/move_into_key_with_value.exp.json index 2206eb218..6002bd77e 100644 --- a/testdata/d2oracle/TestMove/move_into_key_with_value.exp.json +++ b/testdata/d2oracle/TestMove/move_into_key_with_value.exp.json @@ -84,7 +84,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -129,7 +129,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -172,7 +172,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/move_out_of_edge.exp.json b/testdata/d2oracle/TestMove/move_out_of_edge.exp.json index 568f1b95e..f16251f0c 100644 --- a/testdata/d2oracle/TestMove/move_out_of_edge.exp.json +++ b/testdata/d2oracle/TestMove/move_out_of_edge.exp.json @@ -124,7 +124,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -200,7 +200,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -254,7 +254,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -308,7 +308,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -373,7 +373,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -438,7 +438,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -503,7 +503,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/move_out_of_nested_edge.exp.json b/testdata/d2oracle/TestMove/move_out_of_nested_edge.exp.json index 8afc1fa12..6d69c47a9 100644 --- a/testdata/d2oracle/TestMove/move_out_of_nested_edge.exp.json +++ b/testdata/d2oracle/TestMove/move_out_of_nested_edge.exp.json @@ -164,7 +164,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -293,7 +293,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -389,7 +389,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -432,7 +432,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -486,7 +486,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -540,7 +540,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -605,7 +605,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/multiple_nesting_levels.exp.json b/testdata/d2oracle/TestMove/multiple_nesting_levels.exp.json index e3d7b449b..a75357554 100644 --- a/testdata/d2oracle/TestMove/multiple_nesting_levels.exp.json +++ b/testdata/d2oracle/TestMove/multiple_nesting_levels.exp.json @@ -279,7 +279,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -377,7 +377,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -515,7 +515,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -673,7 +673,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -716,7 +716,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -759,7 +759,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -824,7 +824,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -900,7 +900,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/near.exp.json b/testdata/d2oracle/TestMove/near.exp.json index 22f5cb6a0..9ee15fbae 100644 --- a/testdata/d2oracle/TestMove/near.exp.json +++ b/testdata/d2oracle/TestMove/near.exp.json @@ -107,7 +107,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -178,7 +178,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -221,7 +221,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/nhooyr_one.exp.json b/testdata/d2oracle/TestMove/nhooyr_one.exp.json index 6496dca5f..a6d7b80b2 100644 --- a/testdata/d2oracle/TestMove/nhooyr_one.exp.json +++ b/testdata/d2oracle/TestMove/nhooyr_one.exp.json @@ -126,7 +126,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -171,7 +171,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -214,7 +214,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -257,7 +257,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -300,7 +300,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/nhooyr_two.exp.json b/testdata/d2oracle/TestMove/nhooyr_two.exp.json index 8395a5288..e68f72400 100644 --- a/testdata/d2oracle/TestMove/nhooyr_two.exp.json +++ b/testdata/d2oracle/TestMove/nhooyr_two.exp.json @@ -172,7 +172,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -248,7 +248,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -291,7 +291,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -334,7 +334,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -377,7 +377,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -420,7 +420,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -463,7 +463,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/parentheses.exp.json b/testdata/d2oracle/TestMove/parentheses.exp.json index 1909944ce..f2b4b100e 100644 --- a/testdata/d2oracle/TestMove/parentheses.exp.json +++ b/testdata/d2oracle/TestMove/parentheses.exp.json @@ -107,7 +107,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -214,7 +214,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -257,7 +257,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -311,7 +311,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/partial_edge_slice.exp.json b/testdata/d2oracle/TestMove/partial_edge_slice.exp.json index 29f4abf3e..6f1e7797f 100644 --- a/testdata/d2oracle/TestMove/partial_edge_slice.exp.json +++ b/testdata/d2oracle/TestMove/partial_edge_slice.exp.json @@ -114,7 +114,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -190,7 +190,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -253,7 +253,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -296,7 +296,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/partial_slice.exp.json b/testdata/d2oracle/TestMove/partial_slice.exp.json index 81a1058ca..f4978e04f 100644 --- a/testdata/d2oracle/TestMove/partial_slice.exp.json +++ b/testdata/d2oracle/TestMove/partial_slice.exp.json @@ -68,7 +68,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -113,7 +113,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -156,7 +156,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/rename_2.exp.json b/testdata/d2oracle/TestMove/rename_2.exp.json index eff3852be..37d25714b 100644 --- a/testdata/d2oracle/TestMove/rename_2.exp.json +++ b/testdata/d2oracle/TestMove/rename_2.exp.json @@ -143,7 +143,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -188,7 +188,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -231,7 +231,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -274,7 +274,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -317,7 +317,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -360,7 +360,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/reuse_map.exp.json b/testdata/d2oracle/TestMove/reuse_map.exp.json index 50b293097..e5555dbce 100644 --- a/testdata/d2oracle/TestMove/reuse_map.exp.json +++ b/testdata/d2oracle/TestMove/reuse_map.exp.json @@ -160,7 +160,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -205,7 +205,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -279,7 +279,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -322,7 +322,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -365,7 +365,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -419,7 +419,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/slice_style.exp.json b/testdata/d2oracle/TestMove/slice_style.exp.json index 9ffd58471..6680653ea 100644 --- a/testdata/d2oracle/TestMove/slice_style.exp.json +++ b/testdata/d2oracle/TestMove/slice_style.exp.json @@ -112,7 +112,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -157,7 +157,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -243,7 +243,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/underscore_children.exp.json b/testdata/d2oracle/TestMove/underscore_children.exp.json index 098443897..5a43f84b3 100644 --- a/testdata/d2oracle/TestMove/underscore_children.exp.json +++ b/testdata/d2oracle/TestMove/underscore_children.exp.json @@ -108,7 +108,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -153,7 +153,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -227,7 +227,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/underscore_edge_children.exp.json b/testdata/d2oracle/TestMove/underscore_edge_children.exp.json index 74b9a8274..e1a1fb736 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_children.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_children.exp.json @@ -131,7 +131,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -207,7 +207,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -281,7 +281,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -324,7 +324,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/underscore_edge_container_1.exp.json b/testdata/d2oracle/TestMove/underscore_edge_container_1.exp.json index fe6fd0017..8d7d7c159 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_container_1.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_container_1.exp.json @@ -97,7 +97,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -173,7 +173,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -216,7 +216,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -259,7 +259,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/underscore_edge_container_2.exp.json b/testdata/d2oracle/TestMove/underscore_edge_container_2.exp.json index e0b504006..0061f2f15 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_container_2.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_container_2.exp.json @@ -108,7 +108,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -184,7 +184,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -258,7 +258,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -312,7 +312,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/underscore_edge_container_3.exp.json b/testdata/d2oracle/TestMove/underscore_edge_container_3.exp.json index c9e453cbd..42c8f2e8a 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_container_3.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_container_3.exp.json @@ -108,7 +108,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -184,7 +184,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -238,7 +238,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -281,7 +281,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/underscore_edge_container_4.exp.json b/testdata/d2oracle/TestMove/underscore_edge_container_4.exp.json index 7bff14144..2581b5f76 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_container_4.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_container_4.exp.json @@ -97,7 +97,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -173,7 +173,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -216,7 +216,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -259,7 +259,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/underscore_edge_container_5.exp.json b/testdata/d2oracle/TestMove/underscore_edge_container_5.exp.json index ae36d17fc..5dd71fb13 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_container_5.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_container_5.exp.json @@ -130,7 +130,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -206,7 +206,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -302,7 +302,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -367,7 +367,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/underscore_edge_split.exp.json b/testdata/d2oracle/TestMove/underscore_edge_split.exp.json index 2a3ead716..21d713554 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_split.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_split.exp.json @@ -160,7 +160,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -236,7 +236,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -279,7 +279,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -322,7 +322,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -376,7 +376,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -419,7 +419,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/underscore_merge.exp.json b/testdata/d2oracle/TestMove/underscore_merge.exp.json index 5a7d1d4a6..c33d485f2 100644 --- a/testdata/d2oracle/TestMove/underscore_merge.exp.json +++ b/testdata/d2oracle/TestMove/underscore_merge.exp.json @@ -140,7 +140,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -185,7 +185,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -228,7 +228,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -291,7 +291,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/underscore_split.exp.json b/testdata/d2oracle/TestMove/underscore_split.exp.json index 445f3a9ea..743a706df 100644 --- a/testdata/d2oracle/TestMove/underscore_split.exp.json +++ b/testdata/d2oracle/TestMove/underscore_split.exp.json @@ -137,7 +137,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -182,7 +182,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -225,7 +225,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -279,7 +279,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -322,7 +322,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/underscore_split_out.exp.json b/testdata/d2oracle/TestMove/underscore_split_out.exp.json index 763a59857..7545eb2fc 100644 --- a/testdata/d2oracle/TestMove/underscore_split_out.exp.json +++ b/testdata/d2oracle/TestMove/underscore_split_out.exp.json @@ -195,7 +195,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -240,7 +240,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -283,7 +283,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -357,7 +357,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -400,7 +400,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -443,7 +443,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/underscore_transplant.exp.json b/testdata/d2oracle/TestMove/underscore_transplant.exp.json index 5462f5cad..5528c035d 100644 --- a/testdata/d2oracle/TestMove/underscore_transplant.exp.json +++ b/testdata/d2oracle/TestMove/underscore_transplant.exp.json @@ -97,7 +97,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -142,7 +142,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -185,7 +185,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -228,7 +228,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/unique_name.exp.json b/testdata/d2oracle/TestMove/unique_name.exp.json index efc7feeab..25ba5b6ab 100644 --- a/testdata/d2oracle/TestMove/unique_name.exp.json +++ b/testdata/d2oracle/TestMove/unique_name.exp.json @@ -154,7 +154,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -230,7 +230,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -304,7 +304,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -347,7 +347,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -390,7 +390,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestMove/unique_name_with_references.exp.json b/testdata/d2oracle/TestMove/unique_name_with_references.exp.json index bf733b6c5..f0cc05cc2 100644 --- a/testdata/d2oracle/TestMove/unique_name_with_references.exp.json +++ b/testdata/d2oracle/TestMove/unique_name_with_references.exp.json @@ -177,7 +177,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -284,7 +284,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -327,7 +327,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -401,7 +401,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -444,7 +444,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -487,7 +487,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestRename/arrows.exp.json b/testdata/d2oracle/TestRename/arrows.exp.json index 11b83790c..fadc22c55 100644 --- a/testdata/d2oracle/TestRename/arrows.exp.json +++ b/testdata/d2oracle/TestRename/arrows.exp.json @@ -68,7 +68,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -144,7 +144,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -187,7 +187,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestRename/arrows_chain.exp.json b/testdata/d2oracle/TestRename/arrows_chain.exp.json index 909269df5..a8c899380 100644 --- a/testdata/d2oracle/TestRename/arrows_chain.exp.json +++ b/testdata/d2oracle/TestRename/arrows_chain.exp.json @@ -142,7 +142,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -278,7 +278,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -341,7 +341,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -404,7 +404,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -447,7 +447,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestRename/arrows_complex.exp.json b/testdata/d2oracle/TestRename/arrows_complex.exp.json index 7123a5b99..a395eed50 100644 --- a/testdata/d2oracle/TestRename/arrows_complex.exp.json +++ b/testdata/d2oracle/TestRename/arrows_complex.exp.json @@ -122,7 +122,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -209,7 +209,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -263,7 +263,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -306,7 +306,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -349,7 +349,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestRename/arrows_trim_common.exp.json b/testdata/d2oracle/TestRename/arrows_trim_common.exp.json index c53c4bf5a..d5ab00830 100644 --- a/testdata/d2oracle/TestRename/arrows_trim_common.exp.json +++ b/testdata/d2oracle/TestRename/arrows_trim_common.exp.json @@ -158,7 +158,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -294,7 +294,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -337,7 +337,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -400,7 +400,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -463,7 +463,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -506,7 +506,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestRename/arrows_trim_common_2.exp.json b/testdata/d2oracle/TestRename/arrows_trim_common_2.exp.json index a43035864..e25cf3fd4 100644 --- a/testdata/d2oracle/TestRename/arrows_trim_common_2.exp.json +++ b/testdata/d2oracle/TestRename/arrows_trim_common_2.exp.json @@ -208,7 +208,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -510,7 +510,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -564,7 +564,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -649,7 +649,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -734,7 +734,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -788,7 +788,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestRename/complex_edge_1.exp.json b/testdata/d2oracle/TestRename/complex_edge_1.exp.json index 9e8fce60d..ceedb2f94 100644 --- a/testdata/d2oracle/TestRename/complex_edge_1.exp.json +++ b/testdata/d2oracle/TestRename/complex_edge_1.exp.json @@ -122,7 +122,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -209,7 +209,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -263,7 +263,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -306,7 +306,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -349,7 +349,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestRename/complex_edge_2.exp.json b/testdata/d2oracle/TestRename/complex_edge_2.exp.json index 6663f65c7..663d56cc2 100644 --- a/testdata/d2oracle/TestRename/complex_edge_2.exp.json +++ b/testdata/d2oracle/TestRename/complex_edge_2.exp.json @@ -122,7 +122,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -209,7 +209,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -263,7 +263,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -306,7 +306,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -349,7 +349,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestRename/conflict.exp.json b/testdata/d2oracle/TestRename/conflict.exp.json index 26a5193cd..c8dc12220 100644 --- a/testdata/d2oracle/TestRename/conflict.exp.json +++ b/testdata/d2oracle/TestRename/conflict.exp.json @@ -68,7 +68,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -113,7 +113,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -156,7 +156,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestRename/conflict_2.exp.json b/testdata/d2oracle/TestRename/conflict_2.exp.json index 7bd4f49e7..55f6a2df6 100644 --- a/testdata/d2oracle/TestRename/conflict_2.exp.json +++ b/testdata/d2oracle/TestRename/conflict_2.exp.json @@ -119,7 +119,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -186,7 +186,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -251,7 +251,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -316,7 +316,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -359,7 +359,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -402,7 +402,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestRename/conflict_with_dots.exp.json b/testdata/d2oracle/TestRename/conflict_with_dots.exp.json index fcdcc8f90..bbae9e6d0 100644 --- a/testdata/d2oracle/TestRename/conflict_with_dots.exp.json +++ b/testdata/d2oracle/TestRename/conflict_with_dots.exp.json @@ -68,7 +68,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -113,7 +113,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -156,7 +156,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestRename/container.exp.json b/testdata/d2oracle/TestRename/container.exp.json index f8f86696a..9c5aaa8ca 100644 --- a/testdata/d2oracle/TestRename/container.exp.json +++ b/testdata/d2oracle/TestRename/container.exp.json @@ -747,7 +747,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -1247,7 +1247,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -1531,7 +1531,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -1804,7 +1804,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -1847,7 +1847,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -1963,7 +1963,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -2079,7 +2079,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -2164,7 +2164,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -2249,7 +2249,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -2292,7 +2292,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -2355,7 +2355,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -2398,7 +2398,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -2463,7 +2463,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -2528,7 +2528,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -2593,7 +2593,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -2647,7 +2647,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -2701,7 +2701,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestRename/edges.exp.json b/testdata/d2oracle/TestRename/edges.exp.json index 7eb87ebf5..466d177cb 100644 --- a/testdata/d2oracle/TestRename/edges.exp.json +++ b/testdata/d2oracle/TestRename/edges.exp.json @@ -412,7 +412,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -762,7 +762,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -949,7 +949,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -1034,7 +1034,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -1119,7 +1119,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -1204,7 +1204,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -1289,7 +1289,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -1332,7 +1332,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -1395,7 +1395,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestRename/flat.exp.json b/testdata/d2oracle/TestRename/flat.exp.json index 9604d5d48..7f8875b49 100644 --- a/testdata/d2oracle/TestRename/flat.exp.json +++ b/testdata/d2oracle/TestRename/flat.exp.json @@ -45,7 +45,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -90,7 +90,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestRename/generated.exp.json b/testdata/d2oracle/TestRename/generated.exp.json index ccd034632..e01f2dc0d 100644 --- a/testdata/d2oracle/TestRename/generated.exp.json +++ b/testdata/d2oracle/TestRename/generated.exp.json @@ -45,7 +45,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -90,7 +90,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestRename/near.exp.json b/testdata/d2oracle/TestRename/near.exp.json index 3d3f435b0..4f1095f42 100644 --- a/testdata/d2oracle/TestRename/near.exp.json +++ b/testdata/d2oracle/TestRename/near.exp.json @@ -107,7 +107,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -167,7 +167,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -210,7 +210,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestRename/nested.exp.json b/testdata/d2oracle/TestRename/nested.exp.json index 8b893c155..37125d75a 100644 --- a/testdata/d2oracle/TestRename/nested.exp.json +++ b/testdata/d2oracle/TestRename/nested.exp.json @@ -174,7 +174,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -316,7 +316,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -456,7 +456,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -596,7 +596,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -736,7 +736,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -843,7 +843,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/base.exp.json b/testdata/d2oracle/TestSet/base.exp.json index b2fc3f942..23a9eb9f4 100644 --- a/testdata/d2oracle/TestSet/base.exp.json +++ b/testdata/d2oracle/TestSet/base.exp.json @@ -45,7 +45,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -90,7 +90,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/block_string_multiline.exp.json b/testdata/d2oracle/TestSet/block_string_multiline.exp.json index a0042c58a..dd4bcff09 100644 --- a/testdata/d2oracle/TestSet/block_string_multiline.exp.json +++ b/testdata/d2oracle/TestSet/block_string_multiline.exp.json @@ -52,7 +52,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -98,7 +98,7 @@ "value": "text" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/block_string_oneline.exp.json b/testdata/d2oracle/TestSet/block_string_oneline.exp.json index 1bb1f2631..3601a7f2c 100644 --- a/testdata/d2oracle/TestSet/block_string_oneline.exp.json +++ b/testdata/d2oracle/TestSet/block_string_oneline.exp.json @@ -52,7 +52,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -98,7 +98,7 @@ "value": "text" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/edge.exp.json b/testdata/d2oracle/TestSet/edge.exp.json index 5f7d6d9a8..bcbd533e2 100644 --- a/testdata/d2oracle/TestSet/edge.exp.json +++ b/testdata/d2oracle/TestSet/edge.exp.json @@ -78,7 +78,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -154,7 +154,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -197,7 +197,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/edge_append_style.exp.json b/testdata/d2oracle/TestSet/edge_append_style.exp.json index a59eccaa6..bf9784284 100644 --- a/testdata/d2oracle/TestSet/edge_append_style.exp.json +++ b/testdata/d2oracle/TestSet/edge_append_style.exp.json @@ -113,7 +113,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -193,7 +193,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -236,7 +236,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/edge_chain.exp.json b/testdata/d2oracle/TestSet/edge_chain.exp.json index 150e5d3e1..44a7c7de3 100644 --- a/testdata/d2oracle/TestSet/edge_chain.exp.json +++ b/testdata/d2oracle/TestSet/edge_chain.exp.json @@ -205,7 +205,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -314,7 +314,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -377,7 +377,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -460,7 +460,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -503,7 +503,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/edge_chain_append_style.exp.json b/testdata/d2oracle/TestSet/edge_chain_append_style.exp.json index 55e9f9542..65b3feb0a 100644 --- a/testdata/d2oracle/TestSet/edge_chain_append_style.exp.json +++ b/testdata/d2oracle/TestSet/edge_chain_append_style.exp.json @@ -188,7 +188,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -321,7 +321,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -404,7 +404,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -447,7 +447,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/edge_chain_existing_style.exp.json b/testdata/d2oracle/TestSet/edge_chain_existing_style.exp.json index 661931c40..a80e0b0d9 100644 --- a/testdata/d2oracle/TestSet/edge_chain_existing_style.exp.json +++ b/testdata/d2oracle/TestSet/edge_chain_existing_style.exp.json @@ -272,7 +272,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -391,7 +391,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -494,7 +494,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -577,7 +577,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/edge_chain_nested_set.exp.json b/testdata/d2oracle/TestSet/edge_chain_nested_set.exp.json index 3739c5940..aaeec05db 100644 --- a/testdata/d2oracle/TestSet/edge_chain_nested_set.exp.json +++ b/testdata/d2oracle/TestSet/edge_chain_nested_set.exp.json @@ -228,7 +228,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -341,7 +341,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -404,7 +404,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -487,7 +487,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -530,7 +530,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/edge_index_case.exp.json b/testdata/d2oracle/TestSet/edge_index_case.exp.json index 0dd4a0e64..f3250cd29 100644 --- a/testdata/d2oracle/TestSet/edge_index_case.exp.json +++ b/testdata/d2oracle/TestSet/edge_index_case.exp.json @@ -182,7 +182,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -288,7 +288,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -331,7 +331,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -374,7 +374,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -417,7 +417,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -460,7 +460,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -503,7 +503,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/edge_index_nested.exp.json b/testdata/d2oracle/TestSet/edge_index_nested.exp.json index 99b0c651a..b220c23c0 100644 --- a/testdata/d2oracle/TestSet/edge_index_nested.exp.json +++ b/testdata/d2oracle/TestSet/edge_index_nested.exp.json @@ -107,7 +107,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -183,7 +183,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -226,7 +226,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -269,7 +269,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/edge_key_and_key.exp.json b/testdata/d2oracle/TestSet/edge_key_and_key.exp.json index 49d8a3bff..0fff2fd1f 100644 --- a/testdata/d2oracle/TestSet/edge_key_and_key.exp.json +++ b/testdata/d2oracle/TestSet/edge_key_and_key.exp.json @@ -158,7 +158,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -300,7 +300,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -354,7 +354,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -408,7 +408,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/edge_label.exp.json b/testdata/d2oracle/TestSet/edge_label.exp.json index 718bed638..3b5f7c6d6 100644 --- a/testdata/d2oracle/TestSet/edge_label.exp.json +++ b/testdata/d2oracle/TestSet/edge_label.exp.json @@ -123,7 +123,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -203,7 +203,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -246,7 +246,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/edge_merge_style.exp.json b/testdata/d2oracle/TestSet/edge_merge_style.exp.json index 8b661fb5b..245894900 100644 --- a/testdata/d2oracle/TestSet/edge_merge_style.exp.json +++ b/testdata/d2oracle/TestSet/edge_merge_style.exp.json @@ -160,7 +160,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -243,7 +243,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -286,7 +286,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/edge_nested_label_set.exp.json b/testdata/d2oracle/TestSet/edge_nested_label_set.exp.json index b0c572d2d..3ef412b1b 100644 --- a/testdata/d2oracle/TestSet/edge_nested_label_set.exp.json +++ b/testdata/d2oracle/TestSet/edge_nested_label_set.exp.json @@ -107,7 +107,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -183,7 +183,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -226,7 +226,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -269,7 +269,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/edge_nested_style_set.exp.json b/testdata/d2oracle/TestSet/edge_nested_style_set.exp.json index b396c8f5a..134cacd97 100644 --- a/testdata/d2oracle/TestSet/edge_nested_style_set.exp.json +++ b/testdata/d2oracle/TestSet/edge_nested_style_set.exp.json @@ -153,7 +153,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -233,7 +233,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -276,7 +276,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -319,7 +319,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/expanded_map_style.exp.json b/testdata/d2oracle/TestSet/expanded_map_style.exp.json index c14ffc6d6..3204495d1 100644 --- a/testdata/d2oracle/TestSet/expanded_map_style.exp.json +++ b/testdata/d2oracle/TestSet/expanded_map_style.exp.json @@ -109,7 +109,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -158,7 +158,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/icon.exp.json b/testdata/d2oracle/TestSet/icon.exp.json index ae29aceed..e432724cd 100644 --- a/testdata/d2oracle/TestSet/icon.exp.json +++ b/testdata/d2oracle/TestSet/icon.exp.json @@ -84,7 +84,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -141,7 +141,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/inline_style.exp.json b/testdata/d2oracle/TestSet/inline_style.exp.json index cf904977b..d5ffcea3d 100644 --- a/testdata/d2oracle/TestSet/inline_style.exp.json +++ b/testdata/d2oracle/TestSet/inline_style.exp.json @@ -135,7 +135,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -187,7 +187,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/label.exp.json b/testdata/d2oracle/TestSet/label.exp.json index 133aed678..55551022b 100644 --- a/testdata/d2oracle/TestSet/label.exp.json +++ b/testdata/d2oracle/TestSet/label.exp.json @@ -55,7 +55,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -100,7 +100,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/label_primary.exp.json b/testdata/d2oracle/TestSet/label_primary.exp.json index e78830f47..b14337fd8 100644 --- a/testdata/d2oracle/TestSet/label_primary.exp.json +++ b/testdata/d2oracle/TestSet/label_primary.exp.json @@ -103,7 +103,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -179,7 +179,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -222,7 +222,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -265,7 +265,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/label_replace.exp.json b/testdata/d2oracle/TestSet/label_replace.exp.json index d890f349a..469fc2b78 100644 --- a/testdata/d2oracle/TestSet/label_replace.exp.json +++ b/testdata/d2oracle/TestSet/label_replace.exp.json @@ -55,7 +55,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -100,7 +100,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/label_unset.exp.json b/testdata/d2oracle/TestSet/label_unset.exp.json index 6313386e0..9a2bb4bfb 100644 --- a/testdata/d2oracle/TestSet/label_unset.exp.json +++ b/testdata/d2oracle/TestSet/label_unset.exp.json @@ -45,7 +45,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -90,7 +90,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/map_key_missing.exp.json b/testdata/d2oracle/TestSet/map_key_missing.exp.json index 296b0b694..2b1b0bc02 100644 --- a/testdata/d2oracle/TestSet/map_key_missing.exp.json +++ b/testdata/d2oracle/TestSet/map_key_missing.exp.json @@ -101,7 +101,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -197,7 +197,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -240,7 +240,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/nested_alex.exp.json b/testdata/d2oracle/TestSet/nested_alex.exp.json index 254cd61ca..f9bd8b398 100644 --- a/testdata/d2oracle/TestSet/nested_alex.exp.json +++ b/testdata/d2oracle/TestSet/nested_alex.exp.json @@ -173,7 +173,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -249,7 +249,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -312,7 +312,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -355,7 +355,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/new_style.exp.json b/testdata/d2oracle/TestSet/new_style.exp.json index 5f57e5434..db5981740 100644 --- a/testdata/d2oracle/TestSet/new_style.exp.json +++ b/testdata/d2oracle/TestSet/new_style.exp.json @@ -91,7 +91,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -140,7 +140,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/replace_shape.exp.json b/testdata/d2oracle/TestSet/replace_shape.exp.json index 3ee2de804..2480ec191 100644 --- a/testdata/d2oracle/TestSet/replace_shape.exp.json +++ b/testdata/d2oracle/TestSet/replace_shape.exp.json @@ -66,7 +66,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -122,7 +122,7 @@ "value": "circle" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/replace_style.exp.json b/testdata/d2oracle/TestSet/replace_style.exp.json index 7a5a342ad..6b7003fbb 100644 --- a/testdata/d2oracle/TestSet/replace_style.exp.json +++ b/testdata/d2oracle/TestSet/replace_style.exp.json @@ -73,7 +73,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -144,7 +144,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/replace_style_edgecase.exp.json b/testdata/d2oracle/TestSet/replace_style_edgecase.exp.json index e7523a02b..6971bee40 100644 --- a/testdata/d2oracle/TestSet/replace_style_edgecase.exp.json +++ b/testdata/d2oracle/TestSet/replace_style_edgecase.exp.json @@ -128,7 +128,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -244,7 +244,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/shape.exp.json b/testdata/d2oracle/TestSet/shape.exp.json index 1a0a55148..47cb8df98 100644 --- a/testdata/d2oracle/TestSet/shape.exp.json +++ b/testdata/d2oracle/TestSet/shape.exp.json @@ -84,7 +84,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -129,7 +129,7 @@ "value": "square" }, "direction": { - "value": "down" + "value": "" } } } diff --git a/testdata/d2oracle/TestSet/shape_nested_style_set.exp.json b/testdata/d2oracle/TestSet/shape_nested_style_set.exp.json index ca6b313a2..ac8ebe385 100644 --- a/testdata/d2oracle/TestSet/shape_nested_style_set.exp.json +++ b/testdata/d2oracle/TestSet/shape_nested_style_set.exp.json @@ -91,7 +91,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }, @@ -140,7 +140,7 @@ "value": "" }, "direction": { - "value": "down" + "value": "" } } }