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