mirror of
https://github.com/dart-lang/sdk
synced 2024-11-05 18:22:09 +00:00
Fix doc comment for NullabilityNode.forLUB
Change-Id: Ibc87629b81eea7d2e56dfe143d037d10e6cfbe32 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/107900 Reviewed-by: Brian Wilkerson <brianwilkerson@google.com> Commit-Queue: Paul Berry <paulberry@google.com>
This commit is contained in:
parent
9ed728ec7a
commit
26f369eb8e
1 changed files with 1 additions and 6 deletions
|
@ -322,12 +322,7 @@ abstract class NullabilityNode {
|
|||
_NullabilityNodeSimple('inferred');
|
||||
|
||||
/// Creates a [NullabilityNode] representing the nullability of an
|
||||
/// expression which is nullable iff both [a] and [b] are nullable.
|
||||
///
|
||||
/// The constraint variable contained in the new node is created using the
|
||||
/// [joinNullabilities] callback. TODO(paulberry): this should become
|
||||
/// unnecessary once constraint solving is performed directly using
|
||||
/// [NullabilityNode] objects.
|
||||
/// expression which is nullable iff either [a] or [b] is nullable.
|
||||
factory NullabilityNode.forLUB(NullabilityNode left, NullabilityNode right) =
|
||||
NullabilityNodeForLUB._;
|
||||
|
||||
|
|
Loading…
Reference in a new issue