You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
classMin {
finalint value;
Min.open(this.value);
boolget open =>false;
}
Trying to use any of the following:
[new Min.open(value)]: does not resolve to anything, shows "warning: unresolved doc reference"
[new Min.open]: does not resolve to anything, shows "warning: unresolved doc reference", but has the correct highlighting in the IDE
[Min.open]: resolves to property, no warning
[Min.open(value)]: resolves to property, no warning
The text was updated successfully, but these errors were encountered:
jcollins-g
added
P2
A bug or feature request we're likely to work on
type-bug
Incorrect behavior (everything from a crash to more subtle misbehavior)
labels
May 8, 2023
Dart version: 2.19.6
This issue seems to be a reappearance of #2276.
Example:
Trying to use any of the following:
[new Min.open(value)]
: does not resolve to anything, shows "warning: unresolved doc reference"[new Min.open]
: does not resolve to anything, shows "warning: unresolved doc reference", but has the correct highlighting in the IDE[Min.open]
: resolves to property, no warning[Min.open(value)]
: resolves to property, no warningThe text was updated successfully, but these errors were encountered: