Add layer only mode for user layouts
This commit is contained in:
parent
77e686d9be
commit
62272774bc
2 changed files with 20 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue