Exemplo n.º 1
0
        private void HandleConditionBlock(string l)
        {
            var b = new ConditionBlock <TState>(l);

            PushBlock(b);
        }
Exemplo n.º 2
0
 internal ElseBlock(ConditionBlock <TState> conditionBlock)
 {
     this.ConditionBlock = conditionBlock;
 }