1 2 3 4 5 6 7 8 9 10
  x3   x3 x3   x3 x42 x42 x3
// Copyright 2018-2025 the Deno authors. MIT license. import { BaseHandler } from "./base_handler.ts"; export class TestHandler extends BaseHandler { messages: string[] = []; override log(msg: string) { this.messages.push(msg); } }