Exemple #1
0
 public LogicalEndOfFunction CreateEndOfFunction()
 {
     if (EndOfFunction != null)
     {
         throw new InvalidOperationException();
     }
     EndOfFunction = new LogicalEndOfFunction(this);
     return(EndOfFunction);
 }
Exemple #2
0
 public LogicalDefineFunction(InstructionBase instruction)
 {
     InnerInstruction = instruction;
     Parameters       = InnerInstruction.Parameters.SkipLast(1).ToList();
     EndOfFunction    = null;
 }