class Context {
final List list = [];
operator[]= (int i, value) => list[i] = value;
}
Generates a lot of let expressions in the method body of operator[]=. I think this may be a common pattern, and that this is a void context, so it may be worth tweaking this.
I've noticed that code like this:
Generates a lot of let expressions in the method body of operator[]=. I think this may be a common pattern, and that this is a void context, so it may be worth tweaking this.