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