JintExportAllDeclaration.cs 439 B

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