forked from MapComplete/MapComplete
Fix: regenerate NSI-logos, should fix regression reported in #2300
This commit is contained in:
parent
a858a85879
commit
4744471495
7 changed files with 50745 additions and 50156 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue