We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
@default never
@switch (state.mode) { @case ('show') { {{ state.menu }}; } @case ('hide') {} @default never(state); }
is being formatted as
@switch (state.mode) { @case ('show') { {{ state.menu }}; } @case ('hide') {} @default never; }
As you can see the argument of never is dropped.
never
is being formatted as
As you can see the argument of
neveris dropped.