Add missing abstract method to interface

Fixes analyzer warning.

Bug:
Change-Id: I404855f42190be10a11658cf8f144c2627b73117
Reviewed-on: https://dart-review.googlesource.com/6820
Reviewed-by: Stephen Adams <sra@google.com>
This commit is contained in:
Stephen Adams
2017-09-19 03:35:59 +00:00
parent a811daca97
commit eab4615f74
@@ -352,6 +352,9 @@ abstract class KernelToTypeInferenceMap {
/// Returns the inferred receiver type of the dynamic [read].
TypeMask typeOfGet(ir.PropertyGet read);
/// Returns the inferred receiver type of the direct [read].
TypeMask typeOfDirectGet(ir.DirectPropertyGet read);
/// Returns the inferred receiver type of the dynamic [write].
TypeMask typeOfSet(ir.PropertySet write, ClosedWorld closedWorld);