diff --git a/.gitignore b/.gitignore index e9e020ff5..23917e35e 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ e2e_report.html bin out +d2 diff --git a/ci/release/changelogs/next.md b/ci/release/changelogs/next.md index e6f26b305..0bcc4fe59 100644 --- a/ci/release/changelogs/next.md +++ b/ci/release/changelogs/next.md @@ -11,6 +11,7 @@ - `class` and `sql_table` shape respect `font-color` styling as header font color. [#899](https://github.com/terrastruct/d2/issues/899) - SVG fits to screen by default in both watch mode and as a standalone SVG (this time with just CSS, no JS). [#725](https://github.com/terrastruct/d2/issues/725) - Only chromium is installed when rendering png diagrams instead of also installing webkit and firefox. [#835](https://github.com/terrastruct/d2/issues/835) +- Multiboard output is now self-contained and less confusing. See [#923](https://github.com/terrastruct/d2/pull/923) #### Bugfixes ⛑️ diff --git a/d2compiler/compile.go b/d2compiler/compile.go index 9de5f12c8..327b25e15 100644 --- a/d2compiler/compile.go +++ b/d2compiler/compile.go @@ -71,6 +71,11 @@ func (c *compiler) compileBoard(g *d2graph.Graph, ir *d2ir.Map) *d2graph.Graph { c.compileBoardsField(g, ir, "layers") c.compileBoardsField(g, ir, "scenarios") c.compileBoardsField(g, ir, "steps") + if d2ir.ParentMap(ir).CopyBase(nil).Equal(ir.CopyBase(nil)) { + if len(g.Layers) > 0 || len(g.Scenarios) > 0 || len(g.Steps) > 0 { + g.IsFolderOnly = true + } + } return g } diff --git a/d2compiler/compile_test.go b/d2compiler/compile_test.go index 52da3f916..c6219d291 100644 --- a/d2compiler/compile_test.go +++ b/d2compiler/compile_test.go @@ -2099,9 +2099,9 @@ layers: { } } `, "") - assert.JSON(t, 2, len(g.Layers)) - assert.JSON(t, "one", g.Layers[0].Name) - assert.JSON(t, "two", g.Layers[1].Name) + assert.Equal(t, 2, len(g.Layers)) + assert.Equal(t, "one", g.Layers[0].Name) + assert.Equal(t, "two", g.Layers[1].Name) }, }, { @@ -2132,6 +2132,37 @@ layers: { assert.Equal(t, 2, len(g.Layers[1].Steps)) }, }, + { + name: "isFolderOnly", + run: func(t *testing.T) { + g := assertCompile(t, ` +layers: { + one: { + santa + } + two: { + clause + scenarios: { + seinfeld: { + } + missoula: { + steps: { + missus: one two three + } + } + } + } +} +`, "") + assert.True(t, g.IsFolderOnly) + assert.Equal(t, 2, len(g.Layers)) + assert.Equal(t, "one", g.Layers[0].Name) + assert.Equal(t, "two", g.Layers[1].Name) + assert.Equal(t, 2, len(g.Layers[1].Scenarios)) + assert.False(t, g.Layers[1].Scenarios[0].IsFolderOnly) + assert.False(t, g.Layers[1].Scenarios[1].IsFolderOnly) + }, + }, { name: "errs/duplicate_board", run: func(t *testing.T) { diff --git a/d2exporter/export.go b/d2exporter/export.go index 4357f914d..1331becaa 100644 --- a/d2exporter/export.go +++ b/d2exporter/export.go @@ -16,6 +16,7 @@ func Export(ctx context.Context, g *d2graph.Graph, fontFamily *d2fonts.FontFamil diagram := d2target.NewDiagram() applyStyles(&diagram.Root, g.Root) diagram.Name = g.Name + diagram.IsFolderOnly = g.IsFolderOnly if fontFamily == nil { fontFamily = go2.Pointer(d2fonts.SourceSansPro) } diff --git a/d2graph/d2graph.go b/d2graph/d2graph.go index a19487ee2..265f81c1b 100644 --- a/d2graph/d2graph.go +++ b/d2graph/d2graph.go @@ -28,8 +28,12 @@ const DEFAULT_SHAPE_SIZE = 100. const MIN_SHAPE_SIZE = 5 type Graph struct { - Name string `json:"name"` - AST *d2ast.Map `json:"ast"` + Name string `json:"name"` + // IsFolderOnly indicates a board or scenario itself makes no modifications from its + // base. Folder only boards do not have a render and are used purely for organizing + // the board tree. + IsFolderOnly bool `json:"isFolderOnly"` + AST *d2ast.Map `json:"ast"` Root *Object `json:"root"` Edges []*Edge `json:"edges"` diff --git a/d2ir/d2ir.go b/d2ir/d2ir.go index b105e4e72..72deedb38 100644 --- a/d2ir/d2ir.go +++ b/d2ir/d2ir.go @@ -23,6 +23,7 @@ type Node interface { Parent() Node Primary() *Scalar Map() *Map + Equal(n2 Node) bool ast() d2ast.Node fmt.Stringer @@ -139,7 +140,8 @@ func (s *Scalar) Copy(newParent Node) Node { return s } -func (s *Scalar) Equal(s2 *Scalar) bool { +func (s *Scalar) Equal(n2 Node) bool { + s2 := n2.(*Scalar) if _, ok := s.Value.(d2ast.String); ok { if _, ok = s2.Value.(d2ast.String); ok { return s.Value.ScalarString() == s2.Value.ScalarString() @@ -187,6 +189,10 @@ func (m *Map) Copy(newParent Node) Node { // CopyBase copies the map m without layers/scenarios/steps. func (m *Map) CopyBase(newParent Node) *Map { + if m == nil { + return (&Map{}).Copy(newParent).(*Map) + } + layers := m.DeleteField("layers") scenarios := m.DeleteField("scenarios") steps := m.DeleteField("steps") @@ -1054,3 +1060,73 @@ func reverseIDA(ida []string) { ida[len(ida)-i-1] = tmp } } + +func (f *Field) Equal(n2 Node) bool { + f2 := n2.(*Field) + + if f.Name != f2.Name { + return false + } + if !f.Primary_.Equal(f2.Primary_) { + return false + } + if !f.Composite.Equal(f2.Composite) { + return false + } + return true +} + +func (e *Edge) Equal(n2 Node) bool { + e2 := n2.(*Edge) + + if !e.ID.Match(e2.ID) { + return false + } + if !e.Primary_.Equal(e2.Primary_) { + return false + } + if !e.Map_.Equal(e2.Map_) { + return false + } + return true +} + +func (a *Array) Equal(n2 Node) bool { + a2 := n2.(*Array) + + if len(a.Values) != len(a2.Values) { + return false + } + + for i := range a.Values { + if !a.Values[i].Equal(a2.Values[i]) { + return false + } + } + + return true +} + +func (m *Map) Equal(n2 Node) bool { + m2 := n2.(*Map) + + if len(m.Fields) != len(m2.Fields) { + return false + } + if len(m.Edges) != len(m2.Edges) { + return false + } + + for i := range m.Fields { + if !m.Fields[i].Equal(m2.Fields[i]) { + return false + } + } + for i := range m.Edges { + if !m.Edges[i].Equal(m2.Edges[i]) { + return false + } + } + + return true +} diff --git a/d2target/d2target.go b/d2target/d2target.go index 7929b1667..c6da41188 100644 --- a/d2target/d2target.go +++ b/d2target/d2target.go @@ -34,9 +34,11 @@ const ( var BorderOffset = geo.NewVector(5, 5) type Diagram struct { - Name string `json:"name"` - Description string `json:"description,omitempty"` - FontFamily *d2fonts.FontFamily `json:"fontFamily,omitempty"` + Name string `json:"name"` + // See docs on the same field in d2graph to understand what it means. + IsFolderOnly bool `json:"isFolderOnly"` + Description string `json:"description,omitempty"` + FontFamily *d2fonts.FontFamily `json:"fontFamily,omitempty"` Shapes []Shape `json:"shapes"` Connections []Connection `json:"connections"` diff --git a/e2etests/testdata/measured/empty-class/dagre/board.exp.json b/e2etests/testdata/measured/empty-class/dagre/board.exp.json index 8f008b3bd..67c4dd5ba 100644 --- a/e2etests/testdata/measured/empty-class/dagre/board.exp.json +++ b/e2etests/testdata/measured/empty-class/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/measured/empty-shape/dagre/board.exp.json b/e2etests/testdata/measured/empty-shape/dagre/board.exp.json index 9df6098e0..48e996553 100644 --- a/e2etests/testdata/measured/empty-shape/dagre/board.exp.json +++ b/e2etests/testdata/measured/empty-shape/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/measured/empty-sql_table/dagre/board.exp.json b/e2etests/testdata/measured/empty-sql_table/dagre/board.exp.json index 21eb920ee..3256c8a67 100644 --- a/e2etests/testdata/measured/empty-sql_table/dagre/board.exp.json +++ b/e2etests/testdata/measured/empty-sql_table/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/ampersand-escape/dagre/board.exp.json b/e2etests/testdata/regression/ampersand-escape/dagre/board.exp.json index bab768d10..924c38e6b 100644 --- a/e2etests/testdata/regression/ampersand-escape/dagre/board.exp.json +++ b/e2etests/testdata/regression/ampersand-escape/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/ampersand-escape/elk/board.exp.json b/e2etests/testdata/regression/ampersand-escape/elk/board.exp.json index 2835921d2..29afa3817 100644 --- a/e2etests/testdata/regression/ampersand-escape/elk/board.exp.json +++ b/e2etests/testdata/regression/ampersand-escape/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/class_font_style_sequence/dagre/board.exp.json b/e2etests/testdata/regression/class_font_style_sequence/dagre/board.exp.json index ea6714cf2..9b30621d8 100644 --- a/e2etests/testdata/regression/class_font_style_sequence/dagre/board.exp.json +++ b/e2etests/testdata/regression/class_font_style_sequence/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/class_font_style_sequence/elk/board.exp.json b/e2etests/testdata/regression/class_font_style_sequence/elk/board.exp.json index ea6714cf2..9b30621d8 100644 --- a/e2etests/testdata/regression/class_font_style_sequence/elk/board.exp.json +++ b/e2etests/testdata/regression/class_font_style_sequence/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/code_leading_trailing_newlines/dagre/board.exp.json b/e2etests/testdata/regression/code_leading_trailing_newlines/dagre/board.exp.json index c8e25818f..36e468eb3 100644 --- a/e2etests/testdata/regression/code_leading_trailing_newlines/dagre/board.exp.json +++ b/e2etests/testdata/regression/code_leading_trailing_newlines/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/code_leading_trailing_newlines/elk/board.exp.json b/e2etests/testdata/regression/code_leading_trailing_newlines/elk/board.exp.json index 3fe24115e..4bec6de83 100644 --- a/e2etests/testdata/regression/code_leading_trailing_newlines/elk/board.exp.json +++ b/e2etests/testdata/regression/code_leading_trailing_newlines/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/dagre-disconnect/dagre/board.exp.json b/e2etests/testdata/regression/dagre-disconnect/dagre/board.exp.json index 2104bdbcf..2c1b77e75 100644 --- a/e2etests/testdata/regression/dagre-disconnect/dagre/board.exp.json +++ b/e2etests/testdata/regression/dagre-disconnect/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/dagre-disconnect/elk/board.exp.json b/e2etests/testdata/regression/dagre-disconnect/elk/board.exp.json index 8ef43b8e9..e7eba3441 100644 --- a/e2etests/testdata/regression/dagre-disconnect/elk/board.exp.json +++ b/e2etests/testdata/regression/dagre-disconnect/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/dagre_broken_arrowhead/dagre/board.exp.json b/e2etests/testdata/regression/dagre_broken_arrowhead/dagre/board.exp.json index 07664ab44..2e5592c32 100644 --- a/e2etests/testdata/regression/dagre_broken_arrowhead/dagre/board.exp.json +++ b/e2etests/testdata/regression/dagre_broken_arrowhead/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/dagre_broken_arrowhead/elk/board.exp.json b/e2etests/testdata/regression/dagre_broken_arrowhead/elk/board.exp.json index 68effc6e6..41d252cb9 100644 --- a/e2etests/testdata/regression/dagre_broken_arrowhead/elk/board.exp.json +++ b/e2etests/testdata/regression/dagre_broken_arrowhead/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/dagre_edge_label_spacing/dagre/board.exp.json b/e2etests/testdata/regression/dagre_edge_label_spacing/dagre/board.exp.json index 7dceeb958..2b2a1697e 100644 --- a/e2etests/testdata/regression/dagre_edge_label_spacing/dagre/board.exp.json +++ b/e2etests/testdata/regression/dagre_edge_label_spacing/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/dagre_edge_label_spacing/elk/board.exp.json b/e2etests/testdata/regression/dagre_edge_label_spacing/elk/board.exp.json index f3f62bb09..215213dfc 100644 --- a/e2etests/testdata/regression/dagre_edge_label_spacing/elk/board.exp.json +++ b/e2etests/testdata/regression/dagre_edge_label_spacing/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/dagre_special_ids/dagre/board.exp.json b/e2etests/testdata/regression/dagre_special_ids/dagre/board.exp.json index ee1642420..7cf19c6e1 100644 --- a/e2etests/testdata/regression/dagre_special_ids/dagre/board.exp.json +++ b/e2etests/testdata/regression/dagre_special_ids/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/dagre_special_ids/elk/board.exp.json b/e2etests/testdata/regression/dagre_special_ids/elk/board.exp.json index 3aa86e911..36792e8dd 100644 --- a/e2etests/testdata/regression/dagre_special_ids/elk/board.exp.json +++ b/e2etests/testdata/regression/dagre_special_ids/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/elk_alignment/dagre/board.exp.json b/e2etests/testdata/regression/elk_alignment/dagre/board.exp.json index 77fc6fba0..925cf901d 100644 --- a/e2etests/testdata/regression/elk_alignment/dagre/board.exp.json +++ b/e2etests/testdata/regression/elk_alignment/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/elk_alignment/elk/board.exp.json b/e2etests/testdata/regression/elk_alignment/elk/board.exp.json index 8bfc596b6..0a2eefdf2 100644 --- a/e2etests/testdata/regression/elk_alignment/elk/board.exp.json +++ b/e2etests/testdata/regression/elk_alignment/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/elk_img_empty_label_panic/dagre/board.exp.json b/e2etests/testdata/regression/elk_img_empty_label_panic/dagre/board.exp.json index c683e02a2..2e43d66d2 100644 --- a/e2etests/testdata/regression/elk_img_empty_label_panic/dagre/board.exp.json +++ b/e2etests/testdata/regression/elk_img_empty_label_panic/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/elk_img_empty_label_panic/elk/board.exp.json b/e2etests/testdata/regression/elk_img_empty_label_panic/elk/board.exp.json index d75d74634..e6f2b5f72 100644 --- a/e2etests/testdata/regression/elk_img_empty_label_panic/elk/board.exp.json +++ b/e2etests/testdata/regression/elk_img_empty_label_panic/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/elk_loop_panic/dagre/board.exp.json b/e2etests/testdata/regression/elk_loop_panic/dagre/board.exp.json index cf77df5ec..06cca3d68 100644 --- a/e2etests/testdata/regression/elk_loop_panic/dagre/board.exp.json +++ b/e2etests/testdata/regression/elk_loop_panic/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/elk_loop_panic/elk/board.exp.json b/e2etests/testdata/regression/elk_loop_panic/elk/board.exp.json index eb88b9b0c..595140976 100644 --- a/e2etests/testdata/regression/elk_loop_panic/elk/board.exp.json +++ b/e2etests/testdata/regression/elk_loop_panic/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/elk_order/dagre/board.exp.json b/e2etests/testdata/regression/elk_order/dagre/board.exp.json index 03921d389..e8974ba03 100644 --- a/e2etests/testdata/regression/elk_order/dagre/board.exp.json +++ b/e2etests/testdata/regression/elk_order/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/elk_order/elk/board.exp.json b/e2etests/testdata/regression/elk_order/elk/board.exp.json index 8b728a07f..df15e9048 100644 --- a/e2etests/testdata/regression/elk_order/elk/board.exp.json +++ b/e2etests/testdata/regression/elk_order/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/empty_class_height/dagre/board.exp.json b/e2etests/testdata/regression/empty_class_height/dagre/board.exp.json index 675aaf3b8..d04a989ef 100644 --- a/e2etests/testdata/regression/empty_class_height/dagre/board.exp.json +++ b/e2etests/testdata/regression/empty_class_height/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/empty_class_height/elk/board.exp.json b/e2etests/testdata/regression/empty_class_height/elk/board.exp.json index af1fca5d6..5ada06396 100644 --- a/e2etests/testdata/regression/empty_class_height/elk/board.exp.json +++ b/e2etests/testdata/regression/empty_class_height/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/empty_sequence/dagre/board.exp.json b/e2etests/testdata/regression/empty_sequence/dagre/board.exp.json index 3b264a114..6db27a5d3 100644 --- a/e2etests/testdata/regression/empty_sequence/dagre/board.exp.json +++ b/e2etests/testdata/regression/empty_sequence/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/empty_sequence/elk/board.exp.json b/e2etests/testdata/regression/empty_sequence/elk/board.exp.json index 7e8f12e00..bf5a89c1b 100644 --- a/e2etests/testdata/regression/empty_sequence/elk/board.exp.json +++ b/e2etests/testdata/regression/empty_sequence/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/hex-fill/dagre/board.exp.json b/e2etests/testdata/regression/hex-fill/dagre/board.exp.json index e845adb1c..1fe3a5425 100644 --- a/e2etests/testdata/regression/hex-fill/dagre/board.exp.json +++ b/e2etests/testdata/regression/hex-fill/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/hex-fill/elk/board.exp.json b/e2etests/testdata/regression/hex-fill/elk/board.exp.json index 6f464573e..a94ec7569 100644 --- a/e2etests/testdata/regression/hex-fill/elk/board.exp.json +++ b/e2etests/testdata/regression/hex-fill/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/just-width/dagre/board.exp.json b/e2etests/testdata/regression/just-width/dagre/board.exp.json index 27c3f2e81..c1f63d1f6 100644 --- a/e2etests/testdata/regression/just-width/dagre/board.exp.json +++ b/e2etests/testdata/regression/just-width/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/just-width/elk/board.exp.json b/e2etests/testdata/regression/just-width/elk/board.exp.json index b2140ffda..f88d632ff 100644 --- a/e2etests/testdata/regression/just-width/elk/board.exp.json +++ b/e2etests/testdata/regression/just-width/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/md_h1_li_li/dagre/board.exp.json b/e2etests/testdata/regression/md_h1_li_li/dagre/board.exp.json index 7f2a7e583..74401fd85 100644 --- a/e2etests/testdata/regression/md_h1_li_li/dagre/board.exp.json +++ b/e2etests/testdata/regression/md_h1_li_li/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/md_h1_li_li/elk/board.exp.json b/e2etests/testdata/regression/md_h1_li_li/elk/board.exp.json index da2815d76..8877c65b0 100644 --- a/e2etests/testdata/regression/md_h1_li_li/elk/board.exp.json +++ b/e2etests/testdata/regression/md_h1_li_li/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/nested_steps/dagre/board.exp.json b/e2etests/testdata/regression/nested_steps/dagre/board.exp.json index e14c59d9c..bab45b2b0 100644 --- a/e2etests/testdata/regression/nested_steps/dagre/board.exp.json +++ b/e2etests/testdata/regression/nested_steps/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/nested_steps/elk/board.exp.json b/e2etests/testdata/regression/nested_steps/elk/board.exp.json index e772149a3..eb5128fce 100644 --- a/e2etests/testdata/regression/nested_steps/elk/board.exp.json +++ b/e2etests/testdata/regression/nested_steps/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/no-lexer/dagre/board.exp.json b/e2etests/testdata/regression/no-lexer/dagre/board.exp.json index e94566f9e..c03fe0f4a 100644 --- a/e2etests/testdata/regression/no-lexer/dagre/board.exp.json +++ b/e2etests/testdata/regression/no-lexer/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/no-lexer/elk/board.exp.json b/e2etests/testdata/regression/no-lexer/elk/board.exp.json index e8a6254b7..ac6d3eca9 100644 --- a/e2etests/testdata/regression/no-lexer/elk/board.exp.json +++ b/e2etests/testdata/regression/no-lexer/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/only_header_class_table/dagre/board.exp.json b/e2etests/testdata/regression/only_header_class_table/dagre/board.exp.json index 392acc370..9ebf89fe8 100644 --- a/e2etests/testdata/regression/only_header_class_table/dagre/board.exp.json +++ b/e2etests/testdata/regression/only_header_class_table/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/only_header_class_table/elk/board.exp.json b/e2etests/testdata/regression/only_header_class_table/elk/board.exp.json index c2e05ad4f..348867b15 100644 --- a/e2etests/testdata/regression/only_header_class_table/elk/board.exp.json +++ b/e2etests/testdata/regression/only_header_class_table/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/opacity-on-label/dagre/board.exp.json b/e2etests/testdata/regression/opacity-on-label/dagre/board.exp.json index dd44ef429..4de6ce7c5 100644 --- a/e2etests/testdata/regression/opacity-on-label/dagre/board.exp.json +++ b/e2etests/testdata/regression/opacity-on-label/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/opacity-on-label/elk/board.exp.json b/e2etests/testdata/regression/opacity-on-label/elk/board.exp.json index 7c12ce366..22f9123b3 100644 --- a/e2etests/testdata/regression/opacity-on-label/elk/board.exp.json +++ b/e2etests/testdata/regression/opacity-on-label/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/overlapping-edge-label/dagre/board.exp.json b/e2etests/testdata/regression/overlapping-edge-label/dagre/board.exp.json index 637fc6a33..9f8dc2406 100644 --- a/e2etests/testdata/regression/overlapping-edge-label/dagre/board.exp.json +++ b/e2etests/testdata/regression/overlapping-edge-label/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/overlapping-edge-label/elk/board.exp.json b/e2etests/testdata/regression/overlapping-edge-label/elk/board.exp.json index 95190f60b..92cb93789 100644 --- a/e2etests/testdata/regression/overlapping-edge-label/elk/board.exp.json +++ b/e2etests/testdata/regression/overlapping-edge-label/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/query_param_escape/dagre/board.exp.json b/e2etests/testdata/regression/query_param_escape/dagre/board.exp.json index a4a259edc..0db2c643d 100644 --- a/e2etests/testdata/regression/query_param_escape/dagre/board.exp.json +++ b/e2etests/testdata/regression/query_param_escape/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/query_param_escape/elk/board.exp.json b/e2etests/testdata/regression/query_param_escape/elk/board.exp.json index bcee914d9..6b51ba38b 100644 --- a/e2etests/testdata/regression/query_param_escape/elk/board.exp.json +++ b/e2etests/testdata/regression/query_param_escape/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/sequence-note-escape-group/dagre/board.exp.json b/e2etests/testdata/regression/sequence-note-escape-group/dagre/board.exp.json index 97f48370c..5bfc2f3c0 100644 --- a/e2etests/testdata/regression/sequence-note-escape-group/dagre/board.exp.json +++ b/e2etests/testdata/regression/sequence-note-escape-group/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/sequence-note-escape-group/elk/board.exp.json b/e2etests/testdata/regression/sequence-note-escape-group/elk/board.exp.json index 97f48370c..5bfc2f3c0 100644 --- a/e2etests/testdata/regression/sequence-note-escape-group/elk/board.exp.json +++ b/e2etests/testdata/regression/sequence-note-escape-group/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/sequence_diagram_name_crash/dagre/board.exp.json b/e2etests/testdata/regression/sequence_diagram_name_crash/dagre/board.exp.json index 28e67c148..9615e8257 100644 --- a/e2etests/testdata/regression/sequence_diagram_name_crash/dagre/board.exp.json +++ b/e2etests/testdata/regression/sequence_diagram_name_crash/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/sequence_diagram_name_crash/elk/board.exp.json b/e2etests/testdata/regression/sequence_diagram_name_crash/elk/board.exp.json index a706e3d51..9d0c9d9e2 100644 --- a/e2etests/testdata/regression/sequence_diagram_name_crash/elk/board.exp.json +++ b/e2etests/testdata/regression/sequence_diagram_name_crash/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/sequence_diagram_no_message/dagre/board.exp.json b/e2etests/testdata/regression/sequence_diagram_no_message/dagre/board.exp.json index 55da190fc..16e61c9be 100644 --- a/e2etests/testdata/regression/sequence_diagram_no_message/dagre/board.exp.json +++ b/e2etests/testdata/regression/sequence_diagram_no_message/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/sequence_diagram_no_message/elk/board.exp.json b/e2etests/testdata/regression/sequence_diagram_no_message/elk/board.exp.json index 55da190fc..16e61c9be 100644 --- a/e2etests/testdata/regression/sequence_diagram_no_message/elk/board.exp.json +++ b/e2etests/testdata/regression/sequence_diagram_no_message/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/sequence_diagram_self_edge_group_overlap/dagre/board.exp.json b/e2etests/testdata/regression/sequence_diagram_self_edge_group_overlap/dagre/board.exp.json index 8e9de4b92..5bfa152c8 100644 --- a/e2etests/testdata/regression/sequence_diagram_self_edge_group_overlap/dagre/board.exp.json +++ b/e2etests/testdata/regression/sequence_diagram_self_edge_group_overlap/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/sequence_diagram_self_edge_group_overlap/elk/board.exp.json b/e2etests/testdata/regression/sequence_diagram_self_edge_group_overlap/elk/board.exp.json index 8e9de4b92..5bfa152c8 100644 --- a/e2etests/testdata/regression/sequence_diagram_self_edge_group_overlap/elk/board.exp.json +++ b/e2etests/testdata/regression/sequence_diagram_self_edge_group_overlap/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/sequence_diagram_span_cover/dagre/board.exp.json b/e2etests/testdata/regression/sequence_diagram_span_cover/dagre/board.exp.json index 1c8498c99..b29e1bd24 100644 --- a/e2etests/testdata/regression/sequence_diagram_span_cover/dagre/board.exp.json +++ b/e2etests/testdata/regression/sequence_diagram_span_cover/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/sequence_diagram_span_cover/elk/board.exp.json b/e2etests/testdata/regression/sequence_diagram_span_cover/elk/board.exp.json index 1c8498c99..b29e1bd24 100644 --- a/e2etests/testdata/regression/sequence_diagram_span_cover/elk/board.exp.json +++ b/e2etests/testdata/regression/sequence_diagram_span_cover/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/sql_table_overflow/dagre/board.exp.json b/e2etests/testdata/regression/sql_table_overflow/dagre/board.exp.json index f13da7f09..4433d76ae 100644 --- a/e2etests/testdata/regression/sql_table_overflow/dagre/board.exp.json +++ b/e2etests/testdata/regression/sql_table_overflow/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/sql_table_overflow/elk/board.exp.json b/e2etests/testdata/regression/sql_table_overflow/elk/board.exp.json index 328e38149..b68be23ec 100644 --- a/e2etests/testdata/regression/sql_table_overflow/elk/board.exp.json +++ b/e2etests/testdata/regression/sql_table_overflow/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/unconnected/dagre/board.exp.json b/e2etests/testdata/regression/unconnected/dagre/board.exp.json index ee106cbd9..51f4bbd31 100644 --- a/e2etests/testdata/regression/unconnected/dagre/board.exp.json +++ b/e2etests/testdata/regression/unconnected/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/unconnected/elk/board.exp.json b/e2etests/testdata/regression/unconnected/elk/board.exp.json index b5030a2c4..57ae7dcff 100644 --- a/e2etests/testdata/regression/unconnected/elk/board.exp.json +++ b/e2etests/testdata/regression/unconnected/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/unnamed_class_table_code/dagre/board.exp.json b/e2etests/testdata/regression/unnamed_class_table_code/dagre/board.exp.json index 093f58d94..4cfa235db 100644 --- a/e2etests/testdata/regression/unnamed_class_table_code/dagre/board.exp.json +++ b/e2etests/testdata/regression/unnamed_class_table_code/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/regression/unnamed_class_table_code/elk/board.exp.json b/e2etests/testdata/regression/unnamed_class_table_code/elk/board.exp.json index b8244975d..156f8238b 100644 --- a/e2etests/testdata/regression/unnamed_class_table_code/elk/board.exp.json +++ b/e2etests/testdata/regression/unnamed_class_table_code/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/root/border-radius/dagre/board.exp.json b/e2etests/testdata/root/border-radius/dagre/board.exp.json index 299f5e9b8..4bba6b7bc 100644 --- a/e2etests/testdata/root/border-radius/dagre/board.exp.json +++ b/e2etests/testdata/root/border-radius/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/root/border-radius/elk/board.exp.json b/e2etests/testdata/root/border-radius/elk/board.exp.json index 15d0425a0..2a2fc1682 100644 --- a/e2etests/testdata/root/border-radius/elk/board.exp.json +++ b/e2etests/testdata/root/border-radius/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/root/double-border/dagre/board.exp.json b/e2etests/testdata/root/double-border/dagre/board.exp.json index 972cba46b..80804eadf 100644 --- a/e2etests/testdata/root/double-border/dagre/board.exp.json +++ b/e2etests/testdata/root/double-border/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/root/double-border/elk/board.exp.json b/e2etests/testdata/root/double-border/elk/board.exp.json index d10cd1368..08fa999af 100644 --- a/e2etests/testdata/root/double-border/elk/board.exp.json +++ b/e2etests/testdata/root/double-border/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/root/even-stroke-width/dagre/board.exp.json b/e2etests/testdata/root/even-stroke-width/dagre/board.exp.json index 24b35b4b8..7a7a01118 100644 --- a/e2etests/testdata/root/even-stroke-width/dagre/board.exp.json +++ b/e2etests/testdata/root/even-stroke-width/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/root/even-stroke-width/elk/board.exp.json b/e2etests/testdata/root/even-stroke-width/elk/board.exp.json index edcbef831..583b74f73 100644 --- a/e2etests/testdata/root/even-stroke-width/elk/board.exp.json +++ b/e2etests/testdata/root/even-stroke-width/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/root/fill/dagre/board.exp.json b/e2etests/testdata/root/fill/dagre/board.exp.json index 504539b1e..44cd107d1 100644 --- a/e2etests/testdata/root/fill/dagre/board.exp.json +++ b/e2etests/testdata/root/fill/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/root/fill/elk/board.exp.json b/e2etests/testdata/root/fill/elk/board.exp.json index 87a2c87dc..48e3ae135 100644 --- a/e2etests/testdata/root/fill/elk/board.exp.json +++ b/e2etests/testdata/root/fill/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/root/stroke-dash/dagre/board.exp.json b/e2etests/testdata/root/stroke-dash/dagre/board.exp.json index a70da62b0..fd07f6936 100644 --- a/e2etests/testdata/root/stroke-dash/dagre/board.exp.json +++ b/e2etests/testdata/root/stroke-dash/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/root/stroke-dash/elk/board.exp.json b/e2etests/testdata/root/stroke-dash/elk/board.exp.json index 42dc62695..e6c052fe9 100644 --- a/e2etests/testdata/root/stroke-dash/elk/board.exp.json +++ b/e2etests/testdata/root/stroke-dash/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/root/stroke-no-width/dagre/board.exp.json b/e2etests/testdata/root/stroke-no-width/dagre/board.exp.json index cebdbd24b..41f071142 100644 --- a/e2etests/testdata/root/stroke-no-width/dagre/board.exp.json +++ b/e2etests/testdata/root/stroke-no-width/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/root/stroke-no-width/elk/board.exp.json b/e2etests/testdata/root/stroke-no-width/elk/board.exp.json index ed0120575..0c4a9976d 100644 --- a/e2etests/testdata/root/stroke-no-width/elk/board.exp.json +++ b/e2etests/testdata/root/stroke-no-width/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/root/stroke-width/dagre/board.exp.json b/e2etests/testdata/root/stroke-width/dagre/board.exp.json index f8f657b4b..b2c8eb28a 100644 --- a/e2etests/testdata/root/stroke-width/dagre/board.exp.json +++ b/e2etests/testdata/root/stroke-width/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/root/stroke-width/elk/board.exp.json b/e2etests/testdata/root/stroke-width/elk/board.exp.json index c075425bd..38bddec05 100644 --- a/e2etests/testdata/root/stroke-width/elk/board.exp.json +++ b/e2etests/testdata/root/stroke-width/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/sanity/1_to_2/dagre/board.exp.json b/e2etests/testdata/sanity/1_to_2/dagre/board.exp.json index d72efee19..f08fa3e95 100644 --- a/e2etests/testdata/sanity/1_to_2/dagre/board.exp.json +++ b/e2etests/testdata/sanity/1_to_2/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/sanity/1_to_2/elk/board.exp.json b/e2etests/testdata/sanity/1_to_2/elk/board.exp.json index faaa15648..0b49683b9 100644 --- a/e2etests/testdata/sanity/1_to_2/elk/board.exp.json +++ b/e2etests/testdata/sanity/1_to_2/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/sanity/basic/dagre/board.exp.json b/e2etests/testdata/sanity/basic/dagre/board.exp.json index 424a2f40d..a1299ac07 100644 --- a/e2etests/testdata/sanity/basic/dagre/board.exp.json +++ b/e2etests/testdata/sanity/basic/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/sanity/basic/elk/board.exp.json b/e2etests/testdata/sanity/basic/elk/board.exp.json index 380f90c86..482bd4139 100644 --- a/e2etests/testdata/sanity/basic/elk/board.exp.json +++ b/e2etests/testdata/sanity/basic/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/sanity/child_to_child/dagre/board.exp.json b/e2etests/testdata/sanity/child_to_child/dagre/board.exp.json index ab6f71aa6..b86725323 100644 --- a/e2etests/testdata/sanity/child_to_child/dagre/board.exp.json +++ b/e2etests/testdata/sanity/child_to_child/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/sanity/child_to_child/elk/board.exp.json b/e2etests/testdata/sanity/child_to_child/elk/board.exp.json index fba244d70..f31484ee5 100644 --- a/e2etests/testdata/sanity/child_to_child/elk/board.exp.json +++ b/e2etests/testdata/sanity/child_to_child/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/sanity/connection_label/dagre/board.exp.json b/e2etests/testdata/sanity/connection_label/dagre/board.exp.json index da6a8478e..b4d90a3d0 100644 --- a/e2etests/testdata/sanity/connection_label/dagre/board.exp.json +++ b/e2etests/testdata/sanity/connection_label/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/sanity/connection_label/elk/board.exp.json b/e2etests/testdata/sanity/connection_label/elk/board.exp.json index b84611862..0cf4d4fe2 100644 --- a/e2etests/testdata/sanity/connection_label/elk/board.exp.json +++ b/e2etests/testdata/sanity/connection_label/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/sanity/empty/dagre/board.exp.json b/e2etests/testdata/sanity/empty/dagre/board.exp.json index 96894858a..193d4edf8 100644 --- a/e2etests/testdata/sanity/empty/dagre/board.exp.json +++ b/e2etests/testdata/sanity/empty/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [], "connections": [], diff --git a/e2etests/testdata/sanity/empty/elk/board.exp.json b/e2etests/testdata/sanity/empty/elk/board.exp.json index 96894858a..193d4edf8 100644 --- a/e2etests/testdata/sanity/empty/elk/board.exp.json +++ b/e2etests/testdata/sanity/empty/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [], "connections": [], diff --git a/e2etests/testdata/stable/3d_fill_and_stroke/dagre/board.exp.json b/e2etests/testdata/stable/3d_fill_and_stroke/dagre/board.exp.json index 6a734dc6d..7270e231b 100644 --- a/e2etests/testdata/stable/3d_fill_and_stroke/dagre/board.exp.json +++ b/e2etests/testdata/stable/3d_fill_and_stroke/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/3d_fill_and_stroke/elk/board.exp.json b/e2etests/testdata/stable/3d_fill_and_stroke/elk/board.exp.json index f2d0e8745..3ae4f1604 100644 --- a/e2etests/testdata/stable/3d_fill_and_stroke/elk/board.exp.json +++ b/e2etests/testdata/stable/3d_fill_and_stroke/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/all_shapes/dagre/board.exp.json b/e2etests/testdata/stable/all_shapes/dagre/board.exp.json index cec0d4aec..51b303a98 100644 --- a/e2etests/testdata/stable/all_shapes/dagre/board.exp.json +++ b/e2etests/testdata/stable/all_shapes/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/all_shapes/elk/board.exp.json b/e2etests/testdata/stable/all_shapes/elk/board.exp.json index 8523e8c89..9df2c0769 100644 --- a/e2etests/testdata/stable/all_shapes/elk/board.exp.json +++ b/e2etests/testdata/stable/all_shapes/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/all_shapes_multiple/dagre/board.exp.json b/e2etests/testdata/stable/all_shapes_multiple/dagre/board.exp.json index e8411fccd..669ccf455 100644 --- a/e2etests/testdata/stable/all_shapes_multiple/dagre/board.exp.json +++ b/e2etests/testdata/stable/all_shapes_multiple/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/all_shapes_multiple/elk/board.exp.json b/e2etests/testdata/stable/all_shapes_multiple/elk/board.exp.json index ddcf653ec..90a00f558 100644 --- a/e2etests/testdata/stable/all_shapes_multiple/elk/board.exp.json +++ b/e2etests/testdata/stable/all_shapes_multiple/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/all_shapes_shadow/dagre/board.exp.json b/e2etests/testdata/stable/all_shapes_shadow/dagre/board.exp.json index 4f34164a1..3bb1ceff6 100644 --- a/e2etests/testdata/stable/all_shapes_shadow/dagre/board.exp.json +++ b/e2etests/testdata/stable/all_shapes_shadow/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/all_shapes_shadow/elk/board.exp.json b/e2etests/testdata/stable/all_shapes_shadow/elk/board.exp.json index 70b001e2c..0270faad5 100644 --- a/e2etests/testdata/stable/all_shapes_shadow/elk/board.exp.json +++ b/e2etests/testdata/stable/all_shapes_shadow/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/animated/dagre/board.exp.json b/e2etests/testdata/stable/animated/dagre/board.exp.json index 436bfbd96..d2cd2eefd 100644 --- a/e2etests/testdata/stable/animated/dagre/board.exp.json +++ b/e2etests/testdata/stable/animated/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/animated/elk/board.exp.json b/e2etests/testdata/stable/animated/elk/board.exp.json index f2f873df9..88406331f 100644 --- a/e2etests/testdata/stable/animated/elk/board.exp.json +++ b/e2etests/testdata/stable/animated/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/arrowhead_adjustment/dagre/board.exp.json b/e2etests/testdata/stable/arrowhead_adjustment/dagre/board.exp.json index 480e18cdc..50cd654ad 100644 --- a/e2etests/testdata/stable/arrowhead_adjustment/dagre/board.exp.json +++ b/e2etests/testdata/stable/arrowhead_adjustment/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/arrowhead_adjustment/elk/board.exp.json b/e2etests/testdata/stable/arrowhead_adjustment/elk/board.exp.json index 936048621..4c8a33584 100644 --- a/e2etests/testdata/stable/arrowhead_adjustment/elk/board.exp.json +++ b/e2etests/testdata/stable/arrowhead_adjustment/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/arrowhead_labels/dagre/board.exp.json b/e2etests/testdata/stable/arrowhead_labels/dagre/board.exp.json index 7484960db..b9a1994f4 100644 --- a/e2etests/testdata/stable/arrowhead_labels/dagre/board.exp.json +++ b/e2etests/testdata/stable/arrowhead_labels/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/arrowhead_labels/elk/board.exp.json b/e2etests/testdata/stable/arrowhead_labels/elk/board.exp.json index 75a260b6d..79b8d43d6 100644 --- a/e2etests/testdata/stable/arrowhead_labels/elk/board.exp.json +++ b/e2etests/testdata/stable/arrowhead_labels/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/binary_tree/dagre/board.exp.json b/e2etests/testdata/stable/binary_tree/dagre/board.exp.json index de869c6c8..920ca1a59 100644 --- a/e2etests/testdata/stable/binary_tree/dagre/board.exp.json +++ b/e2etests/testdata/stable/binary_tree/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/binary_tree/elk/board.exp.json b/e2etests/testdata/stable/binary_tree/elk/board.exp.json index ff0f0caf0..c1978039c 100644 --- a/e2etests/testdata/stable/binary_tree/elk/board.exp.json +++ b/e2etests/testdata/stable/binary_tree/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/border-radius/dagre/board.exp.json b/e2etests/testdata/stable/border-radius/dagre/board.exp.json index 03de30437..f7c5e20e4 100644 --- a/e2etests/testdata/stable/border-radius/dagre/board.exp.json +++ b/e2etests/testdata/stable/border-radius/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/border-radius/elk/board.exp.json b/e2etests/testdata/stable/border-radius/elk/board.exp.json index fbcb76768..df86d116d 100644 --- a/e2etests/testdata/stable/border-radius/elk/board.exp.json +++ b/e2etests/testdata/stable/border-radius/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/chaos2/dagre/board.exp.json b/e2etests/testdata/stable/chaos2/dagre/board.exp.json index 4b42592ad..3e844a2de 100644 --- a/e2etests/testdata/stable/chaos2/dagre/board.exp.json +++ b/e2etests/testdata/stable/chaos2/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/chaos2/elk/board.exp.json b/e2etests/testdata/stable/chaos2/elk/board.exp.json index 7915c6c46..b72e6c020 100644 --- a/e2etests/testdata/stable/chaos2/elk/board.exp.json +++ b/e2etests/testdata/stable/chaos2/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/circle_arrowhead/dagre/board.exp.json b/e2etests/testdata/stable/circle_arrowhead/dagre/board.exp.json index 5c9274866..33aff78c9 100644 --- a/e2etests/testdata/stable/circle_arrowhead/dagre/board.exp.json +++ b/e2etests/testdata/stable/circle_arrowhead/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/circle_arrowhead/elk/board.exp.json b/e2etests/testdata/stable/circle_arrowhead/elk/board.exp.json index da5400099..08e5fe2d4 100644 --- a/e2etests/testdata/stable/circle_arrowhead/elk/board.exp.json +++ b/e2etests/testdata/stable/circle_arrowhead/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/circular_dependency/dagre/board.exp.json b/e2etests/testdata/stable/circular_dependency/dagre/board.exp.json index 06afc35d9..e2dfa0277 100644 --- a/e2etests/testdata/stable/circular_dependency/dagre/board.exp.json +++ b/e2etests/testdata/stable/circular_dependency/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/circular_dependency/elk/board.exp.json b/e2etests/testdata/stable/circular_dependency/elk/board.exp.json index c49b54c57..702e5e4c4 100644 --- a/e2etests/testdata/stable/circular_dependency/elk/board.exp.json +++ b/e2etests/testdata/stable/circular_dependency/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/class/dagre/board.exp.json b/e2etests/testdata/stable/class/dagre/board.exp.json index 8a8419254..4d73de526 100644 --- a/e2etests/testdata/stable/class/dagre/board.exp.json +++ b/e2etests/testdata/stable/class/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/class/elk/board.exp.json b/e2etests/testdata/stable/class/elk/board.exp.json index f3240d194..89bf9f16d 100644 --- a/e2etests/testdata/stable/class/elk/board.exp.json +++ b/e2etests/testdata/stable/class/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/code_snippet/dagre/board.exp.json b/e2etests/testdata/stable/code_snippet/dagre/board.exp.json index 4c8f8788c..c8cd6bfeb 100644 --- a/e2etests/testdata/stable/code_snippet/dagre/board.exp.json +++ b/e2etests/testdata/stable/code_snippet/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/code_snippet/elk/board.exp.json b/e2etests/testdata/stable/code_snippet/elk/board.exp.json index d2f197cce..79bf134b3 100644 --- a/e2etests/testdata/stable/code_snippet/elk/board.exp.json +++ b/e2etests/testdata/stable/code_snippet/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/complex-layers/dagre/board.exp.json b/e2etests/testdata/stable/complex-layers/dagre/board.exp.json index fd8602b3c..57ee81f3c 100644 --- a/e2etests/testdata/stable/complex-layers/dagre/board.exp.json +++ b/e2etests/testdata/stable/complex-layers/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { @@ -170,6 +171,7 @@ "layers": [ { "name": "window", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { @@ -299,6 +301,7 @@ }, { "name": "roof", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { @@ -469,6 +472,7 @@ }, { "name": "garage", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { @@ -598,6 +602,7 @@ }, { "name": "repair", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [], "connections": [], @@ -644,6 +649,7 @@ "steps": [ { "name": "1", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { @@ -814,6 +820,7 @@ }, { "name": "2", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { @@ -992,6 +999,7 @@ }, { "name": "3", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { @@ -1170,6 +1178,7 @@ }, { "name": "4", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { @@ -1352,6 +1361,7 @@ "scenarios": [ { "name": "storm", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/complex-layers/elk/board.exp.json b/e2etests/testdata/stable/complex-layers/elk/board.exp.json index 148a3ee4d..8a4ec64fa 100644 --- a/e2etests/testdata/stable/complex-layers/elk/board.exp.json +++ b/e2etests/testdata/stable/complex-layers/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { @@ -170,6 +171,7 @@ "layers": [ { "name": "window", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { @@ -299,6 +301,7 @@ }, { "name": "roof", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { @@ -469,6 +472,7 @@ }, { "name": "garage", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { @@ -598,6 +602,7 @@ }, { "name": "repair", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [], "connections": [], @@ -644,6 +649,7 @@ "steps": [ { "name": "1", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { @@ -814,6 +820,7 @@ }, { "name": "2", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { @@ -983,6 +990,7 @@ }, { "name": "3", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { @@ -1152,6 +1160,7 @@ }, { "name": "4", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { @@ -1325,6 +1334,7 @@ "scenarios": [ { "name": "storm", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/connected_container/dagre/board.exp.json b/e2etests/testdata/stable/connected_container/dagre/board.exp.json index e400ccc13..9ccef1f15 100644 --- a/e2etests/testdata/stable/connected_container/dagre/board.exp.json +++ b/e2etests/testdata/stable/connected_container/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/connected_container/elk/board.exp.json b/e2etests/testdata/stable/connected_container/elk/board.exp.json index b03aabb04..4c6ff4306 100644 --- a/e2etests/testdata/stable/connected_container/elk/board.exp.json +++ b/e2etests/testdata/stable/connected_container/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/constant_near_stress/dagre/board.exp.json b/e2etests/testdata/stable/constant_near_stress/dagre/board.exp.json index cdf7a33ee..792fffecd 100644 --- a/e2etests/testdata/stable/constant_near_stress/dagre/board.exp.json +++ b/e2etests/testdata/stable/constant_near_stress/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/constant_near_stress/elk/board.exp.json b/e2etests/testdata/stable/constant_near_stress/elk/board.exp.json index cd10f031f..072d00ebd 100644 --- a/e2etests/testdata/stable/constant_near_stress/elk/board.exp.json +++ b/e2etests/testdata/stable/constant_near_stress/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/constant_near_title/dagre/board.exp.json b/e2etests/testdata/stable/constant_near_title/dagre/board.exp.json index 39e6e31cc..62f6e321b 100644 --- a/e2etests/testdata/stable/constant_near_title/dagre/board.exp.json +++ b/e2etests/testdata/stable/constant_near_title/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/constant_near_title/elk/board.exp.json b/e2etests/testdata/stable/constant_near_title/elk/board.exp.json index f79d4c30d..025b5c864 100644 --- a/e2etests/testdata/stable/constant_near_title/elk/board.exp.json +++ b/e2etests/testdata/stable/constant_near_title/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/container_edges/dagre/board.exp.json b/e2etests/testdata/stable/container_edges/dagre/board.exp.json index 3cad345d1..1b6f09eb7 100644 --- a/e2etests/testdata/stable/container_edges/dagre/board.exp.json +++ b/e2etests/testdata/stable/container_edges/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/container_edges/elk/board.exp.json b/e2etests/testdata/stable/container_edges/elk/board.exp.json index a0337524b..571d8379d 100644 --- a/e2etests/testdata/stable/container_edges/elk/board.exp.json +++ b/e2etests/testdata/stable/container_edges/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/crow_foot_arrowhead/dagre/board.exp.json b/e2etests/testdata/stable/crow_foot_arrowhead/dagre/board.exp.json index 3baeb79c2..edbf00697 100644 --- a/e2etests/testdata/stable/crow_foot_arrowhead/dagre/board.exp.json +++ b/e2etests/testdata/stable/crow_foot_arrowhead/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/crow_foot_arrowhead/elk/board.exp.json b/e2etests/testdata/stable/crow_foot_arrowhead/elk/board.exp.json index 9c5f86db8..2e192dddf 100644 --- a/e2etests/testdata/stable/crow_foot_arrowhead/elk/board.exp.json +++ b/e2etests/testdata/stable/crow_foot_arrowhead/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/dense/dagre/board.exp.json b/e2etests/testdata/stable/dense/dagre/board.exp.json index 31c3abb47..9788489df 100644 --- a/e2etests/testdata/stable/dense/dagre/board.exp.json +++ b/e2etests/testdata/stable/dense/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/dense/elk/board.exp.json b/e2etests/testdata/stable/dense/elk/board.exp.json index e25b383da..dbb29fc1a 100644 --- a/e2etests/testdata/stable/dense/elk/board.exp.json +++ b/e2etests/testdata/stable/dense/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/different_subgraphs/dagre/board.exp.json b/e2etests/testdata/stable/different_subgraphs/dagre/board.exp.json index f754ecb83..150e9e65a 100644 --- a/e2etests/testdata/stable/different_subgraphs/dagre/board.exp.json +++ b/e2etests/testdata/stable/different_subgraphs/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/different_subgraphs/elk/board.exp.json b/e2etests/testdata/stable/different_subgraphs/elk/board.exp.json index 2d9d74555..690ffc90d 100644 --- a/e2etests/testdata/stable/different_subgraphs/elk/board.exp.json +++ b/e2etests/testdata/stable/different_subgraphs/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/direction/dagre/board.exp.json b/e2etests/testdata/stable/direction/dagre/board.exp.json index efa37c3ad..e146416bc 100644 --- a/e2etests/testdata/stable/direction/dagre/board.exp.json +++ b/e2etests/testdata/stable/direction/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/direction/elk/board.exp.json b/e2etests/testdata/stable/direction/elk/board.exp.json index a1b3a6af1..a674c7799 100644 --- a/e2etests/testdata/stable/direction/elk/board.exp.json +++ b/e2etests/testdata/stable/direction/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/font_colors/dagre/board.exp.json b/e2etests/testdata/stable/font_colors/dagre/board.exp.json index 058f22c0c..05e580e9a 100644 --- a/e2etests/testdata/stable/font_colors/dagre/board.exp.json +++ b/e2etests/testdata/stable/font_colors/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/font_colors/elk/board.exp.json b/e2etests/testdata/stable/font_colors/elk/board.exp.json index b3cc6f58b..fb7093c3c 100644 --- a/e2etests/testdata/stable/font_colors/elk/board.exp.json +++ b/e2etests/testdata/stable/font_colors/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/font_sizes/dagre/board.exp.json b/e2etests/testdata/stable/font_sizes/dagre/board.exp.json index b5c62ae80..e2e910ff7 100644 --- a/e2etests/testdata/stable/font_sizes/dagre/board.exp.json +++ b/e2etests/testdata/stable/font_sizes/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/font_sizes/elk/board.exp.json b/e2etests/testdata/stable/font_sizes/elk/board.exp.json index 876dd548f..d6704f0d9 100644 --- a/e2etests/testdata/stable/font_sizes/elk/board.exp.json +++ b/e2etests/testdata/stable/font_sizes/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/font_sizes_containers_large/dagre/board.exp.json b/e2etests/testdata/stable/font_sizes_containers_large/dagre/board.exp.json index da94baf6b..ddc9702b0 100644 --- a/e2etests/testdata/stable/font_sizes_containers_large/dagre/board.exp.json +++ b/e2etests/testdata/stable/font_sizes_containers_large/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/font_sizes_containers_large/elk/board.exp.json b/e2etests/testdata/stable/font_sizes_containers_large/elk/board.exp.json index a41cb42c9..a05e2b636 100644 --- a/e2etests/testdata/stable/font_sizes_containers_large/elk/board.exp.json +++ b/e2etests/testdata/stable/font_sizes_containers_large/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/giant_markdown_test/dagre/board.exp.json b/e2etests/testdata/stable/giant_markdown_test/dagre/board.exp.json index 8bd643334..b5002dcc6 100644 --- a/e2etests/testdata/stable/giant_markdown_test/dagre/board.exp.json +++ b/e2etests/testdata/stable/giant_markdown_test/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/giant_markdown_test/elk/board.exp.json b/e2etests/testdata/stable/giant_markdown_test/elk/board.exp.json index 3e155200a..bdd18a5bf 100644 --- a/e2etests/testdata/stable/giant_markdown_test/elk/board.exp.json +++ b/e2etests/testdata/stable/giant_markdown_test/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/hexagon_3d/dagre/board.exp.json b/e2etests/testdata/stable/hexagon_3d/dagre/board.exp.json index 190cab813..2cfd1d39c 100644 --- a/e2etests/testdata/stable/hexagon_3d/dagre/board.exp.json +++ b/e2etests/testdata/stable/hexagon_3d/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/hexagon_3d/elk/board.exp.json b/e2etests/testdata/stable/hexagon_3d/elk/board.exp.json index 456ec1a8d..65fdd2259 100644 --- a/e2etests/testdata/stable/hexagon_3d/elk/board.exp.json +++ b/e2etests/testdata/stable/hexagon_3d/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/hr/dagre/board.exp.json b/e2etests/testdata/stable/hr/dagre/board.exp.json index b7d3fb0a9..7b476daed 100644 --- a/e2etests/testdata/stable/hr/dagre/board.exp.json +++ b/e2etests/testdata/stable/hr/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/hr/elk/board.exp.json b/e2etests/testdata/stable/hr/elk/board.exp.json index a23ac2d29..338711602 100644 --- a/e2etests/testdata/stable/hr/elk/board.exp.json +++ b/e2etests/testdata/stable/hr/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/icon-containers/dagre/board.exp.json b/e2etests/testdata/stable/icon-containers/dagre/board.exp.json index 6a9766e85..3de2c9eee 100644 --- a/e2etests/testdata/stable/icon-containers/dagre/board.exp.json +++ b/e2etests/testdata/stable/icon-containers/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/icon-containers/elk/board.exp.json b/e2etests/testdata/stable/icon-containers/elk/board.exp.json index 044e36d83..f4ef06ec5 100644 --- a/e2etests/testdata/stable/icon-containers/elk/board.exp.json +++ b/e2etests/testdata/stable/icon-containers/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/icon-label/dagre/board.exp.json b/e2etests/testdata/stable/icon-label/dagre/board.exp.json index fa5b9fc74..6ea814e0d 100644 --- a/e2etests/testdata/stable/icon-label/dagre/board.exp.json +++ b/e2etests/testdata/stable/icon-label/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/icon-label/elk/board.exp.json b/e2etests/testdata/stable/icon-label/elk/board.exp.json index ee6850ad7..8b1e09778 100644 --- a/e2etests/testdata/stable/icon-label/elk/board.exp.json +++ b/e2etests/testdata/stable/icon-label/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/images/dagre/board.exp.json b/e2etests/testdata/stable/images/dagre/board.exp.json index b319fbf21..6dcb23eb0 100644 --- a/e2etests/testdata/stable/images/dagre/board.exp.json +++ b/e2etests/testdata/stable/images/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/images/elk/board.exp.json b/e2etests/testdata/stable/images/elk/board.exp.json index 26ed14a85..e75307d8c 100644 --- a/e2etests/testdata/stable/images/elk/board.exp.json +++ b/e2etests/testdata/stable/images/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/investigate/dagre/board.exp.json b/e2etests/testdata/stable/investigate/dagre/board.exp.json index 2101879fc..a83812892 100644 --- a/e2etests/testdata/stable/investigate/dagre/board.exp.json +++ b/e2etests/testdata/stable/investigate/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/investigate/elk/board.exp.json b/e2etests/testdata/stable/investigate/elk/board.exp.json index ace8734f2..086c60b2b 100644 --- a/e2etests/testdata/stable/investigate/elk/board.exp.json +++ b/e2etests/testdata/stable/investigate/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/large_arch/dagre/board.exp.json b/e2etests/testdata/stable/large_arch/dagre/board.exp.json index f642b2721..914f7401e 100644 --- a/e2etests/testdata/stable/large_arch/dagre/board.exp.json +++ b/e2etests/testdata/stable/large_arch/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/large_arch/elk/board.exp.json b/e2etests/testdata/stable/large_arch/elk/board.exp.json index d19f3bcac..2e53e9ed6 100644 --- a/e2etests/testdata/stable/large_arch/elk/board.exp.json +++ b/e2etests/testdata/stable/large_arch/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/latex/dagre/board.exp.json b/e2etests/testdata/stable/latex/dagre/board.exp.json index b9b9031c4..2f558e93f 100644 --- a/e2etests/testdata/stable/latex/dagre/board.exp.json +++ b/e2etests/testdata/stable/latex/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/latex/elk/board.exp.json b/e2etests/testdata/stable/latex/elk/board.exp.json index 69f1b6197..909a468a0 100644 --- a/e2etests/testdata/stable/latex/elk/board.exp.json +++ b/e2etests/testdata/stable/latex/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/li1/dagre/board.exp.json b/e2etests/testdata/stable/li1/dagre/board.exp.json index 30e005dc5..ab6edb592 100644 --- a/e2etests/testdata/stable/li1/dagre/board.exp.json +++ b/e2etests/testdata/stable/li1/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/li1/elk/board.exp.json b/e2etests/testdata/stable/li1/elk/board.exp.json index 51148dcb8..ae755184e 100644 --- a/e2etests/testdata/stable/li1/elk/board.exp.json +++ b/e2etests/testdata/stable/li1/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/li2/dagre/board.exp.json b/e2etests/testdata/stable/li2/dagre/board.exp.json index 3e4110b2f..764b301fa 100644 --- a/e2etests/testdata/stable/li2/dagre/board.exp.json +++ b/e2etests/testdata/stable/li2/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/li2/elk/board.exp.json b/e2etests/testdata/stable/li2/elk/board.exp.json index fecd92d2e..fbe408026 100644 --- a/e2etests/testdata/stable/li2/elk/board.exp.json +++ b/e2etests/testdata/stable/li2/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/li3/dagre/board.exp.json b/e2etests/testdata/stable/li3/dagre/board.exp.json index be548651c..96a377650 100644 --- a/e2etests/testdata/stable/li3/dagre/board.exp.json +++ b/e2etests/testdata/stable/li3/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/li3/elk/board.exp.json b/e2etests/testdata/stable/li3/elk/board.exp.json index 5d2436b8b..c70ddf187 100644 --- a/e2etests/testdata/stable/li3/elk/board.exp.json +++ b/e2etests/testdata/stable/li3/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/li4/dagre/board.exp.json b/e2etests/testdata/stable/li4/dagre/board.exp.json index ba878a443..92de914d3 100644 --- a/e2etests/testdata/stable/li4/dagre/board.exp.json +++ b/e2etests/testdata/stable/li4/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/li4/elk/board.exp.json b/e2etests/testdata/stable/li4/elk/board.exp.json index f88624383..a28215e57 100644 --- a/e2etests/testdata/stable/li4/elk/board.exp.json +++ b/e2etests/testdata/stable/li4/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/links/dagre/board.exp.json b/e2etests/testdata/stable/links/dagre/board.exp.json index 89a40210f..2feeb7e70 100644 --- a/e2etests/testdata/stable/links/dagre/board.exp.json +++ b/e2etests/testdata/stable/links/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/links/elk/board.exp.json b/e2etests/testdata/stable/links/elk/board.exp.json index c5f595fa6..09de704df 100644 --- a/e2etests/testdata/stable/links/elk/board.exp.json +++ b/e2etests/testdata/stable/links/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/lone_h1/dagre/board.exp.json b/e2etests/testdata/stable/lone_h1/dagre/board.exp.json index 727252981..8a8205bfe 100644 --- a/e2etests/testdata/stable/lone_h1/dagre/board.exp.json +++ b/e2etests/testdata/stable/lone_h1/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/lone_h1/elk/board.exp.json b/e2etests/testdata/stable/lone_h1/elk/board.exp.json index e3e1c4f11..d70d0bb14 100644 --- a/e2etests/testdata/stable/lone_h1/elk/board.exp.json +++ b/e2etests/testdata/stable/lone_h1/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/markdown/dagre/board.exp.json b/e2etests/testdata/stable/markdown/dagre/board.exp.json index d3815d57f..30387d872 100644 --- a/e2etests/testdata/stable/markdown/dagre/board.exp.json +++ b/e2etests/testdata/stable/markdown/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/markdown/elk/board.exp.json b/e2etests/testdata/stable/markdown/elk/board.exp.json index d4932c3ff..32ccd6058 100644 --- a/e2etests/testdata/stable/markdown/elk/board.exp.json +++ b/e2etests/testdata/stable/markdown/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/markdown_stroke_fill/dagre/board.exp.json b/e2etests/testdata/stable/markdown_stroke_fill/dagre/board.exp.json index 859e2d036..ba5d9e295 100644 --- a/e2etests/testdata/stable/markdown_stroke_fill/dagre/board.exp.json +++ b/e2etests/testdata/stable/markdown_stroke_fill/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/markdown_stroke_fill/elk/board.exp.json b/e2etests/testdata/stable/markdown_stroke_fill/elk/board.exp.json index 283bdcbe6..8a603cf79 100644 --- a/e2etests/testdata/stable/markdown_stroke_fill/elk/board.exp.json +++ b/e2etests/testdata/stable/markdown_stroke_fill/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/md_2space_newline/dagre/board.exp.json b/e2etests/testdata/stable/md_2space_newline/dagre/board.exp.json index 5fb40f77f..3d12b47d6 100644 --- a/e2etests/testdata/stable/md_2space_newline/dagre/board.exp.json +++ b/e2etests/testdata/stable/md_2space_newline/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/md_2space_newline/elk/board.exp.json b/e2etests/testdata/stable/md_2space_newline/elk/board.exp.json index 99aba2faf..55717edfc 100644 --- a/e2etests/testdata/stable/md_2space_newline/elk/board.exp.json +++ b/e2etests/testdata/stable/md_2space_newline/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/md_backslash_newline/dagre/board.exp.json b/e2etests/testdata/stable/md_backslash_newline/dagre/board.exp.json index a7c93f7d7..05dd96fcf 100644 --- a/e2etests/testdata/stable/md_backslash_newline/dagre/board.exp.json +++ b/e2etests/testdata/stable/md_backslash_newline/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/md_backslash_newline/elk/board.exp.json b/e2etests/testdata/stable/md_backslash_newline/elk/board.exp.json index 090068c1b..ecae4e115 100644 --- a/e2etests/testdata/stable/md_backslash_newline/elk/board.exp.json +++ b/e2etests/testdata/stable/md_backslash_newline/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/md_code_block_fenced/dagre/board.exp.json b/e2etests/testdata/stable/md_code_block_fenced/dagre/board.exp.json index 6a854148a..4440713fc 100644 --- a/e2etests/testdata/stable/md_code_block_fenced/dagre/board.exp.json +++ b/e2etests/testdata/stable/md_code_block_fenced/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/md_code_block_fenced/elk/board.exp.json b/e2etests/testdata/stable/md_code_block_fenced/elk/board.exp.json index 8d993680e..fc84014fc 100644 --- a/e2etests/testdata/stable/md_code_block_fenced/elk/board.exp.json +++ b/e2etests/testdata/stable/md_code_block_fenced/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/md_code_block_indented/dagre/board.exp.json b/e2etests/testdata/stable/md_code_block_indented/dagre/board.exp.json index 0b3acf60f..18a14650d 100644 --- a/e2etests/testdata/stable/md_code_block_indented/dagre/board.exp.json +++ b/e2etests/testdata/stable/md_code_block_indented/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/md_code_block_indented/elk/board.exp.json b/e2etests/testdata/stable/md_code_block_indented/elk/board.exp.json index abff0cf62..c42224dca 100644 --- a/e2etests/testdata/stable/md_code_block_indented/elk/board.exp.json +++ b/e2etests/testdata/stable/md_code_block_indented/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/md_code_inline/dagre/board.exp.json b/e2etests/testdata/stable/md_code_inline/dagre/board.exp.json index cf64ddd66..f7835dbcc 100644 --- a/e2etests/testdata/stable/md_code_inline/dagre/board.exp.json +++ b/e2etests/testdata/stable/md_code_inline/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/md_code_inline/elk/board.exp.json b/e2etests/testdata/stable/md_code_inline/elk/board.exp.json index 97cf0d7c8..7d37ce22c 100644 --- a/e2etests/testdata/stable/md_code_inline/elk/board.exp.json +++ b/e2etests/testdata/stable/md_code_inline/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/multiline_text/dagre/board.exp.json b/e2etests/testdata/stable/multiline_text/dagre/board.exp.json index e861dc3b8..aeea56bc2 100644 --- a/e2etests/testdata/stable/multiline_text/dagre/board.exp.json +++ b/e2etests/testdata/stable/multiline_text/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/multiline_text/elk/board.exp.json b/e2etests/testdata/stable/multiline_text/elk/board.exp.json index 57843b510..a10d63b38 100644 --- a/e2etests/testdata/stable/multiline_text/elk/board.exp.json +++ b/e2etests/testdata/stable/multiline_text/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/multiple_trees/dagre/board.exp.json b/e2etests/testdata/stable/multiple_trees/dagre/board.exp.json index b1b0fe6e4..8effb31b8 100644 --- a/e2etests/testdata/stable/multiple_trees/dagre/board.exp.json +++ b/e2etests/testdata/stable/multiple_trees/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/multiple_trees/elk/board.exp.json b/e2etests/testdata/stable/multiple_trees/elk/board.exp.json index f261a7a2f..bdc994dc0 100644 --- a/e2etests/testdata/stable/multiple_trees/elk/board.exp.json +++ b/e2etests/testdata/stable/multiple_trees/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/n22_e32/dagre/board.exp.json b/e2etests/testdata/stable/n22_e32/dagre/board.exp.json index e9b076501..3659b5719 100644 --- a/e2etests/testdata/stable/n22_e32/dagre/board.exp.json +++ b/e2etests/testdata/stable/n22_e32/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/n22_e32/elk/board.exp.json b/e2etests/testdata/stable/n22_e32/elk/board.exp.json index 9b8914f03..f0c7b7a79 100644 --- a/e2etests/testdata/stable/n22_e32/elk/board.exp.json +++ b/e2etests/testdata/stable/n22_e32/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/near-alone/dagre/board.exp.json b/e2etests/testdata/stable/near-alone/dagre/board.exp.json index 93072965d..52ab93dbc 100644 --- a/e2etests/testdata/stable/near-alone/dagre/board.exp.json +++ b/e2etests/testdata/stable/near-alone/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/near-alone/elk/board.exp.json b/e2etests/testdata/stable/near-alone/elk/board.exp.json index 93072965d..52ab93dbc 100644 --- a/e2etests/testdata/stable/near-alone/elk/board.exp.json +++ b/e2etests/testdata/stable/near-alone/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/number_connections/dagre/board.exp.json b/e2etests/testdata/stable/number_connections/dagre/board.exp.json index 60bbb6690..5c27bd05e 100644 --- a/e2etests/testdata/stable/number_connections/dagre/board.exp.json +++ b/e2etests/testdata/stable/number_connections/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/number_connections/elk/board.exp.json b/e2etests/testdata/stable/number_connections/elk/board.exp.json index 6ba6dbe7b..634075675 100644 --- a/e2etests/testdata/stable/number_connections/elk/board.exp.json +++ b/e2etests/testdata/stable/number_connections/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/one_container_loop/dagre/board.exp.json b/e2etests/testdata/stable/one_container_loop/dagre/board.exp.json index ee04039c5..03dcfe50f 100644 --- a/e2etests/testdata/stable/one_container_loop/dagre/board.exp.json +++ b/e2etests/testdata/stable/one_container_loop/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/one_container_loop/elk/board.exp.json b/e2etests/testdata/stable/one_container_loop/elk/board.exp.json index 1ecd26c36..df8a6baee 100644 --- a/e2etests/testdata/stable/one_container_loop/elk/board.exp.json +++ b/e2etests/testdata/stable/one_container_loop/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/one_three_one_container/dagre/board.exp.json b/e2etests/testdata/stable/one_three_one_container/dagre/board.exp.json index 2de0c4ed4..016442ae6 100644 --- a/e2etests/testdata/stable/one_three_one_container/dagre/board.exp.json +++ b/e2etests/testdata/stable/one_three_one_container/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/one_three_one_container/elk/board.exp.json b/e2etests/testdata/stable/one_three_one_container/elk/board.exp.json index 7a5fdbbda..b61a5bfd8 100644 --- a/e2etests/testdata/stable/one_three_one_container/elk/board.exp.json +++ b/e2etests/testdata/stable/one_three_one_container/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/ovals/dagre/board.exp.json b/e2etests/testdata/stable/ovals/dagre/board.exp.json index 08946aa7b..78811f99c 100644 --- a/e2etests/testdata/stable/ovals/dagre/board.exp.json +++ b/e2etests/testdata/stable/ovals/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/ovals/elk/board.exp.json b/e2etests/testdata/stable/ovals/elk/board.exp.json index ba3ed3869..2c54b17be 100644 --- a/e2etests/testdata/stable/ovals/elk/board.exp.json +++ b/e2etests/testdata/stable/ovals/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/overlapping_image_container_labels/dagre/board.exp.json b/e2etests/testdata/stable/overlapping_image_container_labels/dagre/board.exp.json index 2ca959e55..2410acb8a 100644 --- a/e2etests/testdata/stable/overlapping_image_container_labels/dagre/board.exp.json +++ b/e2etests/testdata/stable/overlapping_image_container_labels/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/overlapping_image_container_labels/elk/board.exp.json b/e2etests/testdata/stable/overlapping_image_container_labels/elk/board.exp.json index e2bf4dda7..9e5cf485a 100644 --- a/e2etests/testdata/stable/overlapping_image_container_labels/elk/board.exp.json +++ b/e2etests/testdata/stable/overlapping_image_container_labels/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/p/dagre/board.exp.json b/e2etests/testdata/stable/p/dagre/board.exp.json index f2d4c3369..acfa63faf 100644 --- a/e2etests/testdata/stable/p/dagre/board.exp.json +++ b/e2etests/testdata/stable/p/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/p/elk/board.exp.json b/e2etests/testdata/stable/p/elk/board.exp.json index 618c4c13f..3f278f3e7 100644 --- a/e2etests/testdata/stable/p/elk/board.exp.json +++ b/e2etests/testdata/stable/p/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/people/dagre/board.exp.json b/e2etests/testdata/stable/people/dagre/board.exp.json index 5ab47d594..e81b912c5 100644 --- a/e2etests/testdata/stable/people/dagre/board.exp.json +++ b/e2etests/testdata/stable/people/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/people/elk/board.exp.json b/e2etests/testdata/stable/people/elk/board.exp.json index b5ace7d95..5c8e60c29 100644 --- a/e2etests/testdata/stable/people/elk/board.exp.json +++ b/e2etests/testdata/stable/people/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/pre/dagre/board.exp.json b/e2etests/testdata/stable/pre/dagre/board.exp.json index 8d2db1d73..2c49abfbb 100644 --- a/e2etests/testdata/stable/pre/dagre/board.exp.json +++ b/e2etests/testdata/stable/pre/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/pre/elk/board.exp.json b/e2etests/testdata/stable/pre/elk/board.exp.json index d9a2e5fcc..6241ecf2c 100644 --- a/e2etests/testdata/stable/pre/elk/board.exp.json +++ b/e2etests/testdata/stable/pre/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/self-referencing/dagre/board.exp.json b/e2etests/testdata/stable/self-referencing/dagre/board.exp.json index 5a870fe1f..cc029e4c0 100644 --- a/e2etests/testdata/stable/self-referencing/dagre/board.exp.json +++ b/e2etests/testdata/stable/self-referencing/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/self-referencing/elk/board.exp.json b/e2etests/testdata/stable/self-referencing/elk/board.exp.json index 57b5e7a6e..efd8d6145 100644 --- a/e2etests/testdata/stable/self-referencing/elk/board.exp.json +++ b/e2etests/testdata/stable/self-referencing/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence-inter-span-self/dagre/board.exp.json b/e2etests/testdata/stable/sequence-inter-span-self/dagre/board.exp.json index c9d5e6336..7d73eae0f 100644 --- a/e2etests/testdata/stable/sequence-inter-span-self/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence-inter-span-self/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence-inter-span-self/elk/board.exp.json b/e2etests/testdata/stable/sequence-inter-span-self/elk/board.exp.json index c9d5e6336..7d73eae0f 100644 --- a/e2etests/testdata/stable/sequence-inter-span-self/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence-inter-span-self/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence_diagram_actor_distance/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagram_actor_distance/dagre/board.exp.json index 3c5f512f9..f9f2e20ba 100644 --- a/e2etests/testdata/stable/sequence_diagram_actor_distance/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_actor_distance/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence_diagram_actor_distance/elk/board.exp.json b/e2etests/testdata/stable/sequence_diagram_actor_distance/elk/board.exp.json index 3c5f512f9..f9f2e20ba 100644 --- a/e2etests/testdata/stable/sequence_diagram_actor_distance/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_actor_distance/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence_diagram_all_shapes/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagram_all_shapes/dagre/board.exp.json index 002420091..3c3bb45ed 100644 --- a/e2etests/testdata/stable/sequence_diagram_all_shapes/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_all_shapes/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence_diagram_all_shapes/elk/board.exp.json b/e2etests/testdata/stable/sequence_diagram_all_shapes/elk/board.exp.json index 002420091..3c3bb45ed 100644 --- a/e2etests/testdata/stable/sequence_diagram_all_shapes/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_all_shapes/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence_diagram_distance/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagram_distance/dagre/board.exp.json index ba648e6d1..ca9ced052 100644 --- a/e2etests/testdata/stable/sequence_diagram_distance/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_distance/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence_diagram_distance/elk/board.exp.json b/e2etests/testdata/stable/sequence_diagram_distance/elk/board.exp.json index ba648e6d1..ca9ced052 100644 --- a/e2etests/testdata/stable/sequence_diagram_distance/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_distance/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence_diagram_groups/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagram_groups/dagre/board.exp.json index 74cd3a454..66cdc7380 100644 --- a/e2etests/testdata/stable/sequence_diagram_groups/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_groups/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence_diagram_groups/elk/board.exp.json b/e2etests/testdata/stable/sequence_diagram_groups/elk/board.exp.json index 74cd3a454..66cdc7380 100644 --- a/e2etests/testdata/stable/sequence_diagram_groups/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_groups/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence_diagram_long_note/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagram_long_note/dagre/board.exp.json index d38fe5e51..db4a42039 100644 --- a/e2etests/testdata/stable/sequence_diagram_long_note/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_long_note/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence_diagram_long_note/elk/board.exp.json b/e2etests/testdata/stable/sequence_diagram_long_note/elk/board.exp.json index d38fe5e51..db4a42039 100644 --- a/e2etests/testdata/stable/sequence_diagram_long_note/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_long_note/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence_diagram_nested_groups/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagram_nested_groups/dagre/board.exp.json index 19f5d79db..1e5f2a33a 100644 --- a/e2etests/testdata/stable/sequence_diagram_nested_groups/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_nested_groups/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence_diagram_nested_groups/elk/board.exp.json b/e2etests/testdata/stable/sequence_diagram_nested_groups/elk/board.exp.json index 19f5d79db..1e5f2a33a 100644 --- a/e2etests/testdata/stable/sequence_diagram_nested_groups/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_nested_groups/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence_diagram_nested_span/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagram_nested_span/dagre/board.exp.json index 0761baae8..3cc8a7ea3 100644 --- a/e2etests/testdata/stable/sequence_diagram_nested_span/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_nested_span/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence_diagram_nested_span/elk/board.exp.json b/e2etests/testdata/stable/sequence_diagram_nested_span/elk/board.exp.json index 0761baae8..3cc8a7ea3 100644 --- a/e2etests/testdata/stable/sequence_diagram_nested_span/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_nested_span/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence_diagram_note/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagram_note/dagre/board.exp.json index c93f26e22..feb35d626 100644 --- a/e2etests/testdata/stable/sequence_diagram_note/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_note/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence_diagram_note/elk/board.exp.json b/e2etests/testdata/stable/sequence_diagram_note/elk/board.exp.json index c93f26e22..feb35d626 100644 --- a/e2etests/testdata/stable/sequence_diagram_note/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_note/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence_diagram_real/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagram_real/dagre/board.exp.json index 7fca0b258..a14e19613 100644 --- a/e2etests/testdata/stable/sequence_diagram_real/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_real/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence_diagram_real/elk/board.exp.json b/e2etests/testdata/stable/sequence_diagram_real/elk/board.exp.json index 5c0a10f91..87a28fe30 100644 --- a/e2etests/testdata/stable/sequence_diagram_real/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_real/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence_diagram_self_edges/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagram_self_edges/dagre/board.exp.json index f42a57415..b3c9443f9 100644 --- a/e2etests/testdata/stable/sequence_diagram_self_edges/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_self_edges/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence_diagram_self_edges/elk/board.exp.json b/e2etests/testdata/stable/sequence_diagram_self_edges/elk/board.exp.json index f42a57415..b3c9443f9 100644 --- a/e2etests/testdata/stable/sequence_diagram_self_edges/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_self_edges/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence_diagram_simple/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagram_simple/dagre/board.exp.json index eb7dd4b56..1399a14fd 100644 --- a/e2etests/testdata/stable/sequence_diagram_simple/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_simple/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence_diagram_simple/elk/board.exp.json b/e2etests/testdata/stable/sequence_diagram_simple/elk/board.exp.json index eb7dd4b56..1399a14fd 100644 --- a/e2etests/testdata/stable/sequence_diagram_simple/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_simple/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence_diagram_span/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagram_span/dagre/board.exp.json index b3da75484..504cae1ce 100644 --- a/e2etests/testdata/stable/sequence_diagram_span/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_span/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence_diagram_span/elk/board.exp.json b/e2etests/testdata/stable/sequence_diagram_span/elk/board.exp.json index b3da75484..504cae1ce 100644 --- a/e2etests/testdata/stable/sequence_diagram_span/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagram_span/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence_diagrams/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagrams/dagre/board.exp.json index ad44ae2dd..f93af053e 100644 --- a/e2etests/testdata/stable/sequence_diagrams/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagrams/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sequence_diagrams/elk/board.exp.json b/e2etests/testdata/stable/sequence_diagrams/elk/board.exp.json index 9d0a3e81e..e69de04eb 100644 --- a/e2etests/testdata/stable/sequence_diagrams/elk/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagrams/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sql_table_column_styles/dagre/board.exp.json b/e2etests/testdata/stable/sql_table_column_styles/dagre/board.exp.json index e3f09f780..55c5ecf20 100644 --- a/e2etests/testdata/stable/sql_table_column_styles/dagre/board.exp.json +++ b/e2etests/testdata/stable/sql_table_column_styles/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sql_table_column_styles/elk/board.exp.json b/e2etests/testdata/stable/sql_table_column_styles/elk/board.exp.json index 990dda0e3..4819ec11c 100644 --- a/e2etests/testdata/stable/sql_table_column_styles/elk/board.exp.json +++ b/e2etests/testdata/stable/sql_table_column_styles/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sql_table_tooltip_animated/dagre/board.exp.json b/e2etests/testdata/stable/sql_table_tooltip_animated/dagre/board.exp.json index 8474447cb..38161c04e 100644 --- a/e2etests/testdata/stable/sql_table_tooltip_animated/dagre/board.exp.json +++ b/e2etests/testdata/stable/sql_table_tooltip_animated/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sql_table_tooltip_animated/elk/board.exp.json b/e2etests/testdata/stable/sql_table_tooltip_animated/elk/board.exp.json index be3bff3ef..1ece9c62e 100644 --- a/e2etests/testdata/stable/sql_table_tooltip_animated/elk/board.exp.json +++ b/e2etests/testdata/stable/sql_table_tooltip_animated/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sql_tables/dagre/board.exp.json b/e2etests/testdata/stable/sql_tables/dagre/board.exp.json index b2ff36297..450cc5081 100644 --- a/e2etests/testdata/stable/sql_tables/dagre/board.exp.json +++ b/e2etests/testdata/stable/sql_tables/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/sql_tables/elk/board.exp.json b/e2etests/testdata/stable/sql_tables/elk/board.exp.json index d5f685c6b..b7b472cdf 100644 --- a/e2etests/testdata/stable/sql_tables/elk/board.exp.json +++ b/e2etests/testdata/stable/sql_tables/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/square_3d/dagre/board.exp.json b/e2etests/testdata/stable/square_3d/dagre/board.exp.json index 20c75587d..5279a1e90 100644 --- a/e2etests/testdata/stable/square_3d/dagre/board.exp.json +++ b/e2etests/testdata/stable/square_3d/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/square_3d/elk/board.exp.json b/e2etests/testdata/stable/square_3d/elk/board.exp.json index 50765bc6f..f53a06177 100644 --- a/e2etests/testdata/stable/square_3d/elk/board.exp.json +++ b/e2etests/testdata/stable/square_3d/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/straight_hierarchy_container/dagre/board.exp.json b/e2etests/testdata/stable/straight_hierarchy_container/dagre/board.exp.json index 3901e45d7..ade991298 100644 --- a/e2etests/testdata/stable/straight_hierarchy_container/dagre/board.exp.json +++ b/e2etests/testdata/stable/straight_hierarchy_container/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/straight_hierarchy_container/elk/board.exp.json b/e2etests/testdata/stable/straight_hierarchy_container/elk/board.exp.json index ed5a0816f..2ed2dc877 100644 --- a/e2etests/testdata/stable/straight_hierarchy_container/elk/board.exp.json +++ b/e2etests/testdata/stable/straight_hierarchy_container/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/stylish/dagre/board.exp.json b/e2etests/testdata/stable/stylish/dagre/board.exp.json index 1a10ef85c..f9c9e6522 100644 --- a/e2etests/testdata/stable/stylish/dagre/board.exp.json +++ b/e2etests/testdata/stable/stylish/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/stylish/elk/board.exp.json b/e2etests/testdata/stable/stylish/elk/board.exp.json index f19dab9df..6ead21367 100644 --- a/e2etests/testdata/stable/stylish/elk/board.exp.json +++ b/e2etests/testdata/stable/stylish/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/text_font_sizes/dagre/board.exp.json b/e2etests/testdata/stable/text_font_sizes/dagre/board.exp.json index 6f48045b4..7d9dcc16f 100644 --- a/e2etests/testdata/stable/text_font_sizes/dagre/board.exp.json +++ b/e2etests/testdata/stable/text_font_sizes/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/text_font_sizes/elk/board.exp.json b/e2etests/testdata/stable/text_font_sizes/elk/board.exp.json index b346fece9..70feb3582 100644 --- a/e2etests/testdata/stable/text_font_sizes/elk/board.exp.json +++ b/e2etests/testdata/stable/text_font_sizes/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/tooltips/dagre/board.exp.json b/e2etests/testdata/stable/tooltips/dagre/board.exp.json index 9c12ef4b1..fb7326616 100644 --- a/e2etests/testdata/stable/tooltips/dagre/board.exp.json +++ b/e2etests/testdata/stable/tooltips/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/tooltips/elk/board.exp.json b/e2etests/testdata/stable/tooltips/elk/board.exp.json index 01686859d..0717875bd 100644 --- a/e2etests/testdata/stable/tooltips/elk/board.exp.json +++ b/e2etests/testdata/stable/tooltips/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/transparent_3d/dagre/board.exp.json b/e2etests/testdata/stable/transparent_3d/dagre/board.exp.json index 7ae3737ab..9610888ec 100644 --- a/e2etests/testdata/stable/transparent_3d/dagre/board.exp.json +++ b/e2etests/testdata/stable/transparent_3d/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/transparent_3d/elk/board.exp.json b/e2etests/testdata/stable/transparent_3d/elk/board.exp.json index f67929f97..27833da33 100644 --- a/e2etests/testdata/stable/transparent_3d/elk/board.exp.json +++ b/e2etests/testdata/stable/transparent_3d/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/unnamed_only_height/dagre/board.exp.json b/e2etests/testdata/stable/unnamed_only_height/dagre/board.exp.json index 4e9b35c3c..3a4ae673e 100644 --- a/e2etests/testdata/stable/unnamed_only_height/dagre/board.exp.json +++ b/e2etests/testdata/stable/unnamed_only_height/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/unnamed_only_height/elk/board.exp.json b/e2etests/testdata/stable/unnamed_only_height/elk/board.exp.json index 3305e3fb0..e7062a440 100644 --- a/e2etests/testdata/stable/unnamed_only_height/elk/board.exp.json +++ b/e2etests/testdata/stable/unnamed_only_height/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/unnamed_only_width/dagre/board.exp.json b/e2etests/testdata/stable/unnamed_only_width/dagre/board.exp.json index b2c996942..c05094ff8 100644 --- a/e2etests/testdata/stable/unnamed_only_width/dagre/board.exp.json +++ b/e2etests/testdata/stable/unnamed_only_width/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/unnamed_only_width/elk/board.exp.json b/e2etests/testdata/stable/unnamed_only_width/elk/board.exp.json index 1b4f6e633..757431819 100644 --- a/e2etests/testdata/stable/unnamed_only_width/elk/board.exp.json +++ b/e2etests/testdata/stable/unnamed_only_width/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/us_map/dagre/board.exp.json b/e2etests/testdata/stable/us_map/dagre/board.exp.json index 0852faee1..49069c26d 100644 --- a/e2etests/testdata/stable/us_map/dagre/board.exp.json +++ b/e2etests/testdata/stable/us_map/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/stable/us_map/elk/board.exp.json b/e2etests/testdata/stable/us_map/elk/board.exp.json index 72255e773..758fc89ea 100644 --- a/e2etests/testdata/stable/us_map/elk/board.exp.json +++ b/e2etests/testdata/stable/us_map/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/todo/container_icon_label/dagre/board.exp.json b/e2etests/testdata/todo/container_icon_label/dagre/board.exp.json index d1227105a..20798dd86 100644 --- a/e2etests/testdata/todo/container_icon_label/dagre/board.exp.json +++ b/e2etests/testdata/todo/container_icon_label/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/todo/container_icon_label/elk/board.exp.json b/e2etests/testdata/todo/container_icon_label/elk/board.exp.json index 2d9d86715..1ed059614 100644 --- a/e2etests/testdata/todo/container_icon_label/elk/board.exp.json +++ b/e2etests/testdata/todo/container_icon_label/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/todo/container_label_edge_adjustment/dagre/board.exp.json b/e2etests/testdata/todo/container_label_edge_adjustment/dagre/board.exp.json index 334089833..49dbef461 100644 --- a/e2etests/testdata/todo/container_label_edge_adjustment/dagre/board.exp.json +++ b/e2etests/testdata/todo/container_label_edge_adjustment/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/todo/container_label_edge_adjustment/elk/board.exp.json b/e2etests/testdata/todo/container_label_edge_adjustment/elk/board.exp.json index 95c392c1e..98891fec8 100644 --- a/e2etests/testdata/todo/container_label_edge_adjustment/elk/board.exp.json +++ b/e2etests/testdata/todo/container_label_edge_adjustment/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/todo/container_label_edge_adjustment2/dagre/board.exp.json b/e2etests/testdata/todo/container_label_edge_adjustment2/dagre/board.exp.json index f73036e74..2e48b2197 100644 --- a/e2etests/testdata/todo/container_label_edge_adjustment2/dagre/board.exp.json +++ b/e2etests/testdata/todo/container_label_edge_adjustment2/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/todo/container_label_edge_adjustment2/elk/board.exp.json b/e2etests/testdata/todo/container_label_edge_adjustment2/elk/board.exp.json index 9d19df3fd..95266a508 100644 --- a/e2etests/testdata/todo/container_label_edge_adjustment2/elk/board.exp.json +++ b/e2etests/testdata/todo/container_label_edge_adjustment2/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/dagre/board.exp.json b/e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/dagre/board.exp.json index fd20181e5..ea4bef6e5 100644 --- a/e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/dagre/board.exp.json +++ b/e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/elk/board.exp.json b/e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/elk/board.exp.json index fd20181e5..ea4bef6e5 100644 --- a/e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/elk/board.exp.json +++ b/e2etests/testdata/todo/sequence_diagram_actor_padding_nested_groups/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/todo/sequence_diagram_edge_group_span_field/dagre/board.exp.json b/e2etests/testdata/todo/sequence_diagram_edge_group_span_field/dagre/board.exp.json index 6e11589ff..3fdb51224 100644 --- a/e2etests/testdata/todo/sequence_diagram_edge_group_span_field/dagre/board.exp.json +++ b/e2etests/testdata/todo/sequence_diagram_edge_group_span_field/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/todo/sequence_diagram_edge_group_span_field/elk/board.exp.json b/e2etests/testdata/todo/sequence_diagram_edge_group_span_field/elk/board.exp.json index ae0771831..cc3694cab 100644 --- a/e2etests/testdata/todo/sequence_diagram_edge_group_span_field/elk/board.exp.json +++ b/e2etests/testdata/todo/sequence_diagram_edge_group_span_field/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/todo/shape_set_width_height/dagre/board.exp.json b/e2etests/testdata/todo/shape_set_width_height/dagre/board.exp.json index 18ae97e15..c1ddaf639 100644 --- a/e2etests/testdata/todo/shape_set_width_height/dagre/board.exp.json +++ b/e2etests/testdata/todo/shape_set_width_height/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/todo/shape_set_width_height/elk/board.exp.json b/e2etests/testdata/todo/shape_set_width_height/elk/board.exp.json index 5dd3a43d6..3f0532f60 100644 --- a/e2etests/testdata/todo/shape_set_width_height/elk/board.exp.json +++ b/e2etests/testdata/todo/shape_set_width_height/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/unicode/chinese/dagre/board.exp.json b/e2etests/testdata/unicode/chinese/dagre/board.exp.json index 00a8db699..62950df84 100644 --- a/e2etests/testdata/unicode/chinese/dagre/board.exp.json +++ b/e2etests/testdata/unicode/chinese/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/unicode/chinese/elk/board.exp.json b/e2etests/testdata/unicode/chinese/elk/board.exp.json index 07eed819e..332696471 100644 --- a/e2etests/testdata/unicode/chinese/elk/board.exp.json +++ b/e2etests/testdata/unicode/chinese/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/unicode/emojis/dagre/board.exp.json b/e2etests/testdata/unicode/emojis/dagre/board.exp.json index 7199b5c33..a687fc169 100644 --- a/e2etests/testdata/unicode/emojis/dagre/board.exp.json +++ b/e2etests/testdata/unicode/emojis/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/unicode/emojis/elk/board.exp.json b/e2etests/testdata/unicode/emojis/elk/board.exp.json index 9afb3848c..5d417f783 100644 --- a/e2etests/testdata/unicode/emojis/elk/board.exp.json +++ b/e2etests/testdata/unicode/emojis/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/unicode/japanese-basic/dagre/board.exp.json b/e2etests/testdata/unicode/japanese-basic/dagre/board.exp.json index 02b9cedc4..7b684dbb7 100644 --- a/e2etests/testdata/unicode/japanese-basic/dagre/board.exp.json +++ b/e2etests/testdata/unicode/japanese-basic/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/unicode/japanese-basic/elk/board.exp.json b/e2etests/testdata/unicode/japanese-basic/elk/board.exp.json index 092ed81c1..57c3f063d 100644 --- a/e2etests/testdata/unicode/japanese-basic/elk/board.exp.json +++ b/e2etests/testdata/unicode/japanese-basic/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/unicode/japanese-full/dagre/board.exp.json b/e2etests/testdata/unicode/japanese-full/dagre/board.exp.json index c7c04b59a..06dffca11 100644 --- a/e2etests/testdata/unicode/japanese-full/dagre/board.exp.json +++ b/e2etests/testdata/unicode/japanese-full/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/unicode/japanese-full/elk/board.exp.json b/e2etests/testdata/unicode/japanese-full/elk/board.exp.json index 388913be5..21d10b772 100644 --- a/e2etests/testdata/unicode/japanese-full/elk/board.exp.json +++ b/e2etests/testdata/unicode/japanese-full/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/unicode/japanese-mixed/dagre/board.exp.json b/e2etests/testdata/unicode/japanese-mixed/dagre/board.exp.json index 74ca5efa0..7b2ac388c 100644 --- a/e2etests/testdata/unicode/japanese-mixed/dagre/board.exp.json +++ b/e2etests/testdata/unicode/japanese-mixed/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/unicode/japanese-mixed/elk/board.exp.json b/e2etests/testdata/unicode/japanese-mixed/elk/board.exp.json index 8bbc66a45..37d6fa41f 100644 --- a/e2etests/testdata/unicode/japanese-mixed/elk/board.exp.json +++ b/e2etests/testdata/unicode/japanese-mixed/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/unicode/korean/dagre/board.exp.json b/e2etests/testdata/unicode/korean/dagre/board.exp.json index 8814404c9..5917ea9cf 100644 --- a/e2etests/testdata/unicode/korean/dagre/board.exp.json +++ b/e2etests/testdata/unicode/korean/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/unicode/korean/elk/board.exp.json b/e2etests/testdata/unicode/korean/elk/board.exp.json index 3bff4788e..d64da8678 100644 --- a/e2etests/testdata/unicode/korean/elk/board.exp.json +++ b/e2etests/testdata/unicode/korean/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/unicode/mixed-language-2/dagre/board.exp.json b/e2etests/testdata/unicode/mixed-language-2/dagre/board.exp.json index 5dcd39272..134292329 100644 --- a/e2etests/testdata/unicode/mixed-language-2/dagre/board.exp.json +++ b/e2etests/testdata/unicode/mixed-language-2/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/unicode/mixed-language-2/elk/board.exp.json b/e2etests/testdata/unicode/mixed-language-2/elk/board.exp.json index 6a8c52980..cf1d86106 100644 --- a/e2etests/testdata/unicode/mixed-language-2/elk/board.exp.json +++ b/e2etests/testdata/unicode/mixed-language-2/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/unicode/mixed-language/dagre/board.exp.json b/e2etests/testdata/unicode/mixed-language/dagre/board.exp.json index 678d9ae41..edd94da26 100644 --- a/e2etests/testdata/unicode/mixed-language/dagre/board.exp.json +++ b/e2etests/testdata/unicode/mixed-language/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/unicode/mixed-language/elk/board.exp.json b/e2etests/testdata/unicode/mixed-language/elk/board.exp.json index 48de8bd2b..a4cb39229 100644 --- a/e2etests/testdata/unicode/mixed-language/elk/board.exp.json +++ b/e2etests/testdata/unicode/mixed-language/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/unicode/with-style/dagre/board.exp.json b/e2etests/testdata/unicode/with-style/dagre/board.exp.json index 1b150187c..354bcadea 100644 --- a/e2etests/testdata/unicode/with-style/dagre/board.exp.json +++ b/e2etests/testdata/unicode/with-style/dagre/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/e2etests/testdata/unicode/with-style/elk/board.exp.json b/e2etests/testdata/unicode/with-style/elk/board.exp.json index ef37abcaa..813559b54 100644 --- a/e2etests/testdata/unicode/with-style/elk/board.exp.json +++ b/e2etests/testdata/unicode/with-style/elk/board.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/go.mod b/go.mod index 02ded6971..3d996c072 100644 --- a/go.mod +++ b/go.mod @@ -23,7 +23,7 @@ require ( golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 gonum.org/v1/plot v0.12.0 nhooyr.io/websocket v1.8.7 - oss.terrastruct.com/util-go v0.0.0-20230212154233-14479bbd1147 + oss.terrastruct.com/util-go v0.0.0-20230224133755-305bb6ab7844 ) require ( diff --git a/go.sum b/go.sum index 1d9faae0c..07e2008cc 100644 --- a/go.sum +++ b/go.sum @@ -277,6 +277,6 @@ honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWh honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= nhooyr.io/websocket v1.8.7 h1:usjR2uOr/zjjkVMy0lW+PPohFok7PCow5sDjLgX4P4g= nhooyr.io/websocket v1.8.7/go.mod h1:B70DZP8IakI65RVQ51MsWP/8jndNma26DVA/nFSCgW0= -oss.terrastruct.com/util-go v0.0.0-20230212154233-14479bbd1147 h1:h7G8ozAxp7Uh7z7CSmBkqy5/j06vYVED150009fmN4I= -oss.terrastruct.com/util-go v0.0.0-20230212154233-14479bbd1147/go.mod h1:Fwy72FDIOOM4K8F96ScXkxHHppR1CPfUyo9+x9c1PBU= +oss.terrastruct.com/util-go v0.0.0-20230224133755-305bb6ab7844 h1:VPvvOad7FchgCtBw9p2R1/0KQAl2ot/HoeYFpb9C82I= +oss.terrastruct.com/util-go v0.0.0-20230224133755-305bb6ab7844/go.mod h1:Fwy72FDIOOM4K8F96ScXkxHHppR1CPfUyo9+x9c1PBU= rsc.io/pdf v0.1.1 h1:k1MczvYDUvJBe93bYd7wrZLLUEcLZAuF824/I4e5Xr4= diff --git a/main.go b/main.go index 9b6f5b162..e566fb30c 100644 --- a/main.go +++ b/main.go @@ -306,33 +306,76 @@ func compile(ctx context.Context, ms *xmain.State, plugin d2plugin.Plugin, sketc } func render(ctx context.Context, ms *xmain.State, compileDur time.Duration, plugin d2plugin.Plugin, sketch bool, pad int64, themeID int64, darkThemeID *int64, inputPath, outputPath string, bundle, forceAppendix bool, page playwright.Page, ruler *textmeasure.Ruler, diagram *d2target.Diagram) ([]byte, error) { - outputPath = layerOutputPath(outputPath, diagram) + if diagram.Name != "" { + ext := filepath.Ext(outputPath) + outputPath = strings.TrimSuffix(outputPath, ext) + outputPath = filepath.Join(outputPath, diagram.Name) + outputPath += ext + } + + boardOutputPath := outputPath + if len(diagram.Layers) > 0 || len(diagram.Scenarios) > 0 || len(diagram.Steps) > 0 { + // Boards with subboards must be self-contained folders. + ext := filepath.Ext(boardOutputPath) + boardOutputPath = strings.TrimSuffix(boardOutputPath, ext) + os.RemoveAll(boardOutputPath) + boardOutputPath = filepath.Join(boardOutputPath, "index") + boardOutputPath += ext + } + + layersOutputPath := outputPath + if len(diagram.Scenarios) > 0 || len(diagram.Steps) > 0 { + ext := filepath.Ext(layersOutputPath) + layersOutputPath = strings.TrimSuffix(layersOutputPath, ext) + layersOutputPath = filepath.Join(layersOutputPath, "layers") + layersOutputPath += ext + } + scenariosOutputPath := outputPath + if len(diagram.Layers) > 0 || len(diagram.Steps) > 0 { + ext := filepath.Ext(scenariosOutputPath) + scenariosOutputPath = strings.TrimSuffix(scenariosOutputPath, ext) + scenariosOutputPath = filepath.Join(scenariosOutputPath, "scenarios") + scenariosOutputPath += ext + } + stepsOutputPath := outputPath + if len(diagram.Layers) > 0 || len(diagram.Scenarios) > 0 { + ext := filepath.Ext(stepsOutputPath) + stepsOutputPath = strings.TrimSuffix(stepsOutputPath, ext) + stepsOutputPath = filepath.Join(stepsOutputPath, "steps") + stepsOutputPath += ext + } + for _, dl := range diagram.Layers { - _, err := render(ctx, ms, compileDur, plugin, sketch, pad, themeID, darkThemeID, inputPath, outputPath, bundle, forceAppendix, page, ruler, dl) + _, err := render(ctx, ms, compileDur, plugin, sketch, pad, themeID, darkThemeID, inputPath, layersOutputPath, bundle, forceAppendix, page, ruler, dl) if err != nil { return nil, err } } for _, dl := range diagram.Scenarios { - _, err := render(ctx, ms, compileDur, plugin, sketch, pad, themeID, darkThemeID, inputPath, outputPath, bundle, forceAppendix, page, ruler, dl) + _, err := render(ctx, ms, compileDur, plugin, sketch, pad, themeID, darkThemeID, inputPath, scenariosOutputPath, bundle, forceAppendix, page, ruler, dl) if err != nil { return nil, err } } for _, dl := range diagram.Steps { - _, err := render(ctx, ms, compileDur, plugin, sketch, pad, themeID, darkThemeID, inputPath, outputPath, bundle, forceAppendix, page, ruler, dl) + _, err := render(ctx, ms, compileDur, plugin, sketch, pad, themeID, darkThemeID, inputPath, stepsOutputPath, bundle, forceAppendix, page, ruler, dl) if err != nil { return nil, err } } - start := time.Now() - svg, err := _render(ctx, ms, plugin, sketch, pad, themeID, darkThemeID, outputPath, bundle, forceAppendix, page, ruler, diagram) - if err != nil { - return svg, err + + if !diagram.IsFolderOnly { + start := time.Now() + svg, err := _render(ctx, ms, plugin, sketch, pad, themeID, darkThemeID, boardOutputPath, bundle, forceAppendix, page, ruler, diagram) + if err != nil { + return svg, err + } + dur := compileDur + time.Since(start) + ms.Log.Success.Printf("successfully compiled %s to %s in %s", inputPath, boardOutputPath, dur) + return svg, nil } - dur := compileDur + time.Since(start) - ms.Log.Success.Printf("successfully compiled %s to %s in %s", inputPath, outputPath, dur) - return svg, nil + + return nil, nil } func _render(ctx context.Context, ms *xmain.State, plugin d2plugin.Plugin, sketch bool, pad int64, themeID int64, darkThemeID *int64, outputPath string, bundle, forceAppendix bool, page playwright.Page, ruler *textmeasure.Ruler, diagram *d2target.Diagram) ([]byte, error) { @@ -414,35 +457,37 @@ func renderPDF(ctx context.Context, ms *xmain.State, plugin d2plugin.Plugin, ske currBoardPath = append(boardPath, diagram.Name) } - svg, err = d2svg.Render(diagram, &d2svg.RenderOpts{ - Pad: int(pad), - Sketch: sketch, - }) - if err != nil { - return nil, err - } + if !diagram.IsFolderOnly { + svg, err = d2svg.Render(diagram, &d2svg.RenderOpts{ + Pad: int(pad), + Sketch: sketch, + }) + if err != nil { + return nil, err + } - svg, err = plugin.PostProcess(ctx, svg) - if err != nil { - return svg, err - } + svg, err = plugin.PostProcess(ctx, svg) + if err != nil { + return svg, err + } - svg, bundleErr := imgbundler.BundleLocal(ctx, ms, svg) - svg, bundleErr2 := imgbundler.BundleRemote(ctx, ms, svg) - bundleErr = multierr.Combine(bundleErr, bundleErr2) - if bundleErr != nil { - return svg, bundleErr - } - svg = appendix.Append(diagram, ruler, svg) + svg, bundleErr := imgbundler.BundleLocal(ctx, ms, svg) + svg, bundleErr2 := imgbundler.BundleRemote(ctx, ms, svg) + bundleErr = multierr.Combine(bundleErr, bundleErr2) + if bundleErr != nil { + return svg, bundleErr + } + svg = appendix.Append(diagram, ruler, svg) - pngImg, err := png.ConvertSVG(ms, page, svg) - if err != nil { - return svg, err - } + pngImg, err := png.ConvertSVG(ms, page, svg) + if err != nil { + return svg, err + } - err = pdf.AddPDFPage(pngImg, currBoardPath, diagram.Root.Fill) - if err != nil { - return svg, err + err = pdf.AddPDFPage(pngImg, currBoardPath, diagram.Root.Fill) + if err != nil { + return svg, err + } } for _, dl := range diagram.Layers { @@ -474,17 +519,6 @@ func renderPDF(ctx context.Context, ms *xmain.State, plugin d2plugin.Plugin, ske return svg, nil } -func layerOutputPath(outputPath string, d *d2target.Diagram) string { - if d.Name == "" { - return outputPath - } - ext := filepath.Ext(outputPath) - outputPath = strings.TrimSuffix(outputPath, ext) - outputPath += "/" + d.Name - outputPath += ext - return outputPath -} - // newExt must include leading . func renameExt(fp string, newExt string) string { ext := filepath.Ext(fp) diff --git a/testdata/d2compiler/TestCompile/basic_icon.exp.json b/testdata/d2compiler/TestCompile/basic_icon.exp.json index d4588e787..7a8cdb048 100644 --- a/testdata/d2compiler/TestCompile/basic_icon.exp.json +++ b/testdata/d2compiler/TestCompile/basic_icon.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/basic_icon.d2,0:0:0-3:0:77", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/basic_sequence.exp.json b/testdata/d2compiler/TestCompile/basic_sequence.exp.json index 74535d9b3..676d6ae9b 100644 --- a/testdata/d2compiler/TestCompile/basic_sequence.exp.json +++ b/testdata/d2compiler/TestCompile/basic_sequence.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/basic_sequence.d2,0:0:0-3:0:33", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/basic_shape.exp.json b/testdata/d2compiler/TestCompile/basic_shape.exp.json index a519d65a1..794e3ba97 100644 --- a/testdata/d2compiler/TestCompile/basic_shape.exp.json +++ b/testdata/d2compiler/TestCompile/basic_shape.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/basic_shape.d2,0:0:0-4:0:24", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/basic_style.exp.json b/testdata/d2compiler/TestCompile/basic_style.exp.json index fb33638ba..0db1b4c66 100644 --- a/testdata/d2compiler/TestCompile/basic_style.exp.json +++ b/testdata/d2compiler/TestCompile/basic_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/basic_style.d2,0:0:0-4:0:28", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/class_paren.exp.json b/testdata/d2compiler/TestCompile/class_paren.exp.json index 68fb7cf19..450f61d62 100644 --- a/testdata/d2compiler/TestCompile/class_paren.exp.json +++ b/testdata/d2compiler/TestCompile/class_paren.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/class_paren.d2,0:0:0-6:1:81", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/class_style.exp.json b/testdata/d2compiler/TestCompile/class_style.exp.json index 1d39a3212..c8a11220a 100644 --- a/testdata/d2compiler/TestCompile/class_style.exp.json +++ b/testdata/d2compiler/TestCompile/class_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/class_style.d2,0:0:0-5:0:82", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/constraint_label.exp.json b/testdata/d2compiler/TestCompile/constraint_label.exp.json index 5e917a018..79e7fd283 100644 --- a/testdata/d2compiler/TestCompile/constraint_label.exp.json +++ b/testdata/d2compiler/TestCompile/constraint_label.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/constraint_label.d2,0:0:0-3:1:38", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/default_direction.exp.json b/testdata/d2compiler/TestCompile/default_direction.exp.json index 072ac22af..fa0120ac5 100644 --- a/testdata/d2compiler/TestCompile/default_direction.exp.json +++ b/testdata/d2compiler/TestCompile/default_direction.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/default_direction.d2,0:0:0-0:1:1", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/dimension_with_style.exp.json b/testdata/d2compiler/TestCompile/dimension_with_style.exp.json index 9f346789d..391a94b8b 100644 --- a/testdata/d2compiler/TestCompile/dimension_with_style.exp.json +++ b/testdata/d2compiler/TestCompile/dimension_with_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/dimension_with_style.d2,0:0:0-4:0:43", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/dimensions_on_containers.exp.json b/testdata/d2compiler/TestCompile/dimensions_on_containers.exp.json index a5b45a2b1..a35e75d92 100644 --- a/testdata/d2compiler/TestCompile/dimensions_on_containers.exp.json +++ b/testdata/d2compiler/TestCompile/dimensions_on_containers.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/dimensions_on_containers.d2,0:0:0-45:0:505", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/dimensions_on_nonimage.exp.json b/testdata/d2compiler/TestCompile/dimensions_on_nonimage.exp.json index 27d605bfa..028a12b83 100644 --- a/testdata/d2compiler/TestCompile/dimensions_on_nonimage.exp.json +++ b/testdata/d2compiler/TestCompile/dimensions_on_nonimage.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/dimensions_on_nonimage.d2,0:0:0-5:0:54", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/edge.exp.json b/testdata/d2compiler/TestCompile/edge.exp.json index 636b4fb3d..87005d17f 100644 --- a/testdata/d2compiler/TestCompile/edge.exp.json +++ b/testdata/d2compiler/TestCompile/edge.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/edge.d2,0:0:0-2:0:8", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/edge_arrowhead_fields.exp.json b/testdata/d2compiler/TestCompile/edge_arrowhead_fields.exp.json index 02147eba1..b30abffa3 100644 --- a/testdata/d2compiler/TestCompile/edge_arrowhead_fields.exp.json +++ b/testdata/d2compiler/TestCompile/edge_arrowhead_fields.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/edge_arrowhead_fields.d2,0:0:0-9:0:168", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/edge_chain.exp.json b/testdata/d2compiler/TestCompile/edge_chain.exp.json index 124bbc7f0..93f38391b 100644 --- a/testdata/d2compiler/TestCompile/edge_chain.exp.json +++ b/testdata/d2compiler/TestCompile/edge_chain.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/edge_chain.d2,0:0:0-2:0:57", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/edge_chain_map.exp.json b/testdata/d2compiler/TestCompile/edge_chain_map.exp.json index dd7ea9f90..d9f3b7648 100644 --- a/testdata/d2compiler/TestCompile/edge_chain_map.exp.json +++ b/testdata/d2compiler/TestCompile/edge_chain_map.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/edge_chain_map.d2,0:0:0-4:0:107", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/edge_column_index.exp.json b/testdata/d2compiler/TestCompile/edge_column_index.exp.json index 22fb0bf42..2af478ac8 100644 --- a/testdata/d2compiler/TestCompile/edge_column_index.exp.json +++ b/testdata/d2compiler/TestCompile/edge_column_index.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/edge_column_index.d2,0:0:0-13:0:123", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/edge_exclusive_style.exp.json b/testdata/d2compiler/TestCompile/edge_exclusive_style.exp.json index 252668201..829b33077 100644 --- a/testdata/d2compiler/TestCompile/edge_exclusive_style.exp.json +++ b/testdata/d2compiler/TestCompile/edge_exclusive_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/edge_exclusive_style.d2,0:0:0-4:0:35", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/edge_flat_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_flat_arrowhead.exp.json index d84e0455d..72fe99087 100644 --- a/testdata/d2compiler/TestCompile/edge_flat_arrowhead.exp.json +++ b/testdata/d2compiler/TestCompile/edge_flat_arrowhead.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/edge_flat_arrowhead.d2,0:0:0-2:0:51", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/edge_flat_label_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_flat_label_arrowhead.exp.json index 83b5d7183..40c0516d0 100644 --- a/testdata/d2compiler/TestCompile/edge_flat_label_arrowhead.exp.json +++ b/testdata/d2compiler/TestCompile/edge_flat_label_arrowhead.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/edge_flat_label_arrowhead.d2,0:0:0-4:0:53", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/edge_index.exp.json b/testdata/d2compiler/TestCompile/edge_index.exp.json index f768c5588..8f8477966 100644 --- a/testdata/d2compiler/TestCompile/edge_index.exp.json +++ b/testdata/d2compiler/TestCompile/edge_index.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/edge_index.d2,0:0:0-3:0:30", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/edge_index_map.exp.json b/testdata/d2compiler/TestCompile/edge_index_map.exp.json index 3eff01b38..a39b54f40 100644 --- a/testdata/d2compiler/TestCompile/edge_index_map.exp.json +++ b/testdata/d2compiler/TestCompile/edge_index_map.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/edge_index_map.d2,0:0:0-5:0:114", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/edge_index_nested.exp.json b/testdata/d2compiler/TestCompile/edge_index_nested.exp.json index 900dde803..ccd156c58 100644 --- a/testdata/d2compiler/TestCompile/edge_index_nested.exp.json +++ b/testdata/d2compiler/TestCompile/edge_index_nested.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/edge_index_nested.d2,0:0:0-5:0:39", "nodes": [ 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 63e0279b7..906ff7221 100644 --- a/testdata/d2compiler/TestCompile/edge_index_nested_cross_scope.exp.json +++ b/testdata/d2compiler/TestCompile/edge_index_nested_cross_scope.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/edge_index_nested_cross_scope.d2,0:0:0-5:0:40", "nodes": [ 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 0d1e24e0e..2672b1d9f 100644 --- a/testdata/d2compiler/TestCompile/edge_key_group_flat_nested.exp.json +++ b/testdata/d2compiler/TestCompile/edge_key_group_flat_nested.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/edge_key_group_flat_nested.d2,0:0:0-5:0:50", "nodes": [ 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 c5845edcb..b71616dca 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 @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/edge_key_group_flat_nested_underscore.d2,0:0:0-5:0:51", "nodes": [ 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 4069495d1..0c97a8965 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 @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/edge_key_group_map_flat_nested_underscore.d2,0:0:0-7:0:59", "nodes": [ 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 b8e131947..1566cc1cd 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 @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/edge_key_group_map_nested_underscore.d2,0:0:0-9:0:69", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/edge_label_map.exp.json b/testdata/d2compiler/TestCompile/edge_label_map.exp.json index f70133e23..267fcd755 100644 --- a/testdata/d2compiler/TestCompile/edge_label_map.exp.json +++ b/testdata/d2compiler/TestCompile/edge_label_map.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/edge_label_map.d2,0:0:0-1:0:42", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/edge_map.exp.json b/testdata/d2compiler/TestCompile/edge_map.exp.json index 0901560aa..38c27848e 100644 --- a/testdata/d2compiler/TestCompile/edge_map.exp.json +++ b/testdata/d2compiler/TestCompile/edge_map.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/edge_map.d2,0:0:0-4:0:102", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/edge_map_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_map_arrowhead.exp.json index 7ab789ec0..dee106300 100644 --- a/testdata/d2compiler/TestCompile/edge_map_arrowhead.exp.json +++ b/testdata/d2compiler/TestCompile/edge_map_arrowhead.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/edge_map_arrowhead.d2,0:0:0-5:0:57", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/edge_map_group_flat.exp.json b/testdata/d2compiler/TestCompile/edge_map_group_flat.exp.json index ef4b689aa..3be603501 100644 --- a/testdata/d2compiler/TestCompile/edge_map_group_flat.exp.json +++ b/testdata/d2compiler/TestCompile/edge_map_group_flat.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/edge_map_group_flat.d2,0:0:0-3:0:39", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/edge_map_group_semiflat.exp.json b/testdata/d2compiler/TestCompile/edge_map_group_semiflat.exp.json index 13da7398c..c2c30b2ea 100644 --- a/testdata/d2compiler/TestCompile/edge_map_group_semiflat.exp.json +++ b/testdata/d2compiler/TestCompile/edge_map_group_semiflat.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/edge_map_group_semiflat.d2,0:0:0-4:0:45", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/edge_map_nested.exp.json b/testdata/d2compiler/TestCompile/edge_map_nested.exp.json index e51525ab6..866afcedd 100644 --- a/testdata/d2compiler/TestCompile/edge_map_nested.exp.json +++ b/testdata/d2compiler/TestCompile/edge_map_nested.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/edge_map_nested.d2,0:0:0-6:0:45", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/edge_map_nested_flat.exp.json b/testdata/d2compiler/TestCompile/edge_map_nested_flat.exp.json index a7541c459..61d6ac371 100644 --- a/testdata/d2compiler/TestCompile/edge_map_nested_flat.exp.json +++ b/testdata/d2compiler/TestCompile/edge_map_nested_flat.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/edge_map_nested_flat.d2,0:0:0-4:0:33", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/edge_mixed_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_mixed_arrowhead.exp.json index bbc7e6603..98543d75c 100644 --- a/testdata/d2compiler/TestCompile/edge_mixed_arrowhead.exp.json +++ b/testdata/d2compiler/TestCompile/edge_mixed_arrowhead.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/edge_mixed_arrowhead.d2,0:0:0-6:0:97", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/edge_non_shape_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_non_shape_arrowhead.exp.json index ec7a39906..4f81963ec 100644 --- a/testdata/d2compiler/TestCompile/edge_non_shape_arrowhead.exp.json +++ b/testdata/d2compiler/TestCompile/edge_non_shape_arrowhead.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/edge_non_shape_arrowhead.d2,0:0:0-1:0:45", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/edge_semiflat_arrowhead.exp.json b/testdata/d2compiler/TestCompile/edge_semiflat_arrowhead.exp.json index bd9108533..537e5cea5 100644 --- a/testdata/d2compiler/TestCompile/edge_semiflat_arrowhead.exp.json +++ b/testdata/d2compiler/TestCompile/edge_semiflat_arrowhead.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/edge_semiflat_arrowhead.d2,0:0:0-4:0:58", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/escaped_id.exp.json b/testdata/d2compiler/TestCompile/escaped_id.exp.json index bdb71deb0..de942475c 100644 --- a/testdata/d2compiler/TestCompile/escaped_id.exp.json +++ b/testdata/d2compiler/TestCompile/escaped_id.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/escaped_id.d2,0:0:0-0:4:4", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/image_style.exp.json b/testdata/d2compiler/TestCompile/image_style.exp.json index ffc9aea3f..0702d187b 100644 --- a/testdata/d2compiler/TestCompile/image_style.exp.json +++ b/testdata/d2compiler/TestCompile/image_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/image_style.d2,0:0:0-5:0:118", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/near_constant.exp.json b/testdata/d2compiler/TestCompile/near_constant.exp.json index 7aa383a8d..c19123bcf 100644 --- a/testdata/d2compiler/TestCompile/near_constant.exp.json +++ b/testdata/d2compiler/TestCompile/near_constant.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/near_constant.d2,0:0:0-1:0:19", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/nested_sql.exp.json b/testdata/d2compiler/TestCompile/nested_sql.exp.json index cbd905feb..3e8e30ad2 100644 --- a/testdata/d2compiler/TestCompile/nested_sql.exp.json +++ b/testdata/d2compiler/TestCompile/nested_sql.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/nested_sql.d2,0:0:0-7:1:84", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/nil_scope_obj_regression.exp.json b/testdata/d2compiler/TestCompile/nil_scope_obj_regression.exp.json index 00ce55a57..a95185760 100644 --- a/testdata/d2compiler/TestCompile/nil_scope_obj_regression.exp.json +++ b/testdata/d2compiler/TestCompile/nil_scope_obj_regression.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/nil_scope_obj_regression.d2,0:0:0-4:0:15", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/null.exp.json b/testdata/d2compiler/TestCompile/null.exp.json index 35d0e55fb..bff516303 100644 --- a/testdata/d2compiler/TestCompile/null.exp.json +++ b/testdata/d2compiler/TestCompile/null.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/null.d2,0:0:0-1:0:5", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/path_link.exp.json b/testdata/d2compiler/TestCompile/path_link.exp.json index 7c96d68c6..9c08d24ad 100644 --- a/testdata/d2compiler/TestCompile/path_link.exp.json +++ b/testdata/d2compiler/TestCompile/path_link.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/path_link.d2,0:0:0-3:0:47", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/positions.exp.json b/testdata/d2compiler/TestCompile/positions.exp.json index bde5c7157..70e3642ce 100644 --- a/testdata/d2compiler/TestCompile/positions.exp.json +++ b/testdata/d2compiler/TestCompile/positions.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/positions.d2,0:0:0-4:0:30", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/reserved_icon_near_style.exp.json b/testdata/d2compiler/TestCompile/reserved_icon_near_style.exp.json index b5e89869b..b8e63235a 100644 --- a/testdata/d2compiler/TestCompile/reserved_icon_near_style.exp.json +++ b/testdata/d2compiler/TestCompile/reserved_icon_near_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/reserved_icon_near_style.d2,0:0:0-8:0:94", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/root_direction.exp.json b/testdata/d2compiler/TestCompile/root_direction.exp.json index 7f854e01c..9e491c7cc 100644 --- a/testdata/d2compiler/TestCompile/root_direction.exp.json +++ b/testdata/d2compiler/TestCompile/root_direction.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/root_direction.d2,0:0:0-0:16:16", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/root_sequence.exp.json b/testdata/d2compiler/TestCompile/root_sequence.exp.json index 3b18c9b7f..185ef79ad 100644 --- a/testdata/d2compiler/TestCompile/root_sequence.exp.json +++ b/testdata/d2compiler/TestCompile/root_sequence.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/root_sequence.d2,0:0:0-1:0:24", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/self-referencing.exp.json b/testdata/d2compiler/TestCompile/self-referencing.exp.json index e5769bdfb..1c38808f2 100644 --- a/testdata/d2compiler/TestCompile/self-referencing.exp.json +++ b/testdata/d2compiler/TestCompile/self-referencing.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/self-referencing.d2,0:0:0-1:0:7", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/sequence-timestamp.exp.json b/testdata/d2compiler/TestCompile/sequence-timestamp.exp.json index c41a4f00b..8822b75a6 100644 --- a/testdata/d2compiler/TestCompile/sequence-timestamp.exp.json +++ b/testdata/d2compiler/TestCompile/sequence-timestamp.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/sequence-timestamp.d2,0:0:0-10:0:137", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/sequence_container.exp.json b/testdata/d2compiler/TestCompile/sequence_container.exp.json index a561fc72f..3c70617f7 100644 --- a/testdata/d2compiler/TestCompile/sequence_container.exp.json +++ b/testdata/d2compiler/TestCompile/sequence_container.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/sequence_container.d2,0:0:0-5:0:63", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/sequence_container_2.exp.json b/testdata/d2compiler/TestCompile/sequence_container_2.exp.json index 4674302c5..7c673a875 100644 --- a/testdata/d2compiler/TestCompile/sequence_container_2.exp.json +++ b/testdata/d2compiler/TestCompile/sequence_container_2.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/sequence_container_2.d2,0:0:0-6:0:60", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/sequence_grouped_note.exp.json b/testdata/d2compiler/TestCompile/sequence_grouped_note.exp.json index aa5093e97..1efddcb4c 100644 --- a/testdata/d2compiler/TestCompile/sequence_grouped_note.exp.json +++ b/testdata/d2compiler/TestCompile/sequence_grouped_note.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/sequence_grouped_note.d2,0:0:0-5:0:54", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/sequence_scoping.exp.json b/testdata/d2compiler/TestCompile/sequence_scoping.exp.json index 02af6b56a..cf90fb88d 100644 --- a/testdata/d2compiler/TestCompile/sequence_scoping.exp.json +++ b/testdata/d2compiler/TestCompile/sequence_scoping.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/sequence_scoping.d2,0:0:0-9:0:101", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/set_direction.exp.json b/testdata/d2compiler/TestCompile/set_direction.exp.json index df116fbee..672c6a4b3 100644 --- a/testdata/d2compiler/TestCompile/set_direction.exp.json +++ b/testdata/d2compiler/TestCompile/set_direction.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/set_direction.d2,0:0:0-2:1:24", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/single_dimension_on_circle.exp.json b/testdata/d2compiler/TestCompile/single_dimension_on_circle.exp.json index bf216c1c2..4d9f5da50 100644 --- a/testdata/d2compiler/TestCompile/single_dimension_on_circle.exp.json +++ b/testdata/d2compiler/TestCompile/single_dimension_on_circle.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/single_dimension_on_circle.d2,0:0:0-4:0:40", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/sql-regression.exp.json b/testdata/d2compiler/TestCompile/sql-regression.exp.json index 09e889fee..5bf808844 100644 --- a/testdata/d2compiler/TestCompile/sql-regression.exp.json +++ b/testdata/d2compiler/TestCompile/sql-regression.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/sql-regression.d2,0:0:0-10:0:87", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/sql_paren.exp.json b/testdata/d2compiler/TestCompile/sql_paren.exp.json index c61a984fa..1fe4cb57d 100644 --- a/testdata/d2compiler/TestCompile/sql_paren.exp.json +++ b/testdata/d2compiler/TestCompile/sql_paren.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/sql_paren.d2,0:0:0-5:1:73", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/stroke-width.exp.json b/testdata/d2compiler/TestCompile/stroke-width.exp.json index 6479ada26..d69521ac6 100644 --- a/testdata/d2compiler/TestCompile/stroke-width.exp.json +++ b/testdata/d2compiler/TestCompile/stroke-width.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/stroke-width.d2,0:0:0-3:0:32", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/table_connection_attr.exp.json b/testdata/d2compiler/TestCompile/table_connection_attr.exp.json index 8ec78e2da..4e37dbe96 100644 --- a/testdata/d2compiler/TestCompile/table_connection_attr.exp.json +++ b/testdata/d2compiler/TestCompile/table_connection_attr.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/table_connection_attr.d2,0:0:0-11:0:99", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/table_style.exp.json b/testdata/d2compiler/TestCompile/table_style.exp.json index a7447912c..c121ac01f 100644 --- a/testdata/d2compiler/TestCompile/table_style.exp.json +++ b/testdata/d2compiler/TestCompile/table_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/table_style.d2,0:0:0-5:0:81", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/table_style_map.exp.json b/testdata/d2compiler/TestCompile/table_style_map.exp.json index a81f2575d..ede7c0ad4 100644 --- a/testdata/d2compiler/TestCompile/table_style_map.exp.json +++ b/testdata/d2compiler/TestCompile/table_style_map.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/table_style_map.d2,0:0:0-8:0:113", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/underscore_connection.exp.json b/testdata/d2compiler/TestCompile/underscore_connection.exp.json index cdcd84009..80150c70f 100644 --- a/testdata/d2compiler/TestCompile/underscore_connection.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_connection.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/underscore_connection.d2,0:0:0-3:0:24", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/underscore_edge.exp.json b/testdata/d2compiler/TestCompile/underscore_edge.exp.json index a44664b67..f19ce6a8c 100644 --- a/testdata/d2compiler/TestCompile/underscore_edge.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_edge.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/underscore_edge.d2,0:0:0-4:0:21", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/underscore_edge_chain.exp.json b/testdata/d2compiler/TestCompile/underscore_edge_chain.exp.json index 0f25d4819..d7ce10dcb 100644 --- a/testdata/d2compiler/TestCompile/underscore_edge_chain.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_edge_chain.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/underscore_edge_chain.d2,0:0:0-4:0:28", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/underscore_edge_existing.exp.json b/testdata/d2compiler/TestCompile/underscore_edge_existing.exp.json index fbb09bf26..ff3b0c66b 100644 --- a/testdata/d2compiler/TestCompile/underscore_edge_existing.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_edge_existing.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/underscore_edge_existing.d2,0:0:0-5:0:167", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/underscore_edge_index.exp.json b/testdata/d2compiler/TestCompile/underscore_edge_index.exp.json index b12d10cbd..27b8f3d1b 100644 --- a/testdata/d2compiler/TestCompile/underscore_edge_index.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_edge_index.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/underscore_edge_index.d2,0:0:0-5:0:172", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/underscore_edge_nested.exp.json b/testdata/d2compiler/TestCompile/underscore_edge_nested.exp.json index 43eb5dd75..37ff7be18 100644 --- a/testdata/d2compiler/TestCompile/underscore_edge_nested.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_edge_nested.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/underscore_edge_nested.d2,0:0:0-6:0:32", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/underscore_parent_create.exp.json b/testdata/d2compiler/TestCompile/underscore_parent_create.exp.json index cddc450bb..380951b20 100644 --- a/testdata/d2compiler/TestCompile/underscore_parent_create.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_parent_create.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/underscore_parent_create.d2,0:0:0-4:0:13", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/underscore_parent_not_root.exp.json b/testdata/d2compiler/TestCompile/underscore_parent_not_root.exp.json index d4bd78e02..3972b42e8 100644 --- a/testdata/d2compiler/TestCompile/underscore_parent_not_root.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_parent_not_root.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/underscore_parent_not_root.d2,0:0:0-6:0:27", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/underscore_parent_preference_1.exp.json b/testdata/d2compiler/TestCompile/underscore_parent_preference_1.exp.json index 8f7a7bf84..44b01dc8f 100644 --- a/testdata/d2compiler/TestCompile/underscore_parent_preference_1.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_parent_preference_1.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/underscore_parent_preference_1.d2,0:0:0-5:0:174", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/underscore_parent_preference_2.exp.json b/testdata/d2compiler/TestCompile/underscore_parent_preference_2.exp.json index d7bb50733..97b34c3e4 100644 --- a/testdata/d2compiler/TestCompile/underscore_parent_preference_2.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_parent_preference_2.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/underscore_parent_preference_2.d2,0:0:0-5:0:174", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/underscore_parent_squared.exp.json b/testdata/d2compiler/TestCompile/underscore_parent_squared.exp.json index aa3ea871a..e059d5912 100644 --- a/testdata/d2compiler/TestCompile/underscore_parent_squared.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_parent_squared.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/underscore_parent_squared.d2,0:0:0-6:0:29", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/underscore_unresolved_obj.exp.json b/testdata/d2compiler/TestCompile/underscore_unresolved_obj.exp.json index 6c2c9ac2d..21964b724 100644 --- a/testdata/d2compiler/TestCompile/underscore_unresolved_obj.exp.json +++ b/testdata/d2compiler/TestCompile/underscore_unresolved_obj.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/underscore_unresolved_obj.d2,0:0:0-4:0:13", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/unescaped_id_cr.exp.json b/testdata/d2compiler/TestCompile/unescaped_id_cr.exp.json index 280044b62..40c3c1246 100644 --- a/testdata/d2compiler/TestCompile/unescaped_id_cr.exp.json +++ b/testdata/d2compiler/TestCompile/unescaped_id_cr.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/unescaped_id_cr.d2,0:0:0-0:4:4", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/url_link.exp.json b/testdata/d2compiler/TestCompile/url_link.exp.json index eca980a30..f800be68e 100644 --- a/testdata/d2compiler/TestCompile/url_link.exp.json +++ b/testdata/d2compiler/TestCompile/url_link.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/url_link.d2,0:0:0-3:0:34", "nodes": [ diff --git a/testdata/d2compiler/TestCompile/wrong_column_index.exp.json b/testdata/d2compiler/TestCompile/wrong_column_index.exp.json index 3bae4743f..5b4caf80a 100644 --- a/testdata/d2compiler/TestCompile/wrong_column_index.exp.json +++ b/testdata/d2compiler/TestCompile/wrong_column_index.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile/wrong_column_index.d2,0:0:0-17:53:406", "nodes": [ diff --git a/testdata/d2compiler/TestCompile2/boards/boardContainer.exp.json b/testdata/d2compiler/TestCompile2/boards/boardContainer.exp.json new file mode 100644 index 000000000..2477f86e7 --- /dev/null +++ b/testdata/d2compiler/TestCompile2/boards/boardContainer.exp.json @@ -0,0 +1,1688 @@ +{ + "graph": { + "name": "", + "boardContainer": true, + "ast": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,0:0:0-18:0:165", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,1:0:1-17:1:164", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,1:0:1-1:6:7", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,1:0:1-1:6:7", + "value": [ + { + "string": "layers", + "raw_string": "layers" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,1:8:9-17:0:163", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,2:2:13-4:3:33", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,2:2:13-2:5:16", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,2:2:13-2:5:16", + "value": [ + { + "string": "one", + "raw_string": "one" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,2:7:18-4:2:32", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,3:4:24-3:9:29", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,3:4:24-3:9:29", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,3:4:24-3:9:29", + "value": [ + { + "string": "santa", + "raw_string": "santa" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + } + ] + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,5:2:36-16:3:162", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,5:2:36-5:5:39", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,5:2:36-5:5:39", + "value": [ + { + "string": "two", + "raw_string": "two" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,5:7:41-16:2:161", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,6:4:47-6:10:53", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,6:4:47-6:10:53", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,6:4:47-6:10:53", + "value": [ + { + "string": "clause", + "raw_string": "clause" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,7:2:56-15:3:158", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,7:2:56-7:11:65", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,7:2:56-7:11:65", + "value": [ + { + "string": "scenarios", + "raw_string": "scenarios" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,7:13:67-15:2:157", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,8:3:72-9:4:88", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,8:3:72-8:11:80", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,8:3:72-8:11:80", + "value": [ + { + "string": "seinfeld", + "raw_string": "seinfeld" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,8:13:82-9:3:87", + "nodes": null + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,10:3:92-14:4:154", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,10:3:92-10:11:100", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,10:3:92-10:11:100", + "value": [ + { + "string": "missoula", + "raw_string": "missoula" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,10:13:102-14:3:153", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,11:4:108-13:5:149", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,11:4:108-11:9:113", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,11:4:108-11:9:113", + "value": [ + { + "string": "steps", + "raw_string": "steps" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,11:11:115-13:4:148", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,12:5:122-12:26:143", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,12:5:122-12:11:128", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,12:5:122-12:11:128", + "value": [ + { + "string": "missus", + "raw_string": "missus" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,12:13:130-12:26:143", + "value": [ + { + "string": "one two three", + "raw_string": "one two three" + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + }, + "root": { + "id": "", + "id_val": "", + "label_dimensions": { + "width": 0, + "height": 0 + }, + "attributes": { + "label": { + "value": "" + }, + "style": {}, + "near_key": null, + "shape": { + "value": "" + }, + "direction": { + "value": "" + }, + "constraint": { + "value": "" + } + }, + "zIndex": 0 + }, + "edges": null, + "objects": null, + "layers": [ + { + "name": "one", + "boardContainer": false, + "ast": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,0:0:0-18:0:165", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,1:0:1-17:1:164", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,1:0:1-1:6:7", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,1:0:1-1:6:7", + "value": [ + { + "string": "layers", + "raw_string": "layers" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,1:8:9-17:0:163", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,2:2:13-4:3:33", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,2:2:13-2:5:16", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,2:2:13-2:5:16", + "value": [ + { + "string": "one", + "raw_string": "one" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,2:7:18-4:2:32", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,3:4:24-3:9:29", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,3:4:24-3:9:29", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,3:4:24-3:9:29", + "value": [ + { + "string": "santa", + "raw_string": "santa" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + } + ] + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,5:2:36-16:3:162", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,5:2:36-5:5:39", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,5:2:36-5:5:39", + "value": [ + { + "string": "two", + "raw_string": "two" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,5:7:41-16:2:161", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,6:4:47-6:10:53", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,6:4:47-6:10:53", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,6:4:47-6:10:53", + "value": [ + { + "string": "clause", + "raw_string": "clause" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,7:2:56-15:3:158", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,7:2:56-7:11:65", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,7:2:56-7:11:65", + "value": [ + { + "string": "scenarios", + "raw_string": "scenarios" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,7:13:67-15:2:157", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,8:3:72-9:4:88", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,8:3:72-8:11:80", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,8:3:72-8:11:80", + "value": [ + { + "string": "seinfeld", + "raw_string": "seinfeld" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,8:13:82-9:3:87", + "nodes": null + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,10:3:92-14:4:154", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,10:3:92-10:11:100", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,10:3:92-10:11:100", + "value": [ + { + "string": "missoula", + "raw_string": "missoula" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,10:13:102-14:3:153", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,11:4:108-13:5:149", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,11:4:108-11:9:113", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,11:4:108-11:9:113", + "value": [ + { + "string": "steps", + "raw_string": "steps" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,11:11:115-13:4:148", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,12:5:122-12:26:143", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,12:5:122-12:11:128", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,12:5:122-12:11:128", + "value": [ + { + "string": "missus", + "raw_string": "missus" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,12:13:130-12:26:143", + "value": [ + { + "string": "one two three", + "raw_string": "one two three" + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + }, + "root": { + "id": "", + "id_val": "", + "label_dimensions": { + "width": 0, + "height": 0 + }, + "attributes": { + "label": { + "value": "" + }, + "style": {}, + "near_key": null, + "shape": { + "value": "" + }, + "direction": { + "value": "" + }, + "constraint": { + "value": "" + } + }, + "zIndex": 0 + }, + "edges": null, + "objects": [ + { + "id": "santa", + "id_val": "santa", + "label_dimensions": { + "width": 0, + "height": 0 + }, + "references": [ + { + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,3:4:24-3:9:29", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,3:4:24-3:9:29", + "value": [ + { + "string": "santa", + "raw_string": "santa" + } + ] + } + } + ] + }, + "key_path_index": 0, + "map_key_edge_index": -1 + } + ], + "attributes": { + "label": { + "value": "santa" + }, + "style": {}, + "near_key": null, + "shape": { + "value": "rectangle" + }, + "direction": { + "value": "" + }, + "constraint": { + "value": "" + } + }, + "zIndex": 0 + } + ] + }, + { + "name": "two", + "boardContainer": false, + "ast": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,0:0:0-18:0:165", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,1:0:1-17:1:164", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,1:0:1-1:6:7", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,1:0:1-1:6:7", + "value": [ + { + "string": "layers", + "raw_string": "layers" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,1:8:9-17:0:163", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,2:2:13-4:3:33", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,2:2:13-2:5:16", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,2:2:13-2:5:16", + "value": [ + { + "string": "one", + "raw_string": "one" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,2:7:18-4:2:32", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,3:4:24-3:9:29", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,3:4:24-3:9:29", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,3:4:24-3:9:29", + "value": [ + { + "string": "santa", + "raw_string": "santa" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + } + ] + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,5:2:36-16:3:162", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,5:2:36-5:5:39", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,5:2:36-5:5:39", + "value": [ + { + "string": "two", + "raw_string": "two" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,5:7:41-16:2:161", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,6:4:47-6:10:53", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,6:4:47-6:10:53", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,6:4:47-6:10:53", + "value": [ + { + "string": "clause", + "raw_string": "clause" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,7:2:56-15:3:158", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,7:2:56-7:11:65", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,7:2:56-7:11:65", + "value": [ + { + "string": "scenarios", + "raw_string": "scenarios" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,7:13:67-15:2:157", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,8:3:72-9:4:88", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,8:3:72-8:11:80", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,8:3:72-8:11:80", + "value": [ + { + "string": "seinfeld", + "raw_string": "seinfeld" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,8:13:82-9:3:87", + "nodes": null + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,10:3:92-14:4:154", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,10:3:92-10:11:100", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,10:3:92-10:11:100", + "value": [ + { + "string": "missoula", + "raw_string": "missoula" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,10:13:102-14:3:153", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,11:4:108-13:5:149", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,11:4:108-11:9:113", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,11:4:108-11:9:113", + "value": [ + { + "string": "steps", + "raw_string": "steps" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,11:11:115-13:4:148", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,12:5:122-12:26:143", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,12:5:122-12:11:128", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,12:5:122-12:11:128", + "value": [ + { + "string": "missus", + "raw_string": "missus" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,12:13:130-12:26:143", + "value": [ + { + "string": "one two three", + "raw_string": "one two three" + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + }, + "root": { + "id": "", + "id_val": "", + "label_dimensions": { + "width": 0, + "height": 0 + }, + "attributes": { + "label": { + "value": "" + }, + "style": {}, + "near_key": null, + "shape": { + "value": "" + }, + "direction": { + "value": "" + }, + "constraint": { + "value": "" + } + }, + "zIndex": 0 + }, + "edges": null, + "objects": [ + { + "id": "clause", + "id_val": "clause", + "label_dimensions": { + "width": 0, + "height": 0 + }, + "references": [ + { + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,6:4:47-6:10:53", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,6:4:47-6:10:53", + "value": [ + { + "string": "clause", + "raw_string": "clause" + } + ] + } + } + ] + }, + "key_path_index": 0, + "map_key_edge_index": -1 + } + ], + "attributes": { + "label": { + "value": "clause" + }, + "style": {}, + "near_key": null, + "shape": { + "value": "rectangle" + }, + "direction": { + "value": "" + }, + "constraint": { + "value": "" + } + }, + "zIndex": 0 + } + ], + "scenarios": [ + { + "name": "seinfeld", + "boardContainer": false, + "ast": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,0:0:0-18:0:165", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,1:0:1-17:1:164", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,1:0:1-1:6:7", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,1:0:1-1:6:7", + "value": [ + { + "string": "layers", + "raw_string": "layers" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,1:8:9-17:0:163", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,2:2:13-4:3:33", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,2:2:13-2:5:16", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,2:2:13-2:5:16", + "value": [ + { + "string": "one", + "raw_string": "one" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,2:7:18-4:2:32", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,3:4:24-3:9:29", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,3:4:24-3:9:29", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,3:4:24-3:9:29", + "value": [ + { + "string": "santa", + "raw_string": "santa" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + } + ] + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,5:2:36-16:3:162", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,5:2:36-5:5:39", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,5:2:36-5:5:39", + "value": [ + { + "string": "two", + "raw_string": "two" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,5:7:41-16:2:161", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,6:4:47-6:10:53", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,6:4:47-6:10:53", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,6:4:47-6:10:53", + "value": [ + { + "string": "clause", + "raw_string": "clause" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,7:2:56-15:3:158", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,7:2:56-7:11:65", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,7:2:56-7:11:65", + "value": [ + { + "string": "scenarios", + "raw_string": "scenarios" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,7:13:67-15:2:157", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,8:3:72-9:4:88", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,8:3:72-8:11:80", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,8:3:72-8:11:80", + "value": [ + { + "string": "seinfeld", + "raw_string": "seinfeld" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,8:13:82-9:3:87", + "nodes": null + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,10:3:92-14:4:154", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,10:3:92-10:11:100", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,10:3:92-10:11:100", + "value": [ + { + "string": "missoula", + "raw_string": "missoula" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,10:13:102-14:3:153", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,11:4:108-13:5:149", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,11:4:108-11:9:113", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,11:4:108-11:9:113", + "value": [ + { + "string": "steps", + "raw_string": "steps" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,11:11:115-13:4:148", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,12:5:122-12:26:143", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,12:5:122-12:11:128", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,12:5:122-12:11:128", + "value": [ + { + "string": "missus", + "raw_string": "missus" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,12:13:130-12:26:143", + "value": [ + { + "string": "one two three", + "raw_string": "one two three" + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + }, + "root": { + "id": "", + "id_val": "", + "label_dimensions": { + "width": 0, + "height": 0 + }, + "attributes": { + "label": { + "value": "" + }, + "style": {}, + "near_key": null, + "shape": { + "value": "" + }, + "direction": { + "value": "" + }, + "constraint": { + "value": "" + } + }, + "zIndex": 0 + }, + "edges": null, + "objects": null + }, + { + "name": "missoula", + "boardContainer": false, + "ast": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,0:0:0-18:0:165", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,1:0:1-17:1:164", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,1:0:1-1:6:7", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,1:0:1-1:6:7", + "value": [ + { + "string": "layers", + "raw_string": "layers" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,1:8:9-17:0:163", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,2:2:13-4:3:33", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,2:2:13-2:5:16", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,2:2:13-2:5:16", + "value": [ + { + "string": "one", + "raw_string": "one" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,2:7:18-4:2:32", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,3:4:24-3:9:29", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,3:4:24-3:9:29", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,3:4:24-3:9:29", + "value": [ + { + "string": "santa", + "raw_string": "santa" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + } + ] + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,5:2:36-16:3:162", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,5:2:36-5:5:39", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,5:2:36-5:5:39", + "value": [ + { + "string": "two", + "raw_string": "two" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,5:7:41-16:2:161", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,6:4:47-6:10:53", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,6:4:47-6:10:53", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,6:4:47-6:10:53", + "value": [ + { + "string": "clause", + "raw_string": "clause" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,7:2:56-15:3:158", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,7:2:56-7:11:65", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,7:2:56-7:11:65", + "value": [ + { + "string": "scenarios", + "raw_string": "scenarios" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,7:13:67-15:2:157", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,8:3:72-9:4:88", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,8:3:72-8:11:80", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,8:3:72-8:11:80", + "value": [ + { + "string": "seinfeld", + "raw_string": "seinfeld" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,8:13:82-9:3:87", + "nodes": null + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,10:3:92-14:4:154", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,10:3:92-10:11:100", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,10:3:92-10:11:100", + "value": [ + { + "string": "missoula", + "raw_string": "missoula" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,10:13:102-14:3:153", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,11:4:108-13:5:149", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,11:4:108-11:9:113", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,11:4:108-11:9:113", + "value": [ + { + "string": "steps", + "raw_string": "steps" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,11:11:115-13:4:148", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,12:5:122-12:26:143", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,12:5:122-12:11:128", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,12:5:122-12:11:128", + "value": [ + { + "string": "missus", + "raw_string": "missus" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/boardContainer.d2,12:13:130-12:26:143", + "value": [ + { + "string": "one two three", + "raw_string": "one two three" + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + }, + "root": { + "id": "", + "id_val": "", + "label_dimensions": { + "width": 0, + "height": 0 + }, + "attributes": { + "label": { + "value": "" + }, + "style": {}, + "near_key": null, + "shape": { + "value": "" + }, + "direction": { + "value": "" + }, + "constraint": { + "value": "" + } + }, + "zIndex": 0 + }, + "edges": null, + "objects": null + } + ] + } + ] + }, + "err": null +} diff --git a/testdata/d2compiler/TestCompile2/boards/isContainerOnly.exp.json b/testdata/d2compiler/TestCompile2/boards/isContainerOnly.exp.json new file mode 100644 index 000000000..73db9ac11 --- /dev/null +++ b/testdata/d2compiler/TestCompile2/boards/isContainerOnly.exp.json @@ -0,0 +1,1688 @@ +{ + "graph": { + "name": "", + "isContainerOnly": true, + "ast": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,0:0:0-18:0:165", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,1:0:1-17:1:164", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,1:0:1-1:6:7", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,1:0:1-1:6:7", + "value": [ + { + "string": "layers", + "raw_string": "layers" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,1:8:9-17:0:163", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,2:2:13-4:3:33", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,2:2:13-2:5:16", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,2:2:13-2:5:16", + "value": [ + { + "string": "one", + "raw_string": "one" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,2:7:18-4:2:32", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,3:4:24-3:9:29", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,3:4:24-3:9:29", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,3:4:24-3:9:29", + "value": [ + { + "string": "santa", + "raw_string": "santa" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + } + ] + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,5:2:36-16:3:162", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,5:2:36-5:5:39", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,5:2:36-5:5:39", + "value": [ + { + "string": "two", + "raw_string": "two" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,5:7:41-16:2:161", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,6:4:47-6:10:53", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,6:4:47-6:10:53", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,6:4:47-6:10:53", + "value": [ + { + "string": "clause", + "raw_string": "clause" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,7:2:56-15:3:158", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,7:2:56-7:11:65", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,7:2:56-7:11:65", + "value": [ + { + "string": "scenarios", + "raw_string": "scenarios" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,7:13:67-15:2:157", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,8:3:72-9:4:88", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,8:3:72-8:11:80", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,8:3:72-8:11:80", + "value": [ + { + "string": "seinfeld", + "raw_string": "seinfeld" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,8:13:82-9:3:87", + "nodes": null + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,10:3:92-14:4:154", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,10:3:92-10:11:100", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,10:3:92-10:11:100", + "value": [ + { + "string": "missoula", + "raw_string": "missoula" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,10:13:102-14:3:153", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,11:4:108-13:5:149", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,11:4:108-11:9:113", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,11:4:108-11:9:113", + "value": [ + { + "string": "steps", + "raw_string": "steps" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,11:11:115-13:4:148", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,12:5:122-12:26:143", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,12:5:122-12:11:128", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,12:5:122-12:11:128", + "value": [ + { + "string": "missus", + "raw_string": "missus" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,12:13:130-12:26:143", + "value": [ + { + "string": "one two three", + "raw_string": "one two three" + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + }, + "root": { + "id": "", + "id_val": "", + "label_dimensions": { + "width": 0, + "height": 0 + }, + "attributes": { + "label": { + "value": "" + }, + "style": {}, + "near_key": null, + "shape": { + "value": "" + }, + "direction": { + "value": "" + }, + "constraint": { + "value": "" + } + }, + "zIndex": 0 + }, + "edges": null, + "objects": null, + "layers": [ + { + "name": "one", + "isContainerOnly": false, + "ast": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,0:0:0-18:0:165", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,1:0:1-17:1:164", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,1:0:1-1:6:7", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,1:0:1-1:6:7", + "value": [ + { + "string": "layers", + "raw_string": "layers" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,1:8:9-17:0:163", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,2:2:13-4:3:33", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,2:2:13-2:5:16", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,2:2:13-2:5:16", + "value": [ + { + "string": "one", + "raw_string": "one" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,2:7:18-4:2:32", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,3:4:24-3:9:29", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,3:4:24-3:9:29", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,3:4:24-3:9:29", + "value": [ + { + "string": "santa", + "raw_string": "santa" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + } + ] + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,5:2:36-16:3:162", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,5:2:36-5:5:39", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,5:2:36-5:5:39", + "value": [ + { + "string": "two", + "raw_string": "two" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,5:7:41-16:2:161", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,6:4:47-6:10:53", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,6:4:47-6:10:53", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,6:4:47-6:10:53", + "value": [ + { + "string": "clause", + "raw_string": "clause" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,7:2:56-15:3:158", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,7:2:56-7:11:65", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,7:2:56-7:11:65", + "value": [ + { + "string": "scenarios", + "raw_string": "scenarios" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,7:13:67-15:2:157", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,8:3:72-9:4:88", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,8:3:72-8:11:80", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,8:3:72-8:11:80", + "value": [ + { + "string": "seinfeld", + "raw_string": "seinfeld" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,8:13:82-9:3:87", + "nodes": null + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,10:3:92-14:4:154", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,10:3:92-10:11:100", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,10:3:92-10:11:100", + "value": [ + { + "string": "missoula", + "raw_string": "missoula" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,10:13:102-14:3:153", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,11:4:108-13:5:149", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,11:4:108-11:9:113", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,11:4:108-11:9:113", + "value": [ + { + "string": "steps", + "raw_string": "steps" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,11:11:115-13:4:148", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,12:5:122-12:26:143", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,12:5:122-12:11:128", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,12:5:122-12:11:128", + "value": [ + { + "string": "missus", + "raw_string": "missus" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,12:13:130-12:26:143", + "value": [ + { + "string": "one two three", + "raw_string": "one two three" + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + }, + "root": { + "id": "", + "id_val": "", + "label_dimensions": { + "width": 0, + "height": 0 + }, + "attributes": { + "label": { + "value": "" + }, + "style": {}, + "near_key": null, + "shape": { + "value": "" + }, + "direction": { + "value": "" + }, + "constraint": { + "value": "" + } + }, + "zIndex": 0 + }, + "edges": null, + "objects": [ + { + "id": "santa", + "id_val": "santa", + "label_dimensions": { + "width": 0, + "height": 0 + }, + "references": [ + { + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,3:4:24-3:9:29", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,3:4:24-3:9:29", + "value": [ + { + "string": "santa", + "raw_string": "santa" + } + ] + } + } + ] + }, + "key_path_index": 0, + "map_key_edge_index": -1 + } + ], + "attributes": { + "label": { + "value": "santa" + }, + "style": {}, + "near_key": null, + "shape": { + "value": "rectangle" + }, + "direction": { + "value": "" + }, + "constraint": { + "value": "" + } + }, + "zIndex": 0 + } + ] + }, + { + "name": "two", + "isContainerOnly": false, + "ast": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,0:0:0-18:0:165", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,1:0:1-17:1:164", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,1:0:1-1:6:7", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,1:0:1-1:6:7", + "value": [ + { + "string": "layers", + "raw_string": "layers" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,1:8:9-17:0:163", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,2:2:13-4:3:33", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,2:2:13-2:5:16", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,2:2:13-2:5:16", + "value": [ + { + "string": "one", + "raw_string": "one" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,2:7:18-4:2:32", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,3:4:24-3:9:29", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,3:4:24-3:9:29", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,3:4:24-3:9:29", + "value": [ + { + "string": "santa", + "raw_string": "santa" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + } + ] + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,5:2:36-16:3:162", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,5:2:36-5:5:39", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,5:2:36-5:5:39", + "value": [ + { + "string": "two", + "raw_string": "two" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,5:7:41-16:2:161", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,6:4:47-6:10:53", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,6:4:47-6:10:53", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,6:4:47-6:10:53", + "value": [ + { + "string": "clause", + "raw_string": "clause" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,7:2:56-15:3:158", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,7:2:56-7:11:65", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,7:2:56-7:11:65", + "value": [ + { + "string": "scenarios", + "raw_string": "scenarios" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,7:13:67-15:2:157", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,8:3:72-9:4:88", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,8:3:72-8:11:80", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,8:3:72-8:11:80", + "value": [ + { + "string": "seinfeld", + "raw_string": "seinfeld" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,8:13:82-9:3:87", + "nodes": null + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,10:3:92-14:4:154", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,10:3:92-10:11:100", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,10:3:92-10:11:100", + "value": [ + { + "string": "missoula", + "raw_string": "missoula" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,10:13:102-14:3:153", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,11:4:108-13:5:149", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,11:4:108-11:9:113", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,11:4:108-11:9:113", + "value": [ + { + "string": "steps", + "raw_string": "steps" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,11:11:115-13:4:148", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,12:5:122-12:26:143", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,12:5:122-12:11:128", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,12:5:122-12:11:128", + "value": [ + { + "string": "missus", + "raw_string": "missus" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,12:13:130-12:26:143", + "value": [ + { + "string": "one two three", + "raw_string": "one two three" + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + }, + "root": { + "id": "", + "id_val": "", + "label_dimensions": { + "width": 0, + "height": 0 + }, + "attributes": { + "label": { + "value": "" + }, + "style": {}, + "near_key": null, + "shape": { + "value": "" + }, + "direction": { + "value": "" + }, + "constraint": { + "value": "" + } + }, + "zIndex": 0 + }, + "edges": null, + "objects": [ + { + "id": "clause", + "id_val": "clause", + "label_dimensions": { + "width": 0, + "height": 0 + }, + "references": [ + { + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,6:4:47-6:10:53", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,6:4:47-6:10:53", + "value": [ + { + "string": "clause", + "raw_string": "clause" + } + ] + } + } + ] + }, + "key_path_index": 0, + "map_key_edge_index": -1 + } + ], + "attributes": { + "label": { + "value": "clause" + }, + "style": {}, + "near_key": null, + "shape": { + "value": "rectangle" + }, + "direction": { + "value": "" + }, + "constraint": { + "value": "" + } + }, + "zIndex": 0 + } + ], + "scenarios": [ + { + "name": "seinfeld", + "isContainerOnly": false, + "ast": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,0:0:0-18:0:165", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,1:0:1-17:1:164", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,1:0:1-1:6:7", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,1:0:1-1:6:7", + "value": [ + { + "string": "layers", + "raw_string": "layers" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,1:8:9-17:0:163", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,2:2:13-4:3:33", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,2:2:13-2:5:16", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,2:2:13-2:5:16", + "value": [ + { + "string": "one", + "raw_string": "one" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,2:7:18-4:2:32", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,3:4:24-3:9:29", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,3:4:24-3:9:29", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,3:4:24-3:9:29", + "value": [ + { + "string": "santa", + "raw_string": "santa" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + } + ] + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,5:2:36-16:3:162", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,5:2:36-5:5:39", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,5:2:36-5:5:39", + "value": [ + { + "string": "two", + "raw_string": "two" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,5:7:41-16:2:161", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,6:4:47-6:10:53", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,6:4:47-6:10:53", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,6:4:47-6:10:53", + "value": [ + { + "string": "clause", + "raw_string": "clause" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,7:2:56-15:3:158", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,7:2:56-7:11:65", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,7:2:56-7:11:65", + "value": [ + { + "string": "scenarios", + "raw_string": "scenarios" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,7:13:67-15:2:157", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,8:3:72-9:4:88", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,8:3:72-8:11:80", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,8:3:72-8:11:80", + "value": [ + { + "string": "seinfeld", + "raw_string": "seinfeld" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,8:13:82-9:3:87", + "nodes": null + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,10:3:92-14:4:154", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,10:3:92-10:11:100", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,10:3:92-10:11:100", + "value": [ + { + "string": "missoula", + "raw_string": "missoula" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,10:13:102-14:3:153", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,11:4:108-13:5:149", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,11:4:108-11:9:113", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,11:4:108-11:9:113", + "value": [ + { + "string": "steps", + "raw_string": "steps" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,11:11:115-13:4:148", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,12:5:122-12:26:143", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,12:5:122-12:11:128", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,12:5:122-12:11:128", + "value": [ + { + "string": "missus", + "raw_string": "missus" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,12:13:130-12:26:143", + "value": [ + { + "string": "one two three", + "raw_string": "one two three" + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + }, + "root": { + "id": "", + "id_val": "", + "label_dimensions": { + "width": 0, + "height": 0 + }, + "attributes": { + "label": { + "value": "" + }, + "style": {}, + "near_key": null, + "shape": { + "value": "" + }, + "direction": { + "value": "" + }, + "constraint": { + "value": "" + } + }, + "zIndex": 0 + }, + "edges": null, + "objects": null + }, + { + "name": "missoula", + "isContainerOnly": false, + "ast": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,0:0:0-18:0:165", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,1:0:1-17:1:164", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,1:0:1-1:6:7", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,1:0:1-1:6:7", + "value": [ + { + "string": "layers", + "raw_string": "layers" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,1:8:9-17:0:163", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,2:2:13-4:3:33", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,2:2:13-2:5:16", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,2:2:13-2:5:16", + "value": [ + { + "string": "one", + "raw_string": "one" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,2:7:18-4:2:32", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,3:4:24-3:9:29", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,3:4:24-3:9:29", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,3:4:24-3:9:29", + "value": [ + { + "string": "santa", + "raw_string": "santa" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + } + ] + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,5:2:36-16:3:162", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,5:2:36-5:5:39", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,5:2:36-5:5:39", + "value": [ + { + "string": "two", + "raw_string": "two" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,5:7:41-16:2:161", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,6:4:47-6:10:53", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,6:4:47-6:10:53", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,6:4:47-6:10:53", + "value": [ + { + "string": "clause", + "raw_string": "clause" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,7:2:56-15:3:158", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,7:2:56-7:11:65", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,7:2:56-7:11:65", + "value": [ + { + "string": "scenarios", + "raw_string": "scenarios" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,7:13:67-15:2:157", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,8:3:72-9:4:88", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,8:3:72-8:11:80", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,8:3:72-8:11:80", + "value": [ + { + "string": "seinfeld", + "raw_string": "seinfeld" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,8:13:82-9:3:87", + "nodes": null + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,10:3:92-14:4:154", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,10:3:92-10:11:100", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,10:3:92-10:11:100", + "value": [ + { + "string": "missoula", + "raw_string": "missoula" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,10:13:102-14:3:153", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,11:4:108-13:5:149", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,11:4:108-11:9:113", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,11:4:108-11:9:113", + "value": [ + { + "string": "steps", + "raw_string": "steps" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,11:11:115-13:4:148", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,12:5:122-12:26:143", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,12:5:122-12:11:128", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,12:5:122-12:11:128", + "value": [ + { + "string": "missus", + "raw_string": "missus" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isContainerOnly.d2,12:13:130-12:26:143", + "value": [ + { + "string": "one two three", + "raw_string": "one two three" + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + }, + "root": { + "id": "", + "id_val": "", + "label_dimensions": { + "width": 0, + "height": 0 + }, + "attributes": { + "label": { + "value": "" + }, + "style": {}, + "near_key": null, + "shape": { + "value": "" + }, + "direction": { + "value": "" + }, + "constraint": { + "value": "" + } + }, + "zIndex": 0 + }, + "edges": null, + "objects": null + } + ] + } + ] + }, + "err": null +} diff --git a/testdata/d2compiler/TestCompile2/boards/isFolderOnly.exp.json b/testdata/d2compiler/TestCompile2/boards/isFolderOnly.exp.json new file mode 100644 index 000000000..0f6affc31 --- /dev/null +++ b/testdata/d2compiler/TestCompile2/boards/isFolderOnly.exp.json @@ -0,0 +1,1688 @@ +{ + "graph": { + "name": "", + "isFolderOnly": true, + "ast": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,0:0:0-18:0:165", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,1:0:1-17:1:164", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,1:0:1-1:6:7", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,1:0:1-1:6:7", + "value": [ + { + "string": "layers", + "raw_string": "layers" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,1:8:9-17:0:163", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,2:2:13-4:3:33", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,2:2:13-2:5:16", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,2:2:13-2:5:16", + "value": [ + { + "string": "one", + "raw_string": "one" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,2:7:18-4:2:32", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,3:4:24-3:9:29", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,3:4:24-3:9:29", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,3:4:24-3:9:29", + "value": [ + { + "string": "santa", + "raw_string": "santa" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + } + ] + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,5:2:36-16:3:162", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,5:2:36-5:5:39", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,5:2:36-5:5:39", + "value": [ + { + "string": "two", + "raw_string": "two" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,5:7:41-16:2:161", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,6:4:47-6:10:53", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,6:4:47-6:10:53", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,6:4:47-6:10:53", + "value": [ + { + "string": "clause", + "raw_string": "clause" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,7:2:56-15:3:158", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,7:2:56-7:11:65", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,7:2:56-7:11:65", + "value": [ + { + "string": "scenarios", + "raw_string": "scenarios" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,7:13:67-15:2:157", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,8:3:72-9:4:88", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,8:3:72-8:11:80", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,8:3:72-8:11:80", + "value": [ + { + "string": "seinfeld", + "raw_string": "seinfeld" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,8:13:82-9:3:87", + "nodes": null + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,10:3:92-14:4:154", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,10:3:92-10:11:100", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,10:3:92-10:11:100", + "value": [ + { + "string": "missoula", + "raw_string": "missoula" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,10:13:102-14:3:153", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,11:4:108-13:5:149", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,11:4:108-11:9:113", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,11:4:108-11:9:113", + "value": [ + { + "string": "steps", + "raw_string": "steps" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,11:11:115-13:4:148", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,12:5:122-12:26:143", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,12:5:122-12:11:128", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,12:5:122-12:11:128", + "value": [ + { + "string": "missus", + "raw_string": "missus" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,12:13:130-12:26:143", + "value": [ + { + "string": "one two three", + "raw_string": "one two three" + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + }, + "root": { + "id": "", + "id_val": "", + "label_dimensions": { + "width": 0, + "height": 0 + }, + "attributes": { + "label": { + "value": "" + }, + "style": {}, + "near_key": null, + "shape": { + "value": "" + }, + "direction": { + "value": "" + }, + "constraint": { + "value": "" + } + }, + "zIndex": 0 + }, + "edges": null, + "objects": null, + "layers": [ + { + "name": "one", + "isFolderOnly": false, + "ast": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,0:0:0-18:0:165", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,1:0:1-17:1:164", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,1:0:1-1:6:7", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,1:0:1-1:6:7", + "value": [ + { + "string": "layers", + "raw_string": "layers" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,1:8:9-17:0:163", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,2:2:13-4:3:33", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,2:2:13-2:5:16", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,2:2:13-2:5:16", + "value": [ + { + "string": "one", + "raw_string": "one" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,2:7:18-4:2:32", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,3:4:24-3:9:29", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,3:4:24-3:9:29", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,3:4:24-3:9:29", + "value": [ + { + "string": "santa", + "raw_string": "santa" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + } + ] + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,5:2:36-16:3:162", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,5:2:36-5:5:39", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,5:2:36-5:5:39", + "value": [ + { + "string": "two", + "raw_string": "two" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,5:7:41-16:2:161", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,6:4:47-6:10:53", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,6:4:47-6:10:53", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,6:4:47-6:10:53", + "value": [ + { + "string": "clause", + "raw_string": "clause" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,7:2:56-15:3:158", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,7:2:56-7:11:65", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,7:2:56-7:11:65", + "value": [ + { + "string": "scenarios", + "raw_string": "scenarios" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,7:13:67-15:2:157", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,8:3:72-9:4:88", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,8:3:72-8:11:80", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,8:3:72-8:11:80", + "value": [ + { + "string": "seinfeld", + "raw_string": "seinfeld" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,8:13:82-9:3:87", + "nodes": null + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,10:3:92-14:4:154", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,10:3:92-10:11:100", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,10:3:92-10:11:100", + "value": [ + { + "string": "missoula", + "raw_string": "missoula" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,10:13:102-14:3:153", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,11:4:108-13:5:149", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,11:4:108-11:9:113", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,11:4:108-11:9:113", + "value": [ + { + "string": "steps", + "raw_string": "steps" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,11:11:115-13:4:148", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,12:5:122-12:26:143", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,12:5:122-12:11:128", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,12:5:122-12:11:128", + "value": [ + { + "string": "missus", + "raw_string": "missus" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,12:13:130-12:26:143", + "value": [ + { + "string": "one two three", + "raw_string": "one two three" + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + }, + "root": { + "id": "", + "id_val": "", + "label_dimensions": { + "width": 0, + "height": 0 + }, + "attributes": { + "label": { + "value": "" + }, + "style": {}, + "near_key": null, + "shape": { + "value": "" + }, + "direction": { + "value": "" + }, + "constraint": { + "value": "" + } + }, + "zIndex": 0 + }, + "edges": null, + "objects": [ + { + "id": "santa", + "id_val": "santa", + "label_dimensions": { + "width": 0, + "height": 0 + }, + "references": [ + { + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,3:4:24-3:9:29", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,3:4:24-3:9:29", + "value": [ + { + "string": "santa", + "raw_string": "santa" + } + ] + } + } + ] + }, + "key_path_index": 0, + "map_key_edge_index": -1 + } + ], + "attributes": { + "label": { + "value": "santa" + }, + "style": {}, + "near_key": null, + "shape": { + "value": "rectangle" + }, + "direction": { + "value": "" + }, + "constraint": { + "value": "" + } + }, + "zIndex": 0 + } + ] + }, + { + "name": "two", + "isFolderOnly": false, + "ast": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,0:0:0-18:0:165", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,1:0:1-17:1:164", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,1:0:1-1:6:7", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,1:0:1-1:6:7", + "value": [ + { + "string": "layers", + "raw_string": "layers" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,1:8:9-17:0:163", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,2:2:13-4:3:33", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,2:2:13-2:5:16", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,2:2:13-2:5:16", + "value": [ + { + "string": "one", + "raw_string": "one" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,2:7:18-4:2:32", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,3:4:24-3:9:29", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,3:4:24-3:9:29", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,3:4:24-3:9:29", + "value": [ + { + "string": "santa", + "raw_string": "santa" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + } + ] + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,5:2:36-16:3:162", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,5:2:36-5:5:39", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,5:2:36-5:5:39", + "value": [ + { + "string": "two", + "raw_string": "two" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,5:7:41-16:2:161", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,6:4:47-6:10:53", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,6:4:47-6:10:53", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,6:4:47-6:10:53", + "value": [ + { + "string": "clause", + "raw_string": "clause" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,7:2:56-15:3:158", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,7:2:56-7:11:65", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,7:2:56-7:11:65", + "value": [ + { + "string": "scenarios", + "raw_string": "scenarios" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,7:13:67-15:2:157", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,8:3:72-9:4:88", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,8:3:72-8:11:80", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,8:3:72-8:11:80", + "value": [ + { + "string": "seinfeld", + "raw_string": "seinfeld" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,8:13:82-9:3:87", + "nodes": null + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,10:3:92-14:4:154", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,10:3:92-10:11:100", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,10:3:92-10:11:100", + "value": [ + { + "string": "missoula", + "raw_string": "missoula" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,10:13:102-14:3:153", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,11:4:108-13:5:149", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,11:4:108-11:9:113", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,11:4:108-11:9:113", + "value": [ + { + "string": "steps", + "raw_string": "steps" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,11:11:115-13:4:148", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,12:5:122-12:26:143", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,12:5:122-12:11:128", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,12:5:122-12:11:128", + "value": [ + { + "string": "missus", + "raw_string": "missus" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,12:13:130-12:26:143", + "value": [ + { + "string": "one two three", + "raw_string": "one two three" + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + }, + "root": { + "id": "", + "id_val": "", + "label_dimensions": { + "width": 0, + "height": 0 + }, + "attributes": { + "label": { + "value": "" + }, + "style": {}, + "near_key": null, + "shape": { + "value": "" + }, + "direction": { + "value": "" + }, + "constraint": { + "value": "" + } + }, + "zIndex": 0 + }, + "edges": null, + "objects": [ + { + "id": "clause", + "id_val": "clause", + "label_dimensions": { + "width": 0, + "height": 0 + }, + "references": [ + { + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,6:4:47-6:10:53", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,6:4:47-6:10:53", + "value": [ + { + "string": "clause", + "raw_string": "clause" + } + ] + } + } + ] + }, + "key_path_index": 0, + "map_key_edge_index": -1 + } + ], + "attributes": { + "label": { + "value": "clause" + }, + "style": {}, + "near_key": null, + "shape": { + "value": "rectangle" + }, + "direction": { + "value": "" + }, + "constraint": { + "value": "" + } + }, + "zIndex": 0 + } + ], + "scenarios": [ + { + "name": "seinfeld", + "isFolderOnly": false, + "ast": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,0:0:0-18:0:165", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,1:0:1-17:1:164", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,1:0:1-1:6:7", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,1:0:1-1:6:7", + "value": [ + { + "string": "layers", + "raw_string": "layers" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,1:8:9-17:0:163", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,2:2:13-4:3:33", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,2:2:13-2:5:16", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,2:2:13-2:5:16", + "value": [ + { + "string": "one", + "raw_string": "one" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,2:7:18-4:2:32", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,3:4:24-3:9:29", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,3:4:24-3:9:29", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,3:4:24-3:9:29", + "value": [ + { + "string": "santa", + "raw_string": "santa" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + } + ] + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,5:2:36-16:3:162", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,5:2:36-5:5:39", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,5:2:36-5:5:39", + "value": [ + { + "string": "two", + "raw_string": "two" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,5:7:41-16:2:161", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,6:4:47-6:10:53", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,6:4:47-6:10:53", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,6:4:47-6:10:53", + "value": [ + { + "string": "clause", + "raw_string": "clause" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,7:2:56-15:3:158", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,7:2:56-7:11:65", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,7:2:56-7:11:65", + "value": [ + { + "string": "scenarios", + "raw_string": "scenarios" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,7:13:67-15:2:157", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,8:3:72-9:4:88", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,8:3:72-8:11:80", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,8:3:72-8:11:80", + "value": [ + { + "string": "seinfeld", + "raw_string": "seinfeld" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,8:13:82-9:3:87", + "nodes": null + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,10:3:92-14:4:154", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,10:3:92-10:11:100", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,10:3:92-10:11:100", + "value": [ + { + "string": "missoula", + "raw_string": "missoula" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,10:13:102-14:3:153", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,11:4:108-13:5:149", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,11:4:108-11:9:113", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,11:4:108-11:9:113", + "value": [ + { + "string": "steps", + "raw_string": "steps" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,11:11:115-13:4:148", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,12:5:122-12:26:143", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,12:5:122-12:11:128", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,12:5:122-12:11:128", + "value": [ + { + "string": "missus", + "raw_string": "missus" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,12:13:130-12:26:143", + "value": [ + { + "string": "one two three", + "raw_string": "one two three" + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + }, + "root": { + "id": "", + "id_val": "", + "label_dimensions": { + "width": 0, + "height": 0 + }, + "attributes": { + "label": { + "value": "" + }, + "style": {}, + "near_key": null, + "shape": { + "value": "" + }, + "direction": { + "value": "" + }, + "constraint": { + "value": "" + } + }, + "zIndex": 0 + }, + "edges": null, + "objects": null + }, + { + "name": "missoula", + "isFolderOnly": false, + "ast": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,0:0:0-18:0:165", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,1:0:1-17:1:164", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,1:0:1-1:6:7", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,1:0:1-1:6:7", + "value": [ + { + "string": "layers", + "raw_string": "layers" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,1:8:9-17:0:163", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,2:2:13-4:3:33", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,2:2:13-2:5:16", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,2:2:13-2:5:16", + "value": [ + { + "string": "one", + "raw_string": "one" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,2:7:18-4:2:32", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,3:4:24-3:9:29", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,3:4:24-3:9:29", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,3:4:24-3:9:29", + "value": [ + { + "string": "santa", + "raw_string": "santa" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + } + ] + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,5:2:36-16:3:162", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,5:2:36-5:5:39", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,5:2:36-5:5:39", + "value": [ + { + "string": "two", + "raw_string": "two" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,5:7:41-16:2:161", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,6:4:47-6:10:53", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,6:4:47-6:10:53", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,6:4:47-6:10:53", + "value": [ + { + "string": "clause", + "raw_string": "clause" + } + ] + } + } + ] + }, + "primary": {}, + "value": {} + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,7:2:56-15:3:158", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,7:2:56-7:11:65", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,7:2:56-7:11:65", + "value": [ + { + "string": "scenarios", + "raw_string": "scenarios" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,7:13:67-15:2:157", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,8:3:72-9:4:88", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,8:3:72-8:11:80", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,8:3:72-8:11:80", + "value": [ + { + "string": "seinfeld", + "raw_string": "seinfeld" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,8:13:82-9:3:87", + "nodes": null + } + } + } + }, + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,10:3:92-14:4:154", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,10:3:92-10:11:100", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,10:3:92-10:11:100", + "value": [ + { + "string": "missoula", + "raw_string": "missoula" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,10:13:102-14:3:153", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,11:4:108-13:5:149", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,11:4:108-11:9:113", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,11:4:108-11:9:113", + "value": [ + { + "string": "steps", + "raw_string": "steps" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "map": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,11:11:115-13:4:148", + "nodes": [ + { + "map_key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,12:5:122-12:26:143", + "key": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,12:5:122-12:11:128", + "path": [ + { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,12:5:122-12:11:128", + "value": [ + { + "string": "missus", + "raw_string": "missus" + } + ] + } + } + ] + }, + "primary": {}, + "value": { + "unquoted_string": { + "range": "d2/testdata/d2compiler/TestCompile2/boards/isFolderOnly.d2,12:13:130-12:26:143", + "value": [ + { + "string": "one two three", + "raw_string": "one two three" + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + } + } + } + } + ] + }, + "root": { + "id": "", + "id_val": "", + "label_dimensions": { + "width": 0, + "height": 0 + }, + "attributes": { + "label": { + "value": "" + }, + "style": {}, + "near_key": null, + "shape": { + "value": "" + }, + "direction": { + "value": "" + }, + "constraint": { + "value": "" + } + }, + "zIndex": 0 + }, + "edges": null, + "objects": null + } + ] + } + ] + }, + "err": null +} diff --git a/testdata/d2compiler/TestCompile2/boards/recursive.exp.json b/testdata/d2compiler/TestCompile2/boards/recursive.exp.json index 4496b0752..6d2c25d9e 100644 --- a/testdata/d2compiler/TestCompile2/boards/recursive.exp.json +++ b/testdata/d2compiler/TestCompile2/boards/recursive.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile2/boards/recursive.d2,0:0:0-18:0:145", "nodes": [ @@ -373,6 +374,7 @@ "layers": [ { "name": "one", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile2/boards/recursive.d2,0:0:0-18:0:145", "nodes": [ @@ -745,6 +747,7 @@ }, { "name": "two", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile2/boards/recursive.d2,0:0:0-18:0:145", "nodes": [ @@ -1117,6 +1120,7 @@ "steps": [ { "name": "seinfeld", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile2/boards/recursive.d2,0:0:0-18:0:145", "nodes": [ @@ -1489,6 +1493,7 @@ }, { "name": "missoula", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile2/boards/recursive.d2,0:0:0-18:0:145", "nodes": [ diff --git a/testdata/d2compiler/TestCompile2/boards/root.exp.json b/testdata/d2compiler/TestCompile2/boards/root.exp.json index 7efd58eac..d5578d6ff 100644 --- a/testdata/d2compiler/TestCompile2/boards/root.exp.json +++ b/testdata/d2compiler/TestCompile2/boards/root.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile2/boards/root.d2,0:0:0-10:0:65", "nodes": [ @@ -240,6 +241,7 @@ "layers": [ { "name": "one", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile2/boards/root.d2,0:0:0-10:0:65", "nodes": [ @@ -479,6 +481,7 @@ }, { "name": "two", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2compiler/TestCompile2/boards/root.d2,0:0:0-10:0:65", "nodes": [ diff --git a/testdata/d2exporter/TestExport/connection/arrowhead.exp.json b/testdata/d2exporter/TestExport/connection/arrowhead.exp.json index bcb6578e1..caa332fc2 100644 --- a/testdata/d2exporter/TestExport/connection/arrowhead.exp.json +++ b/testdata/d2exporter/TestExport/connection/arrowhead.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/testdata/d2exporter/TestExport/connection/basic.exp.json b/testdata/d2exporter/TestExport/connection/basic.exp.json index c3a73c250..f75ac6af5 100644 --- a/testdata/d2exporter/TestExport/connection/basic.exp.json +++ b/testdata/d2exporter/TestExport/connection/basic.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/testdata/d2exporter/TestExport/connection/stroke-dash.exp.json b/testdata/d2exporter/TestExport/connection/stroke-dash.exp.json index bd7d592b7..86499c685 100644 --- a/testdata/d2exporter/TestExport/connection/stroke-dash.exp.json +++ b/testdata/d2exporter/TestExport/connection/stroke-dash.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/testdata/d2exporter/TestExport/connection/theme_stroke-dash.exp.json b/testdata/d2exporter/TestExport/connection/theme_stroke-dash.exp.json index e61f591c6..707543c8e 100644 --- a/testdata/d2exporter/TestExport/connection/theme_stroke-dash.exp.json +++ b/testdata/d2exporter/TestExport/connection/theme_stroke-dash.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/testdata/d2exporter/TestExport/label/basic_shape.exp.json b/testdata/d2exporter/TestExport/label/basic_shape.exp.json index f5e1adf88..234023e0c 100644 --- a/testdata/d2exporter/TestExport/label/basic_shape.exp.json +++ b/testdata/d2exporter/TestExport/label/basic_shape.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/testdata/d2exporter/TestExport/label/connection_font_color.exp.json b/testdata/d2exporter/TestExport/label/connection_font_color.exp.json index de93011a6..2ab8c8975 100644 --- a/testdata/d2exporter/TestExport/label/connection_font_color.exp.json +++ b/testdata/d2exporter/TestExport/label/connection_font_color.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/testdata/d2exporter/TestExport/label/shape_font_color.exp.json b/testdata/d2exporter/TestExport/label/shape_font_color.exp.json index 514507049..d0e68a092 100644 --- a/testdata/d2exporter/TestExport/label/shape_font_color.exp.json +++ b/testdata/d2exporter/TestExport/label/shape_font_color.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/testdata/d2exporter/TestExport/shape/basic.exp.json b/testdata/d2exporter/TestExport/shape/basic.exp.json index d7b1416f8..a204974b3 100644 --- a/testdata/d2exporter/TestExport/shape/basic.exp.json +++ b/testdata/d2exporter/TestExport/shape/basic.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/testdata/d2exporter/TestExport/shape/border-radius.exp.json b/testdata/d2exporter/TestExport/shape/border-radius.exp.json index 7fa756e9a..67f9c5ff7 100644 --- a/testdata/d2exporter/TestExport/shape/border-radius.exp.json +++ b/testdata/d2exporter/TestExport/shape/border-radius.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/testdata/d2exporter/TestExport/shape/image_dimensions.exp.json b/testdata/d2exporter/TestExport/shape/image_dimensions.exp.json index ef0c6423e..5e59d4853 100644 --- a/testdata/d2exporter/TestExport/shape/image_dimensions.exp.json +++ b/testdata/d2exporter/TestExport/shape/image_dimensions.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/testdata/d2exporter/TestExport/shape/sequence_group_position.exp.json b/testdata/d2exporter/TestExport/shape/sequence_group_position.exp.json index 333ef9d1b..8c7ea254a 100644 --- a/testdata/d2exporter/TestExport/shape/sequence_group_position.exp.json +++ b/testdata/d2exporter/TestExport/shape/sequence_group_position.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/testdata/d2exporter/TestExport/shape/synonyms.exp.json b/testdata/d2exporter/TestExport/shape/synonyms.exp.json index 2731c8828..0eb9f4605 100644 --- a/testdata/d2exporter/TestExport/shape/synonyms.exp.json +++ b/testdata/d2exporter/TestExport/shape/synonyms.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/testdata/d2exporter/TestExport/shape/text_color.exp.json b/testdata/d2exporter/TestExport/shape/text_color.exp.json index 1cfab40b1..baac9c397 100644 --- a/testdata/d2exporter/TestExport/shape/text_color.exp.json +++ b/testdata/d2exporter/TestExport/shape/text_color.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/testdata/d2exporter/TestExport/theme/connection_with_bold.exp.json b/testdata/d2exporter/TestExport/theme/connection_with_bold.exp.json index b3f4e132b..2367b7b9a 100644 --- a/testdata/d2exporter/TestExport/theme/connection_with_bold.exp.json +++ b/testdata/d2exporter/TestExport/theme/connection_with_bold.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/testdata/d2exporter/TestExport/theme/connection_with_italic.exp.json b/testdata/d2exporter/TestExport/theme/connection_with_italic.exp.json index bcd8419db..c86b058ac 100644 --- a/testdata/d2exporter/TestExport/theme/connection_with_italic.exp.json +++ b/testdata/d2exporter/TestExport/theme/connection_with_italic.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/testdata/d2exporter/TestExport/theme/connection_without_italic.exp.json b/testdata/d2exporter/TestExport/theme/connection_without_italic.exp.json index cbcfe8233..3c3d303b7 100644 --- a/testdata/d2exporter/TestExport/theme/connection_without_italic.exp.json +++ b/testdata/d2exporter/TestExport/theme/connection_without_italic.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/testdata/d2exporter/TestExport/theme/shape_with_italic.exp.json b/testdata/d2exporter/TestExport/theme/shape_with_italic.exp.json index fc6906a77..72575a3e5 100644 --- a/testdata/d2exporter/TestExport/theme/shape_with_italic.exp.json +++ b/testdata/d2exporter/TestExport/theme/shape_with_italic.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/testdata/d2exporter/TestExport/theme/shape_without_bold.exp.json b/testdata/d2exporter/TestExport/theme/shape_without_bold.exp.json index b11d826fd..ee1636c5f 100644 --- a/testdata/d2exporter/TestExport/theme/shape_without_bold.exp.json +++ b/testdata/d2exporter/TestExport/theme/shape_without_bold.exp.json @@ -1,5 +1,6 @@ { "name": "", + "isFolderOnly": false, "fontFamily": "SourceSansPro", "shapes": [ { diff --git a/testdata/d2oracle/TestCreate/base.exp.json b/testdata/d2oracle/TestCreate/base.exp.json index 996a7c994..b1773f3e5 100644 --- a/testdata/d2oracle/TestCreate/base.exp.json +++ b/testdata/d2oracle/TestCreate/base.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestCreate/base.d2,0:0:0-1:0:7", "nodes": [ diff --git a/testdata/d2oracle/TestCreate/container.exp.json b/testdata/d2oracle/TestCreate/container.exp.json index 1a87d6d38..45c84a2b9 100644 --- a/testdata/d2oracle/TestCreate/container.exp.json +++ b/testdata/d2oracle/TestCreate/container.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestCreate/container.d2,0:0:0-3:0:11", "nodes": [ diff --git a/testdata/d2oracle/TestCreate/container_edge.exp.json b/testdata/d2oracle/TestCreate/container_edge.exp.json index 12ef49624..99fa9987f 100644 --- a/testdata/d2oracle/TestCreate/container_edge.exp.json +++ b/testdata/d2oracle/TestCreate/container_edge.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestCreate/container_edge.d2,0:0:0-3:0:16", "nodes": [ diff --git a/testdata/d2oracle/TestCreate/container_edge_label.exp.json b/testdata/d2oracle/TestCreate/container_edge_label.exp.json index 482c30883..874f701c9 100644 --- a/testdata/d2oracle/TestCreate/container_edge_label.exp.json +++ b/testdata/d2oracle/TestCreate/container_edge_label.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestCreate/container_edge_label.d2,0:0:0-3:0:21", "nodes": [ diff --git a/testdata/d2oracle/TestCreate/edge.exp.json b/testdata/d2oracle/TestCreate/edge.exp.json index 9667c122a..7c756f94e 100644 --- a/testdata/d2oracle/TestCreate/edge.exp.json +++ b/testdata/d2oracle/TestCreate/edge.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestCreate/edge.d2,0:0:0-1:0:7", "nodes": [ diff --git a/testdata/d2oracle/TestCreate/edge_nested.exp.json b/testdata/d2oracle/TestCreate/edge_nested.exp.json index 870d3a601..ebd1c4a1f 100644 --- a/testdata/d2oracle/TestCreate/edge_nested.exp.json +++ b/testdata/d2oracle/TestCreate/edge_nested.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestCreate/edge_nested.d2,0:0:0-1:0:19", "nodes": [ diff --git a/testdata/d2oracle/TestCreate/edge_scope.exp.json b/testdata/d2oracle/TestCreate/edge_scope.exp.json index cda1c03a6..82f59fb8e 100644 --- a/testdata/d2oracle/TestCreate/edge_scope.exp.json +++ b/testdata/d2oracle/TestCreate/edge_scope.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestCreate/edge_scope.d2,0:0:0-3:0:24", "nodes": [ diff --git a/testdata/d2oracle/TestCreate/edge_scope_flat.exp.json b/testdata/d2oracle/TestCreate/edge_scope_flat.exp.json index acba172e8..0981b56e5 100644 --- a/testdata/d2oracle/TestCreate/edge_scope_flat.exp.json +++ b/testdata/d2oracle/TestCreate/edge_scope_flat.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestCreate/edge_scope_flat.d2,0:0:0-3:0:24", "nodes": [ diff --git a/testdata/d2oracle/TestCreate/edge_scope_nested.exp.json b/testdata/d2oracle/TestCreate/edge_scope_nested.exp.json index 62d3c0e7b..6f03dd3e5 100644 --- a/testdata/d2oracle/TestCreate/edge_scope_nested.exp.json +++ b/testdata/d2oracle/TestCreate/edge_scope_nested.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestCreate/edge_scope_nested.d2,0:0:0-3:0:18", "nodes": [ diff --git a/testdata/d2oracle/TestCreate/edge_unique.exp.json b/testdata/d2oracle/TestCreate/edge_unique.exp.json index bd24e02df..3feaad7e5 100644 --- a/testdata/d2oracle/TestCreate/edge_unique.exp.json +++ b/testdata/d2oracle/TestCreate/edge_unique.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestCreate/edge_unique.d2,0:0:0-4:0:52", "nodes": [ diff --git a/testdata/d2oracle/TestCreate/gen_key.exp.json b/testdata/d2oracle/TestCreate/gen_key.exp.json index c2b722f1c..6b59db7f6 100644 --- a/testdata/d2oracle/TestCreate/gen_key.exp.json +++ b/testdata/d2oracle/TestCreate/gen_key.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestCreate/gen_key.d2,0:0:0-1:0:17", "nodes": [ diff --git a/testdata/d2oracle/TestCreate/gen_key_n.exp.json b/testdata/d2oracle/TestCreate/gen_key_n.exp.json index f7b16843b..a6a3ab175 100644 --- a/testdata/d2oracle/TestCreate/gen_key_n.exp.json +++ b/testdata/d2oracle/TestCreate/gen_key_n.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestCreate/gen_key_n.d2,0:0:0-13:0:132", "nodes": [ diff --git a/testdata/d2oracle/TestCreate/gen_key_nested.exp.json b/testdata/d2oracle/TestCreate/gen_key_nested.exp.json index d0554e316..dd647a29e 100644 --- a/testdata/d2oracle/TestCreate/gen_key_nested.exp.json +++ b/testdata/d2oracle/TestCreate/gen_key_nested.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestCreate/gen_key_nested.d2,0:0:0-1:0:29", "nodes": [ diff --git a/testdata/d2oracle/TestCreate/gen_key_scope.exp.json b/testdata/d2oracle/TestCreate/gen_key_scope.exp.json index 925596db4..fdff71529 100644 --- a/testdata/d2oracle/TestCreate/gen_key_scope.exp.json +++ b/testdata/d2oracle/TestCreate/gen_key_scope.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestCreate/gen_key_scope.d2,0:0:0-4:0:31", "nodes": [ diff --git a/testdata/d2oracle/TestCreate/gen_key_suffix.exp.json b/testdata/d2oracle/TestCreate/gen_key_suffix.exp.json index 91484dee5..9e45e674f 100644 --- a/testdata/d2oracle/TestCreate/gen_key_suffix.exp.json +++ b/testdata/d2oracle/TestCreate/gen_key_suffix.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestCreate/gen_key_suffix.d2,0:0:0-2:0:10", "nodes": [ diff --git a/testdata/d2oracle/TestCreate/make_scope_multiline.exp.json b/testdata/d2oracle/TestCreate/make_scope_multiline.exp.json index 82bbc2052..9e6166137 100644 --- a/testdata/d2oracle/TestCreate/make_scope_multiline.exp.json +++ b/testdata/d2oracle/TestCreate/make_scope_multiline.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestCreate/make_scope_multiline.d2,0:0:0-4:0:35", "nodes": [ 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 e41155eaa..1a6d18fc7 100644 --- a/testdata/d2oracle/TestCreate/make_scope_multiline_spacing_1.exp.json +++ b/testdata/d2oracle/TestCreate/make_scope_multiline_spacing_1.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestCreate/make_scope_multiline_spacing_1.d2,0:0:0-6:0:48", "nodes": [ 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 442432aa7..5c35c062a 100644 --- a/testdata/d2oracle/TestCreate/make_scope_multiline_spacing_2.exp.json +++ b/testdata/d2oracle/TestCreate/make_scope_multiline_spacing_2.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestCreate/make_scope_multiline_spacing_2.d2,0:0:0-8:0:50", "nodes": [ diff --git a/testdata/d2oracle/TestCreate/nested.exp.json b/testdata/d2oracle/TestCreate/nested.exp.json index 643e62ffe..13a0e5338 100644 --- a/testdata/d2oracle/TestCreate/nested.exp.json +++ b/testdata/d2oracle/TestCreate/nested.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestCreate/nested.d2,0:0:0-1:0:11", "nodes": [ diff --git a/testdata/d2oracle/TestCreate/scope.exp.json b/testdata/d2oracle/TestCreate/scope.exp.json index fd309beff..9639bbf24 100644 --- a/testdata/d2oracle/TestCreate/scope.exp.json +++ b/testdata/d2oracle/TestCreate/scope.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestCreate/scope.d2,0:0:0-3:0:20", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/arrowhead.exp.json b/testdata/d2oracle/TestDelete/arrowhead.exp.json index eb4cd6ebb..2fc3e31f2 100644 --- a/testdata/d2oracle/TestDelete/arrowhead.exp.json +++ b/testdata/d2oracle/TestDelete/arrowhead.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/arrowhead.d2,0:0:0-1:0:7", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/arrowhead_label.exp.json b/testdata/d2oracle/TestDelete/arrowhead_label.exp.json index 30ff73b25..0d04b4e5c 100644 --- a/testdata/d2oracle/TestDelete/arrowhead_label.exp.json +++ b/testdata/d2oracle/TestDelete/arrowhead_label.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/arrowhead_label.d2,0:0:0-3:0:46", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/arrowhead_map.exp.json b/testdata/d2oracle/TestDelete/arrowhead_map.exp.json index 9fab0d94b..4ef90b86a 100644 --- a/testdata/d2oracle/TestDelete/arrowhead_map.exp.json +++ b/testdata/d2oracle/TestDelete/arrowhead_map.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/arrowhead_map.d2,0:0:0-1:0:7", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/arrowhead_shape.exp.json b/testdata/d2oracle/TestDelete/arrowhead_shape.exp.json index 6ad6f3824..9cfc5fbb3 100644 --- a/testdata/d2oracle/TestDelete/arrowhead_shape.exp.json +++ b/testdata/d2oracle/TestDelete/arrowhead_shape.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/arrowhead_shape.d2,0:0:0-1:0:7", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/breakup_arrowhead.exp.json b/testdata/d2oracle/TestDelete/breakup_arrowhead.exp.json index 15a36bad0..b87f7ada7 100644 --- a/testdata/d2oracle/TestDelete/breakup_arrowhead.exp.json +++ b/testdata/d2oracle/TestDelete/breakup_arrowhead.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/breakup_arrowhead.d2,0:0:0-1:0:2", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/chaos_1.exp.json b/testdata/d2oracle/TestDelete/chaos_1.exp.json index 8c4a7ec9f..a012ee54a 100644 --- a/testdata/d2oracle/TestDelete/chaos_1.exp.json +++ b/testdata/d2oracle/TestDelete/chaos_1.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/chaos_1.d2,0:0:0-8:0:94", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/children.exp.json b/testdata/d2oracle/TestDelete/children.exp.json index bbe45f5de..d72aac1bc 100644 --- a/testdata/d2oracle/TestDelete/children.exp.json +++ b/testdata/d2oracle/TestDelete/children.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/children.d2,0:0:0-2:0:17", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/children_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_conflicts.exp.json index b948b2c81..aa46010d5 100644 --- a/testdata/d2oracle/TestDelete/children_conflicts.exp.json +++ b/testdata/d2oracle/TestDelete/children_conflicts.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/children_conflicts.d2,0:0:0-3:0:7", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/children_edge_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_edge_conflicts.exp.json index 64ba9b515..06b1721b9 100644 --- a/testdata/d2oracle/TestDelete/children_edge_conflicts.exp.json +++ b/testdata/d2oracle/TestDelete/children_edge_conflicts.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/children_edge_conflicts.d2,0:0:0-5:0:23", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/children_edges_flat_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_edges_flat_conflicts.exp.json index 9ad7f6dc2..017b88f80 100644 --- a/testdata/d2oracle/TestDelete/children_edges_flat_conflicts.exp.json +++ b/testdata/d2oracle/TestDelete/children_edges_flat_conflicts.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/children_edges_flat_conflicts.d2,0:0:0-6:0:41", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/children_flat_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_flat_conflicts.exp.json index bcd4d45b9..72b006c08 100644 --- a/testdata/d2oracle/TestDelete/children_flat_conflicts.exp.json +++ b/testdata/d2oracle/TestDelete/children_flat_conflicts.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/children_flat_conflicts.d2,0:0:0-4:0:17", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/children_multiple_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_multiple_conflicts.exp.json index ff02a6970..6dd312311 100644 --- a/testdata/d2oracle/TestDelete/children_multiple_conflicts.exp.json +++ b/testdata/d2oracle/TestDelete/children_multiple_conflicts.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/children_multiple_conflicts.d2,0:0:0-8:0:35", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/children_nested_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_nested_conflicts.exp.json index 5325c9501..42ec7a673 100644 --- a/testdata/d2oracle/TestDelete/children_nested_conflicts.exp.json +++ b/testdata/d2oracle/TestDelete/children_nested_conflicts.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/children_nested_conflicts.d2,0:0:0-5:0:16", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/children_nested_referenced_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_nested_referenced_conflicts.exp.json index 52e1f8cb1..d093f337b 100644 --- a/testdata/d2oracle/TestDelete/children_nested_referenced_conflicts.exp.json +++ b/testdata/d2oracle/TestDelete/children_nested_referenced_conflicts.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/children_nested_referenced_conflicts.d2,0:0:0-6:0:33", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/children_no_self_conflict.exp.json b/testdata/d2oracle/TestDelete/children_no_self_conflict.exp.json index 452712e66..fe35fb0a4 100644 --- a/testdata/d2oracle/TestDelete/children_no_self_conflict.exp.json +++ b/testdata/d2oracle/TestDelete/children_no_self_conflict.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/children_no_self_conflict.d2,0:0:0-1:0:2", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/children_order.exp.json b/testdata/d2oracle/TestDelete/children_order.exp.json index 6c3104b9b..824bdeaf7 100644 --- a/testdata/d2oracle/TestDelete/children_order.exp.json +++ b/testdata/d2oracle/TestDelete/children_order.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/children_order.d2,0:0:0-7:0:34", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/children_referenced_conflicts.exp.json b/testdata/d2oracle/TestDelete/children_referenced_conflicts.exp.json index f4248dfb2..d3c25dc9f 100644 --- a/testdata/d2oracle/TestDelete/children_referenced_conflicts.exp.json +++ b/testdata/d2oracle/TestDelete/children_referenced_conflicts.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/children_referenced_conflicts.d2,0:0:0-5:0:18", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/children_scope.exp.json b/testdata/d2oracle/TestDelete/children_scope.exp.json index 1d87e7168..7ef29ec5d 100644 --- a/testdata/d2oracle/TestDelete/children_scope.exp.json +++ b/testdata/d2oracle/TestDelete/children_scope.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/children_scope.d2,0:0:0-4:0:30", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/container_near.exp.json b/testdata/d2oracle/TestDelete/container_near.exp.json index 2da2da37f..d687451ab 100644 --- a/testdata/d2oracle/TestDelete/container_near.exp.json +++ b/testdata/d2oracle/TestDelete/container_near.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/container_near.d2,0:0:0-7:0:36", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/delete_container_of_near.exp.json b/testdata/d2oracle/TestDelete/delete_container_of_near.exp.json index 9dcbd5845..73d04d230 100644 --- a/testdata/d2oracle/TestDelete/delete_container_of_near.exp.json +++ b/testdata/d2oracle/TestDelete/delete_container_of_near.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/delete_container_of_near.d2,0:0:0-10:0:255", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/delete_icon.exp.json b/testdata/d2oracle/TestDelete/delete_icon.exp.json index 66fcdfb72..773b7321b 100644 --- a/testdata/d2oracle/TestDelete/delete_icon.exp.json +++ b/testdata/d2oracle/TestDelete/delete_icon.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/delete_icon.d2,0:0:0-3:0:36", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/delete_link.exp.json b/testdata/d2oracle/TestDelete/delete_link.exp.json index 4fc895c7c..d875355be 100644 --- a/testdata/d2oracle/TestDelete/delete_link.exp.json +++ b/testdata/d2oracle/TestDelete/delete_link.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/delete_link.d2,0:0:0-1:0:2", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/delete_near.exp.json b/testdata/d2oracle/TestDelete/delete_near.exp.json index 77810228e..db51e96ed 100644 --- a/testdata/d2oracle/TestDelete/delete_near.exp.json +++ b/testdata/d2oracle/TestDelete/delete_near.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/delete_near.d2,0:0:0-2:0:4", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/delete_needed_flat_near.exp.json b/testdata/d2oracle/TestDelete/delete_needed_flat_near.exp.json index 80e21b12b..3487837b1 100644 --- a/testdata/d2oracle/TestDelete/delete_needed_flat_near.exp.json +++ b/testdata/d2oracle/TestDelete/delete_needed_flat_near.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/delete_needed_flat_near.d2,0:0:0-2:0:4", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/delete_redundant_flat_near.exp.json b/testdata/d2oracle/TestDelete/delete_redundant_flat_near.exp.json index 17650db85..1880ac013 100644 --- a/testdata/d2oracle/TestDelete/delete_redundant_flat_near.exp.json +++ b/testdata/d2oracle/TestDelete/delete_redundant_flat_near.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/delete_redundant_flat_near.d2,0:0:0-3:0:5", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/delete_tooltip.exp.json b/testdata/d2oracle/TestDelete/delete_tooltip.exp.json index d2cd0ee73..494ab611e 100644 --- a/testdata/d2oracle/TestDelete/delete_tooltip.exp.json +++ b/testdata/d2oracle/TestDelete/delete_tooltip.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/delete_tooltip.d2,0:0:0-1:0:2", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/edge-only-style.exp.json b/testdata/d2oracle/TestDelete/edge-only-style.exp.json index 50846ea3b..509e35081 100644 --- a/testdata/d2oracle/TestDelete/edge-only-style.exp.json +++ b/testdata/d2oracle/TestDelete/edge-only-style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/edge-only-style.d2,0:0:0-1:0:7", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/edge_both_identical_childs.exp.json b/testdata/d2oracle/TestDelete/edge_both_identical_childs.exp.json index b10cd9d5f..40895df52 100644 --- a/testdata/d2oracle/TestDelete/edge_both_identical_childs.exp.json +++ b/testdata/d2oracle/TestDelete/edge_both_identical_childs.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/edge_both_identical_childs.d2,0:0:0-1:0:13", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/edge_common.exp.json b/testdata/d2oracle/TestDelete/edge_common.exp.json index 1e5e01fd3..953bfb7b1 100644 --- a/testdata/d2oracle/TestDelete/edge_common.exp.json +++ b/testdata/d2oracle/TestDelete/edge_common.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/edge_common.d2,0:0:0-1:0:7", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/edge_common_2.exp.json b/testdata/d2oracle/TestDelete/edge_common_2.exp.json index fe55153e0..c3c56a3c0 100644 --- a/testdata/d2oracle/TestDelete/edge_common_2.exp.json +++ b/testdata/d2oracle/TestDelete/edge_common_2.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/edge_common_2.d2,0:0:0-1:0:7", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/edge_common_3.exp.json b/testdata/d2oracle/TestDelete/edge_common_3.exp.json index a044a6d9c..6bca4cd50 100644 --- a/testdata/d2oracle/TestDelete/edge_common_3.exp.json +++ b/testdata/d2oracle/TestDelete/edge_common_3.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/edge_common_3.d2,0:0:0-2:0:8", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/edge_common_4.exp.json b/testdata/d2oracle/TestDelete/edge_common_4.exp.json index c04064cc8..f085d59f7 100644 --- a/testdata/d2oracle/TestDelete/edge_common_4.exp.json +++ b/testdata/d2oracle/TestDelete/edge_common_4.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/edge_common_4.d2,0:0:0-2:0:8", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/edge_conflict.exp.json b/testdata/d2oracle/TestDelete/edge_conflict.exp.json index 69e5772aa..d14b781c5 100644 --- a/testdata/d2oracle/TestDelete/edge_conflict.exp.json +++ b/testdata/d2oracle/TestDelete/edge_conflict.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/edge_conflict.d2,0:0:0-2:0:17", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/edge_decrement.exp.json b/testdata/d2oracle/TestDelete/edge_decrement.exp.json index 4ab45fd6f..5275b19bd 100644 --- a/testdata/d2oracle/TestDelete/edge_decrement.exp.json +++ b/testdata/d2oracle/TestDelete/edge_decrement.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/edge_decrement.d2,0:0:0-10:0:102", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/edge_first.exp.json b/testdata/d2oracle/TestDelete/edge_first.exp.json index 34e6fa07f..5ba7ba319 100644 --- a/testdata/d2oracle/TestDelete/edge_first.exp.json +++ b/testdata/d2oracle/TestDelete/edge_first.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/edge_first.d2,0:0:0-1:0:24", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/edge_flat_style.exp.json b/testdata/d2oracle/TestDelete/edge_flat_style.exp.json index 7910d6c66..8fe956cea 100644 --- a/testdata/d2oracle/TestDelete/edge_flat_style.exp.json +++ b/testdata/d2oracle/TestDelete/edge_flat_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/edge_flat_style.d2,0:0:0-1:0:2", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/edge_identical_child.exp.json b/testdata/d2oracle/TestDelete/edge_identical_child.exp.json index 1e5afaf19..ec3514d0e 100644 --- a/testdata/d2oracle/TestDelete/edge_identical_child.exp.json +++ b/testdata/d2oracle/TestDelete/edge_identical_child.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/edge_identical_child.d2,0:0:0-1:0:13", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/edge_key_style.exp.json b/testdata/d2oracle/TestDelete/edge_key_style.exp.json index dbf182d48..a3a9d2cd7 100644 --- a/testdata/d2oracle/TestDelete/edge_key_style.exp.json +++ b/testdata/d2oracle/TestDelete/edge_key_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/edge_key_style.d2,0:0:0-1:0:7", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/edge_last.exp.json b/testdata/d2oracle/TestDelete/edge_last.exp.json index 5c5b92a1a..c49abada8 100644 --- a/testdata/d2oracle/TestDelete/edge_last.exp.json +++ b/testdata/d2oracle/TestDelete/edge_last.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/edge_last.d2,0:0:0-1:0:29", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/edge_map_style.exp.json b/testdata/d2oracle/TestDelete/edge_map_style.exp.json index e66a56e1a..c7bf64faf 100644 --- a/testdata/d2oracle/TestDelete/edge_map_style.exp.json +++ b/testdata/d2oracle/TestDelete/edge_map_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/edge_map_style.d2,0:0:0-1:0:7", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/edge_middle.exp.json b/testdata/d2oracle/TestDelete/edge_middle.exp.json index fa20d2ca4..af0a96fce 100644 --- a/testdata/d2oracle/TestDelete/edge_middle.exp.json +++ b/testdata/d2oracle/TestDelete/edge_middle.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/edge_middle.d2,0:0:0-1:0:29", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/empty_map.exp.json b/testdata/d2oracle/TestDelete/empty_map.exp.json index 48a037b44..c32d34aa9 100644 --- a/testdata/d2oracle/TestDelete/empty_map.exp.json +++ b/testdata/d2oracle/TestDelete/empty_map.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/empty_map.d2,0:0:0-3:0:11", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/flat.exp.json b/testdata/d2oracle/TestDelete/flat.exp.json index efd57ca61..f116acb97 100644 --- a/testdata/d2oracle/TestDelete/flat.exp.json +++ b/testdata/d2oracle/TestDelete/flat.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/flat.d2,0:0:0-0:0:0", "nodes": null diff --git a/testdata/d2oracle/TestDelete/flat_reserved.exp.json b/testdata/d2oracle/TestDelete/flat_reserved.exp.json index b1933c4d0..563fd9dfc 100644 --- a/testdata/d2oracle/TestDelete/flat_reserved.exp.json +++ b/testdata/d2oracle/TestDelete/flat_reserved.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/flat_reserved.d2,0:0:0-1:0:7", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/hoist_children.exp.json b/testdata/d2oracle/TestDelete/hoist_children.exp.json index 21e5def64..063460fb9 100644 --- a/testdata/d2oracle/TestDelete/hoist_children.exp.json +++ b/testdata/d2oracle/TestDelete/hoist_children.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/hoist_children.d2,0:0:0-3:0:11", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/hoist_edge_children.exp.json b/testdata/d2oracle/TestDelete/hoist_edge_children.exp.json index c3703e0b0..5e5a55ac1 100644 --- a/testdata/d2oracle/TestDelete/hoist_edge_children.exp.json +++ b/testdata/d2oracle/TestDelete/hoist_edge_children.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/hoist_edge_children.d2,0:0:0-2:0:9", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/key_with_edges.exp.json b/testdata/d2oracle/TestDelete/key_with_edges.exp.json index e7052b733..9e0700298 100644 --- a/testdata/d2oracle/TestDelete/key_with_edges.exp.json +++ b/testdata/d2oracle/TestDelete/key_with_edges.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/key_with_edges.d2,0:0:0-2:0:22", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/key_with_edges_2.exp.json b/testdata/d2oracle/TestDelete/key_with_edges_2.exp.json index 7895330b3..0cd835b7f 100644 --- a/testdata/d2oracle/TestDelete/key_with_edges_2.exp.json +++ b/testdata/d2oracle/TestDelete/key_with_edges_2.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/key_with_edges_2.d2,0:0:0-1:0:11", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/key_with_edges_3.exp.json b/testdata/d2oracle/TestDelete/key_with_edges_3.exp.json index 40833f8be..d505707b4 100644 --- a/testdata/d2oracle/TestDelete/key_with_edges_3.exp.json +++ b/testdata/d2oracle/TestDelete/key_with_edges_3.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/key_with_edges_3.d2,0:0:0-1:0:11", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/key_with_edges_4.exp.json b/testdata/d2oracle/TestDelete/key_with_edges_4.exp.json index 81dfb3765..0d1408158 100644 --- a/testdata/d2oracle/TestDelete/key_with_edges_4.exp.json +++ b/testdata/d2oracle/TestDelete/key_with_edges_4.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/key_with_edges_4.d2,0:0:0-2:0:22", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/left.exp.json b/testdata/d2oracle/TestDelete/left.exp.json index 0be52a3ad..5270ca29e 100644 --- a/testdata/d2oracle/TestDelete/left.exp.json +++ b/testdata/d2oracle/TestDelete/left.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/left.d2,0:0:0-1:0:2", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/multi_near.exp.json b/testdata/d2oracle/TestDelete/multi_near.exp.json index ee3e75b94..e41f9e3ec 100644 --- a/testdata/d2oracle/TestDelete/multi_near.exp.json +++ b/testdata/d2oracle/TestDelete/multi_near.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/multi_near.d2,0:0:0-9:0:57", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/multi_path_map_conflict.exp.json b/testdata/d2oracle/TestDelete/multi_path_map_conflict.exp.json index ad7b50c02..f17fdd862 100644 --- a/testdata/d2oracle/TestDelete/multi_path_map_conflict.exp.json +++ b/testdata/d2oracle/TestDelete/multi_path_map_conflict.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/multi_path_map_conflict.d2,0:0:0-6:0:24", "nodes": [ 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 911987500..d507d5227 100644 --- a/testdata/d2oracle/TestDelete/multi_path_map_no_conflict.exp.json +++ b/testdata/d2oracle/TestDelete/multi_path_map_no_conflict.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/multi_path_map_no_conflict.d2,0:0:0-5:0:14", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/multiple_flat_middle_container.exp.json b/testdata/d2oracle/TestDelete/multiple_flat_middle_container.exp.json index 07ec7b0f9..cd609a383 100644 --- a/testdata/d2oracle/TestDelete/multiple_flat_middle_container.exp.json +++ b/testdata/d2oracle/TestDelete/multiple_flat_middle_container.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/multiple_flat_middle_container.d2,0:0:0-2:0:8", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/multiple_flat_style.exp.json b/testdata/d2oracle/TestDelete/multiple_flat_style.exp.json index ded66bfc1..7c3ad54fb 100644 --- a/testdata/d2oracle/TestDelete/multiple_flat_style.exp.json +++ b/testdata/d2oracle/TestDelete/multiple_flat_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/multiple_flat_style.d2,0:0:0-1:0:21", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/multiple_map_styles.exp.json b/testdata/d2oracle/TestDelete/multiple_map_styles.exp.json index f65f40986..bff7c808d 100644 --- a/testdata/d2oracle/TestDelete/multiple_map_styles.exp.json +++ b/testdata/d2oracle/TestDelete/multiple_map_styles.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/multiple_map_styles.d2,0:0:0-5:0:39", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/near.exp.json b/testdata/d2oracle/TestDelete/near.exp.json index bc5952b25..dfcbdba6c 100644 --- a/testdata/d2oracle/TestDelete/near.exp.json +++ b/testdata/d2oracle/TestDelete/near.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/near.d2,0:0:0-1:0:2", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/nested.exp.json b/testdata/d2oracle/TestDelete/nested.exp.json index 8cf70d4ac..3b67399a7 100644 --- a/testdata/d2oracle/TestDelete/nested.exp.json +++ b/testdata/d2oracle/TestDelete/nested.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/nested.d2,0:0:0-1:0:6", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/nested_2.exp.json b/testdata/d2oracle/TestDelete/nested_2.exp.json index c0fcd695f..eb85fd956 100644 --- a/testdata/d2oracle/TestDelete/nested_2.exp.json +++ b/testdata/d2oracle/TestDelete/nested_2.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/nested_2.d2,0:0:0-1:0:6", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/nested_edge_key_style.exp.json b/testdata/d2oracle/TestDelete/nested_edge_key_style.exp.json index 5ec5bf573..56686e462 100644 --- a/testdata/d2oracle/TestDelete/nested_edge_key_style.exp.json +++ b/testdata/d2oracle/TestDelete/nested_edge_key_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/nested_edge_key_style.d2,0:0:0-3:0:16", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/nested_flat_style.exp.json b/testdata/d2oracle/TestDelete/nested_flat_style.exp.json index f1e33ea61..8c3c28001 100644 --- a/testdata/d2oracle/TestDelete/nested_flat_style.exp.json +++ b/testdata/d2oracle/TestDelete/nested_flat_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/nested_flat_style.d2,0:0:0-1:0:2", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/nested_reserved.exp.json b/testdata/d2oracle/TestDelete/nested_reserved.exp.json index c7c746eb2..629f232ba 100644 --- a/testdata/d2oracle/TestDelete/nested_reserved.exp.json +++ b/testdata/d2oracle/TestDelete/nested_reserved.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/nested_reserved.d2,0:0:0-2:0:15", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/nested_underscore_update.exp.json b/testdata/d2oracle/TestDelete/nested_underscore_update.exp.json index 0600e7be2..aa3e1c083 100644 --- a/testdata/d2oracle/TestDelete/nested_underscore_update.exp.json +++ b/testdata/d2oracle/TestDelete/nested_underscore_update.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/nested_underscore_update.d2,0:0:0-3:0:20", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/node_in_edge.exp.json b/testdata/d2oracle/TestDelete/node_in_edge.exp.json index dcb1a70ab..0c55e6543 100644 --- a/testdata/d2oracle/TestDelete/node_in_edge.exp.json +++ b/testdata/d2oracle/TestDelete/node_in_edge.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/node_in_edge.d2,0:0:0-5:0:34", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/node_in_edge_last.exp.json b/testdata/d2oracle/TestDelete/node_in_edge_last.exp.json index 655ce329f..59fc5db5e 100644 --- a/testdata/d2oracle/TestDelete/node_in_edge_last.exp.json +++ b/testdata/d2oracle/TestDelete/node_in_edge_last.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/node_in_edge_last.d2,0:0:0-4:0:38", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/only-underscore-nested.exp.json b/testdata/d2oracle/TestDelete/only-underscore-nested.exp.json index 483e50180..d53723873 100644 --- a/testdata/d2oracle/TestDelete/only-underscore-nested.exp.json +++ b/testdata/d2oracle/TestDelete/only-underscore-nested.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/only-underscore-nested.d2,0:0:0-4:0:22", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/only-underscore.exp.json b/testdata/d2oracle/TestDelete/only-underscore.exp.json index ce90b0614..d8e36fd60 100644 --- a/testdata/d2oracle/TestDelete/only-underscore.exp.json +++ b/testdata/d2oracle/TestDelete/only-underscore.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/only-underscore.d2,0:0:0-3:0:20", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/only_delete_edge_reserved.exp.json b/testdata/d2oracle/TestDelete/only_delete_edge_reserved.exp.json index 2b45a4726..6836d20b7 100644 --- a/testdata/d2oracle/TestDelete/only_delete_edge_reserved.exp.json +++ b/testdata/d2oracle/TestDelete/only_delete_edge_reserved.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/only_delete_edge_reserved.d2,0:0:0-3:0:38", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/only_delete_obj_reserved.exp.json b/testdata/d2oracle/TestDelete/only_delete_obj_reserved.exp.json index 244083c88..562a4955f 100644 --- a/testdata/d2oracle/TestDelete/only_delete_obj_reserved.exp.json +++ b/testdata/d2oracle/TestDelete/only_delete_obj_reserved.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/only_delete_obj_reserved.d2,0:0:0-3:0:38", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/order_1.exp.json b/testdata/d2oracle/TestDelete/order_1.exp.json index 281b408ec..a6b002f3e 100644 --- a/testdata/d2oracle/TestDelete/order_1.exp.json +++ b/testdata/d2oracle/TestDelete/order_1.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/order_1.d2,0:0:0-2:0:9", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/order_2.exp.json b/testdata/d2oracle/TestDelete/order_2.exp.json index 0e91a5f4f..31461ae7b 100644 --- a/testdata/d2oracle/TestDelete/order_2.exp.json +++ b/testdata/d2oracle/TestDelete/order_2.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/order_2.d2,0:0:0-2:0:4", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/order_3.exp.json b/testdata/d2oracle/TestDelete/order_3.exp.json index a10acc982..ed8eae736 100644 --- a/testdata/d2oracle/TestDelete/order_3.exp.json +++ b/testdata/d2oracle/TestDelete/order_3.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/order_3.d2,0:0:0-2:0:4", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/order_4.exp.json b/testdata/d2oracle/TestDelete/order_4.exp.json index b894c5e49..7775c60d5 100644 --- a/testdata/d2oracle/TestDelete/order_4.exp.json +++ b/testdata/d2oracle/TestDelete/order_4.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/order_4.d2,0:0:0-1:0:2", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/order_5.exp.json b/testdata/d2oracle/TestDelete/order_5.exp.json index e7e51144d..6baa9b67d 100644 --- a/testdata/d2oracle/TestDelete/order_5.exp.json +++ b/testdata/d2oracle/TestDelete/order_5.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/order_5.d2,0:0:0-4:0:25", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/order_6.exp.json b/testdata/d2oracle/TestDelete/order_6.exp.json index b35e3f7b0..8ad11ae8f 100644 --- a/testdata/d2oracle/TestDelete/order_6.exp.json +++ b/testdata/d2oracle/TestDelete/order_6.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/order_6.d2,0:0:0-4:0:19", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/order_7.exp.json b/testdata/d2oracle/TestDelete/order_7.exp.json index f0f8a237d..25f840379 100644 --- a/testdata/d2oracle/TestDelete/order_7.exp.json +++ b/testdata/d2oracle/TestDelete/order_7.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/order_7.d2,0:0:0-4:0:24", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/order_8.exp.json b/testdata/d2oracle/TestDelete/order_8.exp.json index 4d596cf76..7b88c05e1 100644 --- a/testdata/d2oracle/TestDelete/order_8.exp.json +++ b/testdata/d2oracle/TestDelete/order_8.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/order_8.d2,0:0:0-7:0:22", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/shape_class.exp.json b/testdata/d2oracle/TestDelete/shape_class.exp.json index 0db68a357..9cffa89e8 100644 --- a/testdata/d2oracle/TestDelete/shape_class.exp.json +++ b/testdata/d2oracle/TestDelete/shape_class.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/shape_class.d2,0:0:0-2:0:39", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/shape_sql_table.exp.json b/testdata/d2oracle/TestDelete/shape_sql_table.exp.json index 2343b6250..d86497638 100644 --- a/testdata/d2oracle/TestDelete/shape_sql_table.exp.json +++ b/testdata/d2oracle/TestDelete/shape_sql_table.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/shape_sql_table.d2,0:0:0-10:0:128", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/singular_flat_style.exp.json b/testdata/d2oracle/TestDelete/singular_flat_style.exp.json index 66257d2b8..ef7b7af9d 100644 --- a/testdata/d2oracle/TestDelete/singular_flat_style.exp.json +++ b/testdata/d2oracle/TestDelete/singular_flat_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/singular_flat_style.d2,0:0:0-1:0:2", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/singular_map_style.exp.json b/testdata/d2oracle/TestDelete/singular_map_style.exp.json index a0f9bc160..66ac50413 100644 --- a/testdata/d2oracle/TestDelete/singular_map_style.exp.json +++ b/testdata/d2oracle/TestDelete/singular_map_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/singular_map_style.d2,0:0:0-1:0:2", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/underscore_no_conflict.exp.json b/testdata/d2oracle/TestDelete/underscore_no_conflict.exp.json index f7bb55dc2..67c1be91f 100644 --- a/testdata/d2oracle/TestDelete/underscore_no_conflict.exp.json +++ b/testdata/d2oracle/TestDelete/underscore_no_conflict.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/underscore_no_conflict.d2,0:0:0-5:0:18", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/underscore_remove.exp.json b/testdata/d2oracle/TestDelete/underscore_remove.exp.json index 4681f41bc..df4d7620d 100644 --- a/testdata/d2oracle/TestDelete/underscore_remove.exp.json +++ b/testdata/d2oracle/TestDelete/underscore_remove.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/underscore_remove.d2,0:0:0-3:0:16", "nodes": [ diff --git a/testdata/d2oracle/TestDelete/width.exp.json b/testdata/d2oracle/TestDelete/width.exp.json index c1c010bcb..bf73ebf92 100644 --- a/testdata/d2oracle/TestDelete/width.exp.json +++ b/testdata/d2oracle/TestDelete/width.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestDelete/width.d2,0:0:0-1:0:2", "nodes": [ diff --git a/testdata/d2oracle/TestMove/append_multiple_styles.exp.json b/testdata/d2oracle/TestMove/append_multiple_styles.exp.json index 932165164..7a0b72a22 100644 --- a/testdata/d2oracle/TestMove/append_multiple_styles.exp.json +++ b/testdata/d2oracle/TestMove/append_multiple_styles.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/append_multiple_styles.d2,0:0:0-12:0:104", "nodes": [ diff --git a/testdata/d2oracle/TestMove/basic.exp.json b/testdata/d2oracle/TestMove/basic.exp.json index 06e880d9a..b15b540e3 100644 --- a/testdata/d2oracle/TestMove/basic.exp.json +++ b/testdata/d2oracle/TestMove/basic.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/basic.d2,0:0:0-1:0:2", "nodes": [ diff --git a/testdata/d2oracle/TestMove/basic_nested.exp.json b/testdata/d2oracle/TestMove/basic_nested.exp.json index b35f7ceba..62e197700 100644 --- a/testdata/d2oracle/TestMove/basic_nested.exp.json +++ b/testdata/d2oracle/TestMove/basic_nested.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/basic_nested.d2,0:0:0-3:0:11", "nodes": [ diff --git a/testdata/d2oracle/TestMove/basic_out_of_container.exp.json b/testdata/d2oracle/TestMove/basic_out_of_container.exp.json index 9bcfc0c5a..22381d85e 100644 --- a/testdata/d2oracle/TestMove/basic_out_of_container.exp.json +++ b/testdata/d2oracle/TestMove/basic_out_of_container.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/basic_out_of_container.d2,0:0:0-2:0:4", "nodes": [ diff --git a/testdata/d2oracle/TestMove/between_containers.exp.json b/testdata/d2oracle/TestMove/between_containers.exp.json index f2941d00d..65a69a9bf 100644 --- a/testdata/d2oracle/TestMove/between_containers.exp.json +++ b/testdata/d2oracle/TestMove/between_containers.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/between_containers.d2,0:0:0-4:0:13", "nodes": [ diff --git a/testdata/d2oracle/TestMove/chain_connected_nested.exp.json b/testdata/d2oracle/TestMove/chain_connected_nested.exp.json index dc49a1953..c3a49a0d4 100644 --- a/testdata/d2oracle/TestMove/chain_connected_nested.exp.json +++ b/testdata/d2oracle/TestMove/chain_connected_nested.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/chain_connected_nested.d2,0:0:0-2:0:14", "nodes": [ 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 2dcce1517..b769353e0 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 @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/chain_connected_nested_no_extra_create.d2,0:0:0-1:0:14", "nodes": [ diff --git a/testdata/d2oracle/TestMove/connected_nested.exp.json b/testdata/d2oracle/TestMove/connected_nested.exp.json index c36689ff3..47015323e 100644 --- a/testdata/d2oracle/TestMove/connected_nested.exp.json +++ b/testdata/d2oracle/TestMove/connected_nested.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/connected_nested.d2,0:0:0-2:0:9", "nodes": [ diff --git a/testdata/d2oracle/TestMove/container_multiple_refs_with_underscore.exp.json b/testdata/d2oracle/TestMove/container_multiple_refs_with_underscore.exp.json index ef29483a3..2b597f1e1 100644 --- a/testdata/d2oracle/TestMove/container_multiple_refs_with_underscore.exp.json +++ b/testdata/d2oracle/TestMove/container_multiple_refs_with_underscore.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/container_multiple_refs_with_underscore.d2,0:0:0-3:0:11", "nodes": [ diff --git a/testdata/d2oracle/TestMove/container_near.exp.json b/testdata/d2oracle/TestMove/container_near.exp.json index fe29c811f..64a272e47 100644 --- a/testdata/d2oracle/TestMove/container_near.exp.json +++ b/testdata/d2oracle/TestMove/container_near.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/container_near.d2,0:0:0-9:0:51", "nodes": [ diff --git a/testdata/d2oracle/TestMove/edge_across_containers.exp.json b/testdata/d2oracle/TestMove/edge_across_containers.exp.json index 9f99c2555..f06a052be 100644 --- a/testdata/d2oracle/TestMove/edge_across_containers.exp.json +++ b/testdata/d2oracle/TestMove/edge_across_containers.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/edge_across_containers.d2,0:0:0-4:0:22", "nodes": [ diff --git a/testdata/d2oracle/TestMove/edge_basic.exp.json b/testdata/d2oracle/TestMove/edge_basic.exp.json index 2a60da94e..80e4b270e 100644 --- a/testdata/d2oracle/TestMove/edge_basic.exp.json +++ b/testdata/d2oracle/TestMove/edge_basic.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/edge_basic.d2,0:0:0-1:0:7", "nodes": [ diff --git a/testdata/d2oracle/TestMove/edge_chain_basic.exp.json b/testdata/d2oracle/TestMove/edge_chain_basic.exp.json index c6d658897..ebe3e5c99 100644 --- a/testdata/d2oracle/TestMove/edge_chain_basic.exp.json +++ b/testdata/d2oracle/TestMove/edge_chain_basic.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/edge_chain_basic.d2,0:0:0-1:0:12", "nodes": [ diff --git a/testdata/d2oracle/TestMove/edge_chain_circular.exp.json b/testdata/d2oracle/TestMove/edge_chain_circular.exp.json index 6679b4125..f2bd3ba19 100644 --- a/testdata/d2oracle/TestMove/edge_chain_circular.exp.json +++ b/testdata/d2oracle/TestMove/edge_chain_circular.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/edge_chain_circular.d2,0:0:0-3:0:25", "nodes": [ diff --git a/testdata/d2oracle/TestMove/edge_chain_into_container.exp.json b/testdata/d2oracle/TestMove/edge_chain_into_container.exp.json index f09c25792..ec4268b34 100644 --- a/testdata/d2oracle/TestMove/edge_chain_into_container.exp.json +++ b/testdata/d2oracle/TestMove/edge_chain_into_container.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/edge_chain_into_container.d2,0:0:0-2:0:16", "nodes": [ diff --git a/testdata/d2oracle/TestMove/edge_chain_out_container.exp.json b/testdata/d2oracle/TestMove/edge_chain_out_container.exp.json index 6bcae60e4..6638f7c31 100644 --- a/testdata/d2oracle/TestMove/edge_chain_out_container.exp.json +++ b/testdata/d2oracle/TestMove/edge_chain_out_container.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/edge_chain_out_container.d2,0:0:0-3:0:23", "nodes": [ diff --git a/testdata/d2oracle/TestMove/edge_conflict.exp.json b/testdata/d2oracle/TestMove/edge_conflict.exp.json index 1e9d65f2a..250ef5dc8 100644 --- a/testdata/d2oracle/TestMove/edge_conflict.exp.json +++ b/testdata/d2oracle/TestMove/edge_conflict.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/edge_conflict.d2,0:0:0-4:0:26", "nodes": [ diff --git a/testdata/d2oracle/TestMove/edge_into_container.exp.json b/testdata/d2oracle/TestMove/edge_into_container.exp.json index 6f2f17d66..9e0d32d1a 100644 --- a/testdata/d2oracle/TestMove/edge_into_container.exp.json +++ b/testdata/d2oracle/TestMove/edge_into_container.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/edge_into_container.d2,0:0:0-4:0:20", "nodes": [ diff --git a/testdata/d2oracle/TestMove/edge_nested_basic.exp.json b/testdata/d2oracle/TestMove/edge_nested_basic.exp.json index b94d41178..f15452aa2 100644 --- a/testdata/d2oracle/TestMove/edge_nested_basic.exp.json +++ b/testdata/d2oracle/TestMove/edge_nested_basic.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/edge_nested_basic.d2,0:0:0-3:0:16", "nodes": [ diff --git a/testdata/d2oracle/TestMove/edge_out_of_container.exp.json b/testdata/d2oracle/TestMove/edge_out_of_container.exp.json index 3ebabb074..753207e8f 100644 --- a/testdata/d2oracle/TestMove/edge_out_of_container.exp.json +++ b/testdata/d2oracle/TestMove/edge_out_of_container.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/edge_out_of_container.d2,0:0:0-3:0:18", "nodes": [ diff --git a/testdata/d2oracle/TestMove/extend_map.exp.json b/testdata/d2oracle/TestMove/extend_map.exp.json index 0fa8abbe9..013d862d0 100644 --- a/testdata/d2oracle/TestMove/extend_map.exp.json +++ b/testdata/d2oracle/TestMove/extend_map.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/extend_map.d2,0:0:0-8:0:35", "nodes": [ diff --git a/testdata/d2oracle/TestMove/extend_stationary_path.exp.json b/testdata/d2oracle/TestMove/extend_stationary_path.exp.json index 4fa0e17c8..bb1f992fd 100644 --- a/testdata/d2oracle/TestMove/extend_stationary_path.exp.json +++ b/testdata/d2oracle/TestMove/extend_stationary_path.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/extend_stationary_path.d2,0:0:0-6:0:30", "nodes": [ diff --git a/testdata/d2oracle/TestMove/flat_between_containers.exp.json b/testdata/d2oracle/TestMove/flat_between_containers.exp.json index c90e16cd4..5ffa855d0 100644 --- a/testdata/d2oracle/TestMove/flat_between_containers.exp.json +++ b/testdata/d2oracle/TestMove/flat_between_containers.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/flat_between_containers.d2,0:0:0-4:0:13", "nodes": [ diff --git a/testdata/d2oracle/TestMove/flat_merge.exp.json b/testdata/d2oracle/TestMove/flat_merge.exp.json index 5e629af74..6f058bf60 100644 --- a/testdata/d2oracle/TestMove/flat_merge.exp.json +++ b/testdata/d2oracle/TestMove/flat_merge.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/flat_merge.d2,0:0:0-5:0:23", "nodes": [ diff --git a/testdata/d2oracle/TestMove/flat_middle_container.exp.json b/testdata/d2oracle/TestMove/flat_middle_container.exp.json index 88ec4f470..a02d287e7 100644 --- a/testdata/d2oracle/TestMove/flat_middle_container.exp.json +++ b/testdata/d2oracle/TestMove/flat_middle_container.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/flat_middle_container.d2,0:0:0-4:0:15", "nodes": [ diff --git a/testdata/d2oracle/TestMove/flat_nested_merge.exp.json b/testdata/d2oracle/TestMove/flat_nested_merge.exp.json index 1d9fe533b..dbbe76c0d 100644 --- a/testdata/d2oracle/TestMove/flat_nested_merge.exp.json +++ b/testdata/d2oracle/TestMove/flat_nested_merge.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/flat_nested_merge.d2,0:0:0-5:0:29", "nodes": [ 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 3fc5de772..001c5db56 100644 --- a/testdata/d2oracle/TestMove/flat_nested_merge_multiple_refs.exp.json +++ b/testdata/d2oracle/TestMove/flat_nested_merge_multiple_refs.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/flat_nested_merge_multiple_refs.d2,0:0:0-10:0:54", "nodes": [ 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 28f4a4d88..dfca9d602 100644 --- a/testdata/d2oracle/TestMove/flat_reparent_with_map_value.exp.json +++ b/testdata/d2oracle/TestMove/flat_reparent_with_map_value.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/flat_reparent_with_map_value.d2,0:0:0-4:0:26", "nodes": [ 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 729fc1fba..ac221c573 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 @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/flat_reparent_with_mixed_map_value.d2,0:0:0-8:0:72", "nodes": [ diff --git a/testdata/d2oracle/TestMove/flat_reparent_with_value.exp.json b/testdata/d2oracle/TestMove/flat_reparent_with_value.exp.json index 4c86d8222..87493703a 100644 --- a/testdata/d2oracle/TestMove/flat_reparent_with_value.exp.json +++ b/testdata/d2oracle/TestMove/flat_reparent_with_value.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/flat_reparent_with_value.d2,0:0:0-2:0:10", "nodes": [ diff --git a/testdata/d2oracle/TestMove/flat_style.exp.json b/testdata/d2oracle/TestMove/flat_style.exp.json index 5895f7640..0ee95a436 100644 --- a/testdata/d2oracle/TestMove/flat_style.exp.json +++ b/testdata/d2oracle/TestMove/flat_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/flat_style.d2,0:0:0-4:0:52", "nodes": [ diff --git a/testdata/d2oracle/TestMove/full_edge_slice.exp.json b/testdata/d2oracle/TestMove/full_edge_slice.exp.json index 7930f259f..4f326348f 100644 --- a/testdata/d2oracle/TestMove/full_edge_slice.exp.json +++ b/testdata/d2oracle/TestMove/full_edge_slice.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/full_edge_slice.d2,0:0:0-6:0:33", "nodes": [ diff --git a/testdata/d2oracle/TestMove/full_slice.exp.json b/testdata/d2oracle/TestMove/full_slice.exp.json index e8f944e88..337f23590 100644 --- a/testdata/d2oracle/TestMove/full_slice.exp.json +++ b/testdata/d2oracle/TestMove/full_slice.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/full_slice.d2,0:0:0-4:0:13", "nodes": [ diff --git a/testdata/d2oracle/TestMove/gnarly_1.exp.json b/testdata/d2oracle/TestMove/gnarly_1.exp.json index 4e2f91a5b..6b23f4c58 100644 --- a/testdata/d2oracle/TestMove/gnarly_1.exp.json +++ b/testdata/d2oracle/TestMove/gnarly_1.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/gnarly_1.d2,0:0:0-9:0:64", "nodes": [ diff --git a/testdata/d2oracle/TestMove/hoist_container_children.exp.json b/testdata/d2oracle/TestMove/hoist_container_children.exp.json index f7281f450..c99804d09 100644 --- a/testdata/d2oracle/TestMove/hoist_container_children.exp.json +++ b/testdata/d2oracle/TestMove/hoist_container_children.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/hoist_container_children.d2,0:0:0-6:0:16", "nodes": [ diff --git a/testdata/d2oracle/TestMove/into_container_existing_map.exp.json b/testdata/d2oracle/TestMove/into_container_existing_map.exp.json index 24c90bda3..472a2ee02 100644 --- a/testdata/d2oracle/TestMove/into_container_existing_map.exp.json +++ b/testdata/d2oracle/TestMove/into_container_existing_map.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/into_container_existing_map.d2,0:0:0-4:0:15", "nodes": [ diff --git a/testdata/d2oracle/TestMove/into_container_nonexisting_map.exp.json b/testdata/d2oracle/TestMove/into_container_nonexisting_map.exp.json index 97a8c0842..0bde25179 100644 --- a/testdata/d2oracle/TestMove/into_container_nonexisting_map.exp.json +++ b/testdata/d2oracle/TestMove/into_container_nonexisting_map.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/into_container_nonexisting_map.d2,0:0:0-3:0:11", "nodes": [ 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 37ed09c5a..53318f42d 100644 --- a/testdata/d2oracle/TestMove/into_container_with_flat_keys.exp.json +++ b/testdata/d2oracle/TestMove/into_container_with_flat_keys.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/into_container_with_flat_keys.d2,0:0:0-7:0:95", "nodes": [ 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 9b1be928b..377783a8f 100644 --- a/testdata/d2oracle/TestMove/into_container_with_flat_style.exp.json +++ b/testdata/d2oracle/TestMove/into_container_with_flat_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/into_container_with_flat_style.d2,0:0:0-4:0:36", "nodes": [ diff --git a/testdata/d2oracle/TestMove/map_transplant.exp.json b/testdata/d2oracle/TestMove/map_transplant.exp.json index 7cfe89507..fdeece592 100644 --- a/testdata/d2oracle/TestMove/map_transplant.exp.json +++ b/testdata/d2oracle/TestMove/map_transplant.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/map_transplant.d2,0:0:0-13:0:79", "nodes": [ diff --git a/testdata/d2oracle/TestMove/map_with_label.exp.json b/testdata/d2oracle/TestMove/map_with_label.exp.json index 9be066a03..bdd5f2c3d 100644 --- a/testdata/d2oracle/TestMove/map_with_label.exp.json +++ b/testdata/d2oracle/TestMove/map_with_label.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/map_with_label.d2,0:0:0-5:0:20", "nodes": [ diff --git a/testdata/d2oracle/TestMove/merge_nested_maps.exp.json b/testdata/d2oracle/TestMove/merge_nested_maps.exp.json index 3a9a60e26..0ebaafa78 100644 --- a/testdata/d2oracle/TestMove/merge_nested_maps.exp.json +++ b/testdata/d2oracle/TestMove/merge_nested_maps.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/merge_nested_maps.d2,0:0:0-11:0:67", "nodes": [ diff --git a/testdata/d2oracle/TestMove/merge_reserved.exp.json b/testdata/d2oracle/TestMove/merge_reserved.exp.json index 5b1266847..2d2043a01 100644 --- a/testdata/d2oracle/TestMove/merge_reserved.exp.json +++ b/testdata/d2oracle/TestMove/merge_reserved.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/merge_reserved.d2,0:0:0-9:0:70", "nodes": [ diff --git a/testdata/d2oracle/TestMove/middle_container.exp.json b/testdata/d2oracle/TestMove/middle_container.exp.json index 2290d2ecd..ef2e9c413 100644 --- a/testdata/d2oracle/TestMove/middle_container.exp.json +++ b/testdata/d2oracle/TestMove/middle_container.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/middle_container.d2,0:0:0-4:0:13", "nodes": [ diff --git a/testdata/d2oracle/TestMove/move_container_children.exp.json b/testdata/d2oracle/TestMove/move_container_children.exp.json index 0fc5e2d5c..dc9f8d8dc 100644 --- a/testdata/d2oracle/TestMove/move_container_children.exp.json +++ b/testdata/d2oracle/TestMove/move_container_children.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/move_container_children.d2,0:0:0-7:0:18", "nodes": [ diff --git a/testdata/d2oracle/TestMove/move_container_conflict_children.exp.json b/testdata/d2oracle/TestMove/move_container_conflict_children.exp.json index 54d04a271..4c4851834 100644 --- a/testdata/d2oracle/TestMove/move_container_conflict_children.exp.json +++ b/testdata/d2oracle/TestMove/move_container_conflict_children.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/move_container_conflict_children.d2,0:0:0-7:0:20", "nodes": [ 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 3ed4a639d..7c657d924 100644 --- a/testdata/d2oracle/TestMove/move_into_key_with_value.exp.json +++ b/testdata/d2oracle/TestMove/move_into_key_with_value.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/move_into_key_with_value.d2,0:0:0-3:0:16", "nodes": [ diff --git a/testdata/d2oracle/TestMove/move_out_of_edge.exp.json b/testdata/d2oracle/TestMove/move_out_of_edge.exp.json index d59c9e251..99efcb3e8 100644 --- a/testdata/d2oracle/TestMove/move_out_of_edge.exp.json +++ b/testdata/d2oracle/TestMove/move_out_of_edge.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/move_out_of_edge.d2,0:0:0-2:0:15", "nodes": [ 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 512eef888..ba86c5f1d 100644 --- a/testdata/d2oracle/TestMove/move_out_of_nested_edge.exp.json +++ b/testdata/d2oracle/TestMove/move_out_of_nested_edge.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/move_out_of_nested_edge.d2,0:0:0-4:0:26", "nodes": [ diff --git a/testdata/d2oracle/TestMove/multiple_nesting_levels.exp.json b/testdata/d2oracle/TestMove/multiple_nesting_levels.exp.json index b4748aa22..45c0f7ac6 100644 --- a/testdata/d2oracle/TestMove/multiple_nesting_levels.exp.json +++ b/testdata/d2oracle/TestMove/multiple_nesting_levels.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/multiple_nesting_levels.d2,0:0:0-11:0:71", "nodes": [ diff --git a/testdata/d2oracle/TestMove/near.exp.json b/testdata/d2oracle/TestMove/near.exp.json index 1bb25dbb0..d1aac8e9b 100644 --- a/testdata/d2oracle/TestMove/near.exp.json +++ b/testdata/d2oracle/TestMove/near.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/near.d2,0:0:0-6:0:30", "nodes": [ diff --git a/testdata/d2oracle/TestMove/nested-underscore-move-out.exp.json b/testdata/d2oracle/TestMove/nested-underscore-move-out.exp.json index 79df7f9c5..c07f0ee71 100644 --- a/testdata/d2oracle/TestMove/nested-underscore-move-out.exp.json +++ b/testdata/d2oracle/TestMove/nested-underscore-move-out.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/nested-underscore-move-out.d2,0:0:0-4:0:27", "nodes": [ diff --git a/testdata/d2oracle/TestMove/nhooyr_one.exp.json b/testdata/d2oracle/TestMove/nhooyr_one.exp.json index 09b3f6a31..004758cd5 100644 --- a/testdata/d2oracle/TestMove/nhooyr_one.exp.json +++ b/testdata/d2oracle/TestMove/nhooyr_one.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/nhooyr_one.d2,0:0:0-6:0:22", "nodes": [ diff --git a/testdata/d2oracle/TestMove/nhooyr_two.exp.json b/testdata/d2oracle/TestMove/nhooyr_two.exp.json index 91b09c986..1855b26dd 100644 --- a/testdata/d2oracle/TestMove/nhooyr_two.exp.json +++ b/testdata/d2oracle/TestMove/nhooyr_two.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/nhooyr_two.d2,0:0:0-7:0:34", "nodes": [ diff --git a/testdata/d2oracle/TestMove/out_of_newline_container.exp.json b/testdata/d2oracle/TestMove/out_of_newline_container.exp.json index 53bcddb77..08cda7e37 100644 --- a/testdata/d2oracle/TestMove/out_of_newline_container.exp.json +++ b/testdata/d2oracle/TestMove/out_of_newline_container.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/out_of_newline_container.d2,0:0:0-2:0:8", "nodes": [ diff --git a/testdata/d2oracle/TestMove/parentheses.exp.json b/testdata/d2oracle/TestMove/parentheses.exp.json index b2580ed86..18dd78d44 100644 --- a/testdata/d2oracle/TestMove/parentheses.exp.json +++ b/testdata/d2oracle/TestMove/parentheses.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/parentheses.d2,0:0:0-2:0:19", "nodes": [ diff --git a/testdata/d2oracle/TestMove/partial_edge_slice.exp.json b/testdata/d2oracle/TestMove/partial_edge_slice.exp.json index 29fbde7e7..d65ed6f61 100644 --- a/testdata/d2oracle/TestMove/partial_edge_slice.exp.json +++ b/testdata/d2oracle/TestMove/partial_edge_slice.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/partial_edge_slice.d2,0:0:0-3:0:11", "nodes": [ diff --git a/testdata/d2oracle/TestMove/partial_slice.exp.json b/testdata/d2oracle/TestMove/partial_slice.exp.json index 0161c622d..ae724b877 100644 --- a/testdata/d2oracle/TestMove/partial_slice.exp.json +++ b/testdata/d2oracle/TestMove/partial_slice.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/partial_slice.d2,0:0:0-2:0:4", "nodes": [ diff --git a/testdata/d2oracle/TestMove/rename_2.exp.json b/testdata/d2oracle/TestMove/rename_2.exp.json index e9b014af4..b8f7bd85a 100644 --- a/testdata/d2oracle/TestMove/rename_2.exp.json +++ b/testdata/d2oracle/TestMove/rename_2.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/rename_2.d2,0:0:0-7:0:22", "nodes": [ diff --git a/testdata/d2oracle/TestMove/reuse_map.exp.json b/testdata/d2oracle/TestMove/reuse_map.exp.json index 7998a8359..fc588be56 100644 --- a/testdata/d2oracle/TestMove/reuse_map.exp.json +++ b/testdata/d2oracle/TestMove/reuse_map.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/reuse_map.d2,0:0:0-7:0:39", "nodes": [ diff --git a/testdata/d2oracle/TestMove/slice_style.exp.json b/testdata/d2oracle/TestMove/slice_style.exp.json index a679114f2..5faba70e0 100644 --- a/testdata/d2oracle/TestMove/slice_style.exp.json +++ b/testdata/d2oracle/TestMove/slice_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/slice_style.d2,0:0:0-3:0:68", "nodes": [ diff --git a/testdata/d2oracle/TestMove/underscore-connection.exp.json b/testdata/d2oracle/TestMove/underscore-connection.exp.json index 46568d214..2024e9463 100644 --- a/testdata/d2oracle/TestMove/underscore-connection.exp.json +++ b/testdata/d2oracle/TestMove/underscore-connection.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/underscore-connection.d2,0:0:0-8:0:40", "nodes": [ diff --git a/testdata/d2oracle/TestMove/underscore_children.exp.json b/testdata/d2oracle/TestMove/underscore_children.exp.json index b6c8caa7e..0fcedfa8b 100644 --- a/testdata/d2oracle/TestMove/underscore_children.exp.json +++ b/testdata/d2oracle/TestMove/underscore_children.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/underscore_children.d2,0:0:0-4:0:15", "nodes": [ diff --git a/testdata/d2oracle/TestMove/underscore_edge_children.exp.json b/testdata/d2oracle/TestMove/underscore_edge_children.exp.json index 464d2c192..1b85cac85 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_children.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_children.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/underscore_edge_children.d2,0:0:0-4:0:20", "nodes": [ diff --git a/testdata/d2oracle/TestMove/underscore_edge_container_1.exp.json b/testdata/d2oracle/TestMove/underscore_edge_container_1.exp.json index 90b7fa65e..9acd8d391 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_container_1.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_container_1.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/underscore_edge_container_1.d2,0:0:0-3:0:16", "nodes": [ diff --git a/testdata/d2oracle/TestMove/underscore_edge_container_2.exp.json b/testdata/d2oracle/TestMove/underscore_edge_container_2.exp.json index f323b850c..077302a94 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_container_2.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_container_2.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/underscore_edge_container_2.d2,0:0:0-3:0:18", "nodes": [ diff --git a/testdata/d2oracle/TestMove/underscore_edge_container_3.exp.json b/testdata/d2oracle/TestMove/underscore_edge_container_3.exp.json index 1f9caaf4c..7c442f9f5 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_container_3.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_container_3.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/underscore_edge_container_3.d2,0:0:0-3:0:18", "nodes": [ diff --git a/testdata/d2oracle/TestMove/underscore_edge_container_4.exp.json b/testdata/d2oracle/TestMove/underscore_edge_container_4.exp.json index 6f099e02c..2732b7cfd 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_container_4.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_container_4.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/underscore_edge_container_4.d2,0:0:0-3:0:16", "nodes": [ diff --git a/testdata/d2oracle/TestMove/underscore_edge_container_5.exp.json b/testdata/d2oracle/TestMove/underscore_edge_container_5.exp.json index 6312973f9..e91b2f8e3 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_container_5.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_container_5.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/underscore_edge_container_5.d2,0:0:0-3:0:22", "nodes": [ diff --git a/testdata/d2oracle/TestMove/underscore_edge_split.exp.json b/testdata/d2oracle/TestMove/underscore_edge_split.exp.json index 28b326089..712405d97 100644 --- a/testdata/d2oracle/TestMove/underscore_edge_split.exp.json +++ b/testdata/d2oracle/TestMove/underscore_edge_split.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/underscore_edge_split.d2,0:0:0-6:0:34", "nodes": [ diff --git a/testdata/d2oracle/TestMove/underscore_merge.exp.json b/testdata/d2oracle/TestMove/underscore_merge.exp.json index 34d2cab06..9dca613fa 100644 --- a/testdata/d2oracle/TestMove/underscore_merge.exp.json +++ b/testdata/d2oracle/TestMove/underscore_merge.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/underscore_merge.d2,0:0:0-6:0:32", "nodes": [ diff --git a/testdata/d2oracle/TestMove/underscore_split.exp.json b/testdata/d2oracle/TestMove/underscore_split.exp.json index 497f43451..d612a8983 100644 --- a/testdata/d2oracle/TestMove/underscore_split.exp.json +++ b/testdata/d2oracle/TestMove/underscore_split.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/underscore_split.d2,0:0:0-6:0:28", "nodes": [ diff --git a/testdata/d2oracle/TestMove/underscore_split_out.exp.json b/testdata/d2oracle/TestMove/underscore_split_out.exp.json index 1f114ae4a..0772fd4cf 100644 --- a/testdata/d2oracle/TestMove/underscore_split_out.exp.json +++ b/testdata/d2oracle/TestMove/underscore_split_out.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/underscore_split_out.d2,0:0:0-10:0:60", "nodes": [ diff --git a/testdata/d2oracle/TestMove/underscore_transplant.exp.json b/testdata/d2oracle/TestMove/underscore_transplant.exp.json index 58f9589e4..5795f4ccf 100644 --- a/testdata/d2oracle/TestMove/underscore_transplant.exp.json +++ b/testdata/d2oracle/TestMove/underscore_transplant.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/underscore_transplant.d2,0:0:0-4:0:13", "nodes": [ diff --git a/testdata/d2oracle/TestMove/unique_name.exp.json b/testdata/d2oracle/TestMove/unique_name.exp.json index 6d3a8542d..7f3a853d2 100644 --- a/testdata/d2oracle/TestMove/unique_name.exp.json +++ b/testdata/d2oracle/TestMove/unique_name.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/unique_name.d2,0:0:0-6:0:23", "nodes": [ diff --git a/testdata/d2oracle/TestMove/unique_name_with_references.exp.json b/testdata/d2oracle/TestMove/unique_name_with_references.exp.json index 2543b2824..d28c3b420 100644 --- a/testdata/d2oracle/TestMove/unique_name_with_references.exp.json +++ b/testdata/d2oracle/TestMove/unique_name_with_references.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestMove/unique_name_with_references.d2,0:0:0-6:0:30", "nodes": [ diff --git a/testdata/d2oracle/TestRename/arrows.exp.json b/testdata/d2oracle/TestRename/arrows.exp.json index e41966b64..d24981b23 100644 --- a/testdata/d2oracle/TestRename/arrows.exp.json +++ b/testdata/d2oracle/TestRename/arrows.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestRename/arrows.d2,0:0:0-1:0:7", "nodes": [ diff --git a/testdata/d2oracle/TestRename/arrows_chain.exp.json b/testdata/d2oracle/TestRename/arrows_chain.exp.json index f39e8e331..e4a145958 100644 --- a/testdata/d2oracle/TestRename/arrows_chain.exp.json +++ b/testdata/d2oracle/TestRename/arrows_chain.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestRename/arrows_chain.d2,0:0:0-1:0:18", "nodes": [ diff --git a/testdata/d2oracle/TestRename/arrows_complex.exp.json b/testdata/d2oracle/TestRename/arrows_complex.exp.json index ceaeb1939..3a0b0e7fd 100644 --- a/testdata/d2oracle/TestRename/arrows_complex.exp.json +++ b/testdata/d2oracle/TestRename/arrows_complex.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestRename/arrows_complex.d2,0:0:0-1:0:29", "nodes": [ diff --git a/testdata/d2oracle/TestRename/arrows_trim_common.exp.json b/testdata/d2oracle/TestRename/arrows_trim_common.exp.json index a8b23a0e9..82bae106f 100644 --- a/testdata/d2oracle/TestRename/arrows_trim_common.exp.json +++ b/testdata/d2oracle/TestRename/arrows_trim_common.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestRename/arrows_trim_common.d2,0:0:0-1:0:22", "nodes": [ diff --git a/testdata/d2oracle/TestRename/arrows_trim_common_2.exp.json b/testdata/d2oracle/TestRename/arrows_trim_common_2.exp.json index 10857e4ec..6db44d5f8 100644 --- a/testdata/d2oracle/TestRename/arrows_trim_common_2.exp.json +++ b/testdata/d2oracle/TestRename/arrows_trim_common_2.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestRename/arrows_trim_common_2.d2,0:0:0-1:0:27", "nodes": [ diff --git a/testdata/d2oracle/TestRename/complex_edge_1.exp.json b/testdata/d2oracle/TestRename/complex_edge_1.exp.json index 3da52bb89..f0f162256 100644 --- a/testdata/d2oracle/TestRename/complex_edge_1.exp.json +++ b/testdata/d2oracle/TestRename/complex_edge_1.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestRename/complex_edge_1.d2,0:0:0-1:0:30", "nodes": [ diff --git a/testdata/d2oracle/TestRename/complex_edge_2.exp.json b/testdata/d2oracle/TestRename/complex_edge_2.exp.json index 86105711f..b01784f5f 100644 --- a/testdata/d2oracle/TestRename/complex_edge_2.exp.json +++ b/testdata/d2oracle/TestRename/complex_edge_2.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestRename/complex_edge_2.d2,0:0:0-1:0:31", "nodes": [ diff --git a/testdata/d2oracle/TestRename/conflict.exp.json b/testdata/d2oracle/TestRename/conflict.exp.json index a09bd8615..5252e87c1 100644 --- a/testdata/d2oracle/TestRename/conflict.exp.json +++ b/testdata/d2oracle/TestRename/conflict.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestRename/conflict.d2,0:0:0-2:0:8", "nodes": [ diff --git a/testdata/d2oracle/TestRename/conflict_2.exp.json b/testdata/d2oracle/TestRename/conflict_2.exp.json index 087cd96a7..9861dedd8 100644 --- a/testdata/d2oracle/TestRename/conflict_2.exp.json +++ b/testdata/d2oracle/TestRename/conflict_2.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestRename/conflict_2.d2,0:0:0-4:0:21", "nodes": [ diff --git a/testdata/d2oracle/TestRename/conflict_with_dots.exp.json b/testdata/d2oracle/TestRename/conflict_with_dots.exp.json index 79e6458c0..f7aeff695 100644 --- a/testdata/d2oracle/TestRename/conflict_with_dots.exp.json +++ b/testdata/d2oracle/TestRename/conflict_with_dots.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestRename/conflict_with_dots.d2,0:0:0-2:0:14", "nodes": [ diff --git a/testdata/d2oracle/TestRename/container.exp.json b/testdata/d2oracle/TestRename/container.exp.json index ebcfb5eaa..087ca3c1f 100644 --- a/testdata/d2oracle/TestRename/container.exp.json +++ b/testdata/d2oracle/TestRename/container.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestRename/container.d2,0:0:0-12:0:235", "nodes": [ diff --git a/testdata/d2oracle/TestRename/edges.exp.json b/testdata/d2oracle/TestRename/edges.exp.json index 206fb1380..58c135e78 100644 --- a/testdata/d2oracle/TestRename/edges.exp.json +++ b/testdata/d2oracle/TestRename/edges.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestRename/edges.d2,0:0:0-5:0:74", "nodes": [ diff --git a/testdata/d2oracle/TestRename/flat.exp.json b/testdata/d2oracle/TestRename/flat.exp.json index 45509c8ea..7320fc13c 100644 --- a/testdata/d2oracle/TestRename/flat.exp.json +++ b/testdata/d2oracle/TestRename/flat.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestRename/flat.d2,0:0:0-1:0:6", "nodes": [ diff --git a/testdata/d2oracle/TestRename/generated.exp.json b/testdata/d2oracle/TestRename/generated.exp.json index f2e7999e4..3c579e170 100644 --- a/testdata/d2oracle/TestRename/generated.exp.json +++ b/testdata/d2oracle/TestRename/generated.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestRename/generated.d2,0:0:0-1:0:7", "nodes": [ diff --git a/testdata/d2oracle/TestRename/near.exp.json b/testdata/d2oracle/TestRename/near.exp.json index 18b232744..872d8157d 100644 --- a/testdata/d2oracle/TestRename/near.exp.json +++ b/testdata/d2oracle/TestRename/near.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestRename/near.d2,0:0:0-4:0:19", "nodes": [ diff --git a/testdata/d2oracle/TestRename/nested.exp.json b/testdata/d2oracle/TestRename/nested.exp.json index a1fbc9dc1..23130b5ff 100644 --- a/testdata/d2oracle/TestRename/nested.exp.json +++ b/testdata/d2oracle/TestRename/nested.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestRename/nested.d2,0:0:0-4:0:61", "nodes": [ diff --git a/testdata/d2oracle/TestSet/base.exp.json b/testdata/d2oracle/TestSet/base.exp.json index 937c0c25e..40751dbdf 100644 --- a/testdata/d2oracle/TestSet/base.exp.json +++ b/testdata/d2oracle/TestSet/base.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/base.d2,0:0:0-1:0:7", "nodes": [ diff --git a/testdata/d2oracle/TestSet/block_string_multiline.exp.json b/testdata/d2oracle/TestSet/block_string_multiline.exp.json index 9ef7f779c..ca6b20dcc 100644 --- a/testdata/d2oracle/TestSet/block_string_multiline.exp.json +++ b/testdata/d2oracle/TestSet/block_string_multiline.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/block_string_multiline.d2,0:0:0-5:0:146", "nodes": [ diff --git a/testdata/d2oracle/TestSet/block_string_oneline.exp.json b/testdata/d2oracle/TestSet/block_string_oneline.exp.json index e34f67274..822f69bc4 100644 --- a/testdata/d2oracle/TestSet/block_string_oneline.exp.json +++ b/testdata/d2oracle/TestSet/block_string_oneline.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/block_string_oneline.d2,0:0:0-1:0:31", "nodes": [ diff --git a/testdata/d2oracle/TestSet/edge.exp.json b/testdata/d2oracle/TestSet/edge.exp.json index 7dd362d35..1a3dac238 100644 --- a/testdata/d2oracle/TestSet/edge.exp.json +++ b/testdata/d2oracle/TestSet/edge.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/edge.d2,0:0:0-1:0:12", "nodes": [ diff --git a/testdata/d2oracle/TestSet/edge_append_style.exp.json b/testdata/d2oracle/TestSet/edge_append_style.exp.json index df73c9e8c..5705a640f 100644 --- a/testdata/d2oracle/TestSet/edge_append_style.exp.json +++ b/testdata/d2oracle/TestSet/edge_append_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/edge_append_style.d2,0:0:0-1:0:31", "nodes": [ diff --git a/testdata/d2oracle/TestSet/edge_chain.exp.json b/testdata/d2oracle/TestSet/edge_chain.exp.json index 38a955f54..9eeadba7e 100644 --- a/testdata/d2oracle/TestSet/edge_chain.exp.json +++ b/testdata/d2oracle/TestSet/edge_chain.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/edge_chain.d2,0:0:0-4:0:93", "nodes": [ diff --git a/testdata/d2oracle/TestSet/edge_chain_append_style.exp.json b/testdata/d2oracle/TestSet/edge_chain_append_style.exp.json index 352c03065..f075b2f9e 100644 --- a/testdata/d2oracle/TestSet/edge_chain_append_style.exp.json +++ b/testdata/d2oracle/TestSet/edge_chain_append_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/edge_chain_append_style.d2,0:0:0-2:0:45", "nodes": [ diff --git a/testdata/d2oracle/TestSet/edge_chain_existing_style.exp.json b/testdata/d2oracle/TestSet/edge_chain_existing_style.exp.json index 4da734c2f..0b0854fa3 100644 --- a/testdata/d2oracle/TestSet/edge_chain_existing_style.exp.json +++ b/testdata/d2oracle/TestSet/edge_chain_existing_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/edge_chain_existing_style.d2,0:0:0-3:0:76", "nodes": [ diff --git a/testdata/d2oracle/TestSet/edge_chain_nested_set.exp.json b/testdata/d2oracle/TestSet/edge_chain_nested_set.exp.json index ec5796b6a..58298d21c 100644 --- a/testdata/d2oracle/TestSet/edge_chain_nested_set.exp.json +++ b/testdata/d2oracle/TestSet/edge_chain_nested_set.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/edge_chain_nested_set.d2,0:0:0-4:0:63", "nodes": [ diff --git a/testdata/d2oracle/TestSet/edge_flat_merge_arrowhead.exp.json b/testdata/d2oracle/TestSet/edge_flat_merge_arrowhead.exp.json index 36c828de4..86cc8d45a 100644 --- a/testdata/d2oracle/TestSet/edge_flat_merge_arrowhead.exp.json +++ b/testdata/d2oracle/TestSet/edge_flat_merge_arrowhead.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/edge_flat_merge_arrowhead.d2,0:0:0-2:0:55", "nodes": [ diff --git a/testdata/d2oracle/TestSet/edge_index_case.exp.json b/testdata/d2oracle/TestSet/edge_index_case.exp.json index 658fde41f..3149173d3 100644 --- a/testdata/d2oracle/TestSet/edge_index_case.exp.json +++ b/testdata/d2oracle/TestSet/edge_index_case.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/edge_index_case.d2,0:0:0-6:0:54", "nodes": [ diff --git a/testdata/d2oracle/TestSet/edge_index_merge_style.exp.json b/testdata/d2oracle/TestSet/edge_index_merge_style.exp.json index d8dcf3782..d7aa0245e 100644 --- a/testdata/d2oracle/TestSet/edge_index_merge_style.exp.json +++ b/testdata/d2oracle/TestSet/edge_index_merge_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/edge_index_merge_style.d2,0:0:0-2:0:43", "nodes": [ diff --git a/testdata/d2oracle/TestSet/edge_index_nested.exp.json b/testdata/d2oracle/TestSet/edge_index_nested.exp.json index 3c4f39bc9..68f7861de 100644 --- a/testdata/d2oracle/TestSet/edge_index_nested.exp.json +++ b/testdata/d2oracle/TestSet/edge_index_nested.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/edge_index_nested.d2,0:0:0-3:0:25", "nodes": [ diff --git a/testdata/d2oracle/TestSet/edge_key_and_key.exp.json b/testdata/d2oracle/TestSet/edge_key_and_key.exp.json index de50d761d..4c7fc0bce 100644 --- a/testdata/d2oracle/TestSet/edge_key_and_key.exp.json +++ b/testdata/d2oracle/TestSet/edge_key_and_key.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/edge_key_and_key.d2,0:0:0-2:0:37", "nodes": [ diff --git a/testdata/d2oracle/TestSet/edge_label.exp.json b/testdata/d2oracle/TestSet/edge_label.exp.json index f723ae78e..b43925f2f 100644 --- a/testdata/d2oracle/TestSet/edge_label.exp.json +++ b/testdata/d2oracle/TestSet/edge_label.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/edge_label.d2,0:0:0-1:0:36", "nodes": [ diff --git a/testdata/d2oracle/TestSet/edge_merge_arrowhead.exp.json b/testdata/d2oracle/TestSet/edge_merge_arrowhead.exp.json index 5ab8b6250..32b8fdf8e 100644 --- a/testdata/d2oracle/TestSet/edge_merge_arrowhead.exp.json +++ b/testdata/d2oracle/TestSet/edge_merge_arrowhead.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/edge_merge_arrowhead.d2,0:0:0-6:0:70", "nodes": [ diff --git a/testdata/d2oracle/TestSet/edge_merge_style.exp.json b/testdata/d2oracle/TestSet/edge_merge_style.exp.json index 005921a4e..72a0a788e 100644 --- a/testdata/d2oracle/TestSet/edge_merge_style.exp.json +++ b/testdata/d2oracle/TestSet/edge_merge_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/edge_merge_style.d2,0:0:0-6:0:63", "nodes": [ diff --git a/testdata/d2oracle/TestSet/edge_nested_label_set.exp.json b/testdata/d2oracle/TestSet/edge_nested_label_set.exp.json index 4cb7db16e..f6b9d8b7b 100644 --- a/testdata/d2oracle/TestSet/edge_nested_label_set.exp.json +++ b/testdata/d2oracle/TestSet/edge_nested_label_set.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/edge_nested_label_set.d2,0:0:0-3:0:23", "nodes": [ diff --git a/testdata/d2oracle/TestSet/edge_nested_style_set.exp.json b/testdata/d2oracle/TestSet/edge_nested_style_set.exp.json index e1940b0cb..9bae3fe9e 100644 --- a/testdata/d2oracle/TestSet/edge_nested_style_set.exp.json +++ b/testdata/d2oracle/TestSet/edge_nested_style_set.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/edge_nested_style_set.d2,0:0:0-3:0:46", "nodes": [ diff --git a/testdata/d2oracle/TestSet/edge_replace_arrowhead.exp.json b/testdata/d2oracle/TestSet/edge_replace_arrowhead.exp.json index 2099babb4..a2acc09cb 100644 --- a/testdata/d2oracle/TestSet/edge_replace_arrowhead.exp.json +++ b/testdata/d2oracle/TestSet/edge_replace_arrowhead.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/edge_replace_arrowhead.d2,0:0:0-1:0:42", "nodes": [ diff --git a/testdata/d2oracle/TestSet/edge_replace_arrowhead_indexed.exp.json b/testdata/d2oracle/TestSet/edge_replace_arrowhead_indexed.exp.json index 17bc34333..bafe8d682 100644 --- a/testdata/d2oracle/TestSet/edge_replace_arrowhead_indexed.exp.json +++ b/testdata/d2oracle/TestSet/edge_replace_arrowhead_indexed.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/edge_replace_arrowhead_indexed.d2,0:0:0-2:0:51", "nodes": [ diff --git a/testdata/d2oracle/TestSet/edge_set_arrowhead.exp.json b/testdata/d2oracle/TestSet/edge_set_arrowhead.exp.json index 0c3855cc9..baaf45fcb 100644 --- a/testdata/d2oracle/TestSet/edge_set_arrowhead.exp.json +++ b/testdata/d2oracle/TestSet/edge_set_arrowhead.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/edge_set_arrowhead.d2,0:0:0-1:0:42", "nodes": [ diff --git a/testdata/d2oracle/TestSet/expanded_map_style.exp.json b/testdata/d2oracle/TestSet/expanded_map_style.exp.json index 313881f23..4b0dd5e66 100644 --- a/testdata/d2oracle/TestSet/expanded_map_style.exp.json +++ b/testdata/d2oracle/TestSet/expanded_map_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/expanded_map_style.d2,0:0:0-5:0:44", "nodes": [ diff --git a/testdata/d2oracle/TestSet/icon.exp.json b/testdata/d2oracle/TestSet/icon.exp.json index 512580e72..554bee4a4 100644 --- a/testdata/d2oracle/TestSet/icon.exp.json +++ b/testdata/d2oracle/TestSet/icon.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/icon.d2,0:0:0-1:0:68", "nodes": [ diff --git a/testdata/d2oracle/TestSet/inline_style.exp.json b/testdata/d2oracle/TestSet/inline_style.exp.json index 5bf597a34..d35e5f507 100644 --- a/testdata/d2oracle/TestSet/inline_style.exp.json +++ b/testdata/d2oracle/TestSet/inline_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/inline_style.d2,0:0:0-4:0:51", "nodes": [ diff --git a/testdata/d2oracle/TestSet/label.exp.json b/testdata/d2oracle/TestSet/label.exp.json index 1f5153d22..fa0485116 100644 --- a/testdata/d2oracle/TestSet/label.exp.json +++ b/testdata/d2oracle/TestSet/label.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/label.d2,0:0:0-1:0:88", "nodes": [ diff --git a/testdata/d2oracle/TestSet/label_primary.exp.json b/testdata/d2oracle/TestSet/label_primary.exp.json index 39dc2bf45..aa680310a 100644 --- a/testdata/d2oracle/TestSet/label_primary.exp.json +++ b/testdata/d2oracle/TestSet/label_primary.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/label_primary.d2,0:0:0-3:0:63", "nodes": [ diff --git a/testdata/d2oracle/TestSet/label_replace.exp.json b/testdata/d2oracle/TestSet/label_replace.exp.json index 52c0452b2..c4061c809 100644 --- a/testdata/d2oracle/TestSet/label_replace.exp.json +++ b/testdata/d2oracle/TestSet/label_replace.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/label_replace.d2,0:0:0-1:0:88", "nodes": [ diff --git a/testdata/d2oracle/TestSet/label_unset.exp.json b/testdata/d2oracle/TestSet/label_unset.exp.json index 9a9cbe0d6..b9105e16a 100644 --- a/testdata/d2oracle/TestSet/label_unset.exp.json +++ b/testdata/d2oracle/TestSet/label_unset.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/label_unset.d2,0:0:0-1:0:7", "nodes": [ diff --git a/testdata/d2oracle/TestSet/map_key_missing.exp.json b/testdata/d2oracle/TestSet/map_key_missing.exp.json index 86d7f6a1a..3a1447d10 100644 --- a/testdata/d2oracle/TestSet/map_key_missing.exp.json +++ b/testdata/d2oracle/TestSet/map_key_missing.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/map_key_missing.d2,0:0:0-1:0:83", "nodes": [ diff --git a/testdata/d2oracle/TestSet/nested_alex.exp.json b/testdata/d2oracle/TestSet/nested_alex.exp.json index 8b3ed2f81..ffbbad25c 100644 --- a/testdata/d2oracle/TestSet/nested_alex.exp.json +++ b/testdata/d2oracle/TestSet/nested_alex.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/nested_alex.d2,0:0:0-5:0:202", "nodes": [ diff --git a/testdata/d2oracle/TestSet/new_style.exp.json b/testdata/d2oracle/TestSet/new_style.exp.json index acb2cadba..492cc2ff7 100644 --- a/testdata/d2oracle/TestSet/new_style.exp.json +++ b/testdata/d2oracle/TestSet/new_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/new_style.d2,0:0:0-1:0:29", "nodes": [ diff --git a/testdata/d2oracle/TestSet/replace_arrowhead.exp.json b/testdata/d2oracle/TestSet/replace_arrowhead.exp.json index dcc2c7bdc..2611bd96f 100644 --- a/testdata/d2oracle/TestSet/replace_arrowhead.exp.json +++ b/testdata/d2oracle/TestSet/replace_arrowhead.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/replace_arrowhead.d2,0:0:0-3:0:45", "nodes": [ diff --git a/testdata/d2oracle/TestSet/replace_arrowhead_map.exp.json b/testdata/d2oracle/TestSet/replace_arrowhead_map.exp.json index dcabb24e7..d4b4a748f 100644 --- a/testdata/d2oracle/TestSet/replace_arrowhead_map.exp.json +++ b/testdata/d2oracle/TestSet/replace_arrowhead_map.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/replace_arrowhead_map.d2,0:0:0-5:0:56", "nodes": [ diff --git a/testdata/d2oracle/TestSet/replace_dimensions.exp.json b/testdata/d2oracle/TestSet/replace_dimensions.exp.json index cfb65d1c3..e03a869f4 100644 --- a/testdata/d2oracle/TestSet/replace_dimensions.exp.json +++ b/testdata/d2oracle/TestSet/replace_dimensions.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/replace_dimensions.d2,0:0:0-3:0:25", "nodes": [ diff --git a/testdata/d2oracle/TestSet/replace_edge_style.exp.json b/testdata/d2oracle/TestSet/replace_edge_style.exp.json index 0b015d938..5e935e602 100644 --- a/testdata/d2oracle/TestSet/replace_edge_style.exp.json +++ b/testdata/d2oracle/TestSet/replace_edge_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/replace_edge_style.d2,0:0:0-4:0:59", "nodes": [ diff --git a/testdata/d2oracle/TestSet/replace_edge_style_map.exp.json b/testdata/d2oracle/TestSet/replace_edge_style_map.exp.json index 5bacdac19..b40c829dc 100644 --- a/testdata/d2oracle/TestSet/replace_edge_style_map.exp.json +++ b/testdata/d2oracle/TestSet/replace_edge_style_map.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/replace_edge_style_map.d2,0:0:0-5:0:46", "nodes": [ diff --git a/testdata/d2oracle/TestSet/replace_link.exp.json b/testdata/d2oracle/TestSet/replace_link.exp.json index a6ad42efe..c5a7c10d1 100644 --- a/testdata/d2oracle/TestSet/replace_link.exp.json +++ b/testdata/d2oracle/TestSet/replace_link.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/replace_link.d2,0:0:0-3:0:38", "nodes": [ diff --git a/testdata/d2oracle/TestSet/replace_position.exp.json b/testdata/d2oracle/TestSet/replace_position.exp.json index 8a0cfec54..46cfc6037 100644 --- a/testdata/d2oracle/TestSet/replace_position.exp.json +++ b/testdata/d2oracle/TestSet/replace_position.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/replace_position.d2,0:0:0-5:0:47", "nodes": [ diff --git a/testdata/d2oracle/TestSet/replace_shape.exp.json b/testdata/d2oracle/TestSet/replace_shape.exp.json index 76ff7277d..8b1ab7ff5 100644 --- a/testdata/d2oracle/TestSet/replace_shape.exp.json +++ b/testdata/d2oracle/TestSet/replace_shape.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/replace_shape.d2,0:0:0-1:0:21", "nodes": [ diff --git a/testdata/d2oracle/TestSet/replace_style.exp.json b/testdata/d2oracle/TestSet/replace_style.exp.json index 5c1ca8d60..d555df516 100644 --- a/testdata/d2oracle/TestSet/replace_style.exp.json +++ b/testdata/d2oracle/TestSet/replace_style.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/replace_style.d2,0:0:0-1:0:26", "nodes": [ diff --git a/testdata/d2oracle/TestSet/replace_style_edgecase.exp.json b/testdata/d2oracle/TestSet/replace_style_edgecase.exp.json index 0b4762d81..88e135c5e 100644 --- a/testdata/d2oracle/TestSet/replace_style_edgecase.exp.json +++ b/testdata/d2oracle/TestSet/replace_style_edgecase.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/replace_style_edgecase.d2,0:0:0-2:0:52", "nodes": [ diff --git a/testdata/d2oracle/TestSet/replace_tooltip.exp.json b/testdata/d2oracle/TestSet/replace_tooltip.exp.json index 7aab2f7e2..a56f85013 100644 --- a/testdata/d2oracle/TestSet/replace_tooltip.exp.json +++ b/testdata/d2oracle/TestSet/replace_tooltip.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/replace_tooltip.d2,0:0:0-3:0:25", "nodes": [ diff --git a/testdata/d2oracle/TestSet/set_dimensions.exp.json b/testdata/d2oracle/TestSet/set_dimensions.exp.json index 073461ca1..88268bd77 100644 --- a/testdata/d2oracle/TestSet/set_dimensions.exp.json +++ b/testdata/d2oracle/TestSet/set_dimensions.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/set_dimensions.d2,0:0:0-1:0:21", "nodes": [ diff --git a/testdata/d2oracle/TestSet/set_position.exp.json b/testdata/d2oracle/TestSet/set_position.exp.json index 321da083b..eec94f364 100644 --- a/testdata/d2oracle/TestSet/set_position.exp.json +++ b/testdata/d2oracle/TestSet/set_position.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/set_position.d2,0:0:0-1:0:19", "nodes": [ diff --git a/testdata/d2oracle/TestSet/set_tooltip.exp.json b/testdata/d2oracle/TestSet/set_tooltip.exp.json index 15cd02ebd..4eb5f8d32 100644 --- a/testdata/d2oracle/TestSet/set_tooltip.exp.json +++ b/testdata/d2oracle/TestSet/set_tooltip.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/set_tooltip.d2,0:0:0-1:0:21", "nodes": [ diff --git a/testdata/d2oracle/TestSet/shape.exp.json b/testdata/d2oracle/TestSet/shape.exp.json index 52c35106f..0e70324e8 100644 --- a/testdata/d2oracle/TestSet/shape.exp.json +++ b/testdata/d2oracle/TestSet/shape.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/shape.d2,0:0:0-1:0:24", "nodes": [ diff --git a/testdata/d2oracle/TestSet/shape_nested_style_set.exp.json b/testdata/d2oracle/TestSet/shape_nested_style_set.exp.json index d4db3fa52..60376017b 100644 --- a/testdata/d2oracle/TestSet/shape_nested_style_set.exp.json +++ b/testdata/d2oracle/TestSet/shape_nested_style_set.exp.json @@ -1,6 +1,7 @@ { "graph": { "name": "", + "isFolderOnly": false, "ast": { "range": "d2/testdata/d2oracle/TestSet/shape_nested_style_set.d2,0:0:0-1:0:24", "nodes": [