IFunctionDeclaration.cs 298 B

12345678910111213
  1. using System.Collections.Generic;
  2. using Jint.Parser.Ast;
  3. namespace Jint.Parser
  4. {
  5. public interface IFunctionDeclaration : IFunctionScope
  6. {
  7. Identifier Id { get; }
  8. IEnumerable<Identifier> Parameters { get; }
  9. Statement Body { get; }
  10. bool Strict { get; }
  11. }
  12. }