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
Dart docs above library have a problem, see the following code:
/// This doc mentions everything [math], [Class], [function], [variable], /// [getter] and [setter].library;
/// Here is a doc for [math]import'dart:math'as math;
/// Here is a doc for [Class]classClass {}
/// Here is a doc for [function]voidfunction() {}
/// Here is a doc for [variable]int? variable;
/// Here is a doc for [getter]intget getter =>0;
/// Here is a doc for [setter]setsetter(int value) {}
For every doc here we can CTRL + Click to go to the definition but that doesn't work on the docs above library.
Dart docs above
library
have a problem, see the following code:For every doc here we can CTRL + Click to go to the definition but that doesn't work on the docs above
library
.CC @srawlins @DanTup
Somewhat related to #47553.
The text was updated successfully, but these errors were encountered: