c4f7afa401
This is the first in a series of two CLs that will change the class `ExpressionPropertyTarget` so that instead of looking up the target's expression info during the call to `_getSsaNode`, it is given the expression info at the time it is constructed. This will help simplify the flow analysis API, by removing the need for it to know about the `Expression` types used by the client. In this first CL, an `expressionInfo` field is added to `ExpressionPropertyTarget`, but the old `expression` field is not yet removed. At the time `_getSsaNode` is called, it looks up the expression info and double checks (using an assertion) that it's the same as what is stored in its `expressionInfo` field. Once this change has passed trybots, I'll follow up with the second CL in the series, which will remove the `expression` field. The reason I've split this into two CLs is that I've discovered that at least one call site needed to have its logic reordered, to make sure that it didn't try to call `getExpressionInfo` too early. Before I proceed with the second CL, I want to see a full trybot run with the assertion in place, to verify that the expression infos supplied to `ExpressionPropertyTarget` are correct. Change-Id: I6a6a69641bf8779743dda4e74ec6adbeac0ee2d6 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/480600 Commit-Queue: Paul Berry <paulberry@google.com> Reviewed-by: Konstantin Shcheglov <scheglov@google.com>