Esempio n. 1
0
 public void AcceptThrow(ThrowStatement stmt)
 {
     throw new NotConvertibleToInlineExpressionException();
 }
Esempio n. 2
0
 public virtual void Throw(Expression expr)
 {
     ThrowStatement stmt = new ThrowStatement()
     {
         ThrowExpr = expr
     };
     _cstack.Peek().Statements.Add(stmt);
 }
Esempio n. 3
0
 public void AcceptThrow(ThrowStatement stmt)
 {
 }
Esempio n. 4
0
 public void AcceptThrow(ThrowStatement stmt)
 {
     stmt.ThrowExpr = SubstExpression(stmt.ThrowExpr);
 }
Esempio n. 5
0
 public void AcceptThrow(ThrowStatement stmt)
 {
     stmt.ThrowExpr.CheckConsistency();
 }
Esempio n. 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;
 }
Esempio n. 10
0
 public void AcceptThrow(ThrowStatement stmt)
 {
     _tw.WriteLine("-- throw not supported");
 }