-
-
Notifications
You must be signed in to change notification settings - Fork 708
Labels
A-formatterArea - FormatterArea - Formatter
Description
Input
class F{
#target = null
next (target) {
if (!(#target in this)) return
if (!(target in this)) return
}
}Expect
class F {
#target = null;
next(target) {
if (!(#target in this)) return;
if (!(target in this)) return;
}
}Actual
class F {
#target = null;
next(target) {
if (!#target in this) return;
if (!(target in this)) return;
}
}Parens are needed for #target in this.
Metadata
Metadata
Assignees
Labels
A-formatterArea - FormatterArea - Formatter