diff --git a/lib/src/element_type.dart b/lib/src/element_type.dart index 08169dacd0..1c8c51590b 100644 --- a/lib/src/element_type.dart +++ b/lib/src/element_type.dart @@ -54,16 +54,20 @@ class ElementType extends Privacy { if (isParameterizedType) { if (!typeArguments.every((t) => t.linkedName == 'dynamic') && typeArguments.isNotEmpty) { + buf.write(''); buf.write('<'); buf.writeAll(typeArguments.map((t) => t.linkedName), ', '); buf.write('>'); + buf.write(''); } // Hide parameters if there's a an explicit typedef behind this // element, but if there is no typedef, be explicit. if (element is ModelFunctionAnonymous) { + buf.write(''); buf.write('('); buf.write(element.linkedParams()); buf.write(')'); + buf.write(''); } } _linkedName = buf.toString(); @@ -71,6 +75,31 @@ class ElementType extends Privacy { return _linkedName; } + String _nameWithGenerics; + String get nameWithGenerics { + if (_nameWithGenerics == null) { + StringBuffer buf = new StringBuffer(); + + if (isParameterType) { + buf.write(name); + } else { + buf.write(element.name); + } + + // not TypeParameterType or Void or Union type + if (isParameterizedType) { + if (!typeArguments.every((t) => t.linkedName == 'dynamic') && + typeArguments.isNotEmpty) { + buf.write('<'); + buf.writeAll(typeArguments.map((t) => t.nameWithGenerics), ', '); + buf.write('>'); + } + } + _nameWithGenerics = buf.toString(); + } + return _nameWithGenerics; + } + String get name => _type.name ?? _type.element.name; ModelElement get returnElement { diff --git a/lib/src/html/html_generator_instance.dart b/lib/src/html/html_generator_instance.dart index 0240b5fd08..8002ac8892 100644 --- a/lib/src/html/html_generator_instance.dart +++ b/lib/src/html/html_generator_instance.dart @@ -90,7 +90,6 @@ class HtmlGeneratorInstance { generatePackage(); for (var lib in filterNonDocumented(_package.libraries)) { - // if (lib.name != 'extract_messages') continue; generateLibrary(_package, lib); for (var clazz in filterNonDocumented(lib.allClasses)) { diff --git a/lib/src/html/template_data.dart b/lib/src/html/template_data.dart index 2b3a14b296..aa2c11a2d5 100644 --- a/lib/src/html/template_data.dart +++ b/lib/src/html/template_data.dart @@ -185,8 +185,8 @@ class ClassTemplateData extends TemplateData { '${library.name} library, for the Dart programming language.'; @override - String get layoutTitle => - _layoutTitle(clazz.nameWithGenerics, clazz.fullkind, clazz.isDeprecated); + String get layoutTitle => _layoutTitle( + clazz.nameWithLinkedGenerics, clazz.fullkind, clazz.isDeprecated); @override List get navLinks => [package, library]; @override diff --git a/lib/src/model.dart b/lib/src/model.dart index cc9bf11c60..0e9734b124 100644 --- a/lib/src/model.dart +++ b/lib/src/model.dart @@ -497,7 +497,6 @@ class Class extends ModelElement ..addAll([] ..addAll(inheritedProperties) ..sort(byName)); - return _allInstanceProperties; } @@ -4711,11 +4710,20 @@ abstract class SourceCodeMixin { abstract class TypeParameters implements Nameable { String get nameWithGenerics => '$name$genericParameters'; + String get nameWithLinkedGenerics => '$name$linkedGenericParameters'; + + bool get hasGenericParameters => typeParameters.isNotEmpty; + String get genericParameters { if (typeParameters.isEmpty) return ''; return '<${typeParameters.map((t) => t.name).join(', ')}>'; } + String get linkedGenericParameters { + if (typeParameters.isEmpty) return ''; + return '<${typeParameters.map((t) => t.linkedName).join(', ')}>'; + } + List get typeParameters; } @@ -4862,11 +4870,28 @@ class TypeParameter extends ModelElement { @override String get kind => 'type parameter'; + ElementType get boundType { + var bound = _typeParameter.bound; + if (bound != null) { + ModelElement boundClass = + new ModelElement.fromElement(bound.element, package); + return new ElementType(bound, boundClass); + } + return null; + } + @override String get name { var bound = _typeParameter.bound; - return bound != null - ? '${_typeParameter.name} extends ${bound.name}' + return _typeParameter.bound != null + ? '${_typeParameter.name} extends ${boundType.nameWithGenerics}' + : _typeParameter.name; + } + + @override + String get linkedName { + return _typeParameter.bound != null + ? '${_typeParameter.name} extends ${boundType.linkedName}' : _typeParameter.name; } diff --git a/lib/templates/_callable.html b/lib/templates/_callable.html index 054068ad3c..08ebd5f2a0 100644 --- a/lib/templates/_callable.html +++ b/lib/templates/_callable.html @@ -1,5 +1,5 @@
- {{{linkedName}}}{{{genericParameters}}}({{{ linkedParamsNoMetadata }}}) + {{{linkedName}}}{{{linkedGenericParameters}}}({{{ linkedParamsNoMetadata }}}) → {{{ linkedReturnType }}}
diff --git a/lib/templates/_head.html b/lib/templates/_head.html index 9f7496c7b8..7c4882eb96 100644 --- a/lib/templates/_head.html +++ b/lib/templates/_head.html @@ -38,7 +38,7 @@
  • {{name}}
  • {{/navLinks}} {{#navLinksWithGenerics}} -
  • {{name}}{{{genericParameters}}}
  • +
  • {{name}}{{#hasGenericParameters}}{{{genericParameters}}}{{/hasGenericParameters}}
  • {{/navLinksWithGenerics}} {{^hasHomepage}}
  • {{{ layoutTitle }}}
  • diff --git a/lib/templates/library.html b/lib/templates/library.html index 12c37e4a42..fdf7b34ddb 100644 --- a/lib/templates/library.html +++ b/lib/templates/library.html @@ -36,7 +36,7 @@

    Classes

    {{#library.publicClasses}}
    - {{{linkedName}}} + {{{linkedName}}}{{{linkedGenericParameters}}}
    {{{ oneLineDoc }}} diff --git a/test/model_test.dart b/test/model_test.dart index d94823e7f4..f663ddf6f9 100644 --- a/test/model_test.dart +++ b/test/model_test.dart @@ -1116,21 +1116,21 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, // TODO(jcollins-g): really, these shouldn't be called "parameters" in // the span class. expect(explicitSetter.linkedReturnType, - 'dynamic Function(int, Cool, List<int>)'); + 'dynamic Function(int, Cool, List<int>)'); }); test('parameterized type from field is correctly displayed', () { Field aField = TemplatedInterface.instanceProperties .singleWhere((f) => f.name == 'aField'); expect(aField.linkedReturnType, - 'AnotherParameterizedClass<Stream<List<int>>>'); + 'AnotherParameterizedClass<Stream<List<int>>>'); }); test('parameterized type from inherited field is correctly displayed', () { Field aInheritedField = TemplatedInterface.inheritedProperties .singleWhere((f) => f.name == 'aInheritedField'); expect(aInheritedField.linkedReturnType, - 'AnotherParameterizedClass<List<int>>'); + 'AnotherParameterizedClass<List<int>>'); }); test( @@ -1140,7 +1140,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, .singleWhere((f) => f.name == 'aGetter') .getter; expect(aGetter.linkedReturnType, - 'AnotherParameterizedClass<Map<A, List<String>>>'); + 'AnotherParameterizedClass<Map<A, List<String>>>'); }); test( @@ -1150,7 +1150,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, .singleWhere((f) => f.name == 'aInheritedGetter') .getter; expect(aInheritedGetter.linkedReturnType, - 'AnotherParameterizedClass<List<int>>'); + 'AnotherParameterizedClass<List<int>>'); }); test( @@ -1160,11 +1160,11 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, .singleWhere((f) => f.name == 'aInheritedSetter') .setter; expect(aInheritedSetter.allParameters.first.modelType.linkedName, - 'AnotherParameterizedClass<List<int>>'); + 'AnotherParameterizedClass<List<int>>'); // TODO(jcollins-g): really, these shouldn't be called "parameters" in // the span class. expect(aInheritedSetter.enclosingCombo.linkedReturnType, - 'AnotherParameterizedClass<List<int>>'); + 'AnotherParameterizedClass<List<int>>'); }); test( @@ -1173,7 +1173,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, Method aMethodInterface = TemplatedInterface.allInstanceMethods .singleWhere((m) => m.name == 'aMethodInterface'); expect(aMethodInterface.linkedReturnType, - 'AnotherParameterizedClass<List<int>>'); + 'AnotherParameterizedClass<List<int>>'); }); test( @@ -1182,7 +1182,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, Method aInheritedMethod = TemplatedInterface.allInstanceMethods .singleWhere((m) => m.name == 'aInheritedMethod'); expect(aInheritedMethod.linkedReturnType, - 'AnotherParameterizedClass<List<int>>'); + 'AnotherParameterizedClass<List<int>>'); }); test( @@ -1192,7 +1192,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, .allInstanceMethods .singleWhere((m) => m.name == 'aTypedefReturningMethodInterface'); expect(aTypedefReturningMethodInterface.linkedReturnType, - 'ParameterizedTypedef<List<String>>'); + 'ParameterizedTypedef<List<String>>'); }); test( @@ -1202,7 +1202,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, .allInstanceMethods .singleWhere((m) => m.name == 'aInheritedTypedefReturningMethod'); expect(aInheritedTypedefReturningMethod.linkedReturnType, - 'ParameterizedTypedef<List<int>>'); + 'ParameterizedTypedef<List<int>>'); }); test('parameterized types for inherited operator is correctly displayed', @@ -1211,9 +1211,9 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, .inheritedOperators .singleWhere((m) => m.name == 'operator +'); expect(aInheritedAdditionOperator.linkedReturnType, - 'ParameterizedClass<List<int>>'); + 'ParameterizedClass<List<int>>'); expect(aInheritedAdditionOperator.linkedParams(), - 'ParameterizedClass<List<int>> other'); + 'ParameterizedClass<List<int>> other'); }); test('', () {}); @@ -1279,7 +1279,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, expect( getAFunctionReturningVoid.linkedReturnType, equals( - 'Function(T1, T2)')); + 'Function(T1, T2)')); }); test( @@ -1288,7 +1288,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, expect( getAFunctionReturningBool.linkedReturnType, equals( - 'Function<T4>(String, T1, T4)')); + 'Function<T4>(String, T1, T4)')); }); test('has a fully qualified name', () { @@ -1362,7 +1362,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, test('parameter has generics in signature', () { expect(testGeneric.parameters[0].modelType.linkedName, - 'Map<String, dynamic>'); + 'Map<String, dynamic>'); }); test('parameter is a function', () { @@ -1768,7 +1768,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, expect( fieldWithTypedef.linkedReturnType, equals( - 'ParameterizedTypedef<bool>')); + 'ParameterizedTypedef<bool>')); }); }); @@ -2040,7 +2040,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, expect( aComplexTypedef.linkedReturnType, equals( - 'Function(A1, A2, A3)')); + 'Function(A1, A2, A3)')); expect( aComplexTypedef.linkedParamsLines, equals( @@ -2065,7 +2065,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, test('linked return type', () { expect(t.linkedReturnType, equals('String')); - expect(generic.linkedReturnType, equals('List<S>')); + expect(generic.linkedReturnType, equals('List<S>')); }); test("name with generics", () { diff --git a/testing/test_package_docs/ex/Animal-class.html b/testing/test_package_docs/ex/Animal-class.html index 355810ce8d..298206ea62 100644 --- a/testing/test_package_docs/ex/Animal-class.html +++ b/testing/test_package_docs/ex/Animal-class.html @@ -154,7 +154,7 @@

    Constants

    values - → List<Animal> + → List<Animal>

    A constant List of the values in this enum, in order of their declaration.

    diff --git a/testing/test_package_docs/ex/AnotherParameterizedClass-class.html b/testing/test_package_docs/ex/AnotherParameterizedClass-class.html index 336e490c4e..cb5faee1f5 100644 --- a/testing/test_package_docs/ex/AnotherParameterizedClass-class.html +++ b/testing/test_package_docs/ex/AnotherParameterizedClass-class.html @@ -25,7 +25,7 @@
    AnotherParameterizedClass
    list - ↔ List<String> + ↔ List<String>
    A list of Strings @@ -185,7 +185,7 @@

    Properties

    fieldWithTypedef - ParameterizedTypedef<bool> + ParameterizedTypedef<bool>
    fieldWithTypedef docs here @@ -312,7 +312,7 @@

    Methods

    inherited
    - whataclass(List<Whataclass<bool>> list) + whataclass(List<Whataclass<bool>> list) → void
    diff --git a/testing/test_package_docs/ex/B/list.html b/testing/test_package_docs/ex/B/list.html index f7b6c6b637..7441f56c30 100644 --- a/testing/test_package_docs/ex/B/list.html +++ b/testing/test_package_docs/ex/B/list.html @@ -78,7 +78,7 @@
    class B
    - List<String> + List<String> list
    read / write
    diff --git a/testing/test_package_docs/ex/Dog-class.html b/testing/test_package_docs/ex/Dog-class.html index edd49a7f5f..c003251a8c 100644 --- a/testing/test_package_docs/ex/Dog-class.html +++ b/testing/test_package_docs/ex/Dog-class.html @@ -269,7 +269,7 @@

    Methods

    getAnotherClassD() - → List<Dog> + → List<Dog>
    @@ -278,7 +278,7 @@

    Methods

    getClassA() - → List<Apple> + → List<Apple>
    @@ -286,7 +286,7 @@

    Methods

    - testGeneric(Map<String, dynamic> args) + testGeneric(Map<String, dynamic> args) → void
    @@ -295,7 +295,7 @@

    Methods

    - testGenericMethod<T>(T arg) + testGenericMethod<T>(T arg) → T
    diff --git a/testing/test_package_docs/ex/Dog/getAnotherClassD.html b/testing/test_package_docs/ex/Dog/getAnotherClassD.html index a325da8cd5..f97cc6e3e7 100644 --- a/testing/test_package_docs/ex/Dog/getAnotherClassD.html +++ b/testing/test_package_docs/ex/Dog/getAnotherClassD.html @@ -93,7 +93,7 @@
    class Dog
  • @Deprecated('before v27.3')
  • - List<Dog> + List<Dog> getAnotherClassD() diff --git a/testing/test_package_docs/ex/Dog/getClassA.html b/testing/test_package_docs/ex/Dog/getClassA.html index d5060a52ac..79b12e3589 100644 --- a/testing/test_package_docs/ex/Dog/getClassA.html +++ b/testing/test_package_docs/ex/Dog/getClassA.html @@ -93,7 +93,7 @@
    class Dog
  • @deprecated
  • - List<Apple> + List<Apple> getClassA() diff --git a/testing/test_package_docs/ex/Dog/testGeneric.html b/testing/test_package_docs/ex/Dog/testGeneric.html index 1ab9bfc2ec..de1cac47da 100644 --- a/testing/test_package_docs/ex/Dog/testGeneric.html +++ b/testing/test_package_docs/ex/Dog/testGeneric.html @@ -89,7 +89,7 @@
    class Dog
    void - testGeneric(Map<String, dynamic> args) + testGeneric(Map<String, dynamic> args)
    diff --git a/testing/test_package_docs/ex/F-class.html b/testing/test_package_docs/ex/F-class.html index e42b7795f4..9f8d30ad9c 100644 --- a/testing/test_package_docs/ex/F-class.html +++ b/testing/test_package_docs/ex/F-class.html @@ -25,7 +25,7 @@
    F
    @@ -228,7 +228,7 @@

    Properties

    Methods

    - methodWithGenericParam([List<Apple> msgs ]) + methodWithGenericParam([List<Apple> msgs ]) → void
    @@ -256,7 +256,7 @@

    Methods

    getAnotherClassD() - → List<Dog> + → List<Dog>
    @@ -265,7 +265,7 @@

    Methods

    getClassA() - → List<Apple> + → List<Apple>
    @@ -291,7 +291,7 @@

    Methods

    inherited
    - testGeneric(Map<String, dynamic> args) + testGeneric(Map<String, dynamic> args) → void
    @@ -300,7 +300,7 @@

    Methods

    inherited
    - testGenericMethod<T>(T arg) + testGenericMethod<T>(T arg) → T
    diff --git a/testing/test_package_docs/ex/F/F.html b/testing/test_package_docs/ex/F/F.html index 76a4e59451..9657cd34f8 100644 --- a/testing/test_package_docs/ex/F/F.html +++ b/testing/test_package_docs/ex/F/F.html @@ -25,7 +25,7 @@
    F
    diff --git a/testing/test_package_docs/ex/F/methodWithGenericParam.html b/testing/test_package_docs/ex/F/methodWithGenericParam.html index abbea8037a..2b061637e4 100644 --- a/testing/test_package_docs/ex/F/methodWithGenericParam.html +++ b/testing/test_package_docs/ex/F/methodWithGenericParam.html @@ -25,7 +25,7 @@
    methodWithGenericParam
    @@ -82,7 +82,7 @@
    class F
    void - methodWithGenericParam([List<Apple> msgs ]) + methodWithGenericParam([List<Apple> msgs ])
    diff --git a/testing/test_package_docs/ex/F/test.html b/testing/test_package_docs/ex/F/test.html index c27bc877d5..8cd35daa01 100644 --- a/testing/test_package_docs/ex/F/test.html +++ b/testing/test_package_docs/ex/F/test.html @@ -25,7 +25,7 @@
    test
    diff --git a/testing/test_package_docs/ex/ParameterizedClass-class.html b/testing/test_package_docs/ex/ParameterizedClass-class.html index f93796ef2f..79cf676e44 100644 --- a/testing/test_package_docs/ex/ParameterizedClass-class.html +++ b/testing/test_package_docs/ex/ParameterizedClass-class.html @@ -25,7 +25,7 @@
    ParameterizedClass
    @@ -144,7 +144,7 @@

    Properties

    aInheritedField - AnotherParameterizedClass<T> + AnotherParameterizedClass<T>
    @@ -152,7 +152,7 @@

    Properties

    aInheritedGetter - AnotherParameterizedClass<T> + AnotherParameterizedClass<T>
    @@ -160,7 +160,7 @@

    Properties

    aInheritedSetter - AnotherParameterizedClass<T> + AnotherParameterizedClass<T>
    @@ -190,7 +190,7 @@

    Methods

    aInheritedMethod(int foo) - AnotherParameterizedClass<T> + AnotherParameterizedClass<T>
    @@ -199,7 +199,7 @@

    Methods

    aInheritedTypedefReturningMethod() - ParameterizedTypedef<T> + ParameterizedTypedef<T>
    @@ -231,8 +231,8 @@

    Methods

    Operators

    - operator +(ParameterizedClass<T> other) - ParameterizedClass<T> + operator +(ParameterizedClass<T> other) + ParameterizedClass<T>
    diff --git a/testing/test_package_docs/ex/ParameterizedClass/ParameterizedClass.html b/testing/test_package_docs/ex/ParameterizedClass/ParameterizedClass.html index 1ee62f1c8b..9c26759132 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/ParameterizedClass.html +++ b/testing/test_package_docs/ex/ParameterizedClass/ParameterizedClass.html @@ -25,7 +25,7 @@
    ParameterizedClass
    diff --git a/testing/test_package_docs/ex/ParameterizedClass/aInheritedField.html b/testing/test_package_docs/ex/ParameterizedClass/aInheritedField.html index 7185d3a1a6..89b84357b2 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/aInheritedField.html +++ b/testing/test_package_docs/ex/ParameterizedClass/aInheritedField.html @@ -25,7 +25,7 @@
    aInheritedField
    @@ -68,7 +68,7 @@
    class ParameterizedClass
    - AnotherParameterizedClass<T> + AnotherParameterizedClass<T> aInheritedField
    read / write
    diff --git a/testing/test_package_docs/ex/ParameterizedClass/aInheritedGetter.html b/testing/test_package_docs/ex/ParameterizedClass/aInheritedGetter.html index 8fbe0925ec..22a45877fe 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/aInheritedGetter.html +++ b/testing/test_package_docs/ex/ParameterizedClass/aInheritedGetter.html @@ -25,7 +25,7 @@
    aInheritedGetter
    @@ -71,7 +71,7 @@
    class ParameterizedClass
    - AnotherParameterizedClass<T> + AnotherParameterizedClass<T> aInheritedGetter
    diff --git a/testing/test_package_docs/ex/ParameterizedClass/aInheritedMethod.html b/testing/test_package_docs/ex/ParameterizedClass/aInheritedMethod.html index 41a37ae950..aced2d07ef 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/aInheritedMethod.html +++ b/testing/test_package_docs/ex/ParameterizedClass/aInheritedMethod.html @@ -25,7 +25,7 @@
    aInheritedMethod
    @@ -68,7 +68,7 @@
    class ParameterizedClass
    - AnotherParameterizedClass<T> + AnotherParameterizedClass<T> aInheritedMethod(int foo)
    diff --git a/testing/test_package_docs/ex/ParameterizedClass/aInheritedSetter.html b/testing/test_package_docs/ex/ParameterizedClass/aInheritedSetter.html index 51d1400648..c0a9396c22 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/aInheritedSetter.html +++ b/testing/test_package_docs/ex/ParameterizedClass/aInheritedSetter.html @@ -25,7 +25,7 @@
    aInheritedSetter
    @@ -73,7 +73,7 @@
    class ParameterizedClass
    void - aInheritedSetter=(AnotherParameterizedClass<T> thingToSet) + aInheritedSetter=(AnotherParameterizedClass<T> thingToSet)
    diff --git a/testing/test_package_docs/ex/ParameterizedClass/aInheritedTypedefReturningMethod.html b/testing/test_package_docs/ex/ParameterizedClass/aInheritedTypedefReturningMethod.html index 05db9d17c9..d506f620be 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/aInheritedTypedefReturningMethod.html +++ b/testing/test_package_docs/ex/ParameterizedClass/aInheritedTypedefReturningMethod.html @@ -25,7 +25,7 @@
    aInheritedTypedefReturningMethod
    @@ -68,7 +68,7 @@
    class ParameterizedClass
    - ParameterizedTypedef<T> + ParameterizedTypedef<T> aInheritedTypedefReturningMethod()
    diff --git a/testing/test_package_docs/ex/ParameterizedClass/hashCode.html b/testing/test_package_docs/ex/ParameterizedClass/hashCode.html index a1c3a5265c..c1d1df5649 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/hashCode.html +++ b/testing/test_package_docs/ex/ParameterizedClass/hashCode.html @@ -25,7 +25,7 @@
    hashCode
    diff --git a/testing/test_package_docs/ex/ParameterizedClass/noSuchMethod.html b/testing/test_package_docs/ex/ParameterizedClass/noSuchMethod.html index 71e755d551..b20d4bb063 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/noSuchMethod.html +++ b/testing/test_package_docs/ex/ParameterizedClass/noSuchMethod.html @@ -25,7 +25,7 @@
    noSuchMethod
    diff --git a/testing/test_package_docs/ex/ParameterizedClass/operator_equals.html b/testing/test_package_docs/ex/ParameterizedClass/operator_equals.html index 0095a22376..ed049378eb 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/operator_equals.html +++ b/testing/test_package_docs/ex/ParameterizedClass/operator_equals.html @@ -25,7 +25,7 @@
    operator ==
    diff --git a/testing/test_package_docs/ex/ParameterizedClass/operator_plus.html b/testing/test_package_docs/ex/ParameterizedClass/operator_plus.html index 8978fda8b1..0d4a1c8f0c 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/operator_plus.html +++ b/testing/test_package_docs/ex/ParameterizedClass/operator_plus.html @@ -25,7 +25,7 @@
    operator +
    @@ -68,8 +68,8 @@
    class ParameterizedClass
    - ParameterizedClass<T> - operator +(ParameterizedClass<T> other) + ParameterizedClass<T> + operator +(ParameterizedClass<T> other)
    diff --git a/testing/test_package_docs/ex/ParameterizedClass/runtimeType.html b/testing/test_package_docs/ex/ParameterizedClass/runtimeType.html index d9b84f5cd2..41d83ee14c 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/runtimeType.html +++ b/testing/test_package_docs/ex/ParameterizedClass/runtimeType.html @@ -25,7 +25,7 @@
    runtimeType
    diff --git a/testing/test_package_docs/ex/ParameterizedClass/toString.html b/testing/test_package_docs/ex/ParameterizedClass/toString.html index b9b6342bd9..610dc0c8fa 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/toString.html +++ b/testing/test_package_docs/ex/ParameterizedClass/toString.html @@ -25,7 +25,7 @@
    toString
    diff --git a/testing/test_package_docs/ex/TemplatedClass-class.html b/testing/test_package_docs/ex/TemplatedClass-class.html index a488bc76a9..818bc69288 100644 --- a/testing/test_package_docs/ex/TemplatedClass-class.html +++ b/testing/test_package_docs/ex/TemplatedClass-class.html @@ -25,7 +25,7 @@
    TemplatedClass
    diff --git a/testing/test_package_docs/ex/TemplatedClass/TemplatedClass.html b/testing/test_package_docs/ex/TemplatedClass/TemplatedClass.html index 01980384d5..1765d68427 100644 --- a/testing/test_package_docs/ex/TemplatedClass/TemplatedClass.html +++ b/testing/test_package_docs/ex/TemplatedClass/TemplatedClass.html @@ -25,7 +25,7 @@
    TemplatedClass
    diff --git a/testing/test_package_docs/ex/TemplatedClass/aMethod.html b/testing/test_package_docs/ex/TemplatedClass/aMethod.html index 75c13db711..8be67840a7 100644 --- a/testing/test_package_docs/ex/TemplatedClass/aMethod.html +++ b/testing/test_package_docs/ex/TemplatedClass/aMethod.html @@ -25,7 +25,7 @@
    aMethod
    diff --git a/testing/test_package_docs/ex/TemplatedClass/hashCode.html b/testing/test_package_docs/ex/TemplatedClass/hashCode.html index f4d63769a5..5e934d8878 100644 --- a/testing/test_package_docs/ex/TemplatedClass/hashCode.html +++ b/testing/test_package_docs/ex/TemplatedClass/hashCode.html @@ -25,7 +25,7 @@
    hashCode
    diff --git a/testing/test_package_docs/ex/TemplatedClass/noSuchMethod.html b/testing/test_package_docs/ex/TemplatedClass/noSuchMethod.html index 24c54121ff..c52f1e4c3c 100644 --- a/testing/test_package_docs/ex/TemplatedClass/noSuchMethod.html +++ b/testing/test_package_docs/ex/TemplatedClass/noSuchMethod.html @@ -25,7 +25,7 @@
    noSuchMethod
    diff --git a/testing/test_package_docs/ex/TemplatedClass/operator_equals.html b/testing/test_package_docs/ex/TemplatedClass/operator_equals.html index 71962e1975..d3133b0d11 100644 --- a/testing/test_package_docs/ex/TemplatedClass/operator_equals.html +++ b/testing/test_package_docs/ex/TemplatedClass/operator_equals.html @@ -25,7 +25,7 @@
    operator ==
    diff --git a/testing/test_package_docs/ex/TemplatedClass/runtimeType.html b/testing/test_package_docs/ex/TemplatedClass/runtimeType.html index 263da3905c..9cbf08b1aa 100644 --- a/testing/test_package_docs/ex/TemplatedClass/runtimeType.html +++ b/testing/test_package_docs/ex/TemplatedClass/runtimeType.html @@ -25,7 +25,7 @@
    runtimeType
    diff --git a/testing/test_package_docs/ex/TemplatedClass/toString.html b/testing/test_package_docs/ex/TemplatedClass/toString.html index b7dfb3ba18..505589d97b 100644 --- a/testing/test_package_docs/ex/TemplatedClass/toString.html +++ b/testing/test_package_docs/ex/TemplatedClass/toString.html @@ -25,7 +25,7 @@
    toString
    diff --git a/testing/test_package_docs/ex/TemplatedInterface-class.html b/testing/test_package_docs/ex/TemplatedInterface-class.html index 9833ac3879..3e4da70870 100644 --- a/testing/test_package_docs/ex/TemplatedInterface-class.html +++ b/testing/test_package_docs/ex/TemplatedInterface-class.html @@ -25,7 +25,7 @@
    TemplatedInterface
    @@ -118,7 +118,7 @@
    library ex
    Implements
    @@ -146,7 +146,7 @@

    Properties

    aField - AnotherParameterizedClass<Stream<List<int>>> + AnotherParameterizedClass<Stream<List<int>>>
    @@ -154,7 +154,7 @@

    Properties

    aGetter - AnotherParameterizedClass<Map<A, List<String>>> + AnotherParameterizedClass<Map<A, List<String>>>
    @@ -162,7 +162,7 @@

    Properties

    aSetter - AnotherParameterizedClass<List<bool>> + AnotherParameterizedClass<List<bool>>
    @@ -170,7 +170,7 @@

    Properties

    aInheritedField - AnotherParameterizedClass<List<int>> + AnotherParameterizedClass<List<int>>
    @@ -178,7 +178,7 @@

    Properties

    aInheritedGetter - AnotherParameterizedClass<List<int>> + AnotherParameterizedClass<List<int>>
    @@ -186,7 +186,7 @@

    Properties

    aInheritedSetter - AnotherParameterizedClass<List<int>> + AnotherParameterizedClass<List<int>>
    @@ -216,7 +216,7 @@

    Methods

    aMethodInterface(A value) - AnotherParameterizedClass<List<int>> + AnotherParameterizedClass<List<int>>
    @@ -225,7 +225,7 @@

    Methods

    aTypedefReturningMethodInterface() - ParameterizedTypedef<List<String>> + ParameterizedTypedef<List<String>>
    @@ -234,7 +234,7 @@

    Methods

    aInheritedMethod(int foo) - AnotherParameterizedClass<List<int>> + AnotherParameterizedClass<List<int>>
    @@ -243,7 +243,7 @@

    Methods

    aInheritedTypedefReturningMethod() - ParameterizedTypedef<List<int>> + ParameterizedTypedef<List<int>>
    @@ -275,8 +275,8 @@

    Methods

    Operators

    - operator +(ParameterizedClass<List<int>> other) - ParameterizedClass<List<int>> + operator +(ParameterizedClass<List<int>> other) + ParameterizedClass<List<int>>
    diff --git a/testing/test_package_docs/ex/TemplatedInterface/TemplatedInterface.html b/testing/test_package_docs/ex/TemplatedInterface/TemplatedInterface.html index 96929013fa..5b5de7db9d 100644 --- a/testing/test_package_docs/ex/TemplatedInterface/TemplatedInterface.html +++ b/testing/test_package_docs/ex/TemplatedInterface/TemplatedInterface.html @@ -25,7 +25,7 @@
    TemplatedInterface
    diff --git a/testing/test_package_docs/ex/TemplatedInterface/aField.html b/testing/test_package_docs/ex/TemplatedInterface/aField.html index d3ac180de3..a9027ac3e3 100644 --- a/testing/test_package_docs/ex/TemplatedInterface/aField.html +++ b/testing/test_package_docs/ex/TemplatedInterface/aField.html @@ -25,7 +25,7 @@
    aField
    @@ -73,7 +73,7 @@
    class TemplatedInterface
    - AnotherParameterizedClass<Stream<List<int>>> + AnotherParameterizedClass<Stream<List<int>>> aField
    read / write
    diff --git a/testing/test_package_docs/ex/TemplatedInterface/aGetter.html b/testing/test_package_docs/ex/TemplatedInterface/aGetter.html index 53f36a45b9..e249ca4216 100644 --- a/testing/test_package_docs/ex/TemplatedInterface/aGetter.html +++ b/testing/test_package_docs/ex/TemplatedInterface/aGetter.html @@ -25,7 +25,7 @@
    aGetter
    @@ -76,7 +76,7 @@
    class TemplatedInterface
    - AnotherParameterizedClass<Map<A, List<String>>> + AnotherParameterizedClass<Map<A, List<String>>> aGetter
    diff --git a/testing/test_package_docs/ex/TemplatedInterface/aMethodInterface.html b/testing/test_package_docs/ex/TemplatedInterface/aMethodInterface.html index 699db3d46b..927925a49a 100644 --- a/testing/test_package_docs/ex/TemplatedInterface/aMethodInterface.html +++ b/testing/test_package_docs/ex/TemplatedInterface/aMethodInterface.html @@ -25,7 +25,7 @@
    aMethodInterface
    @@ -73,7 +73,7 @@
    class TemplatedInterface
    - AnotherParameterizedClass<List<int>> + AnotherParameterizedClass<List<int>> aMethodInterface(A value)
    diff --git a/testing/test_package_docs/ex/TemplatedInterface/aSetter.html b/testing/test_package_docs/ex/TemplatedInterface/aSetter.html index bdda8219ee..76cb7e83cf 100644 --- a/testing/test_package_docs/ex/TemplatedInterface/aSetter.html +++ b/testing/test_package_docs/ex/TemplatedInterface/aSetter.html @@ -25,7 +25,7 @@
    aSetter
    @@ -78,7 +78,7 @@
    class TemplatedInterface
    void - aSetter=(AnotherParameterizedClass<List<bool>> thingToSet) + aSetter=(AnotherParameterizedClass<List<bool>> thingToSet)
    diff --git a/testing/test_package_docs/ex/TemplatedInterface/aTypedefReturningMethodInterface.html b/testing/test_package_docs/ex/TemplatedInterface/aTypedefReturningMethodInterface.html index fd0a23a6db..0c003eefe4 100644 --- a/testing/test_package_docs/ex/TemplatedInterface/aTypedefReturningMethodInterface.html +++ b/testing/test_package_docs/ex/TemplatedInterface/aTypedefReturningMethodInterface.html @@ -25,7 +25,7 @@
    aTypedefReturningMethodInterface
    @@ -73,7 +73,7 @@
    class TemplatedInterface
    - ParameterizedTypedef<List<String>> + ParameterizedTypedef<List<String>> aTypedefReturningMethodInterface()
    diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs-class.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs-class.html index 50ede10e98..00e5049ed3 100644 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs-class.html +++ b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs-class.html @@ -153,7 +153,7 @@

    Properties

    Methods

    - getAComplexTypedef<A4, A5, A6>() + getAComplexTypedef<A4, A5, A6>() aComplexTypedef
    @@ -162,8 +162,8 @@

    Methods

    - getAFunctionReturningBool<T1, T2, T3>() - → Function<T4>(String, T1, T4) + getAFunctionReturningBool<T1, T2, T3>() + → Function<T4>(String, T1, T4)
    @@ -172,8 +172,8 @@

    Methods

    - getAFunctionReturningVoid<T1, T2>(void callback(T1 argument1, T2 argument2)) - → Function(T1, T2) + getAFunctionReturningVoid<T1, T2>(void callback(T1 argument1, T2 argument2)) + → Function(T1, T2)
    diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningBool.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningBool.html index 80daee63a7..9481cec858 100644 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningBool.html +++ b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningBool.html @@ -65,7 +65,7 @@
    class TypedFunctionsWithoutTypedefs
    - Function<T4>(String, T1, T4) + Function<T4>(String, T1, T4) getAFunctionReturningBool<T1, T2, T3>()
    diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningVoid.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningVoid.html index 001d6e12f5..245e39e26d 100644 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningVoid.html +++ b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningVoid.html @@ -65,7 +65,7 @@
    class TypedFunctionsWithoutTypedefs
    - Function(T1, T2) + Function(T1, T2) getAFunctionReturningVoid<T1, T2>(void callback(T1 argument1, T2 argument2))
    diff --git a/testing/test_package_docs/ex/WithGeneric-class.html b/testing/test_package_docs/ex/WithGeneric-class.html index e522063ab4..a832a10053 100644 --- a/testing/test_package_docs/ex/WithGeneric-class.html +++ b/testing/test_package_docs/ex/WithGeneric-class.html @@ -25,7 +25,7 @@
    WithGeneric
    diff --git a/testing/test_package_docs/ex/WithGeneric/WithGeneric.html b/testing/test_package_docs/ex/WithGeneric/WithGeneric.html index 0cfa1e0f32..a3ad3fd4b9 100644 --- a/testing/test_package_docs/ex/WithGeneric/WithGeneric.html +++ b/testing/test_package_docs/ex/WithGeneric/WithGeneric.html @@ -25,7 +25,7 @@
    WithGeneric
    diff --git a/testing/test_package_docs/ex/WithGeneric/hashCode.html b/testing/test_package_docs/ex/WithGeneric/hashCode.html index 38f7cee29c..311154f642 100644 --- a/testing/test_package_docs/ex/WithGeneric/hashCode.html +++ b/testing/test_package_docs/ex/WithGeneric/hashCode.html @@ -25,7 +25,7 @@
    hashCode
    diff --git a/testing/test_package_docs/ex/WithGeneric/noSuchMethod.html b/testing/test_package_docs/ex/WithGeneric/noSuchMethod.html index ffa56655e8..8abc9166ba 100644 --- a/testing/test_package_docs/ex/WithGeneric/noSuchMethod.html +++ b/testing/test_package_docs/ex/WithGeneric/noSuchMethod.html @@ -25,7 +25,7 @@
    noSuchMethod
    diff --git a/testing/test_package_docs/ex/WithGeneric/operator_equals.html b/testing/test_package_docs/ex/WithGeneric/operator_equals.html index a437900952..59a268ffa0 100644 --- a/testing/test_package_docs/ex/WithGeneric/operator_equals.html +++ b/testing/test_package_docs/ex/WithGeneric/operator_equals.html @@ -25,7 +25,7 @@
    operator ==
    diff --git a/testing/test_package_docs/ex/WithGeneric/prop.html b/testing/test_package_docs/ex/WithGeneric/prop.html index a3db777ca5..1ee4f047d3 100644 --- a/testing/test_package_docs/ex/WithGeneric/prop.html +++ b/testing/test_package_docs/ex/WithGeneric/prop.html @@ -25,7 +25,7 @@
    prop
    diff --git a/testing/test_package_docs/ex/WithGeneric/runtimeType.html b/testing/test_package_docs/ex/WithGeneric/runtimeType.html index 5eed01c037..767bc5d238 100644 --- a/testing/test_package_docs/ex/WithGeneric/runtimeType.html +++ b/testing/test_package_docs/ex/WithGeneric/runtimeType.html @@ -25,7 +25,7 @@
    runtimeType
    diff --git a/testing/test_package_docs/ex/WithGeneric/toString.html b/testing/test_package_docs/ex/WithGeneric/toString.html index 955f7ae64c..4ced662115 100644 --- a/testing/test_package_docs/ex/WithGeneric/toString.html +++ b/testing/test_package_docs/ex/WithGeneric/toString.html @@ -25,7 +25,7 @@
    toString
    diff --git a/testing/test_package_docs/ex/WithGenericSub-class.html b/testing/test_package_docs/ex/WithGenericSub-class.html index f1adb5c6c7..434f04ab2c 100644 --- a/testing/test_package_docs/ex/WithGenericSub-class.html +++ b/testing/test_package_docs/ex/WithGenericSub-class.html @@ -114,7 +114,7 @@
    library ex
    Inheritance
    diff --git a/testing/test_package_docs/ex/aComplexTypedef.html b/testing/test_package_docs/ex/aComplexTypedef.html index b231f6bea0..aa76d50fa6 100644 --- a/testing/test_package_docs/ex/aComplexTypedef.html +++ b/testing/test_package_docs/ex/aComplexTypedef.html @@ -109,7 +109,7 @@
    library ex
    - Function(A1, A2, A3) + Function(A1, A2, A3) aComplexTypedef(A3, String)
    diff --git a/testing/test_package_docs/ex/ex-library.html b/testing/test_package_docs/ex/ex-library.html index 605c8ce9ab..1eb0c5875f 100644 --- a/testing/test_package_docs/ex/ex-library.html +++ b/testing/test_package_docs/ex/ex-library.html @@ -64,7 +64,7 @@

    Classes

    - AnotherParameterizedClass + AnotherParameterizedClass<B>
    @@ -136,7 +136,7 @@

    Classes

    - F + F<T extends String>
    @@ -168,7 +168,7 @@

    Classes

    A class
    - ParameterizedClass + ParameterizedClass<T>
    Support class to test inheritance + type expansion from implements clause. @@ -205,13 +205,13 @@

    Classes

    that has some operators
    - TemplatedClass + TemplatedClass<X>
    - TemplatedInterface + TemplatedInterface<A>
    Class for testing expansion of type from implements clause. @@ -223,7 +223,7 @@

    Classes

    This class has a complicated type situation.
    - WithGeneric + WithGeneric<T>
    @@ -331,7 +331,7 @@

    Constants

    PRETTY_COLORS - → List<String> + → List<String>
    @@ -404,7 +404,7 @@

    Functions

    - genericFunction<T>(T arg) + genericFunction<T>(T arg) → T
    @@ -434,8 +434,8 @@

    Typedefs

    - aComplexTypedef(A3, String) - → Function(A1, A2, A3) + aComplexTypedef<A1, A2, A3>(A3, String) + → Function(A1, A2, A3)
    @@ -443,7 +443,7 @@

    Typedefs

    - ParameterizedTypedef(T msg, int foo) + ParameterizedTypedef<T>(T msg, int foo) → String
    @@ -452,7 +452,7 @@

    Typedefs

    - processMessage(String msg) + processMessage<T>(String msg) → String
    diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html b/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html index 10ce93c09e..fcbc28f141 100644 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html +++ b/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html @@ -185,7 +185,7 @@

    Properties

    explicitGetterImplicitSetter - ↔ List<int> + ↔ List<int>
    Getter doc for explicitGetterImplicitSetter @@ -209,7 +209,7 @@

    Properties

    explicitSetter - dynamic Function(int, Cool, List<int>) + dynamic Function(int, Cool, List<int>)
    Set to f, and don't warn about bar or baz. diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetterImplicitSetter.html b/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetterImplicitSetter.html index 523123238f..a7837b05b9 100644 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetterImplicitSetter.html +++ b/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetterImplicitSetter.html @@ -78,7 +78,7 @@
    class ClassWithUnusualProperties
    - List<int> + List<int> explicitGetterImplicitSetter
    @@ -92,7 +92,7 @@
    class ClassWithUnusualProperties
    void - explicitGetterImplicitSetter=(List<int> _explicitGetterImplicitSetter) + explicitGetterImplicitSetter=(List<int> _explicitGetterImplicitSetter)
    inherited
    diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitSetter.html b/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitSetter.html index f389b9db94..4ed3c7e2c1 100644 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitSetter.html +++ b/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitSetter.html @@ -80,7 +80,7 @@
    class ClassWithUnusualProperties
    void - explicitSetter=(dynamic f(int bar, Cool baz, List<int> macTruck)) + explicitSetter=(dynamic f(int bar, Cool baz, List<int> macTruck))
    diff --git a/testing/test_package_docs/fake/Color-class.html b/testing/test_package_docs/fake/Color-class.html index bfea0d91df..a3a99f7428 100644 --- a/testing/test_package_docs/fake/Color-class.html +++ b/testing/test_package_docs/fake/Color-class.html @@ -197,7 +197,7 @@

    Constants

    values - → List<Color> + → List<Color>

    A constant List of the values in this enum, in order of their declaration.

    diff --git a/testing/test_package_docs/fake/ConstructorTester-class.html b/testing/test_package_docs/fake/ConstructorTester-class.html index f853f43ab9..fda0fdafd1 100644 --- a/testing/test_package_docs/fake/ConstructorTester-class.html +++ b/testing/test_package_docs/fake/ConstructorTester-class.html @@ -25,7 +25,7 @@
    ConstructorTester
    diff --git a/testing/test_package_docs/fake/ConstructorTester/ConstructorTester.fromSomething.html b/testing/test_package_docs/fake/ConstructorTester/ConstructorTester.fromSomething.html index 49a53c81e6..6f48e2afe2 100644 --- a/testing/test_package_docs/fake/ConstructorTester/ConstructorTester.fromSomething.html +++ b/testing/test_package_docs/fake/ConstructorTester/ConstructorTester.fromSomething.html @@ -25,7 +25,7 @@
    ConstructorTester.fromSomething
    diff --git a/testing/test_package_docs/fake/ConstructorTester/ConstructorTester.html b/testing/test_package_docs/fake/ConstructorTester/ConstructorTester.html index deddd64e3c..60b78882de 100644 --- a/testing/test_package_docs/fake/ConstructorTester/ConstructorTester.html +++ b/testing/test_package_docs/fake/ConstructorTester/ConstructorTester.html @@ -25,7 +25,7 @@
    ConstructorTester
    diff --git a/testing/test_package_docs/fake/ConstructorTester/hashCode.html b/testing/test_package_docs/fake/ConstructorTester/hashCode.html index 765ebb103c..f133a7c3c4 100644 --- a/testing/test_package_docs/fake/ConstructorTester/hashCode.html +++ b/testing/test_package_docs/fake/ConstructorTester/hashCode.html @@ -25,7 +25,7 @@
    hashCode
    diff --git a/testing/test_package_docs/fake/ConstructorTester/noSuchMethod.html b/testing/test_package_docs/fake/ConstructorTester/noSuchMethod.html index af4ee84ac0..8fc486cdd4 100644 --- a/testing/test_package_docs/fake/ConstructorTester/noSuchMethod.html +++ b/testing/test_package_docs/fake/ConstructorTester/noSuchMethod.html @@ -25,7 +25,7 @@
    noSuchMethod
    diff --git a/testing/test_package_docs/fake/ConstructorTester/operator_equals.html b/testing/test_package_docs/fake/ConstructorTester/operator_equals.html index eec0667af0..f93f1f6581 100644 --- a/testing/test_package_docs/fake/ConstructorTester/operator_equals.html +++ b/testing/test_package_docs/fake/ConstructorTester/operator_equals.html @@ -25,7 +25,7 @@
    operator ==
    diff --git a/testing/test_package_docs/fake/ConstructorTester/runtimeType.html b/testing/test_package_docs/fake/ConstructorTester/runtimeType.html index 5945b099c8..dfdcd9c526 100644 --- a/testing/test_package_docs/fake/ConstructorTester/runtimeType.html +++ b/testing/test_package_docs/fake/ConstructorTester/runtimeType.html @@ -25,7 +25,7 @@
    runtimeType
    diff --git a/testing/test_package_docs/fake/ConstructorTester/toString.html b/testing/test_package_docs/fake/ConstructorTester/toString.html index 358d72daa5..ac333d43e5 100644 --- a/testing/test_package_docs/fake/ConstructorTester/toString.html +++ b/testing/test_package_docs/fake/ConstructorTester/toString.html @@ -25,7 +25,7 @@
    toString
    diff --git a/testing/test_package_docs/fake/ExtraSpecialList-class.html b/testing/test_package_docs/fake/ExtraSpecialList-class.html index adfdc249c2..0d216846c8 100644 --- a/testing/test_package_docs/fake/ExtraSpecialList-class.html +++ b/testing/test_package_docs/fake/ExtraSpecialList-class.html @@ -25,7 +25,7 @@
    ExtraSpecialList
    @@ -138,7 +138,7 @@
    library fake
    Inheritance
    • Object
    • -
    • ListBase<E>
    • +
    • ListBase<E>
    • SpecialList
    • ExtraSpecialList
    @@ -281,7 +281,7 @@

    Methods

    asMap() - → Map<int, dynamic> + → Map<int, dynamic>
    @@ -325,8 +325,8 @@

    Methods

    inherited
    - expand<T>(Iterable<T> f(E element)) - → Iterable<T> + expand<T>(Iterable<T> f(E element)) + → Iterable<T>
    @@ -352,7 +352,7 @@

    Methods

    inherited
    - fold<T>(T initialValue, T combine(T previousValue, E element)) + fold<T>(T initialValue, T combine(T previousValue, E element)) → T
    @@ -433,8 +433,8 @@

    Methods

    inherited
    - map<T>(T f(E element)) - → Iterable<T> + map<T>(T f(E element)) + → Iterable<T>
    diff --git a/testing/test_package_docs/fake/ExtraSpecialList/ExtraSpecialList.html b/testing/test_package_docs/fake/ExtraSpecialList/ExtraSpecialList.html index b5af60dba8..13d7be4357 100644 --- a/testing/test_package_docs/fake/ExtraSpecialList/ExtraSpecialList.html +++ b/testing/test_package_docs/fake/ExtraSpecialList/ExtraSpecialList.html @@ -25,7 +25,7 @@
    ExtraSpecialList
    diff --git a/testing/test_package_docs/fake/HasGenericWithExtends-class.html b/testing/test_package_docs/fake/HasGenericWithExtends-class.html index 236da1370c..7cfb69742c 100644 --- a/testing/test_package_docs/fake/HasGenericWithExtends-class.html +++ b/testing/test_package_docs/fake/HasGenericWithExtends-class.html @@ -25,7 +25,7 @@
    HasGenericWithExtends
    diff --git a/testing/test_package_docs/fake/HasGenericWithExtends/HasGenericWithExtends.html b/testing/test_package_docs/fake/HasGenericWithExtends/HasGenericWithExtends.html index 139ab2f836..bbb115d206 100644 --- a/testing/test_package_docs/fake/HasGenericWithExtends/HasGenericWithExtends.html +++ b/testing/test_package_docs/fake/HasGenericWithExtends/HasGenericWithExtends.html @@ -25,7 +25,7 @@
    HasGenericWithExtends
    diff --git a/testing/test_package_docs/fake/HasGenericWithExtends/hashCode.html b/testing/test_package_docs/fake/HasGenericWithExtends/hashCode.html index 4ff739f9ca..1741da0095 100644 --- a/testing/test_package_docs/fake/HasGenericWithExtends/hashCode.html +++ b/testing/test_package_docs/fake/HasGenericWithExtends/hashCode.html @@ -25,7 +25,7 @@
    hashCode
    diff --git a/testing/test_package_docs/fake/HasGenericWithExtends/noSuchMethod.html b/testing/test_package_docs/fake/HasGenericWithExtends/noSuchMethod.html index 676c420980..a352135a36 100644 --- a/testing/test_package_docs/fake/HasGenericWithExtends/noSuchMethod.html +++ b/testing/test_package_docs/fake/HasGenericWithExtends/noSuchMethod.html @@ -25,7 +25,7 @@
    noSuchMethod
    diff --git a/testing/test_package_docs/fake/HasGenericWithExtends/operator_equals.html b/testing/test_package_docs/fake/HasGenericWithExtends/operator_equals.html index c3caee68f5..e47099012b 100644 --- a/testing/test_package_docs/fake/HasGenericWithExtends/operator_equals.html +++ b/testing/test_package_docs/fake/HasGenericWithExtends/operator_equals.html @@ -25,7 +25,7 @@
    operator ==
    diff --git a/testing/test_package_docs/fake/HasGenericWithExtends/runtimeType.html b/testing/test_package_docs/fake/HasGenericWithExtends/runtimeType.html index 51083750a1..86c0bcf24e 100644 --- a/testing/test_package_docs/fake/HasGenericWithExtends/runtimeType.html +++ b/testing/test_package_docs/fake/HasGenericWithExtends/runtimeType.html @@ -25,7 +25,7 @@
    runtimeType
    diff --git a/testing/test_package_docs/fake/HasGenericWithExtends/toString.html b/testing/test_package_docs/fake/HasGenericWithExtends/toString.html index 901c5803b2..f78526776c 100644 --- a/testing/test_package_docs/fake/HasGenericWithExtends/toString.html +++ b/testing/test_package_docs/fake/HasGenericWithExtends/toString.html @@ -25,7 +25,7 @@
    toString
    diff --git a/testing/test_package_docs/fake/HasGenerics-class.html b/testing/test_package_docs/fake/HasGenerics-class.html index 89068d794e..07535f63f0 100644 --- a/testing/test_package_docs/fake/HasGenerics-class.html +++ b/testing/test_package_docs/fake/HasGenerics-class.html @@ -25,7 +25,7 @@
    HasGenerics
    @@ -172,7 +172,7 @@

    Methods

    convertToMap() - → Map<X, Y> + → Map<X, Y>
    diff --git a/testing/test_package_docs/fake/HasGenerics/HasGenerics.html b/testing/test_package_docs/fake/HasGenerics/HasGenerics.html index 7dab3eb5af..4549241d41 100644 --- a/testing/test_package_docs/fake/HasGenerics/HasGenerics.html +++ b/testing/test_package_docs/fake/HasGenerics/HasGenerics.html @@ -25,7 +25,7 @@
    HasGenerics
    diff --git a/testing/test_package_docs/fake/HasGenerics/convertToMap.html b/testing/test_package_docs/fake/HasGenerics/convertToMap.html index 5006a132ef..23006a6d63 100644 --- a/testing/test_package_docs/fake/HasGenerics/convertToMap.html +++ b/testing/test_package_docs/fake/HasGenerics/convertToMap.html @@ -25,7 +25,7 @@
    convertToMap
    @@ -66,7 +66,7 @@
    class HasGenerics
    - Map<X, Y> + Map<X, Y> convertToMap()
    diff --git a/testing/test_package_docs/fake/HasGenerics/doStuff.html b/testing/test_package_docs/fake/HasGenerics/doStuff.html index 537a74060a..2580176d70 100644 --- a/testing/test_package_docs/fake/HasGenerics/doStuff.html +++ b/testing/test_package_docs/fake/HasGenerics/doStuff.html @@ -25,7 +25,7 @@
    doStuff
    diff --git a/testing/test_package_docs/fake/HasGenerics/hashCode.html b/testing/test_package_docs/fake/HasGenerics/hashCode.html index 34e0477fe7..5bd19f5d09 100644 --- a/testing/test_package_docs/fake/HasGenerics/hashCode.html +++ b/testing/test_package_docs/fake/HasGenerics/hashCode.html @@ -25,7 +25,7 @@
    hashCode
    diff --git a/testing/test_package_docs/fake/HasGenerics/noSuchMethod.html b/testing/test_package_docs/fake/HasGenerics/noSuchMethod.html index 1be46e50c3..d7cad9d8da 100644 --- a/testing/test_package_docs/fake/HasGenerics/noSuchMethod.html +++ b/testing/test_package_docs/fake/HasGenerics/noSuchMethod.html @@ -25,7 +25,7 @@
    noSuchMethod
    diff --git a/testing/test_package_docs/fake/HasGenerics/operator_equals.html b/testing/test_package_docs/fake/HasGenerics/operator_equals.html index 167c081787..93080b146a 100644 --- a/testing/test_package_docs/fake/HasGenerics/operator_equals.html +++ b/testing/test_package_docs/fake/HasGenerics/operator_equals.html @@ -25,7 +25,7 @@
    operator ==
    diff --git a/testing/test_package_docs/fake/HasGenerics/returnX.html b/testing/test_package_docs/fake/HasGenerics/returnX.html index ae89d28f59..ce7e4f2d16 100644 --- a/testing/test_package_docs/fake/HasGenerics/returnX.html +++ b/testing/test_package_docs/fake/HasGenerics/returnX.html @@ -25,7 +25,7 @@
    returnX
    diff --git a/testing/test_package_docs/fake/HasGenerics/returnZ.html b/testing/test_package_docs/fake/HasGenerics/returnZ.html index ed7be6c918..9da094b9b9 100644 --- a/testing/test_package_docs/fake/HasGenerics/returnZ.html +++ b/testing/test_package_docs/fake/HasGenerics/returnZ.html @@ -25,7 +25,7 @@
    returnZ
    diff --git a/testing/test_package_docs/fake/HasGenerics/runtimeType.html b/testing/test_package_docs/fake/HasGenerics/runtimeType.html index 4944b45ecf..631d84e78f 100644 --- a/testing/test_package_docs/fake/HasGenerics/runtimeType.html +++ b/testing/test_package_docs/fake/HasGenerics/runtimeType.html @@ -25,7 +25,7 @@
    runtimeType
    diff --git a/testing/test_package_docs/fake/HasGenerics/toString.html b/testing/test_package_docs/fake/HasGenerics/toString.html index e8d541f707..7e7f1bff7a 100644 --- a/testing/test_package_docs/fake/HasGenerics/toString.html +++ b/testing/test_package_docs/fake/HasGenerics/toString.html @@ -25,7 +25,7 @@
    toString
    diff --git a/testing/test_package_docs/fake/ImplicitProperties-class.html b/testing/test_package_docs/fake/ImplicitProperties-class.html index 9770b9bd4b..38dfa16e1f 100644 --- a/testing/test_package_docs/fake/ImplicitProperties-class.html +++ b/testing/test_package_docs/fake/ImplicitProperties-class.html @@ -166,7 +166,7 @@

    Properties

    explicitGetterImplicitSetter - ↔ List<int> + ↔ List<int>
    Docs for explicitGetterImplicitSetter from ImplicitProperties. diff --git a/testing/test_package_docs/fake/ImplicitProperties/explicitGetterImplicitSetter.html b/testing/test_package_docs/fake/ImplicitProperties/explicitGetterImplicitSetter.html index 997746e5ea..fba65b8f83 100644 --- a/testing/test_package_docs/fake/ImplicitProperties/explicitGetterImplicitSetter.html +++ b/testing/test_package_docs/fake/ImplicitProperties/explicitGetterImplicitSetter.html @@ -67,7 +67,7 @@
    class ImplicitProperties
    - List<int> + List<int> explicitGetterImplicitSetter
    read / write
    diff --git a/testing/test_package_docs/fake/LongFirstLine-class.html b/testing/test_package_docs/fake/LongFirstLine-class.html index f294e1f44d..d6c66fb1ba 100644 --- a/testing/test_package_docs/fake/LongFirstLine-class.html +++ b/testing/test_package_docs/fake/LongFirstLine-class.html @@ -228,7 +228,7 @@

    Properties

    powers - ↔ List<String> + ↔ List<String>
    In the super class. diff --git a/testing/test_package_docs/fake/NewGenericTypedef.html b/testing/test_package_docs/fake/NewGenericTypedef.html index e65de9ef60..0ad2984cd7 100644 --- a/testing/test_package_docs/fake/NewGenericTypedef.html +++ b/testing/test_package_docs/fake/NewGenericTypedef.html @@ -130,7 +130,7 @@
    library fake
    - List<S> + List<S> NewGenericTypedef<S>(T, int, bool)
    diff --git a/testing/test_package_docs/fake/OtherGenericsThing-class.html b/testing/test_package_docs/fake/OtherGenericsThing-class.html index 7865f122ac..83cb3eb8aa 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing-class.html +++ b/testing/test_package_docs/fake/OtherGenericsThing-class.html @@ -25,7 +25,7 @@
    OtherGenericsThing
    @@ -172,7 +172,7 @@

    Methods

    convert() - HasGenerics<A, Cool, String> + HasGenerics<A, Cool, String>
    diff --git a/testing/test_package_docs/fake/OtherGenericsThing/OtherGenericsThing.html b/testing/test_package_docs/fake/OtherGenericsThing/OtherGenericsThing.html index 51bb230ee5..8cf7ee461c 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing/OtherGenericsThing.html +++ b/testing/test_package_docs/fake/OtherGenericsThing/OtherGenericsThing.html @@ -25,7 +25,7 @@
    OtherGenericsThing
    diff --git a/testing/test_package_docs/fake/OtherGenericsThing/convert.html b/testing/test_package_docs/fake/OtherGenericsThing/convert.html index 3cb965253e..88fc38ce29 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing/convert.html +++ b/testing/test_package_docs/fake/OtherGenericsThing/convert.html @@ -25,7 +25,7 @@
    convert
    @@ -63,7 +63,7 @@
    class OtherGenericsThing
    - HasGenerics<A, Cool, String> + HasGenerics<A, Cool, String> convert()
    diff --git a/testing/test_package_docs/fake/OtherGenericsThing/hashCode.html b/testing/test_package_docs/fake/OtherGenericsThing/hashCode.html index 9f50531de1..78cd396d59 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing/hashCode.html +++ b/testing/test_package_docs/fake/OtherGenericsThing/hashCode.html @@ -25,7 +25,7 @@
    hashCode
    diff --git a/testing/test_package_docs/fake/OtherGenericsThing/noSuchMethod.html b/testing/test_package_docs/fake/OtherGenericsThing/noSuchMethod.html index 269d087bc2..81eabd0bd6 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing/noSuchMethod.html +++ b/testing/test_package_docs/fake/OtherGenericsThing/noSuchMethod.html @@ -25,7 +25,7 @@
    noSuchMethod
    diff --git a/testing/test_package_docs/fake/OtherGenericsThing/operator_equals.html b/testing/test_package_docs/fake/OtherGenericsThing/operator_equals.html index 69e0fbe90d..1e77bccd34 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing/operator_equals.html +++ b/testing/test_package_docs/fake/OtherGenericsThing/operator_equals.html @@ -25,7 +25,7 @@
    operator ==
    diff --git a/testing/test_package_docs/fake/OtherGenericsThing/runtimeType.html b/testing/test_package_docs/fake/OtherGenericsThing/runtimeType.html index 483e8eb825..6b28257657 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing/runtimeType.html +++ b/testing/test_package_docs/fake/OtherGenericsThing/runtimeType.html @@ -25,7 +25,7 @@
    runtimeType
    diff --git a/testing/test_package_docs/fake/OtherGenericsThing/toString.html b/testing/test_package_docs/fake/OtherGenericsThing/toString.html index fb8136da38..b3d5401544 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing/toString.html +++ b/testing/test_package_docs/fake/OtherGenericsThing/toString.html @@ -25,7 +25,7 @@
    toString
    diff --git a/testing/test_package_docs/fake/SpecialList-class.html b/testing/test_package_docs/fake/SpecialList-class.html index 2deb6e1af0..f60c12d774 100644 --- a/testing/test_package_docs/fake/SpecialList-class.html +++ b/testing/test_package_docs/fake/SpecialList-class.html @@ -25,7 +25,7 @@
    SpecialList
    @@ -138,7 +138,7 @@
    library fake
    Inheritance
    • Object
    • -
    • ListBase<E>
    • +
    • ListBase<E>
    • SpecialList
    @@ -211,7 +211,7 @@

    Properties

    iterator - → Iterator<E> + → Iterator<E>
    @@ -227,7 +227,7 @@

    Properties

    reversed - → Iterable<E> + → Iterable<E>
    @@ -265,7 +265,7 @@

    Methods

    inherited
    - addAll(Iterable<E> iterable) + addAll(Iterable<E> iterable) → void
    @@ -284,7 +284,7 @@

    Methods

    asMap() - → Map<int, E> + → Map<int, E>
    @@ -328,8 +328,8 @@

    Methods

    inherited
    - expand<T>(Iterable<T> f(E element)) - → Iterable<T> + expand<T>(Iterable<T> f(E element)) + → Iterable<T>
    @@ -355,7 +355,7 @@

    Methods

    inherited
    - fold<T>(T initialValue, T combine(T previousValue, E element)) + fold<T>(T initialValue, T combine(T previousValue, E element)) → T
    @@ -374,7 +374,7 @@

    Methods

    getRange(int start, int end) - → Iterable<E> + → Iterable<E>
    @@ -400,7 +400,7 @@

    Methods

    inherited
    - insertAll(int index, Iterable<E> iterable) + insertAll(int index, Iterable<E> iterable) → void
    @@ -436,8 +436,8 @@

    Methods

    inherited
    - map<T>(T f(E element)) - → Iterable<T> + map<T>(T f(E element)) + → Iterable<T>
    @@ -508,7 +508,7 @@

    Methods

    inherited
    - replaceRange(int start, int end, Iterable<E> newContents) + replaceRange(int start, int end, Iterable<E> newContents) → void
    @@ -526,7 +526,7 @@

    Methods

    inherited
    - setAll(int index, Iterable<E> iterable) + setAll(int index, Iterable<E> iterable) → void
    @@ -535,7 +535,7 @@

    Methods

    inherited
    - setRange(int start, int end, Iterable<E> iterable, [ int skipCount = 0 ]) + setRange(int start, int end, Iterable<E> iterable, [ int skipCount = 0 ]) → void
    @@ -563,7 +563,7 @@

    Methods

    skip(int count) - → Iterable<E> + → Iterable<E>
    @@ -572,7 +572,7 @@

    Methods

    skipWhile(bool test(E element)) - → Iterable<E> + → Iterable<E>
    @@ -590,7 +590,7 @@

    Methods

    sublist(int start, [ int end ]) - → List<E> + → List<E>
    @@ -599,7 +599,7 @@

    Methods

    take(int count) - → Iterable<E> + → Iterable<E>
    @@ -608,7 +608,7 @@

    Methods

    takeWhile(bool test(E element)) - → Iterable<E> + → Iterable<E>
    @@ -617,7 +617,7 @@

    Methods

    toList({bool growable: true }) - → List<E> + → List<E>
    @@ -626,7 +626,7 @@

    Methods

    toSet() - → Set<E> + → Set<E>
    @@ -644,7 +644,7 @@

    Methods

    where(bool test(E element)) - → Iterable<E> + → Iterable<E>
    diff --git a/testing/test_package_docs/fake/SpecialList/SpecialList.html b/testing/test_package_docs/fake/SpecialList/SpecialList.html index 60cb4c3653..74d20550ce 100644 --- a/testing/test_package_docs/fake/SpecialList/SpecialList.html +++ b/testing/test_package_docs/fake/SpecialList/SpecialList.html @@ -25,7 +25,7 @@
    SpecialList
    diff --git a/testing/test_package_docs/fake/SpecialList/add.html b/testing/test_package_docs/fake/SpecialList/add.html index 1244a442d4..d2f804bc1d 100644 --- a/testing/test_package_docs/fake/SpecialList/add.html +++ b/testing/test_package_docs/fake/SpecialList/add.html @@ -25,7 +25,7 @@
    add
    diff --git a/testing/test_package_docs/fake/SpecialList/addAll.html b/testing/test_package_docs/fake/SpecialList/addAll.html index 98d281ca1b..2a74994633 100644 --- a/testing/test_package_docs/fake/SpecialList/addAll.html +++ b/testing/test_package_docs/fake/SpecialList/addAll.html @@ -25,7 +25,7 @@
    addAll
    @@ -115,7 +115,7 @@
    class SpecialList
    void - addAll(Iterable<E> iterable) + addAll(Iterable<E> iterable)
    diff --git a/testing/test_package_docs/fake/SpecialList/any.html b/testing/test_package_docs/fake/SpecialList/any.html index d1bf40a0c3..130484ce2b 100644 --- a/testing/test_package_docs/fake/SpecialList/any.html +++ b/testing/test_package_docs/fake/SpecialList/any.html @@ -25,7 +25,7 @@
    any
    diff --git a/testing/test_package_docs/fake/SpecialList/asMap.html b/testing/test_package_docs/fake/SpecialList/asMap.html index 61e9676517..a80410bc0c 100644 --- a/testing/test_package_docs/fake/SpecialList/asMap.html +++ b/testing/test_package_docs/fake/SpecialList/asMap.html @@ -25,7 +25,7 @@
    asMap
    @@ -114,7 +114,7 @@
    class SpecialList
    - Map<int, E> + Map<int, E> asMap()
    diff --git a/testing/test_package_docs/fake/SpecialList/clear.html b/testing/test_package_docs/fake/SpecialList/clear.html index ec3f85cf6d..e29c262727 100644 --- a/testing/test_package_docs/fake/SpecialList/clear.html +++ b/testing/test_package_docs/fake/SpecialList/clear.html @@ -25,7 +25,7 @@
    clear
    diff --git a/testing/test_package_docs/fake/SpecialList/contains.html b/testing/test_package_docs/fake/SpecialList/contains.html index 850e8999ad..09aa2b09a2 100644 --- a/testing/test_package_docs/fake/SpecialList/contains.html +++ b/testing/test_package_docs/fake/SpecialList/contains.html @@ -25,7 +25,7 @@
    contains
    diff --git a/testing/test_package_docs/fake/SpecialList/elementAt.html b/testing/test_package_docs/fake/SpecialList/elementAt.html index 05daf09ab3..0810b45159 100644 --- a/testing/test_package_docs/fake/SpecialList/elementAt.html +++ b/testing/test_package_docs/fake/SpecialList/elementAt.html @@ -25,7 +25,7 @@
    elementAt
    diff --git a/testing/test_package_docs/fake/SpecialList/every.html b/testing/test_package_docs/fake/SpecialList/every.html index d7dc2f35ea..3e9aa32a5a 100644 --- a/testing/test_package_docs/fake/SpecialList/every.html +++ b/testing/test_package_docs/fake/SpecialList/every.html @@ -25,7 +25,7 @@
    every
    diff --git a/testing/test_package_docs/fake/SpecialList/expand.html b/testing/test_package_docs/fake/SpecialList/expand.html index 88a4f964cd..a1f349c42e 100644 --- a/testing/test_package_docs/fake/SpecialList/expand.html +++ b/testing/test_package_docs/fake/SpecialList/expand.html @@ -25,7 +25,7 @@
    expand
    @@ -114,8 +114,8 @@
    class SpecialList
    - Iterable<T> - expand<T>(Iterable<T> f(E element)) + Iterable<T> + expand<T>(Iterable<T> f(E element))
    diff --git a/testing/test_package_docs/fake/SpecialList/fillRange.html b/testing/test_package_docs/fake/SpecialList/fillRange.html index 485163f64a..d931e78f67 100644 --- a/testing/test_package_docs/fake/SpecialList/fillRange.html +++ b/testing/test_package_docs/fake/SpecialList/fillRange.html @@ -25,7 +25,7 @@
    fillRange
    diff --git a/testing/test_package_docs/fake/SpecialList/first.html b/testing/test_package_docs/fake/SpecialList/first.html index 8a1d11917b..603dc19462 100644 --- a/testing/test_package_docs/fake/SpecialList/first.html +++ b/testing/test_package_docs/fake/SpecialList/first.html @@ -25,7 +25,7 @@
    first
    diff --git a/testing/test_package_docs/fake/SpecialList/firstWhere.html b/testing/test_package_docs/fake/SpecialList/firstWhere.html index 458381d9f3..80eb74068e 100644 --- a/testing/test_package_docs/fake/SpecialList/firstWhere.html +++ b/testing/test_package_docs/fake/SpecialList/firstWhere.html @@ -25,7 +25,7 @@
    firstWhere
    diff --git a/testing/test_package_docs/fake/SpecialList/fold.html b/testing/test_package_docs/fake/SpecialList/fold.html index 4b4f3425c8..3c38c7d0da 100644 --- a/testing/test_package_docs/fake/SpecialList/fold.html +++ b/testing/test_package_docs/fake/SpecialList/fold.html @@ -25,7 +25,7 @@
    fold
    diff --git a/testing/test_package_docs/fake/SpecialList/forEach.html b/testing/test_package_docs/fake/SpecialList/forEach.html index 81f7954650..071d262ba0 100644 --- a/testing/test_package_docs/fake/SpecialList/forEach.html +++ b/testing/test_package_docs/fake/SpecialList/forEach.html @@ -25,7 +25,7 @@
    forEach
    diff --git a/testing/test_package_docs/fake/SpecialList/getRange.html b/testing/test_package_docs/fake/SpecialList/getRange.html index bb9475b911..7fc81bfb3d 100644 --- a/testing/test_package_docs/fake/SpecialList/getRange.html +++ b/testing/test_package_docs/fake/SpecialList/getRange.html @@ -25,7 +25,7 @@
    getRange
    @@ -114,7 +114,7 @@
    class SpecialList
    - Iterable<E> + Iterable<E> getRange(int start, int end)
    diff --git a/testing/test_package_docs/fake/SpecialList/hashCode.html b/testing/test_package_docs/fake/SpecialList/hashCode.html index 909d80bc71..45faaf815f 100644 --- a/testing/test_package_docs/fake/SpecialList/hashCode.html +++ b/testing/test_package_docs/fake/SpecialList/hashCode.html @@ -25,7 +25,7 @@
    hashCode
    diff --git a/testing/test_package_docs/fake/SpecialList/indexOf.html b/testing/test_package_docs/fake/SpecialList/indexOf.html index 3e66337c7e..b42a8e01ba 100644 --- a/testing/test_package_docs/fake/SpecialList/indexOf.html +++ b/testing/test_package_docs/fake/SpecialList/indexOf.html @@ -25,7 +25,7 @@
    indexOf
    diff --git a/testing/test_package_docs/fake/SpecialList/insert.html b/testing/test_package_docs/fake/SpecialList/insert.html index cf35c08392..614f6d9377 100644 --- a/testing/test_package_docs/fake/SpecialList/insert.html +++ b/testing/test_package_docs/fake/SpecialList/insert.html @@ -25,7 +25,7 @@
    insert
    diff --git a/testing/test_package_docs/fake/SpecialList/insertAll.html b/testing/test_package_docs/fake/SpecialList/insertAll.html index 73cc041880..19fde0c835 100644 --- a/testing/test_package_docs/fake/SpecialList/insertAll.html +++ b/testing/test_package_docs/fake/SpecialList/insertAll.html @@ -25,7 +25,7 @@
    insertAll
    @@ -115,7 +115,7 @@
    class SpecialList
    void - insertAll(int index, Iterable<E> iterable) + insertAll(int index, Iterable<E> iterable)
    diff --git a/testing/test_package_docs/fake/SpecialList/isEmpty.html b/testing/test_package_docs/fake/SpecialList/isEmpty.html index d3d6345130..65ea406f8d 100644 --- a/testing/test_package_docs/fake/SpecialList/isEmpty.html +++ b/testing/test_package_docs/fake/SpecialList/isEmpty.html @@ -25,7 +25,7 @@
    isEmpty
    diff --git a/testing/test_package_docs/fake/SpecialList/isNotEmpty.html b/testing/test_package_docs/fake/SpecialList/isNotEmpty.html index e9a60d66dd..f903511eba 100644 --- a/testing/test_package_docs/fake/SpecialList/isNotEmpty.html +++ b/testing/test_package_docs/fake/SpecialList/isNotEmpty.html @@ -25,7 +25,7 @@
    isNotEmpty
    diff --git a/testing/test_package_docs/fake/SpecialList/iterator.html b/testing/test_package_docs/fake/SpecialList/iterator.html index 6b054b6f2a..93841510cd 100644 --- a/testing/test_package_docs/fake/SpecialList/iterator.html +++ b/testing/test_package_docs/fake/SpecialList/iterator.html @@ -25,7 +25,7 @@
    iterator
    @@ -117,7 +117,7 @@
    class SpecialList
    - Iterator<E> + Iterator<E> iterator
    inherited
    diff --git a/testing/test_package_docs/fake/SpecialList/join.html b/testing/test_package_docs/fake/SpecialList/join.html index 702b7aa344..0bc20d4c41 100644 --- a/testing/test_package_docs/fake/SpecialList/join.html +++ b/testing/test_package_docs/fake/SpecialList/join.html @@ -25,7 +25,7 @@
    join
    diff --git a/testing/test_package_docs/fake/SpecialList/last.html b/testing/test_package_docs/fake/SpecialList/last.html index f27e7f3ec3..4ac88d0eb5 100644 --- a/testing/test_package_docs/fake/SpecialList/last.html +++ b/testing/test_package_docs/fake/SpecialList/last.html @@ -25,7 +25,7 @@
    last
    diff --git a/testing/test_package_docs/fake/SpecialList/lastIndexOf.html b/testing/test_package_docs/fake/SpecialList/lastIndexOf.html index c0c32874a0..e4b9b5deea 100644 --- a/testing/test_package_docs/fake/SpecialList/lastIndexOf.html +++ b/testing/test_package_docs/fake/SpecialList/lastIndexOf.html @@ -25,7 +25,7 @@
    lastIndexOf
    diff --git a/testing/test_package_docs/fake/SpecialList/lastWhere.html b/testing/test_package_docs/fake/SpecialList/lastWhere.html index cd259c5e06..781c673937 100644 --- a/testing/test_package_docs/fake/SpecialList/lastWhere.html +++ b/testing/test_package_docs/fake/SpecialList/lastWhere.html @@ -25,7 +25,7 @@
    lastWhere
    diff --git a/testing/test_package_docs/fake/SpecialList/length.html b/testing/test_package_docs/fake/SpecialList/length.html index c987b4563a..7306990cc8 100644 --- a/testing/test_package_docs/fake/SpecialList/length.html +++ b/testing/test_package_docs/fake/SpecialList/length.html @@ -25,7 +25,7 @@
    length
    diff --git a/testing/test_package_docs/fake/SpecialList/map.html b/testing/test_package_docs/fake/SpecialList/map.html index c91b5c105c..356435a929 100644 --- a/testing/test_package_docs/fake/SpecialList/map.html +++ b/testing/test_package_docs/fake/SpecialList/map.html @@ -25,7 +25,7 @@
    map
    @@ -114,7 +114,7 @@
    class SpecialList
    - Iterable<T> + Iterable<T> map<T>(T f(E element))
    diff --git a/testing/test_package_docs/fake/SpecialList/noSuchMethod.html b/testing/test_package_docs/fake/SpecialList/noSuchMethod.html index 4e1f88b2e9..6bf5f485be 100644 --- a/testing/test_package_docs/fake/SpecialList/noSuchMethod.html +++ b/testing/test_package_docs/fake/SpecialList/noSuchMethod.html @@ -25,7 +25,7 @@
    noSuchMethod
    diff --git a/testing/test_package_docs/fake/SpecialList/operator_equals.html b/testing/test_package_docs/fake/SpecialList/operator_equals.html index 842003a4c7..a11e58882c 100644 --- a/testing/test_package_docs/fake/SpecialList/operator_equals.html +++ b/testing/test_package_docs/fake/SpecialList/operator_equals.html @@ -25,7 +25,7 @@
    operator ==
    diff --git a/testing/test_package_docs/fake/SpecialList/operator_get.html b/testing/test_package_docs/fake/SpecialList/operator_get.html index 0d13c2c0b5..8b8ec63373 100644 --- a/testing/test_package_docs/fake/SpecialList/operator_get.html +++ b/testing/test_package_docs/fake/SpecialList/operator_get.html @@ -25,7 +25,7 @@
    operator []
    diff --git a/testing/test_package_docs/fake/SpecialList/operator_put.html b/testing/test_package_docs/fake/SpecialList/operator_put.html index 9e588d16a2..6bb38245af 100644 --- a/testing/test_package_docs/fake/SpecialList/operator_put.html +++ b/testing/test_package_docs/fake/SpecialList/operator_put.html @@ -25,7 +25,7 @@
    operator []=
    diff --git a/testing/test_package_docs/fake/SpecialList/reduce.html b/testing/test_package_docs/fake/SpecialList/reduce.html index d1b2b48daa..1e636d4717 100644 --- a/testing/test_package_docs/fake/SpecialList/reduce.html +++ b/testing/test_package_docs/fake/SpecialList/reduce.html @@ -25,7 +25,7 @@
    reduce
    diff --git a/testing/test_package_docs/fake/SpecialList/remove.html b/testing/test_package_docs/fake/SpecialList/remove.html index 30e0c2f560..5d1f8292c0 100644 --- a/testing/test_package_docs/fake/SpecialList/remove.html +++ b/testing/test_package_docs/fake/SpecialList/remove.html @@ -25,7 +25,7 @@
    remove
    diff --git a/testing/test_package_docs/fake/SpecialList/removeAt.html b/testing/test_package_docs/fake/SpecialList/removeAt.html index a057461167..e2211679e3 100644 --- a/testing/test_package_docs/fake/SpecialList/removeAt.html +++ b/testing/test_package_docs/fake/SpecialList/removeAt.html @@ -25,7 +25,7 @@
    removeAt
    diff --git a/testing/test_package_docs/fake/SpecialList/removeLast.html b/testing/test_package_docs/fake/SpecialList/removeLast.html index 98931a0c6d..6646d2d89e 100644 --- a/testing/test_package_docs/fake/SpecialList/removeLast.html +++ b/testing/test_package_docs/fake/SpecialList/removeLast.html @@ -25,7 +25,7 @@
    removeLast
    diff --git a/testing/test_package_docs/fake/SpecialList/removeRange.html b/testing/test_package_docs/fake/SpecialList/removeRange.html index 25a9e075ed..1b089a2609 100644 --- a/testing/test_package_docs/fake/SpecialList/removeRange.html +++ b/testing/test_package_docs/fake/SpecialList/removeRange.html @@ -25,7 +25,7 @@
    removeRange
    diff --git a/testing/test_package_docs/fake/SpecialList/removeWhere.html b/testing/test_package_docs/fake/SpecialList/removeWhere.html index 4c4831e569..3d5e5d9c19 100644 --- a/testing/test_package_docs/fake/SpecialList/removeWhere.html +++ b/testing/test_package_docs/fake/SpecialList/removeWhere.html @@ -25,7 +25,7 @@
    removeWhere
    diff --git a/testing/test_package_docs/fake/SpecialList/replaceRange.html b/testing/test_package_docs/fake/SpecialList/replaceRange.html index 635eb5bedb..b950882f34 100644 --- a/testing/test_package_docs/fake/SpecialList/replaceRange.html +++ b/testing/test_package_docs/fake/SpecialList/replaceRange.html @@ -25,7 +25,7 @@
    replaceRange
    @@ -115,7 +115,7 @@
    class SpecialList
    void - replaceRange(int start, int end, Iterable<E> newContents) + replaceRange(int start, int end, Iterable<E> newContents)
    diff --git a/testing/test_package_docs/fake/SpecialList/retainWhere.html b/testing/test_package_docs/fake/SpecialList/retainWhere.html index 7b86a2813e..1b6ad130ee 100644 --- a/testing/test_package_docs/fake/SpecialList/retainWhere.html +++ b/testing/test_package_docs/fake/SpecialList/retainWhere.html @@ -25,7 +25,7 @@
    retainWhere
    diff --git a/testing/test_package_docs/fake/SpecialList/reversed.html b/testing/test_package_docs/fake/SpecialList/reversed.html index 8b03c643f0..54686dbe69 100644 --- a/testing/test_package_docs/fake/SpecialList/reversed.html +++ b/testing/test_package_docs/fake/SpecialList/reversed.html @@ -25,7 +25,7 @@
    reversed
    @@ -117,7 +117,7 @@
    class SpecialList
    - Iterable<E> + Iterable<E> reversed
    inherited
    diff --git a/testing/test_package_docs/fake/SpecialList/runtimeType.html b/testing/test_package_docs/fake/SpecialList/runtimeType.html index d29593f558..730ac20d14 100644 --- a/testing/test_package_docs/fake/SpecialList/runtimeType.html +++ b/testing/test_package_docs/fake/SpecialList/runtimeType.html @@ -25,7 +25,7 @@
    runtimeType
    diff --git a/testing/test_package_docs/fake/SpecialList/setAll.html b/testing/test_package_docs/fake/SpecialList/setAll.html index 82fc91eebf..18b442bc75 100644 --- a/testing/test_package_docs/fake/SpecialList/setAll.html +++ b/testing/test_package_docs/fake/SpecialList/setAll.html @@ -25,7 +25,7 @@
    setAll
    @@ -115,7 +115,7 @@
    class SpecialList
    void - setAll(int index, Iterable<E> iterable) + setAll(int index, Iterable<E> iterable)
    diff --git a/testing/test_package_docs/fake/SpecialList/setRange.html b/testing/test_package_docs/fake/SpecialList/setRange.html index 4b40d289b3..3dddad2f4a 100644 --- a/testing/test_package_docs/fake/SpecialList/setRange.html +++ b/testing/test_package_docs/fake/SpecialList/setRange.html @@ -25,7 +25,7 @@
    setRange
    @@ -115,7 +115,7 @@
    class SpecialList
    void - setRange(int start, int end, Iterable<E> iterable, [ int skipCount = 0 ]) + setRange(int start, int end, Iterable<E> iterable, [ int skipCount = 0 ])
    diff --git a/testing/test_package_docs/fake/SpecialList/shuffle.html b/testing/test_package_docs/fake/SpecialList/shuffle.html index 2d459f93db..9e7d1a37b9 100644 --- a/testing/test_package_docs/fake/SpecialList/shuffle.html +++ b/testing/test_package_docs/fake/SpecialList/shuffle.html @@ -25,7 +25,7 @@
    shuffle
    diff --git a/testing/test_package_docs/fake/SpecialList/single.html b/testing/test_package_docs/fake/SpecialList/single.html index 5fd3169f49..1145ae9e07 100644 --- a/testing/test_package_docs/fake/SpecialList/single.html +++ b/testing/test_package_docs/fake/SpecialList/single.html @@ -25,7 +25,7 @@
    single
    diff --git a/testing/test_package_docs/fake/SpecialList/singleWhere.html b/testing/test_package_docs/fake/SpecialList/singleWhere.html index 8a80905cd0..c68fe4cb14 100644 --- a/testing/test_package_docs/fake/SpecialList/singleWhere.html +++ b/testing/test_package_docs/fake/SpecialList/singleWhere.html @@ -25,7 +25,7 @@
    singleWhere
    diff --git a/testing/test_package_docs/fake/SpecialList/skip.html b/testing/test_package_docs/fake/SpecialList/skip.html index 7833728644..8ea6a8452a 100644 --- a/testing/test_package_docs/fake/SpecialList/skip.html +++ b/testing/test_package_docs/fake/SpecialList/skip.html @@ -25,7 +25,7 @@
    skip
    @@ -114,7 +114,7 @@
    class SpecialList
    - Iterable<E> + Iterable<E> skip(int count)
    diff --git a/testing/test_package_docs/fake/SpecialList/skipWhile.html b/testing/test_package_docs/fake/SpecialList/skipWhile.html index d67a41905b..7e31aa26fc 100644 --- a/testing/test_package_docs/fake/SpecialList/skipWhile.html +++ b/testing/test_package_docs/fake/SpecialList/skipWhile.html @@ -25,7 +25,7 @@
    skipWhile
    @@ -114,7 +114,7 @@
    class SpecialList
    - Iterable<E> + Iterable<E> skipWhile(bool test(E element))
    diff --git a/testing/test_package_docs/fake/SpecialList/sort.html b/testing/test_package_docs/fake/SpecialList/sort.html index 8beab20ee6..9804abff8d 100644 --- a/testing/test_package_docs/fake/SpecialList/sort.html +++ b/testing/test_package_docs/fake/SpecialList/sort.html @@ -25,7 +25,7 @@
    sort
    diff --git a/testing/test_package_docs/fake/SpecialList/sublist.html b/testing/test_package_docs/fake/SpecialList/sublist.html index eeb7fdbdbf..e894238c7e 100644 --- a/testing/test_package_docs/fake/SpecialList/sublist.html +++ b/testing/test_package_docs/fake/SpecialList/sublist.html @@ -25,7 +25,7 @@
    sublist
    @@ -114,7 +114,7 @@
    class SpecialList
    - List<E> + List<E> sublist(int start, [ int end ])
    diff --git a/testing/test_package_docs/fake/SpecialList/take.html b/testing/test_package_docs/fake/SpecialList/take.html index db64984d94..db56e341a6 100644 --- a/testing/test_package_docs/fake/SpecialList/take.html +++ b/testing/test_package_docs/fake/SpecialList/take.html @@ -25,7 +25,7 @@
    take
    @@ -114,7 +114,7 @@
    class SpecialList
    - Iterable<E> + Iterable<E> take(int count)
    diff --git a/testing/test_package_docs/fake/SpecialList/takeWhile.html b/testing/test_package_docs/fake/SpecialList/takeWhile.html index 73fe82b5d4..39b4eeb2de 100644 --- a/testing/test_package_docs/fake/SpecialList/takeWhile.html +++ b/testing/test_package_docs/fake/SpecialList/takeWhile.html @@ -25,7 +25,7 @@
    takeWhile
    @@ -114,7 +114,7 @@
    class SpecialList
    - Iterable<E> + Iterable<E> takeWhile(bool test(E element))
    diff --git a/testing/test_package_docs/fake/SpecialList/toList.html b/testing/test_package_docs/fake/SpecialList/toList.html index c99a441901..c66719349f 100644 --- a/testing/test_package_docs/fake/SpecialList/toList.html +++ b/testing/test_package_docs/fake/SpecialList/toList.html @@ -25,7 +25,7 @@
    toList
    @@ -114,7 +114,7 @@
    class SpecialList
    - List<E> + List<E> toList({bool growable: true })
    diff --git a/testing/test_package_docs/fake/SpecialList/toSet.html b/testing/test_package_docs/fake/SpecialList/toSet.html index 24d7c0074e..5ce01ce802 100644 --- a/testing/test_package_docs/fake/SpecialList/toSet.html +++ b/testing/test_package_docs/fake/SpecialList/toSet.html @@ -25,7 +25,7 @@
    toSet
    @@ -114,7 +114,7 @@
    class SpecialList
    - Set<E> + Set<E> toSet()
    diff --git a/testing/test_package_docs/fake/SpecialList/toString.html b/testing/test_package_docs/fake/SpecialList/toString.html index 49f9e14134..a3690f9862 100644 --- a/testing/test_package_docs/fake/SpecialList/toString.html +++ b/testing/test_package_docs/fake/SpecialList/toString.html @@ -25,7 +25,7 @@
    toString
    diff --git a/testing/test_package_docs/fake/SpecialList/where.html b/testing/test_package_docs/fake/SpecialList/where.html index 4006a969d2..3adab0f170 100644 --- a/testing/test_package_docs/fake/SpecialList/where.html +++ b/testing/test_package_docs/fake/SpecialList/where.html @@ -25,7 +25,7 @@
    where
    @@ -114,7 +114,7 @@
    class SpecialList
    - Iterable<E> + Iterable<E> where(bool test(E element))
    diff --git a/testing/test_package_docs/fake/SuperAwesomeClass-class.html b/testing/test_package_docs/fake/SuperAwesomeClass-class.html index b512037f9d..4384fa61b3 100644 --- a/testing/test_package_docs/fake/SuperAwesomeClass-class.html +++ b/testing/test_package_docs/fake/SuperAwesomeClass-class.html @@ -169,7 +169,7 @@

    Properties

    powers - ↔ List<String> + ↔ List<String>
    In the super class. diff --git a/testing/test_package_docs/fake/SuperAwesomeClass/powers.html b/testing/test_package_docs/fake/SuperAwesomeClass/powers.html index f384414362..96229fbe0d 100644 --- a/testing/test_package_docs/fake/SuperAwesomeClass/powers.html +++ b/testing/test_package_docs/fake/SuperAwesomeClass/powers.html @@ -65,7 +65,7 @@
    class SuperAwesomeClass
    - List<String> + List<String> powers
    read / write
    diff --git a/testing/test_package_docs/fake/fake-library.html b/testing/test_package_docs/fake/fake-library.html index fb1eba4611..effb752f53 100644 --- a/testing/test_package_docs/fake/fake-library.html +++ b/testing/test_package_docs/fake/fake-library.html @@ -137,7 +137,7 @@

    Classes

    For make-better testing of constants. [...]
    - ConstructorTester + ConstructorTester<A, B>
    @@ -155,7 +155,7 @@

    Classes

    This is a class with a table. [...]
    - ExtraSpecialList + ExtraSpecialList<E>
    This inherits operators. @@ -167,13 +167,13 @@

    Classes

    link to method from class Apple.m
    - HasGenerics + HasGenerics<X, Y, Z>
    - HasGenericWithExtends + HasGenericWithExtends<T extends Foo2>
    I have a generic and it extends Foo2 @@ -229,13 +229,13 @@

    Classes

    Test operator references: OperatorReferenceClass.==.
    - OtherGenericsThing + OtherGenericsThing<A>
    - SpecialList + SpecialList<E>
    Extends ListBase @@ -447,7 +447,7 @@

    Properties

    mapWithDynamicKeys - ↔ Map<dynamic, String> + ↔ Map<dynamic, String>
    @@ -512,7 +512,7 @@

    Functions

    - myGenericFunction<S>(int a, bool b, S c) + myGenericFunction<S>(int a, bool b, S c) → void
    @@ -641,7 +641,7 @@

    Typedefs

    - GenericTypedef(T input) + GenericTypedef<T>(T input) → T
    @@ -668,8 +668,8 @@

    Typedefs

    - NewGenericTypedef<S>(T, int, bool) - → List<S> + NewGenericTypedef<T>(T, int, bool) + → List<S>
    diff --git a/testing/test_package_docs/fake/mapWithDynamicKeys.html b/testing/test_package_docs/fake/mapWithDynamicKeys.html index da80e42d9d..63d05ce903 100644 --- a/testing/test_package_docs/fake/mapWithDynamicKeys.html +++ b/testing/test_package_docs/fake/mapWithDynamicKeys.html @@ -129,7 +129,7 @@
    library fake
    - Map<dynamic, String> + Map<dynamic, String> mapWithDynamicKeys
    read / write
    diff --git a/testing/test_package_docs/test_package_imported.main/Whataclass-class.html b/testing/test_package_docs/test_package_imported.main/Whataclass-class.html index 94c28371f8..cf7239cfb2 100644 --- a/testing/test_package_docs/test_package_imported.main/Whataclass-class.html +++ b/testing/test_package_docs/test_package_imported.main/Whataclass-class.html @@ -25,7 +25,7 @@
    Whataclass
    diff --git a/testing/test_package_docs/test_package_imported.main/Whataclass/Whataclass.html b/testing/test_package_docs/test_package_imported.main/Whataclass/Whataclass.html index 5e29fd52ca..a8552bf8e2 100644 --- a/testing/test_package_docs/test_package_imported.main/Whataclass/Whataclass.html +++ b/testing/test_package_docs/test_package_imported.main/Whataclass/Whataclass.html @@ -25,7 +25,7 @@
    Whataclass
    diff --git a/testing/test_package_docs/test_package_imported.main/Whataclass/hashCode.html b/testing/test_package_docs/test_package_imported.main/Whataclass/hashCode.html index 2815c47ca7..67cda4ed64 100644 --- a/testing/test_package_docs/test_package_imported.main/Whataclass/hashCode.html +++ b/testing/test_package_docs/test_package_imported.main/Whataclass/hashCode.html @@ -25,7 +25,7 @@
    hashCode
    diff --git a/testing/test_package_docs/test_package_imported.main/Whataclass/noSuchMethod.html b/testing/test_package_docs/test_package_imported.main/Whataclass/noSuchMethod.html index ade2307c8b..9dafcee428 100644 --- a/testing/test_package_docs/test_package_imported.main/Whataclass/noSuchMethod.html +++ b/testing/test_package_docs/test_package_imported.main/Whataclass/noSuchMethod.html @@ -25,7 +25,7 @@
    noSuchMethod
    diff --git a/testing/test_package_docs/test_package_imported.main/Whataclass/operator_equals.html b/testing/test_package_docs/test_package_imported.main/Whataclass/operator_equals.html index 46cb692c11..18e3fe68f8 100644 --- a/testing/test_package_docs/test_package_imported.main/Whataclass/operator_equals.html +++ b/testing/test_package_docs/test_package_imported.main/Whataclass/operator_equals.html @@ -25,7 +25,7 @@
    operator ==
    diff --git a/testing/test_package_docs/test_package_imported.main/Whataclass/runtimeType.html b/testing/test_package_docs/test_package_imported.main/Whataclass/runtimeType.html index 621568a202..12aee2f88c 100644 --- a/testing/test_package_docs/test_package_imported.main/Whataclass/runtimeType.html +++ b/testing/test_package_docs/test_package_imported.main/Whataclass/runtimeType.html @@ -25,7 +25,7 @@
    runtimeType
    diff --git a/testing/test_package_docs/test_package_imported.main/Whataclass/toString.html b/testing/test_package_docs/test_package_imported.main/Whataclass/toString.html index f17990b731..3cfe8aa09a 100644 --- a/testing/test_package_docs/test_package_imported.main/Whataclass/toString.html +++ b/testing/test_package_docs/test_package_imported.main/Whataclass/toString.html @@ -25,7 +25,7 @@
    toString
    diff --git a/testing/test_package_docs/test_package_imported.main/test_package_imported.main-library.html b/testing/test_package_docs/test_package_imported.main/test_package_imported.main-library.html index 7de1accc90..54d7bebf74 100644 --- a/testing/test_package_docs/test_package_imported.main/test_package_imported.main-library.html +++ b/testing/test_package_docs/test_package_imported.main/test_package_imported.main-library.html @@ -61,7 +61,7 @@

    Classes

    - Whataclass + Whataclass<T>
    Some docs for whataclass