EventLoop.cs 180 B

12345678910
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Jint.Runtime
  4. {
  5. internal sealed record EventLoop
  6. {
  7. internal readonly Queue<Action> Events = new();
  8. }
  9. }