...

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

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

     1-- in.cue --
     2root: {
     3	a: {
     4		$id: "failure"
     5		val: "foo"
     6		out: string
     7	}
     8	b: {
     9		$id:    "valToOut"
    10		$after: a
    11		val:    "bar"
    12		out:    string
    13	}
    14}
    15-- out/run/errors --
    16error: task failed: failure
    17-- out/run/t0 --
    18graph TD
    19  t0("root.a [Ready]")
    20  t1("root.b [Waiting]")
    21  t1-->t0
    22
    23-- out/run/stats/totals --
    24Leaks:  0
    25Freed:  0
    26Reused: 0
    27Allocs: 0
    28Retain: 0
    29
    30Unifications: 0
    31Conjuncts:    0
    32Disjuncts:    0

View as plain text