示例#1
0
 public CatchStatement(TryStatement trystmt, Literal exceptionName)
 {
     this.Try           = trystmt;
     this.ExceptionName = exceptionName;
 }
示例#2
0
 public IteratePositionalStatement(Literal variable, IExpression iter, Literal position)
 {
     this.Variable = variable;
     this.Iterator = iter;
     this.Position = position;
 }
示例#3
0
 public VariableDeclaration(Literal identifer)
 {
     this.Identifer = identifer;
 }