|
10 | 10 | // ^^^ reference scip-dart pub dart:core 2.18.0 dart:core/int.dart/int#
|
11 | 11 | // ^^^^ definition local 0
|
12 | 12 | // documentation ```dart
|
| 13 | + bool value; |
| 14 | +// ^^^^ reference scip-dart pub dart:core 2.18.0 dart:core/bool.dart/bool# |
| 15 | +// ^^^^^ definition scip-dart pub dart_test 1.0.0 lib/other.dart/Foo#value. |
| 16 | +// documentation ```dart |
| 17 | + String value2; |
| 18 | +// ^^^^^^ reference scip-dart pub dart:core 2.18.0 dart:core/string.dart/String# |
| 19 | +// ^^^^^^ definition scip-dart pub dart_test 1.0.0 lib/other.dart/Foo#value2. |
| 20 | +// documentation ```dart |
| 21 | + double value3; |
| 22 | +// ^^^^^^ reference scip-dart pub dart:core 2.18.0 dart:core/double.dart/double# |
| 23 | +// ^^^^^^ definition scip-dart pub dart_test 1.0.0 lib/other.dart/Foo#value3. |
| 24 | +// documentation ```dart |
13 | 25 | Foo(this._far);
|
14 | 26 | // ^^^ definition scip-dart pub dart_test 1.0.0 lib/other.dart/Foo#<constructor>().
|
15 | 27 | // documentation ```dart
|
|
57 | 69 | // ^^^ reference scip-dart pub dart_test 1.0.0 lib/other.dart/Bar#
|
58 | 70 | // ^^^^^^^^^^ reference scip-dart pub dart_test 1.0.0 lib/other.dart/Bar#someMethod().
|
59 | 71 | });
|
| 72 | + |
| 73 | + Foo()..value = false; |
| 74 | +// ^^^ reference scip-dart pub dart_test 1.0.0 lib/other.dart/Foo# |
| 75 | +// ^^^^^ reference scip-dart pub dart_test 1.0.0 lib/other.dart/Foo#value. |
| 76 | + |
| 77 | + final someStr = 'someStr'; |
| 78 | +// ^^^^^^^ definition local 5 |
| 79 | +// documentation ```dart |
| 80 | + Foo() |
| 81 | +// ^^^ reference scip-dart pub dart_test 1.0.0 lib/other.dart/Foo# |
| 82 | + ..value = true |
| 83 | +// ^^^^^ reference scip-dart pub dart_test 1.0.0 lib/other.dart/Foo#value. |
| 84 | + ..value2 = someStr |
| 85 | +// ^^^^^^ reference scip-dart pub dart_test 1.0.0 lib/other.dart/Foo#value2. |
| 86 | +// ^^^^^^^ reference local 5 |
| 87 | + ..value3 = 2.15 |
| 88 | +// ^^^^^^ reference scip-dart pub dart_test 1.0.0 lib/other.dart/Foo#value3. |
60 | 89 | }
|
0 commit comments