Closed
Description
Hi,
Consider the following example:
abstract class Assist {
const Assist();
bool operator >(Object other) => false;
}
class CommandAssist extends Assist {
final CommandDefinition command;
@ov // <-- typing override
const CommandAssist(this.command);
}
when typing @override
, the equality operator is not displayed properly in the list of suggestions and it's not really clear what is being suggested:
