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