StopwatchBenchmark.cs 201 B

123456789
  1. using BenchmarkDotNet.Attributes;
  2. namespace Jint.Benchmark;
  3. [MemoryDiagnoser]
  4. public class StopwatchBenchmark : SingleScriptBenchmark
  5. {
  6. protected override string FileName => "stopwatch.js";
  7. }