TryStatement.cs 291 B

123456789101112
  1. using System.Collections.Generic;
  2. namespace Jint.Parser.Ast
  3. {
  4. public class TryStatement : Statement
  5. {
  6. public Statement Block;
  7. public IEnumerable<Statement> GuardedHandlers;
  8. public IEnumerable<CatchClause> Handlers;
  9. public Statement Finalizer;
  10. }
  11. }