コード例 #1
0
ファイル: Step.cs プロジェクト: larsw/storyteller
        public Step WithChildren(string childKey, params Step[] steps)
        {
            StepLeaf leaf = LeafFor(childKey);

            steps.Each(leaf.Add);
            return(this);
        }
コード例 #2
0
ファイル: Tokens.cs プロジェクト: larsw/storyteller
 private void readLeaf(string name, StepLeaf leaf)
 {
     withName(name, () => { leaf.AllSteps().Each(RunStep); });
 }