"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.mypyOutputPattern = void 0; const r = String.raw; const endLocation = r `(:(?\d+):(?\d+))?`; const location = r `(?(?.+?):(?\d+)(:(?\d+))?${endLocation})`; const code = r `(?: \[(?[\w-]+)\])?`; const mypyOutputLine = r `^${location}: (?\w+): (?.*?)${code}$`; exports.mypyOutputPattern = new RegExp(mypyOutputLine); //# sourceMappingURL=mypy.js.map