SwitchCase.cs 199 B

12345678910
  1. using System.Collections.Generic;
  2. namespace Jint.Parser.Ast
  3. {
  4. public class SwitchCase : SyntaxNode
  5. {
  6. public Expression Test;
  7. public IEnumerable<Statement> Consequent;
  8. }
  9. }