Fix: regenerate NSI-logos, should fix regression reported in #2300

This commit is contained in:
Pieter Vander Vennet 2025-06-03 23:47:29 +02:00
parent a858a85879
commit 4744471495
7 changed files with 50745 additions and 50156 deletions

View file

@ -52,7 +52,7 @@ export abstract class Conversion<TIn, TOut> {
throw new Error(
[
"Detected one or more errors, stopping now:",
context.getAll("error").map((e) => e.context.path.join(".") + ": " + e.message),
context.getAll("error").map((e) => `${e.context.path.join(".")} (in operation: ${e.context.operation.join(".")}): ${e.message}`)
].join("\n\t")
)
}
@ -107,7 +107,7 @@ export class Bypass<T> extends DesugaringStep<T> {
private readonly _step: DesugaringStep<T>
constructor(applyIf: (t: T) => boolean, step: DesugaringStep<T>) {
super("Bypass", "Applies the step on the object, if the object satisfies the predicate")
super("Bypass(" + step.name + ")", "Applies the step on the object, if the object satisfies the predicate")
this._applyIf = applyIf
this._step = step
}