BlockStatement.cs 164 B

123456789
  1. using System.Collections.Generic;
  2. namespace Jint.Parser.Ast
  3. {
  4. public class BlockStatement : Statement
  5. {
  6. public IEnumerable<Statement> Body;
  7. }
  8. }