Enhance the comment for TypeParameterElement.bounds to capture information from a previous CL

Change-Id: I5d736f8078f3bfadb75d8b358952e0ea29d6e696
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/111381
Reviewed-by: Konstantin Shcheglov <scheglov@google.com>
Commit-Queue: Brian Wilkerson <brianwilkerson@google.com>
This commit is contained in:
Brian Wilkerson 2019-07-31 12:40:04 +00:00 committed by commit-bot@chromium.org
parent 8cce940579
commit 3fa3f0e62d

View file

@ -1661,7 +1661,9 @@ abstract class TypeDefiningElement implements Element {
/// Clients may not extend, implement or mix-in this class.
abstract class TypeParameterElement implements TypeDefiningElement {
/// Return the type representing the bound associated with this parameter, or
/// `null` if this parameter does not have an explicit bound.
/// `null` if this parameter does not have an explicit bound. Being able to
/// distinguish between an implicit and explicit bound is needed by the
/// instantiate to bounds algorithm.
DartType get bound;
@override