JintExportAllDeclaration.cs 480 B

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