protected override ICode VisitThrow(StmtThrow s) {
     this.NewLine();
     this.js.Append("throw");
     if (s.Expr != null) {
         this.js.Append(" ");
         this.Visit(s.Expr);
     }
     this.js.Append(";");
     return s;
 }
 public DebugView(StmtThrow s) {
     this.Expr = s.Expr;
 }
Exemple #3
0
 public DebugView(StmtThrow s)
 {
     this.Expr = s.Expr;
 }