Example #1
0
 public void AcceptGotoCase(GotoCaseStatement stmt)
 {
     throw new NotConvertibleToInlineExpressionException();
 }
Example #2
0
 public void AcceptGotoCase(GotoCaseStatement stmt)
 {
 }
Example #3
0
 public virtual void GotoCase(CaseStatement cstmt, int index)
 {
     GotoCaseStatement gstmt = new GotoCaseStatement()
     {
         CaseStmt = cstmt,
         TargetIndex = index
     };
     _cstack.Peek().Statements.Add(gstmt);
 }
Example #4
0
 public void AcceptGotoCase(GotoCaseStatement stmt)
 {
     stmt.Successor = stmt.CaseStmt.Branches[stmt.TargetIndex];
 }
 public void AcceptGotoCase(GotoCaseStatement stmt)
 {
     _execLeaf = stmt;
 }
Example #6
0
 public void AcceptGotoCase(GotoCaseStatement stmt)
 {
     _tw.WriteLine("-- goto case unsupported");
 }