...

Text file src/cuelang.org/go/tools/flow/testdata/concrete.txtar

Documentation: cuelang.org/go/tools/flow/testdata

     1#IgnoreConcrete: true
     2-- in.cue --
     3root: {
     4	t1: {
     5		$id:   "sequenced"
     6		seq:   1
     7		text:  t2.value
     8		value: "v"
     9	}
    10	t2: {
    11		$id:   "sequenced"
    12		seq:   2
    13		text:  t1.value
    14		value: "v"
    15	}
    16}
    17-- out/run/errors --
    18-- out/run/t0 --
    19graph TD
    20  t0("root.t1 [Ready]")
    21  t1("root.t2 [Ready]")
    22
    23-- out/run/t1 --
    24graph TD
    25  t0("root.t1 [Terminated]")
    26  t1("root.t2 [Running]")
    27
    28-- out/run/t1/value --
    29{
    30	$id:   "sequenced"
    31	seq:   1
    32	text:  "v"
    33	value: "v"
    34}
    35-- out/run/t2 --
    36graph TD
    37  t0("root.t1 [Terminated]")
    38  t1("root.t2 [Terminated]")
    39
    40-- out/run/t2/value --
    41{
    42	$id:   "sequenced"
    43	seq:   2
    44	text:  "v"
    45	value: "v"
    46}
    47-- out/run/t1/stats --
    48Leaks:  0
    49Freed:  0
    50Reused: 0
    51Allocs: 0
    52Retain: 0
    53
    54Unifications: 0
    55Conjuncts:    0
    56Disjuncts:    0
    57-- out/run/t2/stats --
    58Leaks:  0
    59Freed:  0
    60Reused: 0
    61Allocs: 0
    62Retain: 0
    63
    64Unifications: 0
    65Conjuncts:    0
    66Disjuncts:    0
    67-- out/run/stats/totals --
    68Leaks:  0
    69Freed:  0
    70Reused: 0
    71Allocs: 0
    72Retain: 0
    73
    74Unifications: 0
    75Conjuncts:    0
    76Disjuncts:    0

View as plain text