Esempio n. 1
0
        private static LookaroundNode CreateWithType(LookaroundNode.Types type)
        {
            var node = new LookaroundNode();

            node.InputGroupType.Value = type;
            return(node);
        }
Esempio n. 2
0
 private static LookaroundNode WithContents(this LookaroundNode node, Node contents)
 {
     node.Input.ConnectedNode = contents;
     return(node);
 }