JintExportAllDeclaration.cs 459 B

12345678910111213141516171819
  1. using Esprima.Ast;
  2. namespace Jint.Runtime.Interpreter.Statements;
  3. internal sealed class JintExportAllDeclaration : JintStatement<ExportAllDeclaration>
  4. {
  5. public JintExportAllDeclaration(ExportAllDeclaration statement) : base(statement)
  6. {
  7. }
  8. protected override void Initialize(EvaluationContext context)
  9. {
  10. }
  11. protected override Completion ExecuteInternal(EvaluationContext context)
  12. {
  13. return Completion.Empty();
  14. }
  15. }