diff --git a/.travis.yml b/.travis.yml index 60d4a20531..c1b75fba62 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: dart sudo: false dart: - - "dev/release/2.0.0-dev.16.0" + - "dev/release/2.0.0-dev.22.0" env: - DARTDOC_BOT=main # TODO(devoncarew): add angulardart support diff --git a/CHANGELOG.md b/CHANGELOG.md index 751e7f2e9e..c049dfb6a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.16.0 +* Cherrypick test changes from 0.15.1 and a fix for (#1603), updating + dartdoc to the latest analyzer. + ## 0.15.1 * Add SDK warning comparison to grind script (#1572) * Improve rendering of inline `` (#1573) diff --git a/appveyor.yml b/appveyor.yml index fde9bb2e21..acb569ab6d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -3,7 +3,7 @@ # BSD-style license that can be found in the LICENSE file. install: - - ps: wget https://gsdview.appspot.com/dart-archive/channels/dev/raw/2.0.0-dev.16.0/sdk/dartsdk-windows-x64-release.zip -OutFile dart-sdk.zip + - ps: wget https://gsdview.appspot.com/dart-archive/channels/dev/raw/2.0.0-dev.22.0/sdk/dartsdk-windows-x64-release.zip -OutFile dart-sdk.zip - cmd: echo "Unzipping dart-sdk..." - cmd: 7z x dart-sdk.zip -o"C:\tools" -y > nul - set PATH=%PATH%;C:\tools\dart-sdk\bin diff --git a/lib/dartdoc.dart b/lib/dartdoc.dart index a9b7e90cf0..0eed9dfa34 100644 --- a/lib/dartdoc.dart +++ b/lib/dartdoc.dart @@ -36,7 +36,7 @@ export 'src/sdk.dart'; const String name = 'dartdoc'; // Update when pubspec version changes. -const String version = '0.15.1'; +const String version = '0.16.0'; final String defaultOutDir = path.join('doc', 'api'); diff --git a/lib/src/model.dart b/lib/src/model.dart index 1148cc2eb6..c5b592b641 100644 --- a/lib/src/model.dart +++ b/lib/src/model.dart @@ -37,7 +37,7 @@ import 'package:analyzer/src/dart/element/member.dart' import 'package:analyzer/src/dart/analysis/driver.dart'; import 'package:collection/collection.dart'; import 'package:dartdoc/src/io_utils.dart'; -import 'package:front_end/byte_store.dart'; +import 'package:front_end/src/byte_store/byte_store.dart'; import 'package:front_end/src/base/performance_logger.dart'; import 'package:path/path.dart' as p; import 'package:tuple/tuple.dart'; diff --git a/pubspec.lock b/pubspec.lock index f9e339c99f..2aade4f7b7 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -7,7 +7,7 @@ packages: name: analyzer url: "https://pub.dartlang.org" source: hosted - version: "0.31.0-alpha.2" + version: "0.31.1" args: dependency: "direct main" description: @@ -91,7 +91,7 @@ packages: name: front_end url: "https://pub.dartlang.org" source: hosted - version: "0.1.0-alpha.7" + version: "0.1.0-alpha.9" glob: dependency: transitive description: @@ -161,7 +161,7 @@ packages: name: kernel url: "https://pub.dartlang.org" source: hosted - version: "0.3.0-alpha.4" + version: "0.3.0-alpha.9" logging: dependency: "direct main" description: @@ -371,7 +371,7 @@ packages: name: test url: "https://pub.dartlang.org" source: hosted - version: "0.12.29" + version: "0.12.30+2" tuple: dependency: "direct main" description: @@ -415,4 +415,4 @@ packages: source: hosted version: "2.1.13" sdks: - dart: ">=1.23.0 <=2.0.0-dev.20.0" + dart: ">=2.0.0-dev <=2.0.0-dev.22.0" diff --git a/pubspec.yaml b/pubspec.yaml index 6e7bcd8270..47c768180b 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: dartdoc # Also update the `version` field in lib/dartdoc.dart. -version: 0.15.1 +version: 0.16.0 author: Dart Team description: A documentation generator for Dart. homepage: https://github.com/dart-lang/dartdoc @@ -9,10 +9,10 @@ homepage: https://github.com/dart-lang/dartdoc environment: sdk: '>=1.23.0-dev.11.5 <2.0.0' dependencies: - analyzer: 0.31.0-alpha.2 + analyzer: 0.31.1 args: '>=0.13.0 <2.0.0' collection: ^1.2.0 - front_end: ^0.1.0-alpha.7 + front_end: ^0.1.0-alpha.9 html: '>=0.12.1 <0.14.0' # We don't use http_parser directly; this dep exists to ensure that we get at # least version 3.0.3 to work around an issue with 3.0.2. diff --git a/test/model_test.dart b/test/model_test.dart index 3e3593f4d0..17fdf49e35 100644 --- a/test/model_test.dart +++ b/test/model_test.dart @@ -924,7 +924,7 @@ void main() { }); test('SpecialList has many inherited methods', () { - expect(SpecialList.publicInheritedMethods, hasLength(44)); + expect(SpecialList.publicInheritedMethods, hasLength(50)); expect(SpecialList.publicInheritedMethods.first.name, equals('add')); expect(SpecialList.publicInheritedMethods.toList()[1].name, equals('addAll')); diff --git a/testing/test_package_docs/ex/Animal-class.html b/testing/test_package_docs/ex/Animal-class.html index 79af44da3e..926989f2a6 100644 --- a/testing/test_package_docs/ex/Animal-class.html +++ b/testing/test_package_docs/ex/Animal-class.html @@ -199,21 +199,21 @@

