Inheritance: ICommandWithConstruction
コード例 #1
0
 public void Accept(CloseCondition command)
 {
     _builder.AppendLine("endif");
 }
コード例 #2
0
 public void Accept(CloseCondition command)
 {
     _isEqual = true;
 }
コード例 #3
0
ファイル: Executor.cs プロジェクト: Zhuchenko/creatures
 public void Accept(CloseCondition command)
 {
     _conditions.Pop();
 }
コード例 #4
0
        public void Accept(CloseCondition command)
        {
            if (_conditions.Count == 1)
            {
                _isExecutable = false;
                return;
            }

            _conditions.Pop();
        }