Add layer only mode for user layouts

This commit is contained in:
Pieter Vander Vennet 2022-02-08 00:56:47 +01:00
parent 77e686d9be
commit 62272774bc
2 changed files with 20 additions and 1 deletions

View file

@ -64,7 +64,7 @@ export class OnEvery<X, T> extends DesugaringStep<T> {
private readonly step: DesugaringStep<X>;
constructor(key: string, step: DesugaringStep<X>) {
super("Applies " + step.constructor.name + " onto every object of the list `key`", [key]);
super("Applies " + step.name + " onto every object of the list `key`", [key], "OnEvery("+step.name+")");
this.step = step;
this.key = key;
}