1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
#IgnoreConcrete: true
#InferTasks: true
-- in.cue --
package p
import "tool/cli"
root: test: cli.Print & { text: data.str }
data: {
str: ({in: 3, out: "0\(in)"}).out
}
-- out/run/errors --
-- out/run/t0 --
graph TD
t0("root.test [Ready]")
-- out/run/t1 --
graph TD
t0("root.test [Terminated]")
-- out/run/t1/value --
{
$id: "tool/cli.Print"
stdout: "foo"
text: "03"
}
-- out/run/t1/stats --
Leaks: 8
Freed: 20
Reused: 16
Allocs: 12
Retain: 24
Unifications: 26
Conjuncts: 34
Disjuncts: 38
-- out/run/stats/totals --
Leaks: 8
Freed: 20
Reused: 16
Allocs: 12
Retain: 24
Unifications: 26
Conjuncts: 34
Disjuncts: 38
-- out/run/t2 --
graph TD
t0("root.prepare [Terminated]")
t1("root.run [Terminated]")
t1-->t0
-- out/run/t2/value --
{
$id: "run"
stdout: "foo"
env: {
input: "foo"
}
}
-- out/run/t2/stats --
Leaks: 0
Freed: 12
Reused: 12
Allocs: 0
Retain: 0
Unifications: 12
Conjuncts: 20
Disjuncts: 12
|