Example #1
0
 public void AcceptThrow(ThrowStatement stmt)
 {
     throw new NotConvertibleToInlineExpressionException();
 }
Example #2
0
 public virtual void Throw(Expression expr)
 {
     ThrowStatement stmt = new ThrowStatement()
     {
         ThrowExpr = expr
     };
     _cstack.Peek().Statements.Add(stmt);
 }
Example #3
0
 public void AcceptThrow(ThrowStatement stmt)
 {
 }
Example #4
0
 public void AcceptThrow(ThrowStatement stmt)
 {
     stmt.ThrowExpr = SubstExpression(stmt.ThrowExpr);
 }
Example #5
0
 public void AcceptThrow(ThrowStatement stmt)
 {
     stmt.ThrowExpr.CheckConsistency();
 }
Example #6
0
 public void AcceptThrow(ThrowStatement stmt)
 {
     stmt.Successor = null;
 }
 public void AcceptThrow(ThrowStatement stmt)
 {
     if (stmt.ThrowExpr != null)
         Resolve(stmt.ThrowExpr);
 }
 public void AcceptThrow(ThrowStatement stmt)
 {
     _execLeaf = stmt;
 }
 public override void AcceptThrow(ThrowStatement stmt)
 {
     Success = false;
 }
Example #10
0
 public void AcceptThrow(ThrowStatement stmt)
 {
     _tw.WriteLine("-- throw not supported");
 }