Properties

-
+

Methods

-
- noSuchMethod(Invocation invocation) - → dynamic +
+ toString() + → String
-
+
+ -
inherited
-
- toString() - → String +
+ noSuchMethod(Invocation invocation) + → dynamic
@@ -258,9 +258,9 @@

Operators

  • hashCode
  • runtimeType
  • -
  • Methods
  • +
  • Methods
  • +
  • toString
  • noSuchMethod
  • -
  • toString
  • Operators
  • operator ==
  • diff --git a/testing/test_package_docs/ex/Animal/hashCode.html b/testing/test_package_docs/ex/Animal/hashCode.html index e2edb08094..9bd2181219 100644 --- a/testing/test_package_docs/ex/Animal/hashCode.html +++ b/testing/test_package_docs/ex/Animal/hashCode.html @@ -47,9 +47,9 @@
    Animal enum
  • hashCode
  • runtimeType
  • -
  • Methods
  • +
  • Methods
  • +
  • toString
  • noSuchMethod
  • -
  • toString
  • Operators
  • operator ==
  • diff --git a/testing/test_package_docs/ex/Animal/noSuchMethod.html b/testing/test_package_docs/ex/Animal/noSuchMethod.html index 9625f58f97..d81fd2d914 100644 --- a/testing/test_package_docs/ex/Animal/noSuchMethod.html +++ b/testing/test_package_docs/ex/Animal/noSuchMethod.html @@ -47,9 +47,9 @@
    Animal enum
  • hashCode
  • runtimeType
  • -
  • Methods
  • +
  • Methods
  • +
  • toString
  • noSuchMethod
  • -
  • toString
  • Operators
  • operator ==
  • diff --git a/testing/test_package_docs/ex/Animal/operator_equals.html b/testing/test_package_docs/ex/Animal/operator_equals.html index f1cb29315d..b90c048105 100644 --- a/testing/test_package_docs/ex/Animal/operator_equals.html +++ b/testing/test_package_docs/ex/Animal/operator_equals.html @@ -47,9 +47,9 @@
    Animal enum
  • hashCode
  • runtimeType
  • -
  • Methods
  • +
  • Methods
  • +
  • toString
  • noSuchMethod
  • -
  • toString
  • Operators
  • operator ==
  • diff --git a/testing/test_package_docs/ex/Animal/runtimeType.html b/testing/test_package_docs/ex/Animal/runtimeType.html index a5ec6791a0..1cfc59590a 100644 --- a/testing/test_package_docs/ex/Animal/runtimeType.html +++ b/testing/test_package_docs/ex/Animal/runtimeType.html @@ -47,9 +47,9 @@
    Animal enum
  • hashCode
  • runtimeType
  • -
  • Methods
  • +
  • Methods
  • +
  • toString
  • noSuchMethod
  • -
  • toString
  • Operators
  • operator ==
  • diff --git a/testing/test_package_docs/ex/Animal/toString.html b/testing/test_package_docs/ex/Animal/toString.html index dad41926bb..155ddb3652 100644 --- a/testing/test_package_docs/ex/Animal/toString.html +++ b/testing/test_package_docs/ex/Animal/toString.html @@ -47,9 +47,9 @@
    Animal enum
  • hashCode
  • runtimeType
  • -
  • Methods
  • +
  • Methods
  • +
  • toString
  • noSuchMethod
  • -
  • toString
  • Operators
  • operator ==
  • diff --git a/testing/test_package_docs/fake/Color-class.html b/testing/test_package_docs/fake/Color-class.html index 05f33a3355..7ce30538eb 100644 --- a/testing/test_package_docs/fake/Color-class.html +++ b/testing/test_package_docs/fake/Color-class.html @@ -265,21 +265,21 @@

    Properties

    -
    +

    Methods

    -
    - noSuchMethod(Invocation invocation) - → dynamic +
    + toString() + → String
    -
    +
    + -
    inherited
    -
    - toString() - → String +
    + noSuchMethod(Invocation invocation) + → dynamic
    @@ -328,9 +328,9 @@

    Operators

  • hashCode
  • runtimeType
  • -
  • Methods
  • +
  • Methods
  • +
  • toString
  • noSuchMethod
  • -
  • toString
  • Operators
  • operator ==
  • diff --git a/testing/test_package_docs/fake/Color/hashCode.html b/testing/test_package_docs/fake/Color/hashCode.html index 939fdc1862..cb81d152d0 100644 --- a/testing/test_package_docs/fake/Color/hashCode.html +++ b/testing/test_package_docs/fake/Color/hashCode.html @@ -47,9 +47,9 @@
    Color enum
  • hashCode
  • runtimeType
  • -
  • Methods
  • +
  • Methods
  • +
  • toString
  • noSuchMethod
  • -
  • toString
  • Operators
  • operator ==
  • diff --git a/testing/test_package_docs/fake/Color/noSuchMethod.html b/testing/test_package_docs/fake/Color/noSuchMethod.html index fafc5c7520..289adedd7b 100644 --- a/testing/test_package_docs/fake/Color/noSuchMethod.html +++ b/testing/test_package_docs/fake/Color/noSuchMethod.html @@ -47,9 +47,9 @@
    Color enum
  • hashCode
  • runtimeType
  • -
  • Methods
  • +
  • Methods
  • +
  • toString
  • noSuchMethod
  • -
  • toString
  • Operators
  • operator ==
  • diff --git a/testing/test_package_docs/fake/Color/operator_equals.html b/testing/test_package_docs/fake/Color/operator_equals.html index 4c6a2629d6..98d0c431f0 100644 --- a/testing/test_package_docs/fake/Color/operator_equals.html +++ b/testing/test_package_docs/fake/Color/operator_equals.html @@ -47,9 +47,9 @@
    Color enum
  • hashCode
  • runtimeType
  • -
  • Methods
  • +
  • Methods
  • +
  • toString
  • noSuchMethod
  • -
  • toString
  • Operators
  • operator ==
  • diff --git a/testing/test_package_docs/fake/Color/runtimeType.html b/testing/test_package_docs/fake/Color/runtimeType.html index 73513ea36c..3ad9e11ac2 100644 --- a/testing/test_package_docs/fake/Color/runtimeType.html +++ b/testing/test_package_docs/fake/Color/runtimeType.html @@ -47,9 +47,9 @@
    Color enum
  • hashCode
  • runtimeType
  • -
  • Methods
  • +
  • Methods
  • +
  • toString
  • noSuchMethod
  • -
  • toString
  • Operators
  • operator ==
  • diff --git a/testing/test_package_docs/fake/Color/toString.html b/testing/test_package_docs/fake/Color/toString.html index fda0ee4e49..1a1fb8f910 100644 --- a/testing/test_package_docs/fake/Color/toString.html +++ b/testing/test_package_docs/fake/Color/toString.html @@ -47,9 +47,9 @@
    Color enum
  • hashCode
  • runtimeType
  • -
  • Methods
  • +
  • Methods
  • +
  • toString
  • noSuchMethod
  • -
  • toString
  • Operators
  • operator ==
  • diff --git a/testing/test_package_docs/fake/ExtraSpecialList-class.html b/testing/test_package_docs/fake/ExtraSpecialList-class.html index 7f625e4d2d..b3db843e1e 100644 --- a/testing/test_package_docs/fake/ExtraSpecialList-class.html +++ b/testing/test_package_docs/fake/ExtraSpecialList-class.html @@ -170,11 +170,11 @@

    Properties

    first - → dynamic + ↔ dynamic
    -
    read-only, inherited
    +
    read / write, inherited
    hashCode @@ -210,11 +210,11 @@

    Properties

    last - → dynamic + ↔ dynamic
    -
    read-only, inherited
    +
    read / write, inherited
    length @@ -289,6 +289,15 @@

    Methods

    inherited
    +
    +
    + cast<R>() + → List<R> + +
    +
    + +
    inherited
    clear() @@ -361,6 +370,15 @@

    Methods

    inherited
    +
    +
    + followedBy(Iterable other) + → Iterable + +
    +
    + +
    inherited
    forEach(void action(E element)) @@ -381,7 +399,16 @@

    Methods

    inherited
    - indexOf(Object element, [ int startIndex = 0 ]) + indexOf(Object element, [ int start = 0 ]) + → int + +
    +
    + +
    inherited
    +
    +
    + indexWhere(bool test(E element), [ int start = 0 ]) → int
    @@ -417,7 +444,16 @@

    Methods

    inherited
    - lastIndexOf(Object element, [ int startIndex ]) + lastIndexOf(Object element, [ int start ]) + → int + +
    +
    + +
    inherited
    +
    +
    + lastIndexWhere(bool test(E element), [ int start ]) → int
    @@ -523,6 +559,15 @@

    Methods

    inherited
    +
    +
    + retype<R>() + → List<R> + +
    +
    + +
    inherited
    setAll(int index, Iterable iterable) @@ -552,7 +597,7 @@

    Methods

    inherited
    - singleWhere(bool test(E element)) + singleWhere(bool test(E element), { dynamic orElse() }) → dynamic
    @@ -649,6 +694,15 @@

    Methods

    inherited
    +
    +
    + whereType<T>() + → Iterable<T> + +
    +
    + +
    inherited
    @@ -656,6 +710,15 @@

    Methods

    Operators

    +
    + operator +(List other) + → List + +
    +
    + +
    inherited
    +
    operator ==(other) → bool @@ -715,6 +778,7 @@

    Operators

  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -723,13 +787,16 @@

    Operators

  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -741,6 +808,7 @@

    Operators

  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -755,8 +823,10 @@

    Operators

  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • +
  • operator +
  • operator ==
  • operator []
  • operator []=
  • diff --git a/testing/test_package_docs/fake/ExtraSpecialList/ExtraSpecialList.html b/testing/test_package_docs/fake/ExtraSpecialList/ExtraSpecialList.html index ea60385080..d17f173c31 100644 --- a/testing/test_package_docs/fake/ExtraSpecialList/ExtraSpecialList.html +++ b/testing/test_package_docs/fake/ExtraSpecialList/ExtraSpecialList.html @@ -61,6 +61,7 @@
    ExtraSpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    ExtraSpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    ExtraSpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,8 +106,10 @@
    ExtraSpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • +
  • operator +
  • operator ==
  • operator []
  • operator []=
  • diff --git a/testing/test_package_docs/fake/SpecialList-class.html b/testing/test_package_docs/fake/SpecialList-class.html index 761aa6a9f0..071b9f85e6 100644 --- a/testing/test_package_docs/fake/SpecialList-class.html +++ b/testing/test_package_docs/fake/SpecialList-class.html @@ -181,11 +181,11 @@

    Properties

    first - → E + ↔ E
    -
    read-only, inherited
    +
    read / write, inherited
    hashCode @@ -221,11 +221,11 @@

    Properties

    last - → E + ↔ E
    -
    read-only, inherited
    +
    read / write, inherited
    reversed @@ -292,6 +292,15 @@

    Methods

    inherited
    +
    +
    + cast<R>() + → List<R> + +
    +
    + +
    inherited
    clear() @@ -364,6 +373,15 @@

    Methods

    inherited
    +
    +
    + followedBy(Iterable<E> other) + → Iterable<E> + +
    +
    + +
    inherited
    forEach(void action(E element)) @@ -384,7 +402,16 @@

    Methods

    inherited
    - indexOf(Object element, [ int startIndex = 0 ]) + indexOf(Object element, [ int start = 0 ]) + → int + +
    +
    + +
    inherited
    +
    +
    + indexWhere(bool test(E element), [ int start = 0 ]) → int
    @@ -420,7 +447,16 @@

    Methods

    inherited
    - lastIndexOf(Object element, [ int startIndex ]) + lastIndexOf(Object element, [ int start ]) + → int + +
    +
    + +
    inherited
    +
    +
    + lastIndexWhere(bool test(E element), [ int start ]) → int
    @@ -526,6 +562,15 @@

    Methods

    inherited
    +
    +
    + retype<R>() + → List<R> + +
    +
    + +
    inherited
    setAll(int index, Iterable<E> iterable) @@ -555,7 +600,7 @@

    Methods

    inherited
    - singleWhere(bool test(E element)) + singleWhere(bool test(E element), { E orElse() }) → E
    @@ -652,6 +697,15 @@

    Methods

    inherited
    +
    +
    + whereType<T>() + → Iterable<T> + +
    +
    + +
    inherited
    @@ -676,6 +730,15 @@

    Operators

    +
    +
    + operator +(List<E> other) + → List<E> + +
    +
    + +
    inherited
    operator ==(other) @@ -718,6 +781,7 @@

    Operators

  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -726,13 +790,16 @@

    Operators

  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -744,6 +811,7 @@

    Operators

  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -758,10 +826,12 @@

    Operators

  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/SpecialList.html b/testing/test_package_docs/fake/SpecialList/SpecialList.html index fd1fd00200..23b074a671 100644 --- a/testing/test_package_docs/fake/SpecialList/SpecialList.html +++ b/testing/test_package_docs/fake/SpecialList/SpecialList.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/add.html b/testing/test_package_docs/fake/SpecialList/add.html index 3038792fc0..339eeca276 100644 --- a/testing/test_package_docs/fake/SpecialList/add.html +++ b/testing/test_package_docs/fake/SpecialList/add.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/addAll.html b/testing/test_package_docs/fake/SpecialList/addAll.html index 8045a5a146..808f513324 100644 --- a/testing/test_package_docs/fake/SpecialList/addAll.html +++ b/testing/test_package_docs/fake/SpecialList/addAll.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/any.html b/testing/test_package_docs/fake/SpecialList/any.html index 2bde678f5b..8ddbee4cca 100644 --- a/testing/test_package_docs/fake/SpecialList/any.html +++ b/testing/test_package_docs/fake/SpecialList/any.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/asMap.html b/testing/test_package_docs/fake/SpecialList/asMap.html index 309aaa7753..1e7ac7fcb9 100644 --- a/testing/test_package_docs/fake/SpecialList/asMap.html +++ b/testing/test_package_docs/fake/SpecialList/asMap.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/cast.html b/testing/test_package_docs/fake/SpecialList/cast.html new file mode 100644 index 0000000000..420da91036 --- /dev/null +++ b/testing/test_package_docs/fake/SpecialList/cast.html @@ -0,0 +1,156 @@ + + + + + + + + cast method - SpecialList class - fake library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    cast
    + +
    + +
    + + + +
    +

    cast<R> method

    + +
    + List<R> + cast +<R>() +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/SpecialList/clear.html b/testing/test_package_docs/fake/SpecialList/clear.html index 2f49699ff7..98f8c55fc2 100644 --- a/testing/test_package_docs/fake/SpecialList/clear.html +++ b/testing/test_package_docs/fake/SpecialList/clear.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/contains.html b/testing/test_package_docs/fake/SpecialList/contains.html index 9180b6ec09..de0227bc21 100644 --- a/testing/test_package_docs/fake/SpecialList/contains.html +++ b/testing/test_package_docs/fake/SpecialList/contains.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/elementAt.html b/testing/test_package_docs/fake/SpecialList/elementAt.html index a358b8f680..fdc5f0c017 100644 --- a/testing/test_package_docs/fake/SpecialList/elementAt.html +++ b/testing/test_package_docs/fake/SpecialList/elementAt.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/every.html b/testing/test_package_docs/fake/SpecialList/every.html index 1bcd3c3114..6ee4d7a93f 100644 --- a/testing/test_package_docs/fake/SpecialList/every.html +++ b/testing/test_package_docs/fake/SpecialList/every.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/expand.html b/testing/test_package_docs/fake/SpecialList/expand.html index 65a9a51ab1..8d3429e038 100644 --- a/testing/test_package_docs/fake/SpecialList/expand.html +++ b/testing/test_package_docs/fake/SpecialList/expand.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/fillRange.html b/testing/test_package_docs/fake/SpecialList/fillRange.html index cc6c4417bf..bb97b7da4f 100644 --- a/testing/test_package_docs/fake/SpecialList/fillRange.html +++ b/testing/test_package_docs/fake/SpecialList/fillRange.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/first.html b/testing/test_package_docs/fake/SpecialList/first.html index 50f38e36ab..f8a676b117 100644 --- a/testing/test_package_docs/fake/SpecialList/first.html +++ b/testing/test_package_docs/fake/SpecialList/first.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • @@ -127,7 +134,18 @@

    first property

    - +
    + +
    + void + first= +(E value) +
    inherited
    +
    + + +
    + diff --git a/testing/test_package_docs/fake/SpecialList/firstWhere.html b/testing/test_package_docs/fake/SpecialList/firstWhere.html index 7cdb606849..0bcb6fe5dc 100644 --- a/testing/test_package_docs/fake/SpecialList/firstWhere.html +++ b/testing/test_package_docs/fake/SpecialList/firstWhere.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/fold.html b/testing/test_package_docs/fake/SpecialList/fold.html index 76e1105ae2..fafc3ba43d 100644 --- a/testing/test_package_docs/fake/SpecialList/fold.html +++ b/testing/test_package_docs/fake/SpecialList/fold.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/followedBy.html b/testing/test_package_docs/fake/SpecialList/followedBy.html new file mode 100644 index 0000000000..793a6bbb57 --- /dev/null +++ b/testing/test_package_docs/fake/SpecialList/followedBy.html @@ -0,0 +1,156 @@ + + + + + + + + followedBy method - SpecialList class - fake library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    followedBy
    + +
    + +
    + + + +
    +

    followedBy method

    + +
    + Iterable<E> + followedBy +(Iterable<E> other) +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/SpecialList/forEach.html b/testing/test_package_docs/fake/SpecialList/forEach.html index efb43150b3..410bdcb4d8 100644 --- a/testing/test_package_docs/fake/SpecialList/forEach.html +++ b/testing/test_package_docs/fake/SpecialList/forEach.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/getRange.html b/testing/test_package_docs/fake/SpecialList/getRange.html index d3eed551cf..f2d350c22e 100644 --- a/testing/test_package_docs/fake/SpecialList/getRange.html +++ b/testing/test_package_docs/fake/SpecialList/getRange.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/hashCode.html b/testing/test_package_docs/fake/SpecialList/hashCode.html index be26d46e2f..5b8960b9a5 100644 --- a/testing/test_package_docs/fake/SpecialList/hashCode.html +++ b/testing/test_package_docs/fake/SpecialList/hashCode.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/indexOf.html b/testing/test_package_docs/fake/SpecialList/indexOf.html index 93a0039364..e9dbdab971 100644 --- a/testing/test_package_docs/fake/SpecialList/indexOf.html +++ b/testing/test_package_docs/fake/SpecialList/indexOf.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • @@ -118,7 +125,7 @@

    indexOf method

    int indexOf -(Object element, [ int startIndex = 0 ]) +(Object element, [ int start = 0 ])
    diff --git a/testing/test_package_docs/fake/SpecialList/indexWhere.html b/testing/test_package_docs/fake/SpecialList/indexWhere.html new file mode 100644 index 0000000000..1268dddbc0 --- /dev/null +++ b/testing/test_package_docs/fake/SpecialList/indexWhere.html @@ -0,0 +1,156 @@ + + + + + + + + indexWhere method - SpecialList class - fake library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    indexWhere
    + +
    + +
    + + + +
    +

    indexWhere method

    + +
    + int + indexWhere +(bool test(E element), [ int start = 0 ]) +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/SpecialList/insert.html b/testing/test_package_docs/fake/SpecialList/insert.html index 0967f609db..25c58e169f 100644 --- a/testing/test_package_docs/fake/SpecialList/insert.html +++ b/testing/test_package_docs/fake/SpecialList/insert.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/insertAll.html b/testing/test_package_docs/fake/SpecialList/insertAll.html index c0d1ee8208..23f0b8ca16 100644 --- a/testing/test_package_docs/fake/SpecialList/insertAll.html +++ b/testing/test_package_docs/fake/SpecialList/insertAll.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/isEmpty.html b/testing/test_package_docs/fake/SpecialList/isEmpty.html index 043e431715..99f152a301 100644 --- a/testing/test_package_docs/fake/SpecialList/isEmpty.html +++ b/testing/test_package_docs/fake/SpecialList/isEmpty.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/isNotEmpty.html b/testing/test_package_docs/fake/SpecialList/isNotEmpty.html index 0b8c871c1f..728c346df2 100644 --- a/testing/test_package_docs/fake/SpecialList/isNotEmpty.html +++ b/testing/test_package_docs/fake/SpecialList/isNotEmpty.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/iterator.html b/testing/test_package_docs/fake/SpecialList/iterator.html index f1aef1e9fd..ec81101b54 100644 --- a/testing/test_package_docs/fake/SpecialList/iterator.html +++ b/testing/test_package_docs/fake/SpecialList/iterator.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/join.html b/testing/test_package_docs/fake/SpecialList/join.html index e49fb02752..bd5a6c879c 100644 --- a/testing/test_package_docs/fake/SpecialList/join.html +++ b/testing/test_package_docs/fake/SpecialList/join.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/last.html b/testing/test_package_docs/fake/SpecialList/last.html index a264926304..6904a38fb7 100644 --- a/testing/test_package_docs/fake/SpecialList/last.html +++ b/testing/test_package_docs/fake/SpecialList/last.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • @@ -127,7 +134,18 @@

    last property

    - +
    + +
    + void + last= +(E value) +
    inherited
    +
    + + +
    + diff --git a/testing/test_package_docs/fake/SpecialList/lastIndexOf.html b/testing/test_package_docs/fake/SpecialList/lastIndexOf.html index c77f81ba52..f6e8af6c49 100644 --- a/testing/test_package_docs/fake/SpecialList/lastIndexOf.html +++ b/testing/test_package_docs/fake/SpecialList/lastIndexOf.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • @@ -118,7 +125,7 @@

    lastIndexOf method

    int lastIndexOf -(Object element, [ int startIndex ]) +(Object element, [ int start ])
    diff --git a/testing/test_package_docs/fake/SpecialList/lastIndexWhere.html b/testing/test_package_docs/fake/SpecialList/lastIndexWhere.html new file mode 100644 index 0000000000..95c1eb762d --- /dev/null +++ b/testing/test_package_docs/fake/SpecialList/lastIndexWhere.html @@ -0,0 +1,156 @@ + + + + + + + + lastIndexWhere method - SpecialList class - fake library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    lastIndexWhere
    + +
    + +
    + + + +
    +

    lastIndexWhere method

    + +
    + int + lastIndexWhere +(bool test(E element), [ int start ]) +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/SpecialList/lastWhere.html b/testing/test_package_docs/fake/SpecialList/lastWhere.html index 2632c865c9..14b1b03b09 100644 --- a/testing/test_package_docs/fake/SpecialList/lastWhere.html +++ b/testing/test_package_docs/fake/SpecialList/lastWhere.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/length.html b/testing/test_package_docs/fake/SpecialList/length.html index a6c42e9274..d8382ee572 100644 --- a/testing/test_package_docs/fake/SpecialList/length.html +++ b/testing/test_package_docs/fake/SpecialList/length.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/map.html b/testing/test_package_docs/fake/SpecialList/map.html index 20ac7c8ef1..7d3a2d7bc6 100644 --- a/testing/test_package_docs/fake/SpecialList/map.html +++ b/testing/test_package_docs/fake/SpecialList/map.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/noSuchMethod.html b/testing/test_package_docs/fake/SpecialList/noSuchMethod.html index 556b6a4e8f..9603df1868 100644 --- a/testing/test_package_docs/fake/SpecialList/noSuchMethod.html +++ b/testing/test_package_docs/fake/SpecialList/noSuchMethod.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/operator_equals.html b/testing/test_package_docs/fake/SpecialList/operator_equals.html index 129d232a1a..d4666d7440 100644 --- a/testing/test_package_docs/fake/SpecialList/operator_equals.html +++ b/testing/test_package_docs/fake/SpecialList/operator_equals.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/operator_get.html b/testing/test_package_docs/fake/SpecialList/operator_get.html index 201a021b3c..b45cd88f26 100644 --- a/testing/test_package_docs/fake/SpecialList/operator_get.html +++ b/testing/test_package_docs/fake/SpecialList/operator_get.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/operator_plus.html b/testing/test_package_docs/fake/SpecialList/operator_plus.html new file mode 100644 index 0000000000..89b1837ed2 --- /dev/null +++ b/testing/test_package_docs/fake/SpecialList/operator_plus.html @@ -0,0 +1,156 @@ + + + + + + + + operator + method - SpecialList class - fake library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    operator +
    + +
    + +
    + + + +
    +

    operator + method

    + +
    + List<E> + operator + +(List<E> other) +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/SpecialList/operator_put.html b/testing/test_package_docs/fake/SpecialList/operator_put.html index 77dba9cdf9..657602b561 100644 --- a/testing/test_package_docs/fake/SpecialList/operator_put.html +++ b/testing/test_package_docs/fake/SpecialList/operator_put.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/reduce.html b/testing/test_package_docs/fake/SpecialList/reduce.html index 3ca7e1884c..65c4c5266d 100644 --- a/testing/test_package_docs/fake/SpecialList/reduce.html +++ b/testing/test_package_docs/fake/SpecialList/reduce.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/remove.html b/testing/test_package_docs/fake/SpecialList/remove.html index 32ee45be09..9f6e37db23 100644 --- a/testing/test_package_docs/fake/SpecialList/remove.html +++ b/testing/test_package_docs/fake/SpecialList/remove.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/removeAt.html b/testing/test_package_docs/fake/SpecialList/removeAt.html index 053b1a385b..f5ebc1e5c1 100644 --- a/testing/test_package_docs/fake/SpecialList/removeAt.html +++ b/testing/test_package_docs/fake/SpecialList/removeAt.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/removeLast.html b/testing/test_package_docs/fake/SpecialList/removeLast.html index 6c8459f34d..8deecf3b65 100644 --- a/testing/test_package_docs/fake/SpecialList/removeLast.html +++ b/testing/test_package_docs/fake/SpecialList/removeLast.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/removeRange.html b/testing/test_package_docs/fake/SpecialList/removeRange.html index 78b7d517c8..8d01c38588 100644 --- a/testing/test_package_docs/fake/SpecialList/removeRange.html +++ b/testing/test_package_docs/fake/SpecialList/removeRange.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/removeWhere.html b/testing/test_package_docs/fake/SpecialList/removeWhere.html index f355030be9..1931e712ef 100644 --- a/testing/test_package_docs/fake/SpecialList/removeWhere.html +++ b/testing/test_package_docs/fake/SpecialList/removeWhere.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/replaceRange.html b/testing/test_package_docs/fake/SpecialList/replaceRange.html index c236507451..21798137d8 100644 --- a/testing/test_package_docs/fake/SpecialList/replaceRange.html +++ b/testing/test_package_docs/fake/SpecialList/replaceRange.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/retainWhere.html b/testing/test_package_docs/fake/SpecialList/retainWhere.html index 002bc23b56..1b86e47d6b 100644 --- a/testing/test_package_docs/fake/SpecialList/retainWhere.html +++ b/testing/test_package_docs/fake/SpecialList/retainWhere.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/retype.html b/testing/test_package_docs/fake/SpecialList/retype.html new file mode 100644 index 0000000000..fc46920feb --- /dev/null +++ b/testing/test_package_docs/fake/SpecialList/retype.html @@ -0,0 +1,156 @@ + + + + + + + + retype method - SpecialList class - fake library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    retype
    + +
    + +
    + + + +
    +

    retype<R> method

    + +
    + List<R> + retype +<R>() +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/SpecialList/reversed.html b/testing/test_package_docs/fake/SpecialList/reversed.html index 01368524ef..bf89390205 100644 --- a/testing/test_package_docs/fake/SpecialList/reversed.html +++ b/testing/test_package_docs/fake/SpecialList/reversed.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/runtimeType.html b/testing/test_package_docs/fake/SpecialList/runtimeType.html index 405ac258fa..f154628772 100644 --- a/testing/test_package_docs/fake/SpecialList/runtimeType.html +++ b/testing/test_package_docs/fake/SpecialList/runtimeType.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/setAll.html b/testing/test_package_docs/fake/SpecialList/setAll.html index 582aaa0f9f..2bb2c53be6 100644 --- a/testing/test_package_docs/fake/SpecialList/setAll.html +++ b/testing/test_package_docs/fake/SpecialList/setAll.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/setRange.html b/testing/test_package_docs/fake/SpecialList/setRange.html index 5372224628..0a8d60f881 100644 --- a/testing/test_package_docs/fake/SpecialList/setRange.html +++ b/testing/test_package_docs/fake/SpecialList/setRange.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/shuffle.html b/testing/test_package_docs/fake/SpecialList/shuffle.html index 7912edc517..8bcf188968 100644 --- a/testing/test_package_docs/fake/SpecialList/shuffle.html +++ b/testing/test_package_docs/fake/SpecialList/shuffle.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/single.html b/testing/test_package_docs/fake/SpecialList/single.html index ed79e95a56..57c0aa1ddb 100644 --- a/testing/test_package_docs/fake/SpecialList/single.html +++ b/testing/test_package_docs/fake/SpecialList/single.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/singleWhere.html b/testing/test_package_docs/fake/SpecialList/singleWhere.html index 5eacbb5f76..c92604d683 100644 --- a/testing/test_package_docs/fake/SpecialList/singleWhere.html +++ b/testing/test_package_docs/fake/SpecialList/singleWhere.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • @@ -118,7 +125,7 @@

    singleWhere method

    E singleWhere -(bool test(E element)) +(bool test(E element), { E orElse() })
    diff --git a/testing/test_package_docs/fake/SpecialList/skip.html b/testing/test_package_docs/fake/SpecialList/skip.html index f4b0cb7a9f..650438bdc6 100644 --- a/testing/test_package_docs/fake/SpecialList/skip.html +++ b/testing/test_package_docs/fake/SpecialList/skip.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/skipWhile.html b/testing/test_package_docs/fake/SpecialList/skipWhile.html index 4ba48b8ad5..565301797b 100644 --- a/testing/test_package_docs/fake/SpecialList/skipWhile.html +++ b/testing/test_package_docs/fake/SpecialList/skipWhile.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/sort.html b/testing/test_package_docs/fake/SpecialList/sort.html index 29974fee8c..23a6f96085 100644 --- a/testing/test_package_docs/fake/SpecialList/sort.html +++ b/testing/test_package_docs/fake/SpecialList/sort.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/sublist.html b/testing/test_package_docs/fake/SpecialList/sublist.html index 0340a94355..1e07d29c97 100644 --- a/testing/test_package_docs/fake/SpecialList/sublist.html +++ b/testing/test_package_docs/fake/SpecialList/sublist.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/take.html b/testing/test_package_docs/fake/SpecialList/take.html index 301cf59a1f..51358243cb 100644 --- a/testing/test_package_docs/fake/SpecialList/take.html +++ b/testing/test_package_docs/fake/SpecialList/take.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/takeWhile.html b/testing/test_package_docs/fake/SpecialList/takeWhile.html index 2081aa5805..65d1146bab 100644 --- a/testing/test_package_docs/fake/SpecialList/takeWhile.html +++ b/testing/test_package_docs/fake/SpecialList/takeWhile.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/toList.html b/testing/test_package_docs/fake/SpecialList/toList.html index 9fd5961770..464c86888c 100644 --- a/testing/test_package_docs/fake/SpecialList/toList.html +++ b/testing/test_package_docs/fake/SpecialList/toList.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/toSet.html b/testing/test_package_docs/fake/SpecialList/toSet.html index ac27286811..47dc8a3cb1 100644 --- a/testing/test_package_docs/fake/SpecialList/toSet.html +++ b/testing/test_package_docs/fake/SpecialList/toSet.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/toString.html b/testing/test_package_docs/fake/SpecialList/toString.html index 2f2fbfe721..68f011902a 100644 --- a/testing/test_package_docs/fake/SpecialList/toString.html +++ b/testing/test_package_docs/fake/SpecialList/toString.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/where.html b/testing/test_package_docs/fake/SpecialList/where.html index f726cc41d1..66c4ef86bc 100644 --- a/testing/test_package_docs/fake/SpecialList/where.html +++ b/testing/test_package_docs/fake/SpecialList/where.html @@ -61,6 +61,7 @@
    SpecialList class
  • addAll
  • any
  • asMap
  • +
  • cast
  • clear
  • contains
  • elementAt
  • @@ -69,13 +70,16 @@
    SpecialList class
  • fillRange
  • firstWhere
  • fold
  • +
  • followedBy
  • forEach
  • getRange
  • indexOf
  • +
  • indexWhere
  • insert
  • insertAll
  • join
  • lastIndexOf
  • +
  • lastIndexWhere
  • lastWhere
  • map
  • noSuchMethod
  • @@ -87,6 +91,7 @@
    SpecialList class
  • removeWhere
  • replaceRange
  • retainWhere
  • +
  • retype
  • setAll
  • setRange
  • shuffle
  • @@ -101,10 +106,12 @@
    SpecialList class
  • toSet
  • toString
  • where
  • +
  • whereType
  • Operators
  • operator []
  • operator []=
  • +
  • operator +
  • operator ==
  • diff --git a/testing/test_package_docs/fake/SpecialList/whereType.html b/testing/test_package_docs/fake/SpecialList/whereType.html new file mode 100644 index 0000000000..6dec48a25c --- /dev/null +++ b/testing/test_package_docs/fake/SpecialList/whereType.html @@ -0,0 +1,156 @@ + + + + + + + + whereType method - SpecialList class - fake library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    whereType
    + +
    + +
    + + + +
    +

    whereType<T> method

    + +
    + Iterable<T> + whereType +<T>() +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/index.html b/testing/test_package_docs/index.html index 5b25b20974..00b2709dea 100644 --- a/testing/test_package_docs/index.html +++ b/testing/test_package_docs/index.html @@ -4,7 +4,7 @@ - + test_package - Dart API docs diff --git a/testing/test_package_docs/index.json b/testing/test_package_docs/index.json index 18fc123396..c0f035d289 100644 --- a/testing/test_package_docs/index.json +++ b/testing/test_package_docs/index.json @@ -127,7 +127,7 @@ "qualifiedName": "ex.Animal.toString", "href": "ex/Animal/toString.html", "type": "method", - "overriddenDepth": 0, + "overriddenDepth": 1, "enclosedBy": { "name": "Animal", "type": "enum" @@ -4281,7 +4281,7 @@ "qualifiedName": "fake.Color.toString", "href": "fake/Color/toString.html", "type": "method", - "overriddenDepth": 0, + "overriddenDepth": 1, "enclosedBy": { "name": "Color", "type": "enum" @@ -6102,6 +6102,17 @@ "type": "class" } }, + { + "name": "operator +", + "qualifiedName": "fake.SpecialList.+", + "href": "fake/SpecialList/operator_plus.html", + "type": "method", + "overriddenDepth": 1, + "enclosedBy": { + "name": "SpecialList", + "type": "class" + } + }, { "name": "operator ==", "qualifiedName": "fake.SpecialList.==", @@ -6179,6 +6190,17 @@ "type": "class" } }, + { + "name": "cast", + "qualifiedName": "fake.SpecialList.cast", + "href": "fake/SpecialList/cast.html", + "type": "method", + "overriddenDepth": 2, + "enclosedBy": { + "name": "SpecialList", + "type": "class" + } + }, { "name": "clear", "qualifiedName": "fake.SpecialList.clear", @@ -6278,6 +6300,17 @@ "type": "class" } }, + { + "name": "followedBy", + "qualifiedName": "fake.SpecialList.followedBy", + "href": "fake/SpecialList/followedBy.html", + "type": "method", + "overriddenDepth": 1, + "enclosedBy": { + "name": "SpecialList", + "type": "class" + } + }, { "name": "forEach", "qualifiedName": "fake.SpecialList.forEach", @@ -6322,6 +6355,17 @@ "type": "class" } }, + { + "name": "indexWhere", + "qualifiedName": "fake.SpecialList.indexWhere", + "href": "fake/SpecialList/indexWhere.html", + "type": "method", + "overriddenDepth": 1, + "enclosedBy": { + "name": "SpecialList", + "type": "class" + } + }, { "name": "insert", "qualifiedName": "fake.SpecialList.insert", @@ -6410,6 +6454,17 @@ "type": "class" } }, + { + "name": "lastIndexWhere", + "qualifiedName": "fake.SpecialList.lastIndexWhere", + "href": "fake/SpecialList/lastIndexWhere.html", + "type": "method", + "overriddenDepth": 1, + "enclosedBy": { + "name": "SpecialList", + "type": "class" + } + }, { "name": "lastWhere", "qualifiedName": "fake.SpecialList.lastWhere", @@ -6542,6 +6597,17 @@ "type": "class" } }, + { + "name": "retype", + "qualifiedName": "fake.SpecialList.retype", + "href": "fake/SpecialList/retype.html", + "type": "method", + "overriddenDepth": 2, + "enclosedBy": { + "name": "SpecialList", + "type": "class" + } + }, { "name": "reversed", "qualifiedName": "fake.SpecialList.reversed", @@ -6729,6 +6795,17 @@ "type": "class" } }, + { + "name": "whereType", + "qualifiedName": "fake.SpecialList.whereType", + "href": "fake/SpecialList/whereType.html", + "type": "method", + "overriddenDepth": 1, + "enclosedBy": { + "name": "SpecialList", + "type": "class" + } + }, { "name": "SubForDocComments", "qualifiedName": "fake.SubForDocComments", diff --git a/tool/grind.dart b/tool/grind.dart index bc1a487cf4..08b0023b4b 100644 --- a/tool/grind.dart +++ b/tool/grind.dart @@ -625,7 +625,7 @@ updateTestPackageDocs() async { @Task('Validate the SDK doc build.') @Depends(buildSdkDocs) validateSdkDocs() { - const expectedLibCount = 18; + const expectedLibCount = 19; File indexHtml = joinFile(sdkDocsDir, ['index.html']); if (!indexHtml.existsSync()) {