// comment a
Tree("Root") {
	// comment b
	Decorator (Repeat) {
		// comment c
		Composite (Marathon) {
			// comment
			RunTree("SubTree")
			Composite (Sequence) {
				Test.CountToNumber("a.a", 3)
				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", 3)
	}
}