28 lines
430 B
Plaintext
28 lines
430 B
Plaintext
// comment a
|
|
Tree("Root") {
|
|
// comment c
|
|
Composite (Marathon) {
|
|
// comment
|
|
RunTree("SubTree")
|
|
Composite (Sequence) {
|
|
Test.CountToNumber("a.a", 2)
|
|
RunTree("SubTree")
|
|
}
|
|
}
|
|
}
|
|
|
|
Tree("SubTree") {
|
|
Composite (Sequence) {
|
|
RunTree("SubSubTree")
|
|
Composite (Sequence) {
|
|
Test.CountToNumber("b.a", 3)
|
|
RunTree("SubSubTree")
|
|
}
|
|
}
|
|
}
|
|
|
|
Tree("SubSubTree") {
|
|
Composite (Sequence) {
|
|
Test.CountToNumber("x.b", 4)
|
|
}
|
|
} |