// debug messages import { OutputChannel, window } from "vscode"; // eslint-disable-next-line @typescript-eslint/no-var-requires const ver = require("@quodatum/xqlint").version; const _channel:OutputChannel = window.createOutputChannel("BaseX"); function logdate(){ return (new Date()).toISOString().slice(0, 19).replace(/-/g, "/").replace("T", " "); } const replacerFunc = () => { const visited = new WeakSet(); // eslint-disable-next-line @typescript-eslint/no-explicit-any return (key :any, value :any) => { if (typeof value === "object" && value !== null) { if (visited.has(value)) { return; } visited.add(value); } return value; }; }; export function dump(obj :object) { return JSON.stringify(obj,replacerFunc(),1) } export class channel { static log(msg: string) :void{ _channel.appendLine("["+logdate()+"] "+msg) } static appendLine(msg: string) :void{ _channel.appendLine(msg) } static dir(obj: object) :void{ _channel.appendLine(dump(obj)) } static show() :void{ _channel.show } } channel.log("started, XQLint version: "+ver); _channel.show