diff --git a/lib/resources/styles.css b/lib/resources/styles.css index 56648e9fec..ffedb90d4f 100644 --- a/lib/resources/styles.css +++ b/lib/resources/styles.css @@ -359,6 +359,15 @@ dl dt.callable .name { white-space: nowrap; } +.type-parameter { + white-space: nowrap; +} + +.multi-line-signature .type-parameter .parameter { + margin-left: 0px; + display: unset; +} + .signature { color: #727272; } diff --git a/lib/src/element_type.dart b/lib/src/element_type.dart index ffe3886a25..4e677f4d3f 100644 --- a/lib/src/element_type.dart +++ b/lib/src/element_type.dart @@ -29,8 +29,6 @@ abstract class ElementType extends Privacy { assert(f is ParameterizedType || f is TypeParameterType); bool isGenericTypeAlias = f.element.enclosingElement is GenericTypeAliasElement; - // can happen if element is dynamic - assert(f.element.library != null); if (f is FunctionType) { assert(f is ParameterizedType); if (isGenericTypeAlias) { @@ -38,9 +36,7 @@ abstract class ElementType extends Privacy { return new CallableGenericTypeAliasElementType( f, packageGraph, element, returnedFrom); } else { - if ((f.name ?? f.element.name) == '' || - (f.name ?? f.element.name) == null) { - assert(element is ModelFunctionAnonymous); + if (element is ModelFunctionAnonymous) { return new CallableAnonymousElementType( f, packageGraph, element, returnedFrom); } else { @@ -129,9 +125,10 @@ class ParameterizedElementType extends DefinedElementType { if (!typeArguments.every((t) => t.name == 'dynamic') && typeArguments.isNotEmpty) { buf.write(''); - buf.write('<'); - buf.writeAll(typeArguments.map((t) => t.linkedName), ', '); - buf.write('>'); + buf.write('<'); + buf.writeAll(typeArguments.map((t) => t.linkedName), + ', '); + buf.write('>'); buf.write(''); } @@ -150,9 +147,10 @@ class ParameterizedElementType extends DefinedElementType { if (!typeArguments.every((t) => t.name == 'dynamic') && typeArguments.isNotEmpty) { - buf.write('<'); - buf.writeAll(typeArguments.map((t) => t.nameWithGenerics), ', '); - buf.write('>'); + buf.write('<'); + buf.writeAll(typeArguments.map((t) => t.nameWithGenerics), + ', '); + buf.write('>'); } _nameWithGenerics = buf.toString(); } @@ -286,6 +284,12 @@ class CallableElementType extends ParameterizedElementType CallableElementType(FunctionType t, PackageGraph packageGraph, ModelElement element, ElementType returnedFrom) : super(t, packageGraph, element, returnedFrom); + + @override + String get linkedName { + if (name != null && name.isNotEmpty) return super.linkedName; + return '${nameWithGenerics}(${element.linkedParams(showNames: false).trim()}) → ${returnType.linkedName}'; + } } /// This is an anonymous function using the generic function syntax (declared @@ -301,7 +305,7 @@ class CallableAnonymousElementType extends CallableElementType { String get linkedName { if (_linkedName == null) { _linkedName = - '${super.linkedName}(${element.linkedParams()})'; + '${returnType.linkedName} ${super.linkedName}(${element.linkedParams()})'; } return _linkedName; } diff --git a/lib/src/markdown_processor.dart b/lib/src/markdown_processor.dart index 6f0f67ef2c..12dda17563 100644 --- a/lib/src/markdown_processor.dart +++ b/lib/src/markdown_processor.dart @@ -565,8 +565,8 @@ ModelElement _findRefElementInLibrary(String codeRef, Warnable element, } if (results.length > 1) { - if (results.any((r) => r.library.packageName == library.packageName)) { - results.removeWhere((r) => r.library.packageName != library.packageName); + if (results.any((r) => r.library?.packageName == library.packageName)) { + results.removeWhere((r) => r.library?.packageName != library.packageName); } } diff --git a/lib/src/model.dart b/lib/src/model.dart index cb094d873e..d5e2fbac75 100644 --- a/lib/src/model.dart +++ b/lib/src/model.dart @@ -225,23 +225,26 @@ class InheritableAccessor extends Accessor with Inheritable { InheritableAccessor accessor; if (element == null) return null; if (inheritedAccessors.contains(element)) { - accessor = new ModelElement.from(element, enclosingClass.library, + accessor = new ModelElement.from( + element, enclosingClass.library, enclosingClass.packageGraph, enclosingClass: enclosingClass); } else { - accessor = new ModelElement.from(element, enclosingClass.library); + accessor = new ModelElement.from( + element, enclosingClass.library, enclosingClass.packageGraph); } return accessor; } ModelElement _enclosingElement; bool _isInherited = false; - InheritableAccessor(PropertyAccessorElement element, Library library) - : super(element, library, null); + InheritableAccessor(PropertyAccessorElement element, Library library, + PackageGraph packageGraph) + : super(element, library, packageGraph, null); - InheritableAccessor.inherited( - PropertyAccessorElement element, Library library, this._enclosingElement, + InheritableAccessor.inherited(PropertyAccessorElement element, + Library library, PackageGraph packageGraph, this._enclosingElement, {Member originalMember}) - : super(element, library, originalMember) { + : super(element, library, packageGraph, originalMember) { _isInherited = true; } @@ -270,9 +273,9 @@ class Accessor extends ModelElement implements EnclosedElement { GetterSetterCombo _enclosingCombo; - Accessor( - PropertyAccessorElement element, Library library, Member originalMember) - : super(element, library, originalMember); + Accessor(PropertyAccessorElement element, Library library, + PackageGraph packageGraph, Member originalMember) + : super(element, library, packageGraph, originalMember); get linkedReturnType { assert(isGetter); @@ -370,7 +373,8 @@ class Accessor extends ModelElement .findOrCreateLibraryFor(_accessor.enclosingElement.enclosingElement); } - return new ModelElement.from(_accessor.enclosingElement, library); + return new ModelElement.from( + _accessor.enclosingElement, library, packageGraph); } @override @@ -458,7 +462,8 @@ class Class extends ModelElement List _inheritedProperties; List _allInstanceProperties; - Class(ClassElement element, Library library) : super(element, library, null) { + Class(ClassElement element, Library library, PackageGraph packageGraph) + : super(element, library, packageGraph, null) { _mixins = _cls.mixins .map((f) { ElementType t = new ElementType.from(f, packageGraph); @@ -623,7 +628,7 @@ class Class extends ModelElement if (_constructors != null) return _constructors; _constructors = _cls.constructors.map((e) { - return new ModelElement.from(e, library); + return new ModelElement.from(e, library, packageGraph); }).toList(growable: true) ..sort(byName); @@ -712,7 +717,8 @@ class Class extends ModelElement }).toSet(); for (ExecutableElement e in inheritedMethodElements) { - Method m = new ModelElement.from(e, library, enclosingClass: this); + Method m = new ModelElement.from(e, library, packageGraph, + enclosingClass: this); _inheritedMethods.add(m); _genPageMethods.add(m); } @@ -737,7 +743,8 @@ class Class extends ModelElement !operatorNames.contains(e.name)); }).toSet(); for (ExecutableElement e in inheritedOperatorElements) { - Operator o = new ModelElement.from(e, library, enclosingClass: this); + Operator o = new ModelElement.from(e, library, packageGraph, + enclosingClass: this); _inheritedOperators.add(o); _genPageOperators.add(o); } @@ -1038,14 +1045,15 @@ class Class extends ModelElement if ((getter == null || getter.isInherited) && (setter == null || setter.isInherited)) { // Field is 100% inherited. - field = new ModelElement.from(f, library, + field = new ModelElement.from(f, library, packageGraph, enclosingClass: this, getter: getter, setter: setter); } else { // Field is <100% inherited (could be half-inherited). // TODO(jcollins-g): Navigation is probably still confusing for // half-inherited fields when traversing the inheritance tree. Make // this better, somehow. - field = new ModelElement.from(f, library, getter: getter, setter: setter); + field = new ModelElement.from(f, library, packageGraph, + getter: getter, setter: setter); } _fields.add(field); } @@ -1056,7 +1064,7 @@ class Class extends ModelElement if (_allMethods != null) return _allMethods; _allMethods = _cls.methods.map((e) { - return new ModelElement.from(e, library); + return new ModelElement.from(e, library, packageGraph); }).toList(growable: false) ..sort(byName); @@ -1067,7 +1075,7 @@ class Class extends ModelElement @override List get typeParameters => _cls.typeParameters.map((f) { var lib = new Library(f.enclosingElement.library, packageGraph); - return new ModelElement.from(f, lib); + return new ModelElement.from(f, lib, packageGraph); }).toList(); @override @@ -1081,8 +1089,9 @@ class Class extends ModelElement class Constructor extends ModelElement with SourceCodeMixin, TypeParameters implements EnclosedElement { - Constructor(ConstructorElement element, Library library) - : super(element, library, null); + Constructor( + ConstructorElement element, Library library, PackageGraph packageGraph) + : super(element, library, packageGraph, null); @override // TODO(jcollins-g): Revisit this when dart-lang/sdk#31517 is implemented. @@ -1090,8 +1099,8 @@ class Constructor extends ModelElement (enclosingElement as Class).typeParameters; @override - ModelElement get enclosingElement => - new ModelElement.from(_constructor.enclosingElement, library); + ModelElement get enclosingElement => new ModelElement.from( + _constructor.enclosingElement, library, packageGraph); String get fullKind { if (isConst) return 'const $kind'; @@ -1259,15 +1268,8 @@ abstract class Canonicalization extends Object } class Dynamic extends ModelElement { - @override - PackageGraph packageGraph; - - Dynamic(Element element, Library library, PackageGraph p) - : super(element, library, null) { - packageGraph = p; - assert(packageGraph != null || library != null); - if (p == null) packageGraph = library.packageGraph; - } + Dynamic(Element element, PackageGraph packageGraph) + : super(element, null, packageGraph, null); @override ModelElement get enclosingElement => throw new UnsupportedError(''); @@ -1290,13 +1292,15 @@ abstract class EnclosedElement { } class Enum extends Class { - Enum(ClassElement element, Library library) : super(element, library); + Enum(ClassElement element, Library library, PackageGraph packageGraph) + : super(element, library, packageGraph); @override List get instanceProperties { return super .instanceProperties - .map((Field p) => new ModelElement.from(p.element, p.library, + .map((Field p) => new ModelElement.from( + p.element, p.library, p.packageGraph, getter: p.getter, setter: p.setter)) .toList(growable: false); } @@ -1313,18 +1317,18 @@ class Enum extends Class { class EnumField extends Field { int _index; - EnumField( - FieldElement element, Library library, Accessor getter, Accessor setter) - : super(element, library, getter, setter); + EnumField(FieldElement element, Library library, PackageGraph packageGraph, + Accessor getter, Accessor setter) + : super(element, library, packageGraph, getter, setter); - EnumField.forConstant( - this._index, FieldElement element, Library library, Accessor getter) - : super(element, library, getter, null); + EnumField.forConstant(this._index, FieldElement element, Library library, + PackageGraph packageGraph, Accessor getter) + : super(element, library, packageGraph, getter, null); @override String get constantValueBase { if (name == 'values') { - return 'const List<${_field.enclosingElement.name}>'; + return 'const List<${_field.enclosingElement.name}>'; } else { return 'const ${_field.enclosingElement.name}($_index)'; } @@ -1388,16 +1392,22 @@ class Field extends ModelElement @override final InheritableAccessor setter; - Field(FieldElement element, Library library, this.getter, this.setter) - : super(element, library, null) { + Field(FieldElement element, Library library, PackageGraph packageGraph, + this.getter, this.setter) + : super(element, library, packageGraph, null) { if (getter != null) getter.enclosingCombo = this; if (setter != null) setter.enclosingCombo = this; _setModelType(); } - factory Field.inherited(FieldElement element, Class enclosingClass, - Library library, Accessor getter, Accessor setter) { - Field newField = new Field(element, library, getter, setter); + factory Field.inherited( + FieldElement element, + Class enclosingClass, + Library library, + PackageGraph packageGraph, + Accessor getter, + Accessor setter) { + Field newField = new Field(element, library, packageGraph, getter, setter); newField._isInherited = true; newField._enclosingClass = enclosingClass; // Can't set _isInherited to true if this is the defining element, because @@ -1422,7 +1432,8 @@ class Field extends ModelElement @override ModelElement get enclosingElement { if (_enclosingClass == null) { - _enclosingClass = new ModelElement.from(_field.enclosingElement, library); + _enclosingClass = + new ModelElement.from(_field.enclosingElement, library, packageGraph); } return _enclosingClass; } @@ -1727,9 +1738,6 @@ abstract class GetterSetterCombo implements ModelElement { } class Library extends ModelElement with Categorization { - @override - final PackageGraph packageGraph; - List _classes; List _enums; List _functions; @@ -1741,8 +1749,8 @@ class Library extends ModelElement with Categorization { return packageGraph.findOrCreateLibraryFor(element); } - Library._(LibraryElement element, this.packageGraph) - : super(element, null, null) { + Library._(LibraryElement element, PackageGraph packageGraph) + : super(element, null, packageGraph, null) { if (element == null) throw new ArgumentError.notNull('element'); _exportedNamespace = new NamespaceBuilder().createExportNamespaceForLibrary(element); @@ -1771,8 +1779,8 @@ class Library extends ModelElement with Categorization { new ModelElement.fromElement(e.setter.element, packageGraph); } } - return new ModelElement.from( - e.element, packageGraph.findOrCreateLibraryFor(e.element), + return new ModelElement.from(e.element, + packageGraph.findOrCreateLibraryFor(e.element), packageGraph, getter: getter, setter: setter) .fullyQualifiedName; }).toList(); @@ -1856,7 +1864,7 @@ class Library extends ModelElement with Categorization { importedExportedLibraryElements .addAll((element as LibraryElement).exportedLibraries); for (LibraryElement l in importedExportedLibraryElements) { - Library lib = new ModelElement.from(l, library); + Library lib = new ModelElement.from(l, library, packageGraph); _importedExportedLibraries.add(lib); _importedExportedLibraries.addAll(lib.importedExportedLibraries); } @@ -1933,7 +1941,7 @@ class Library extends ModelElement with Categorization { enumClasses.addAll(_exportedNamespace.definedNames.values .where((element) => element is ClassElement && element.isEnum)); _enums = enumClasses - .map((e) => new ModelElement.from(e, this)) + .map((e) => new ModelElement.from(e, this, packageGraph)) .toList(growable: false) ..sort(byName); @@ -1966,7 +1974,7 @@ class Library extends ModelElement with Categorization { .where((element) => element is FunctionElement)); _functions = elements.map((e) { - return new ModelElement.from(e, this); + return new ModelElement.from(e, this, packageGraph); }).toList(growable: false) ..sort(byName); @@ -2081,7 +2089,7 @@ class Library extends ModelElement with Categorization { elements.addAll(_exportedNamespace.definedNames.values .where((element) => element is FunctionTypeAliasElement)); _typeDefs = elements - .map((e) => new ModelElement.from(e, this)) + .map((e) => new ModelElement.from(e, this, packageGraph)) .toList(growable: false) ..sort(byName); @@ -2108,7 +2116,7 @@ class Library extends ModelElement with Categorization { .where((element) => element is ClassElement && !element.isEnum)); _classes = types - .map((e) => new ModelElement.from(e, this)) + .map((e) => new ModelElement.from(e, this, packageGraph)) .toList(growable: false) ..sort(byName); @@ -2150,12 +2158,12 @@ class Library extends ModelElement with Categorization { for (TopLevelVariableElement element in elements) { Accessor getter; if (element.getter != null) - getter = new ModelElement.from(element.getter, this); + getter = new ModelElement.from(element.getter, this, packageGraph); Accessor setter; if (element.setter != null) - setter = new ModelElement.from(element.setter, this); - ModelElement me = - new ModelElement.from(element, this, getter: getter, setter: setter); + setter = new ModelElement.from(element.setter, this, packageGraph); + ModelElement me = new ModelElement.from(element, this, packageGraph, + getter: getter, setter: setter); _variables.add(me); } @@ -2319,29 +2327,30 @@ class Method extends ModelElement @override List typeParameters = []; - Method(MethodElement element, Library library) - : super(element, library, null) { + Method(MethodElement element, Library library, PackageGraph packageGraph) + : super(element, library, packageGraph, null) { _calcTypeParameters(); } Method.inherited(MethodElement element, this._enclosingClass, Library library, + PackageGraph packageGraph, {Member originalMember}) - : super(element, library, originalMember) { + : super(element, library, packageGraph, originalMember) { _isInherited = true; _calcTypeParameters(); } void _calcTypeParameters() { typeParameters = _method.typeParameters.map((f) { - return new ModelElement.from(f, library); + return new ModelElement.from(f, library, packageGraph); }).toList(); } @override ModelElement get enclosingElement { if (_enclosingClass == null) { - _enclosingClass = - new ModelElement.from(_method.enclosingElement, library); + _enclosingClass = new ModelElement.from( + _method.enclosingElement, library, packageGraph); } return _enclosingClass; } @@ -2439,9 +2448,10 @@ class ScoredCandidate implements Comparable { ModelElement resolveMultiplyInheritedElement( MultiplyInheritedExecutableElement e, Library library, + PackageGraph packageGraph, Class enclosingClass) { - Iterable inheritables = e.inheritedElements.map((ee) => - new ModelElement.fromElement(ee, library.packageGraph) as Inheritable); + Iterable inheritables = e.inheritedElements.map( + (ee) => new ModelElement.fromElement(ee, packageGraph) as Inheritable); Inheritable foundInheritable; int lowIndex = enclosingClass.inheritanceChain.length; for (var inheritable in inheritables) { @@ -2452,7 +2462,7 @@ ModelElement resolveMultiplyInheritedElement( lowIndex = index; } } - return new ModelElement.from(foundInheritable.element, library, + return new ModelElement.from(foundInheritable.element, library, packageGraph, enclosingClass: enclosingClass); } @@ -2506,11 +2516,12 @@ abstract class ModelElement extends Canonicalization // TODO(jcollins-g): make _originalMember optional after dart-lang/sdk#15101 // is fixed. - ModelElement(this._element, this._library, this._originalMember) {} + ModelElement( + this._element, this._library, this._packageGraph, this._originalMember) {} factory ModelElement.fromElement(Element e, PackageGraph p) { Library lib = _findOrCreateEnclosingLibraryForStatic(e, p); - return new ModelElement.from(e, lib, packageGraph: p); + return new ModelElement.from(e, lib, p); } // TODO(jcollins-g): this way of using the optional parameter is messy, @@ -2523,11 +2534,14 @@ abstract class ModelElement extends Canonicalization // parameter when given a null. /// Do not construct any ModelElements unless they are from this constructor. /// Specify enclosingClass only if this is to be an inherited object. - factory ModelElement.from(Element e, Library library, - {Class enclosingClass, - Accessor getter, - Accessor setter, - PackageGraph packageGraph}) { + factory ModelElement.from( + Element e, Library library, PackageGraph packageGraph, + {Class enclosingClass, Accessor getter, Accessor setter}) { + assert(packageGraph != null && e != null); + assert(library != null || + e is ParameterElement || + e is TypeParameterElement || + e is GenericFunctionTypeElementImpl); // With AnalysisDriver, we sometimes get ElementHandles when building // docs for the SDK, seen via [Library.importedExportedLibraries]. Why? if (e is ElementHandle) { @@ -2546,24 +2560,24 @@ abstract class ModelElement extends Canonicalization new Tuple3(e, library, enclosingClass); ModelElement newModelElement; if (e.kind != ElementKind.DYNAMIC && - library.packageGraph._allConstructedModelElements.containsKey(key)) { - newModelElement = library.packageGraph._allConstructedModelElements[key]; + packageGraph._allConstructedModelElements.containsKey(key)) { + newModelElement = packageGraph._allConstructedModelElements[key]; assert(newModelElement.element is! MultiplyInheritedExecutableElement); } else { if (e.kind == ElementKind.DYNAMIC) { - newModelElement = new Dynamic(e, library, packageGraph); + newModelElement = new Dynamic(e, packageGraph); } if (e is MultiplyInheritedExecutableElement) { - newModelElement = - resolveMultiplyInheritedElement(e, library, enclosingClass); + newModelElement = resolveMultiplyInheritedElement( + e, library, packageGraph, enclosingClass); } else { if (e is LibraryElement) { - newModelElement = new Library(e, library.packageGraph); + newModelElement = new Library(e, packageGraph); } // Also handles enums if (e is ClassElement) { if (!e.isEnum) { - newModelElement = new Class(e, library); + newModelElement = new Class(e, library, packageGraph); if (newModelElement.name == 'Object' && newModelElement.library.name == 'dart:core') { // We've found Object. This is an important object, so save it in the package. @@ -2580,63 +2594,69 @@ abstract class ModelElement extends Canonicalization newModelElement; } } else { - newModelElement = new Enum(e, library); + newModelElement = new Enum(e, library, packageGraph); } } if (e is FunctionElement) { - newModelElement = new ModelFunction(e, library); + newModelElement = new ModelFunction(e, library, packageGraph); } else if (e is GenericFunctionTypeElement) { if (e is FunctionTypeAliasElement) { assert(e.name != ''); - newModelElement = new ModelFunctionTypedef(e, library); + newModelElement = + new ModelFunctionTypedef(e, library, packageGraph); } else { if (e.enclosingElement is GenericTypeAliasElement) { assert(e.enclosingElement.name != ''); - newModelElement = new ModelFunctionTypedef(e, library); + newModelElement = + new ModelFunctionTypedef(e, library, packageGraph); } else { // Allowing null here is allowed as a workaround for // dart-lang/sdk#32005. assert(e.name == '' || e.name == null); - newModelElement = new ModelFunctionAnonymous(e, library); + newModelElement = new ModelFunctionAnonymous(e, packageGraph); } } } if (e is FunctionTypeAliasElement) { - newModelElement = new Typedef(e, library); + newModelElement = new Typedef(e, library, packageGraph); } if (e is FieldElement) { if (enclosingClass == null) { if (e.isEnumConstant) { int index = e.computeConstantValue().getField(e.name).toIntValue(); - newModelElement = - new EnumField.forConstant(index, e, library, getter); + newModelElement = new EnumField.forConstant( + index, e, library, packageGraph, getter); } else if (e.enclosingElement.isEnum) { - newModelElement = new EnumField(e, library, getter, setter); + newModelElement = + new EnumField(e, library, packageGraph, getter, setter); } else { - newModelElement = new Field(e, library, getter, setter); + newModelElement = + new Field(e, library, packageGraph, getter, setter); } } else { // EnumFields can't be inherited, so this case is simpler. - newModelElement = - new Field.inherited(e, enclosingClass, library, getter, setter); + newModelElement = new Field.inherited( + e, enclosingClass, library, packageGraph, getter, setter); } } if (e is ConstructorElement) { - newModelElement = new Constructor(e, library); + newModelElement = new Constructor(e, library, packageGraph); } if (e is MethodElement && e.isOperator) { if (enclosingClass == null) - newModelElement = new Operator(e, library); + newModelElement = new Operator(e, library, packageGraph); else - newModelElement = new Operator.inherited(e, enclosingClass, library, + newModelElement = new Operator.inherited( + e, enclosingClass, library, packageGraph, originalMember: originalMember); } if (e is MethodElement && !e.isOperator) { if (enclosingClass == null) - newModelElement = new Method(e, library); + newModelElement = new Method(e, library, packageGraph); else - newModelElement = new Method.inherited(e, enclosingClass, library, + newModelElement = new Method.inherited( + e, enclosingClass, library, packageGraph, originalMember: originalMember); } if (e is TopLevelVariableElement) { @@ -2646,7 +2666,8 @@ abstract class ModelElement extends Canonicalization ..addAll(library.constants); newModelElement = allVariables.firstWhere((v) => v.element == e); } else { - newModelElement = new TopLevelVariable(e, library, getter, setter); + newModelElement = + new TopLevelVariable(e, library, packageGraph, getter, setter); } } if (e is PropertyAccessorElement) { @@ -2654,21 +2675,22 @@ abstract class ModelElement extends Canonicalization if (e.enclosingElement is ClassElement || e is MultiplyInheritedExecutableElement) { if (enclosingClass == null) - newModelElement = new InheritableAccessor(e, library); + newModelElement = + new InheritableAccessor(e, library, packageGraph); else newModelElement = new InheritableAccessor.inherited( - e, library, enclosingClass, + e, library, packageGraph, enclosingClass, originalMember: originalMember); } else { - newModelElement = new Accessor(e, library, null); + newModelElement = new Accessor(e, library, packageGraph, null); } } if (e is TypeParameterElement) { - newModelElement = new TypeParameter(e, library); + newModelElement = new TypeParameter(e, library, packageGraph); } if (e is ParameterElement) { - newModelElement = - new Parameter(e, library, originalMember: originalMember); + newModelElement = new Parameter(e, library, packageGraph, + originalMember: originalMember); } } } @@ -2814,16 +2836,23 @@ abstract class ModelElement extends Canonicalization GetterSetterCombo thisAsCombo = this as GetterSetterCombo; if (thisAsCombo.hasGetter) { newGetter = new ModelElement.from( - thisAsCombo.getter.element, thisAsCombo.getter.definingLibrary); + thisAsCombo.getter.element, + thisAsCombo.getter.definingLibrary, + thisAsCombo.getter.packageGraph); } if (thisAsCombo.hasSetter) { newSetter = new ModelElement.from( - thisAsCombo.setter.element, thisAsCombo.setter.definingLibrary); + thisAsCombo.setter.element, + thisAsCombo.setter.definingLibrary, + thisAsCombo.setter.packageGraph); } } ModelElement fromThis = new ModelElement.from( - element, thisInheritable.definingEnclosingElement.library, - getter: newGetter, setter: newSetter); + element, + thisInheritable.definingEnclosingElement.library, + thisInheritable.definingEnclosingElement.packageGraph, + getter: newGetter, + setter: newSetter); docFrom = fromThis.documentationFrom; } else { docFrom = [this]; @@ -3188,10 +3217,9 @@ abstract class ModelElement extends Canonicalization return _overriddenDepth; } + final PackageGraph _packageGraph; @override - PackageGraph get packageGraph => (this is Library) - ? (this as Library).packageGraph - : this.library.packageGraph; + PackageGraph get packageGraph => _packageGraph; bool get isPublicAndPackageDocumented => isPublic && library.packageGraph.packageDocumentedFor(this); @@ -3247,7 +3275,7 @@ abstract class ModelElement extends Canonicalization } _parameters = new UnmodifiableListView(params - .map((p) => new ModelElement.from(p, library)) + .map((p) => new ModelElement.from(p, library, packageGraph)) .toList() as Iterable); } return _parameters; @@ -3411,8 +3439,7 @@ abstract class ModelElement extends Canonicalization assert(!name.isEmpty || (this.element is TypeDefiningElement && (this.element as TypeDefiningElement).type.name == "dynamic") || - (this is ModelFunction && - element.enclosingElement is ParameterElement)); + this is ModelFunction); if (href == null) { if (isPublicAndPackageDocumented) { @@ -3438,9 +3465,6 @@ abstract class ModelElement extends Canonicalization if (lib == null) { lib = packageGraph.findOrCreateLibraryFor(e); } - if (lib == null) { - assert(e.kind == ElementKind.DYNAMIC); - } return lib; } @@ -3586,14 +3610,18 @@ abstract class ModelElement extends Canonicalization /// A [ModelElement] for a [FunctionElement] that isn't part of a type definition. class ModelFunction extends ModelFunctionTyped { - ModelFunction(FunctionElement element, Library library) - : super(element, library); + ModelFunction( + FunctionElement element, Library library, PackageGraph packageGraph) + : super(element, library, packageGraph); @override bool get isStatic { return _func.isStatic; } + @override + String get name => element.name ?? ''; + @override FunctionElement get _func => (element as FunctionElement); } @@ -3605,8 +3633,9 @@ class ModelFunction extends ModelFunctionTyped { /// have a name, but we document it as "Function" to match how these are /// written in declarations. class ModelFunctionAnonymous extends ModelFunctionTyped { - ModelFunctionAnonymous(FunctionTypedElement element, Library library) - : super(element, library) {} + ModelFunctionAnonymous( + FunctionTypedElement element, PackageGraph packageGraph) + : super(element, null, packageGraph) {} @override String get name => 'Function'; @@ -3621,8 +3650,9 @@ class ModelFunctionAnonymous extends ModelFunctionTyped { /// A [ModelElement] for a [GenericModelFunctionElement] that is part of an /// explicit typedef. class ModelFunctionTypedef extends ModelFunctionTyped { - ModelFunctionTypedef(FunctionTypedElement element, Library library) - : super(element, library); + ModelFunctionTypedef( + FunctionTypedElement element, Library library, PackageGraph packageGraph) + : super(element, library, packageGraph); @override String get name { @@ -3643,14 +3673,15 @@ class ModelFunctionTyped extends ModelElement @override List typeParameters = []; - ModelFunctionTyped(FunctionTypedElement element, Library library) - : super(element, library, null) { + ModelFunctionTyped( + FunctionTypedElement element, Library library, PackageGraph packageGraph) + : super(element, library, packageGraph, null) { _calcTypeParameters(); } void _calcTypeParameters() { typeParameters = _func.typeParameters.map((f) { - return new ModelElement.from(f, library); + return new ModelElement.from(f, library, packageGraph); }).toList(); } @@ -3715,12 +3746,12 @@ class Operator extends Method { "%": "modulo" }; - Operator(MethodElement element, Library library) : super(element, library); + Operator(MethodElement element, Library library, PackageGraph packageGraph) + : super(element, library, packageGraph); - Operator.inherited( - MethodElement element, Class enclosingClass, Library library, - {Member originalMember}) - : super.inherited(element, enclosingClass, library, + Operator.inherited(MethodElement element, Class enclosingClass, + Library library, PackageGraph packageGraph, {Member originalMember}) + : super.inherited(element, enclosingClass, library, packageGraph, originalMember: originalMember) { _isInherited = true; } @@ -4420,11 +4451,13 @@ class PackageGraph extends Canonicalization with Nameable, Warnable { Accessor getter; Accessor setter; if (e is PropertyInducingElement) { - if (e.getter != null) getter = new ModelElement.from(e.getter, lib); - if (e.setter != null) setter = new ModelElement.from(e.setter, lib); + if (e.getter != null) + getter = new ModelElement.from(e.getter, lib, packageGraph); + if (e.setter != null) + setter = new ModelElement.from(e.setter, lib, packageGraph); } - modelElement = - new ModelElement.from(e, lib, getter: getter, setter: setter); + modelElement = new ModelElement.from(e, lib, packageGraph, + getter: getter, setter: setter); } assert(modelElement is! Inheritable); if (modelElement != null && !modelElement.isCanonical) { @@ -4681,9 +4714,10 @@ class Package extends LibraryContainer implements Comparable, Privacy { } class Parameter extends ModelElement implements EnclosedElement { - Parameter(ParameterElement element, Library library, {Member originalMember}) - : super(element, library, originalMember); - + Parameter( + ParameterElement element, Library library, PackageGraph packageGraph, + {Member originalMember}) + : super(element, library, packageGraph, originalMember); String get defaultValue { if (!hasDefaultValue) return null; return _parameter.defaultValueCode; @@ -4691,7 +4725,7 @@ class Parameter extends ModelElement implements EnclosedElement { @override ModelElement get enclosingElement => - new ModelElement.from(_parameter.enclosingElement, library); + new ModelElement.from(_parameter.enclosingElement, library, packageGraph); bool get hasDefaultValue { return _parameter.defaultValueCode != null && @@ -4855,12 +4889,12 @@ abstract class TypeParameters implements ModelElement { String get genericParameters { if (typeParameters.isEmpty) return ''; - return '<${typeParameters.map((t) => t.name).join(', ')}>'; + return '<${typeParameters.map((t) => t.name).join(', ')}>'; } String get linkedGenericParameters { if (typeParameters.isEmpty) return ''; - return '<${typeParameters.map((t) => t.linkedName).join(', ')}>'; + return '<${typeParameters.map((t) => t.linkedName).join(', ')}>'; } @override @@ -4879,8 +4913,8 @@ class TopLevelVariable extends ModelElement final Accessor setter; TopLevelVariable(TopLevelVariableElement element, Library library, - this.getter, this.setter) - : super(element, library, null) { + PackageGraph packageGraph, this.getter, this.setter) + : super(element, library, packageGraph, null) { if (getter != null) { getter.enclosingCombo = this; assert(getter.enclosingCombo != null); @@ -4954,8 +4988,9 @@ class TopLevelVariable extends ModelElement class Typedef extends ModelElement with SourceCodeMixin, TypeParameters implements EnclosedElement { - Typedef(FunctionTypeAliasElement element, Library library) - : super(element, library, null); + Typedef(FunctionTypeAliasElement element, Library library, + PackageGraph packageGraph) + : super(element, library, packageGraph, null); @override ModelElement get enclosingElement => library; @@ -4969,7 +5004,7 @@ class Typedef extends ModelElement List genericTypeParameters = (element as GenericTypeAliasElement).function.typeParameters; if (genericTypeParameters.isNotEmpty) { - return '<${genericTypeParameters.map((t) => t.name).join(', ')}>'; + return '<${genericTypeParameters.map((t) => t.name).join(', ')}>'; } } // else, all types are resolved. return ''; @@ -4997,17 +5032,18 @@ class Typedef extends ModelElement @override List get typeParameters => _typedef.typeParameters.map((f) { - return new ModelElement.from(f, library); + return new ModelElement.from(f, library, packageGraph); }).toList(); } class TypeParameter extends ModelElement { - TypeParameter(TypeParameterElement element, Library library) - : super(element, library, null); + TypeParameter( + TypeParameterElement element, Library library, PackageGraph packageGraph) + : super(element, library, packageGraph, null); @override ModelElement get enclosingElement => - new ModelElement.from(element.enclosingElement, library); + new ModelElement.from(element.enclosingElement, library, packageGraph); @override String get href { diff --git a/test/model_test.dart b/test/model_test.dart index e4fdef5007..8e2f7243a4 100644 --- a/test/model_test.dart +++ b/test/model_test.dart @@ -835,7 +835,10 @@ void main() { }); test('class name with generics', () { - expect(F.nameWithGenerics, equals('F<T extends String>')); + expect( + F.nameWithGenerics, + equals( + 'F<T extends String>')); }); test('correctly finds all the classes', () { @@ -1062,7 +1065,10 @@ void main() { test("has a (synthetic) values constant", () { var values = animal.constants.firstWhere((f) => f.name == 'values'); expect(values, isNotNull); - expect(values.constantValue, equals('const List<Animal>')); + expect( + values.constantValue, + equals( + 'const List<Animal>')); expect(values.documentation, startsWith('A constant List')); }); @@ -1173,28 +1179,32 @@ void main() { test('function returning FutureOr', () { expect(thisIsFutureOrNull.isAsynchronous, isFalse); - expect(thisIsFutureOrNull.linkedReturnType, - equals('FutureOr<Null>')); + expect( + thisIsFutureOrNull.linkedReturnType, + equals( + 'FutureOr<Null>')); }); test('function returning FutureOr', () { expect(thisIsFutureOrNull.isAsynchronous, isFalse); - expect(thisIsFutureOrT.linkedReturnType, - equals('FutureOr<T>')); + expect( + thisIsFutureOrT.linkedReturnType, + equals( + 'FutureOr<T>')); }); test('function with a parameter having type FutureOr', () { expect( paramOfFutureOrNull.linkedParams(), equals( - 'FutureOr<Null> future')); + 'FutureOr<Null> future')); }); test('function with a bound type to FutureOr', () { expect( typeParamOfFutureOr.linkedGenericParameters, equals( - '<T extends FutureOr<List>>')); + '<T extends FutureOr<List>>')); }); test('docs do not lose brackets in code blocks', () { @@ -1232,7 +1242,8 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, }); test('supports generic methods', () { - expect(genericFunction.nameWithGenerics, 'genericFunction<T>'); + expect(genericFunction.nameWithGenerics, + 'genericFunction<T>'); }); }); @@ -1252,21 +1263,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( @@ -1276,7 +1287,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( @@ -1286,7 +1297,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( @@ -1296,11 +1307,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( @@ -1309,7 +1320,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( @@ -1318,7 +1329,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( @@ -1328,7 +1339,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( @@ -1338,7 +1349,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', @@ -1347,9 +1358,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('', () {}); @@ -1416,7 +1427,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, expect( getAFunctionReturningVoid.linkedReturnType, equals( - 'Function(T1, T2)')); + 'void Function(T1, T2)')); }); test( @@ -1425,7 +1436,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, expect( getAFunctionReturningBool.linkedReturnType, equals( - 'Function<T4>(String, T1, T4)')); + 'bool Function<T4>(String, T1, T4)')); }); test('has a fully qualified name', () { @@ -1499,7 +1510,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', () { @@ -1508,7 +1519,8 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, }); test('generic method type args are rendered', () { - expect(testGenericMethod.nameWithGenerics, 'testGenericMethod<T>'); + expect(testGenericMethod.nameWithGenerics, + 'testGenericMethod<T>'); }); test('doc for method with no return type', () { @@ -1928,7 +1940,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, expect( fieldWithTypedef.linkedReturnType, equals( - 'ParameterizedTypedef<bool>')); + 'ParameterizedTypedef<bool>')); }); }); @@ -1937,10 +1949,16 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, TopLevelVariable v3, justGetter, justSetter; TopLevelVariable setAndGet, mapWithDynamicKeys; TopLevelVariable nodocGetter, nodocSetter; + TopLevelVariable complicatedReturn; + TopLevelVariable importantComputations; setUp(() { v = exLibrary.properties.firstWhere((p) => p.name == 'number'); v3 = exLibrary.properties.firstWhere((p) => p.name == 'y'); + importantComputations = fakeLibrary.properties + .firstWhere((v) => v.name == 'importantComputations'); + complicatedReturn = fakeLibrary.properties + .firstWhere((f) => f.name == 'complicatedReturn'); nodocGetter = fakeLibrary.properties .firstWhere((p) => p.name == 'getterSetterNodocGetter'); nodocSetter = fakeLibrary.properties @@ -1955,6 +1973,32 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, .firstWhere((p) => p.name == 'mapWithDynamicKeys'); }); + test( + 'Verify that a map containing anonymous functions as values works correctly', + () { + Iterable typeArguments = + (importantComputations.modelType.returnType as DefinedElementType) + .typeArguments; + expect(typeArguments, isNotEmpty); + expect( + typeArguments.last.linkedName, + equals( + '(List<num>) → dynamic')); + expect( + importantComputations.linkedReturnType, + equals( + 'Map<int, (List<num>) → dynamic>')); + }); + + test( + 'Verify that a complex type parameter with an anonymous function works correctly', + () { + expect( + complicatedReturn.linkedReturnType, + equals( + 'ATypeTakingClass<String Function(int)>')); + }); + test('@nodoc on simple property works', () { TopLevelVariable nodocSimple = fakeLibrary.publicProperties.firstWhere( (p) => p.name == 'simplePropertyHidden', @@ -2135,9 +2179,9 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, test('displays generic parameters correctly', () { expect(constructorTesterDefault.nameWithGenerics, - 'ConstructorTester<A, B>'); + 'ConstructorTester<A, B>'); expect(constructorTesterFromSomething.nameWithGenerics, - 'ConstructorTester<A, B>.fromSomething'); + 'ConstructorTester<A, B>.fromSomething'); }); test('has a fully qualified name', () { @@ -2190,15 +2234,17 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, }); test('a function returning a Future', () { - expect(returningFutureVoid.linkedReturnType, - equals('Future<void>')); + expect( + returningFutureVoid.linkedReturnType, + equals( + 'Future<void>')); }); test('a function requiring a Future parameter', () { expect( aVoidParameter.linkedParams(showMetadata: true, showNames: true), equals( - 'Future<void> p1')); + 'Future<void> p1')); }); test('a class that extends Future', () { @@ -2208,8 +2254,10 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, 'ExtendsFutureVoid')); DefinedElementType FutureVoid = ExtendsFutureVoid.publicSuperChain .firstWhere((c) => c.name == 'Future'); - expect(FutureVoid.linkedName, - equals('Future<void>')); + expect( + FutureVoid.linkedName, + equals( + 'Future<void>')); }); test('a class that implements Future', () { @@ -2219,8 +2267,10 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, 'ImplementsFutureVoid')); DefinedElementType FutureVoid = ImplementsFutureVoid.publicInterfaces .firstWhere((c) => c.name == 'Future'); - expect(FutureVoid.linkedName, - equals('Future<void>')); + expect( + FutureVoid.linkedName, + equals( + 'Future<void>')); }); test('Verify that a mixin with a void type parameter works', () { @@ -2233,7 +2283,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, expect( ATypeTakingClassVoid.linkedName, equals( - 'ATypeTakingClass<void>')); + 'ATypeTakingClass<void>')); }); }); @@ -2262,6 +2312,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, t = exLibrary.typedefs.firstWhere((t) => t.name == 'processMessage'); generic = fakeLibrary.typedefs.firstWhere((t) => t.name == 'NewGenericTypedef'); + aComplexTypedef = exLibrary.typedefs.firstWhere((t) => t.name == 'aComplexTypedef'); TypedefUsingClass = @@ -2275,14 +2326,16 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, expect( theConstructor.linkedParams(), equals( - 'ParameterizedTypedef<double> x')); + 'ParameterizedTypedef<double> x')); }); test('anonymous nested functions inside typedefs are handled', () { expect(aComplexTypedef, isNotNull); - expect(aComplexTypedef.linkedReturnType, startsWith('Function')); - expect(aComplexTypedef.nameWithGenerics, - equals('aComplexTypedef<A1, A2, A3>')); + expect(aComplexTypedef.linkedReturnType, startsWith('void Function')); + expect( + aComplexTypedef.nameWithGenerics, + equals( + 'aComplexTypedef<A1, A2, A3>')); }); test('anonymous nested functions inside typedefs are handled correctly', @@ -2290,7 +2343,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, expect( aComplexTypedef.linkedReturnType, equals( - 'Function(A1, A2, A3)')); + 'void Function(A1, A2, A3)')); expect( aComplexTypedef.linkedParamsLines, equals( @@ -2315,18 +2368,27 @@ 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", () { - expect(t.nameWithGenerics, equals('processMessage<T>')); - expect(generic.nameWithGenerics, equals('NewGenericTypedef<T>')); + expect( + t.nameWithGenerics, + equals( + 'processMessage<T>')); + expect( + generic.nameWithGenerics, + equals( + 'NewGenericTypedef<T>')); }); test("generic parameters", () { expect(t.genericParameters, equals('')); - expect(generic.genericParameters, equals('<S>')); + expect(generic.genericParameters, + equals('<S>')); }); }); diff --git a/testing/test_package/lib/fake.dart b/testing/test_package/lib/fake.dart index ff77405f39..d7c79eab6b 100644 --- a/testing/test_package/lib/fake.dart +++ b/testing/test_package/lib/fake.dart @@ -177,6 +177,14 @@ class AClassWithFancyProperties { const _APrivateConstClass CUSTOM_CLASS_PRIVATE = const _APrivateConstClass(); +/// Type inference mixing with anonymous functions. +final importantComputations = { + 1: (List a) => a[0] + a[1], + 2: (List a) => a[0] - a[1], + 3: (List a) => a[0] * a[1], + 4: (List a) => -a[0] +}; + // No dart docs on purpose. Also, a non-primitive const class. const ConstantClass CUSTOM_CLASS = const ConstantClass('custom'); @@ -213,6 +221,9 @@ typedef T GenericTypedef(T input); /// A typedef with the new style generic function syntax. typedef NewGenericTypedef = List Function(T, int, bool); +/// A complicated type parameter to ATypeTakingClass. +ATypeTakingClass get complicatedReturn => null; + /// Lots and lots of parameters. typedef int LotsAndLotsOfParameters(so, many, parameters, it, should, wrap, when, converted, to, html, documentation); diff --git a/testing/test_package_docs/ex/Animal-class.html b/testing/test_package_docs/ex/Animal-class.html index 0cda6e486e..a58ab32dae 100644 --- a/testing/test_package_docs/ex/Animal-class.html +++ b/testing/test_package_docs/ex/Animal-class.html @@ -155,13 +155,13 @@ Constants values - → const List<Animal> + → const List<Animal> A constant List of the values in this enum, in order of their declaration. - const List<Animal> + const List<Animal> diff --git a/testing/test_package_docs/ex/AnotherParameterizedClass-class.html b/testing/test_package_docs/ex/AnotherParameterizedClass-class.html index 79bfd63f9a..2df64ea5dd 100644 --- a/testing/test_package_docs/ex/AnotherParameterizedClass-class.html +++ b/testing/test_package_docs/ex/AnotherParameterizedClass-class.html @@ -25,7 +25,7 @@ test_package ex - AnotherParameterizedClass<B> class + AnotherParameterizedClass<B> class AnotherParameterizedClass @@ -107,7 +107,7 @@ ex library - AnotherParameterizedClass<B> class + AnotherParameterizedClass<B> class diff --git a/testing/test_package_docs/ex/AnotherParameterizedClass/AnotherParameterizedClass.html b/testing/test_package_docs/ex/AnotherParameterizedClass/AnotherParameterizedClass.html index 216369f8e3..3e849d7713 100644 --- a/testing/test_package_docs/ex/AnotherParameterizedClass/AnotherParameterizedClass.html +++ b/testing/test_package_docs/ex/AnotherParameterizedClass/AnotherParameterizedClass.html @@ -25,7 +25,7 @@ test_package ex - AnotherParameterizedClass<B> + AnotherParameterizedClass<B> AnotherParameterizedClass constructor AnotherParameterizedClass @@ -61,11 +61,11 @@ AnotherParameterizedClass class - AnotherParameterizedClass<B> constructor + AnotherParameterizedClass<B> constructor - AnotherParameterizedClass<B>() + AnotherParameterizedClass<B>() diff --git a/testing/test_package_docs/ex/AnotherParameterizedClass/hashCode.html b/testing/test_package_docs/ex/AnotherParameterizedClass/hashCode.html index e7cd4e2c2d..3244d5ec13 100644 --- a/testing/test_package_docs/ex/AnotherParameterizedClass/hashCode.html +++ b/testing/test_package_docs/ex/AnotherParameterizedClass/hashCode.html @@ -25,7 +25,7 @@ test_package ex - AnotherParameterizedClass<B> + AnotherParameterizedClass<B> hashCode property hashCode diff --git a/testing/test_package_docs/ex/AnotherParameterizedClass/noSuchMethod.html b/testing/test_package_docs/ex/AnotherParameterizedClass/noSuchMethod.html index a81d2c064d..4894ce66ca 100644 --- a/testing/test_package_docs/ex/AnotherParameterizedClass/noSuchMethod.html +++ b/testing/test_package_docs/ex/AnotherParameterizedClass/noSuchMethod.html @@ -25,7 +25,7 @@ test_package ex - AnotherParameterizedClass<B> + AnotherParameterizedClass<B> noSuchMethod method noSuchMethod diff --git a/testing/test_package_docs/ex/AnotherParameterizedClass/operator_equals.html b/testing/test_package_docs/ex/AnotherParameterizedClass/operator_equals.html index 12f5f8aae6..0cc511edc3 100644 --- a/testing/test_package_docs/ex/AnotherParameterizedClass/operator_equals.html +++ b/testing/test_package_docs/ex/AnotherParameterizedClass/operator_equals.html @@ -25,7 +25,7 @@ test_package ex - AnotherParameterizedClass<B> + AnotherParameterizedClass<B> operator == method operator == diff --git a/testing/test_package_docs/ex/AnotherParameterizedClass/runtimeType.html b/testing/test_package_docs/ex/AnotherParameterizedClass/runtimeType.html index 514cf96e6d..296c5bbd12 100644 --- a/testing/test_package_docs/ex/AnotherParameterizedClass/runtimeType.html +++ b/testing/test_package_docs/ex/AnotherParameterizedClass/runtimeType.html @@ -25,7 +25,7 @@ test_package ex - AnotherParameterizedClass<B> + AnotherParameterizedClass<B> runtimeType property runtimeType diff --git a/testing/test_package_docs/ex/AnotherParameterizedClass/toString.html b/testing/test_package_docs/ex/AnotherParameterizedClass/toString.html index 00b380e1be..6b4edb609f 100644 --- a/testing/test_package_docs/ex/AnotherParameterizedClass/toString.html +++ b/testing/test_package_docs/ex/AnotherParameterizedClass/toString.html @@ -25,7 +25,7 @@ test_package ex - AnotherParameterizedClass<B> + AnotherParameterizedClass<B> toString method toString diff --git a/testing/test_package_docs/ex/Apple-class.html b/testing/test_package_docs/ex/Apple-class.html index b923832f22..4a2378fd20 100644 --- a/testing/test_package_docs/ex/Apple-class.html +++ b/testing/test_package_docs/ex/Apple-class.html @@ -154,7 +154,7 @@ Properties fieldWithTypedef - → ParameterizedTypedef<bool> + → ParameterizedTypedef<bool> fieldWithTypedef docs here @@ -244,7 +244,7 @@ Methods - whataclass(List<Whataclass<bool>> list) + whataclass(List<Whataclass<bool>> list) → void diff --git a/testing/test_package_docs/ex/Apple/fieldWithTypedef.html b/testing/test_package_docs/ex/Apple/fieldWithTypedef.html index 64780ccd26..4b3e83d40a 100644 --- a/testing/test_package_docs/ex/Apple/fieldWithTypedef.html +++ b/testing/test_package_docs/ex/Apple/fieldWithTypedef.html @@ -79,7 +79,7 @@ Apple class fieldWithTypedef property - ParameterizedTypedef<bool> + ParameterizedTypedef<bool> fieldWithTypedef final diff --git a/testing/test_package_docs/ex/Apple/whataclass.html b/testing/test_package_docs/ex/Apple/whataclass.html index cbac01f12f..316159ba9b 100644 --- a/testing/test_package_docs/ex/Apple/whataclass.html +++ b/testing/test_package_docs/ex/Apple/whataclass.html @@ -81,7 +81,7 @@ whataclass method void whataclass -(List<Whataclass<bool>> list) +(List<Whataclass<bool>> list) Apple docs for whataclass diff --git a/testing/test_package_docs/ex/B-class.html b/testing/test_package_docs/ex/B-class.html index ce481ef110..5a3e870241 100644 --- a/testing/test_package_docs/ex/B-class.html +++ b/testing/test_package_docs/ex/B-class.html @@ -170,7 +170,7 @@ Properties list - ↔ List<String> + ↔ List<String> A list of Strings @@ -186,7 +186,7 @@ Properties fieldWithTypedef - → ParameterizedTypedef<bool> + → ParameterizedTypedef<bool> fieldWithTypedef docs here @@ -313,7 +313,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 9348d03605..d34ab28bad 100644 --- a/testing/test_package_docs/ex/B/list.html +++ b/testing/test_package_docs/ex/B/list.html @@ -80,7 +80,7 @@ B class list property - 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 02fabd3050..c5cb95fbdd 100644 --- a/testing/test_package_docs/ex/Dog-class.html +++ b/testing/test_package_docs/ex/Dog-class.html @@ -270,7 +270,7 @@ Methods getAnotherClassD() - → List<Dog> + → List<Dog> @@ -279,7 +279,7 @@ Methods getClassA() - → List<Apple> + → List<Apple> @@ -287,7 +287,7 @@ Methods - testGeneric(Map<String, dynamic> args) + testGeneric(Map<String, dynamic> args) → void @@ -296,7 +296,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 00efc82671..967e0d3174 100644 --- a/testing/test_package_docs/ex/Dog/getAnotherClassD.html +++ b/testing/test_package_docs/ex/Dog/getAnotherClassD.html @@ -97,7 +97,7 @@ getAnotherClassD method @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 b691c55a5b..546f2b4d26 100644 --- a/testing/test_package_docs/ex/Dog/getClassA.html +++ b/testing/test_package_docs/ex/Dog/getClassA.html @@ -97,7 +97,7 @@ getClassA method @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 891d48b9a3..34adafef6b 100644 --- a/testing/test_package_docs/ex/Dog/testGeneric.html +++ b/testing/test_package_docs/ex/Dog/testGeneric.html @@ -94,7 +94,7 @@ testGeneric method void testGeneric -(Map<String, dynamic> args) +(Map<String, dynamic> args) diff --git a/testing/test_package_docs/ex/Dog/testGenericMethod.html b/testing/test_package_docs/ex/Dog/testGenericMethod.html index 50013f7885..95c2b22361 100644 --- a/testing/test_package_docs/ex/Dog/testGenericMethod.html +++ b/testing/test_package_docs/ex/Dog/testGenericMethod.html @@ -26,7 +26,7 @@ test_package ex Dog - testGenericMethod<T> method + testGenericMethod<T> method testGenericMethod @@ -89,12 +89,12 @@ Dog class - testGenericMethod<T> method + testGenericMethod<T> method T testGenericMethod -<T>(T arg) +<T>(T arg) diff --git a/testing/test_package_docs/ex/F-class.html b/testing/test_package_docs/ex/F-class.html index eae7cfc322..2e3d9ed138 100644 --- a/testing/test_package_docs/ex/F-class.html +++ b/testing/test_package_docs/ex/F-class.html @@ -25,7 +25,7 @@ test_package ex - F<T extends String> class + F<T extends String> class F @@ -107,7 +107,7 @@ ex library - F<T extends String> class + F<T extends String> class @@ -229,7 +229,7 @@ Properties Methods - methodWithGenericParam([List<Apple> msgs ]) + methodWithGenericParam([List<Apple> msgs ]) → void @@ -257,7 +257,7 @@ Methods getAnotherClassD() - → List<Dog> + → List<Dog> @@ -266,7 +266,7 @@ Methods getClassA() - → List<Apple> + → List<Apple> @@ -292,7 +292,7 @@ Methods inherited - testGeneric(Map<String, dynamic> args) + testGeneric(Map<String, dynamic> args) → void @@ -301,7 +301,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 5756815053..8de10465a9 100644 --- a/testing/test_package_docs/ex/F/F.html +++ b/testing/test_package_docs/ex/F/F.html @@ -25,7 +25,7 @@ test_package ex - F<T extends String> + F<T extends String> F constructor F @@ -82,11 +82,11 @@ F class - F<T extends String> constructor + F<T extends String> constructor - F<T extends String>() + F<T extends String>() diff --git a/testing/test_package_docs/ex/F/methodWithGenericParam.html b/testing/test_package_docs/ex/F/methodWithGenericParam.html index 4e2a9b2c62..f14e9b1142 100644 --- a/testing/test_package_docs/ex/F/methodWithGenericParam.html +++ b/testing/test_package_docs/ex/F/methodWithGenericParam.html @@ -25,7 +25,7 @@ test_package ex - F<T extends String> + F<T extends String> methodWithGenericParam method methodWithGenericParam @@ -87,7 +87,7 @@ methodWithGenericParam method void methodWithGenericParam -([List<Apple> msgs ]) +([List<Apple> msgs ]) diff --git a/testing/test_package_docs/ex/F/test.html b/testing/test_package_docs/ex/F/test.html index 158fb85c0f..80fe610e0a 100644 --- a/testing/test_package_docs/ex/F/test.html +++ b/testing/test_package_docs/ex/F/test.html @@ -25,7 +25,7 @@ test_package ex - F<T extends String> + F<T extends String> test method test diff --git a/testing/test_package_docs/ex/ParameterizedClass-class.html b/testing/test_package_docs/ex/ParameterizedClass-class.html index 11d9f04113..36a9dfe5e7 100644 --- a/testing/test_package_docs/ex/ParameterizedClass-class.html +++ b/testing/test_package_docs/ex/ParameterizedClass-class.html @@ -25,7 +25,7 @@ test_package ex - ParameterizedClass<T> abstract class + ParameterizedClass<T> abstract class ParameterizedClass @@ -107,7 +107,7 @@ ex library - ParameterizedClass<T> class + ParameterizedClass<T> class Support class to test inheritance + type expansion from implements clause. @@ -145,7 +145,7 @@ Properties aInheritedField - ↔ AnotherParameterizedClass<T> + ↔ AnotherParameterizedClass<T> @@ -153,7 +153,7 @@ Properties aInheritedGetter - → AnotherParameterizedClass<T> + → AnotherParameterizedClass<T> @@ -161,7 +161,7 @@ Properties aInheritedSetter - ← AnotherParameterizedClass<T> + ← AnotherParameterizedClass<T> @@ -191,7 +191,7 @@ Methods aInheritedMethod(int foo) - → AnotherParameterizedClass<T> + → AnotherParameterizedClass<T> @@ -200,7 +200,7 @@ Methods aInheritedTypedefReturningMethod() - → ParameterizedTypedef<T> + → ParameterizedTypedef<T> @@ -232,8 +232,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 2e8f5f4607..fd8ea734b2 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/ParameterizedClass.html +++ b/testing/test_package_docs/ex/ParameterizedClass/ParameterizedClass.html @@ -25,7 +25,7 @@ test_package ex - ParameterizedClass<T> + ParameterizedClass<T> ParameterizedClass constructor ParameterizedClass @@ -67,11 +67,11 @@ ParameterizedClass class - ParameterizedClass<T> constructor + ParameterizedClass<T> constructor - ParameterizedClass<T>() + ParameterizedClass<T>() diff --git a/testing/test_package_docs/ex/ParameterizedClass/aInheritedField.html b/testing/test_package_docs/ex/ParameterizedClass/aInheritedField.html index 473b193a66..6c1b22835d 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/aInheritedField.html +++ b/testing/test_package_docs/ex/ParameterizedClass/aInheritedField.html @@ -25,7 +25,7 @@ test_package ex - ParameterizedClass<T> + ParameterizedClass<T> aInheritedField property aInheritedField @@ -70,7 +70,7 @@ ParameterizedClass class aInheritedField property - 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 61230f4e64..acae138901 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/aInheritedGetter.html +++ b/testing/test_package_docs/ex/ParameterizedClass/aInheritedGetter.html @@ -25,7 +25,7 @@ test_package ex - ParameterizedClass<T> + ParameterizedClass<T> aInheritedGetter property aInheritedGetter @@ -73,7 +73,7 @@ aInheritedGetter property - 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 ef56637600..0cf069c56f 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/aInheritedMethod.html +++ b/testing/test_package_docs/ex/ParameterizedClass/aInheritedMethod.html @@ -25,7 +25,7 @@ test_package ex - ParameterizedClass<T> + ParameterizedClass<T> aInheritedMethod abstract method aInheritedMethod @@ -70,7 +70,7 @@ ParameterizedClass class aInheritedMethod method - 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 5993e5c6a1..cc1b2c0094 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/aInheritedSetter.html +++ b/testing/test_package_docs/ex/ParameterizedClass/aInheritedSetter.html @@ -25,7 +25,7 @@ test_package ex - ParameterizedClass<T> + ParameterizedClass<T> aInheritedSetter property aInheritedSetter @@ -76,7 +76,7 @@ aInheritedSetter property void aInheritedSetter= -(AnotherParameterizedClass<T> thingToSet) +(AnotherParameterizedClass<T> thingToSet) diff --git a/testing/test_package_docs/ex/ParameterizedClass/aInheritedTypedefReturningMethod.html b/testing/test_package_docs/ex/ParameterizedClass/aInheritedTypedefReturningMethod.html index fac2e42a84..8248fa127c 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/aInheritedTypedefReturningMethod.html +++ b/testing/test_package_docs/ex/ParameterizedClass/aInheritedTypedefReturningMethod.html @@ -25,7 +25,7 @@ test_package ex - ParameterizedClass<T> + ParameterizedClass<T> aInheritedTypedefReturningMethod abstract method aInheritedTypedefReturningMethod @@ -70,7 +70,7 @@ ParameterizedClass class aInheritedTypedefReturningMethod method - 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 18e44d2df1..487eb6d26e 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/hashCode.html +++ b/testing/test_package_docs/ex/ParameterizedClass/hashCode.html @@ -25,7 +25,7 @@ test_package ex - ParameterizedClass<T> + ParameterizedClass<T> hashCode property hashCode diff --git a/testing/test_package_docs/ex/ParameterizedClass/noSuchMethod.html b/testing/test_package_docs/ex/ParameterizedClass/noSuchMethod.html index 05474b009e..95ebe969c7 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/noSuchMethod.html +++ b/testing/test_package_docs/ex/ParameterizedClass/noSuchMethod.html @@ -25,7 +25,7 @@ test_package ex - ParameterizedClass<T> + ParameterizedClass<T> noSuchMethod method noSuchMethod diff --git a/testing/test_package_docs/ex/ParameterizedClass/operator_equals.html b/testing/test_package_docs/ex/ParameterizedClass/operator_equals.html index eb4a915d51..f99c63e427 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 @@ test_package ex - ParameterizedClass<T> + ParameterizedClass<T> operator == method operator == diff --git a/testing/test_package_docs/ex/ParameterizedClass/operator_plus.html b/testing/test_package_docs/ex/ParameterizedClass/operator_plus.html index a793043036..3e8d9b1721 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 @@ test_package ex - ParameterizedClass<T> + ParameterizedClass<T> operator + abstract method operator + @@ -70,9 +70,9 @@ ParameterizedClass class operator + method - ParameterizedClass<T> + ParameterizedClass<T> operator + -(ParameterizedClass<T> other) +(ParameterizedClass<T> other) diff --git a/testing/test_package_docs/ex/ParameterizedClass/runtimeType.html b/testing/test_package_docs/ex/ParameterizedClass/runtimeType.html index a913529fd7..6cbdf5fd86 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/runtimeType.html +++ b/testing/test_package_docs/ex/ParameterizedClass/runtimeType.html @@ -25,7 +25,7 @@ test_package ex - ParameterizedClass<T> + ParameterizedClass<T> runtimeType property runtimeType diff --git a/testing/test_package_docs/ex/ParameterizedClass/toString.html b/testing/test_package_docs/ex/ParameterizedClass/toString.html index 40ef573c53..e8f426fb88 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/toString.html +++ b/testing/test_package_docs/ex/ParameterizedClass/toString.html @@ -25,7 +25,7 @@ test_package ex - ParameterizedClass<T> + ParameterizedClass<T> toString method toString diff --git a/testing/test_package_docs/ex/ParameterizedTypedef.html b/testing/test_package_docs/ex/ParameterizedTypedef.html index 18daa695d0..c6f4c166e1 100644 --- a/testing/test_package_docs/ex/ParameterizedTypedef.html +++ b/testing/test_package_docs/ex/ParameterizedTypedef.html @@ -25,7 +25,7 @@ test_package ex - ParameterizedTypedef<T> typedef + ParameterizedTypedef<T> typedef ParameterizedTypedef @@ -107,7 +107,7 @@ ex library - ParameterizedTypedef<T> typedef + ParameterizedTypedef<T> typedef String diff --git a/testing/test_package_docs/ex/TemplatedClass-class.html b/testing/test_package_docs/ex/TemplatedClass-class.html index 6f070655ff..4b8b342a18 100644 --- a/testing/test_package_docs/ex/TemplatedClass-class.html +++ b/testing/test_package_docs/ex/TemplatedClass-class.html @@ -25,7 +25,7 @@ test_package ex - TemplatedClass<X> class + TemplatedClass<X> class TemplatedClass @@ -107,7 +107,7 @@ ex library - TemplatedClass<X> class + TemplatedClass<X> class diff --git a/testing/test_package_docs/ex/TemplatedClass/TemplatedClass.html b/testing/test_package_docs/ex/TemplatedClass/TemplatedClass.html index 1f9b4d200f..e0cbe749f9 100644 --- a/testing/test_package_docs/ex/TemplatedClass/TemplatedClass.html +++ b/testing/test_package_docs/ex/TemplatedClass/TemplatedClass.html @@ -25,7 +25,7 @@ test_package ex - TemplatedClass<X> + TemplatedClass<X> TemplatedClass constructor TemplatedClass @@ -62,11 +62,11 @@ TemplatedClass class - TemplatedClass<X> constructor + TemplatedClass<X> constructor - TemplatedClass<X>() + TemplatedClass<X>() diff --git a/testing/test_package_docs/ex/TemplatedClass/aMethod.html b/testing/test_package_docs/ex/TemplatedClass/aMethod.html index 2224cc86a7..b9640e6f07 100644 --- a/testing/test_package_docs/ex/TemplatedClass/aMethod.html +++ b/testing/test_package_docs/ex/TemplatedClass/aMethod.html @@ -25,7 +25,7 @@ test_package ex - TemplatedClass<X> + TemplatedClass<X> aMethod method aMethod diff --git a/testing/test_package_docs/ex/TemplatedClass/hashCode.html b/testing/test_package_docs/ex/TemplatedClass/hashCode.html index 7fa26f9c70..d9488576f4 100644 --- a/testing/test_package_docs/ex/TemplatedClass/hashCode.html +++ b/testing/test_package_docs/ex/TemplatedClass/hashCode.html @@ -25,7 +25,7 @@ test_package ex - TemplatedClass<X> + TemplatedClass<X> hashCode property hashCode diff --git a/testing/test_package_docs/ex/TemplatedClass/noSuchMethod.html b/testing/test_package_docs/ex/TemplatedClass/noSuchMethod.html index c396cef563..e1a6fbbdbb 100644 --- a/testing/test_package_docs/ex/TemplatedClass/noSuchMethod.html +++ b/testing/test_package_docs/ex/TemplatedClass/noSuchMethod.html @@ -25,7 +25,7 @@ test_package ex - TemplatedClass<X> + TemplatedClass<X> noSuchMethod method noSuchMethod diff --git a/testing/test_package_docs/ex/TemplatedClass/operator_equals.html b/testing/test_package_docs/ex/TemplatedClass/operator_equals.html index cef6495a4b..de61e02195 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 @@ test_package ex - TemplatedClass<X> + TemplatedClass<X> operator == method operator == diff --git a/testing/test_package_docs/ex/TemplatedClass/runtimeType.html b/testing/test_package_docs/ex/TemplatedClass/runtimeType.html index 566ea70bd6..3e6ad22079 100644 --- a/testing/test_package_docs/ex/TemplatedClass/runtimeType.html +++ b/testing/test_package_docs/ex/TemplatedClass/runtimeType.html @@ -25,7 +25,7 @@ test_package ex - TemplatedClass<X> + TemplatedClass<X> runtimeType property runtimeType diff --git a/testing/test_package_docs/ex/TemplatedClass/toString.html b/testing/test_package_docs/ex/TemplatedClass/toString.html index bdc33cc652..05c1f1e61d 100644 --- a/testing/test_package_docs/ex/TemplatedClass/toString.html +++ b/testing/test_package_docs/ex/TemplatedClass/toString.html @@ -25,7 +25,7 @@ test_package ex - TemplatedClass<X> + TemplatedClass<X> toString method toString diff --git a/testing/test_package_docs/ex/TemplatedInterface-class.html b/testing/test_package_docs/ex/TemplatedInterface-class.html index 392677445f..65861965b8 100644 --- a/testing/test_package_docs/ex/TemplatedInterface-class.html +++ b/testing/test_package_docs/ex/TemplatedInterface-class.html @@ -25,7 +25,7 @@ test_package ex - TemplatedInterface<A> abstract class + TemplatedInterface<A> abstract class TemplatedInterface @@ -107,7 +107,7 @@ ex library - TemplatedInterface<A> class + TemplatedInterface<A> class Class for testing expansion of type from implements clause. @@ -119,7 +119,7 @@ TemplatedInterface<A> class Implements - ParameterizedClass<List<int>> + ParameterizedClass<List<int>> @@ -147,7 +147,7 @@ Properties aField - ↔ AnotherParameterizedClass<Stream<List<int>>> + ↔ AnotherParameterizedClass<Stream<List<int>>> @@ -155,7 +155,7 @@ Properties aGetter - → AnotherParameterizedClass<Map<A, List<String>>> + → AnotherParameterizedClass<Map<A, List<String>>> @@ -163,7 +163,7 @@ Properties aSetter - ← AnotherParameterizedClass<List<bool>> + ← AnotherParameterizedClass<List<bool>> @@ -171,7 +171,7 @@ Properties aInheritedField - ↔ AnotherParameterizedClass<List<int>> + ↔ AnotherParameterizedClass<List<int>> @@ -179,7 +179,7 @@ Properties aInheritedGetter - → AnotherParameterizedClass<List<int>> + → AnotherParameterizedClass<List<int>> @@ -187,7 +187,7 @@ Properties aInheritedSetter - ← AnotherParameterizedClass<List<int>> + ← AnotherParameterizedClass<List<int>> @@ -217,7 +217,7 @@ Methods aMethodInterface(A value) - → AnotherParameterizedClass<List<int>> + → AnotherParameterizedClass<List<int>> @@ -226,7 +226,7 @@ Methods aTypedefReturningMethodInterface() - → ParameterizedTypedef<List<String>> + → ParameterizedTypedef<List<String>> @@ -235,7 +235,7 @@ Methods aInheritedMethod(int foo) - → AnotherParameterizedClass<List<int>> + → AnotherParameterizedClass<List<int>> @@ -244,7 +244,7 @@ Methods aInheritedTypedefReturningMethod() - → ParameterizedTypedef<List<int>> + → ParameterizedTypedef<List<int>> @@ -276,8 +276,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 19e51bbd39..d5cd135bfc 100644 --- a/testing/test_package_docs/ex/TemplatedInterface/TemplatedInterface.html +++ b/testing/test_package_docs/ex/TemplatedInterface/TemplatedInterface.html @@ -25,7 +25,7 @@ test_package ex - TemplatedInterface<A> + TemplatedInterface<A> TemplatedInterface constructor TemplatedInterface @@ -72,11 +72,11 @@ TemplatedInterface class - TemplatedInterface<A> constructor + TemplatedInterface<A> constructor - TemplatedInterface<A>() + TemplatedInterface<A>() diff --git a/testing/test_package_docs/ex/TemplatedInterface/aField.html b/testing/test_package_docs/ex/TemplatedInterface/aField.html index 124cebfa0f..0372e91eb8 100644 --- a/testing/test_package_docs/ex/TemplatedInterface/aField.html +++ b/testing/test_package_docs/ex/TemplatedInterface/aField.html @@ -25,7 +25,7 @@ test_package ex - TemplatedInterface<A> + TemplatedInterface<A> aField property aField @@ -75,7 +75,7 @@ TemplatedInterface class aField property - 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 9d046d8f1e..6735cc031d 100644 --- a/testing/test_package_docs/ex/TemplatedInterface/aGetter.html +++ b/testing/test_package_docs/ex/TemplatedInterface/aGetter.html @@ -25,7 +25,7 @@ test_package ex - TemplatedInterface<A> + TemplatedInterface<A> aGetter property aGetter @@ -78,7 +78,7 @@ aGetter property - 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 1b0ea41e9f..2e2f0225e5 100644 --- a/testing/test_package_docs/ex/TemplatedInterface/aMethodInterface.html +++ b/testing/test_package_docs/ex/TemplatedInterface/aMethodInterface.html @@ -25,7 +25,7 @@ test_package ex - TemplatedInterface<A> + TemplatedInterface<A> aMethodInterface abstract method aMethodInterface @@ -75,7 +75,7 @@ TemplatedInterface class aMethodInterface method - 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 9889dd902e..c77bf2790d 100644 --- a/testing/test_package_docs/ex/TemplatedInterface/aSetter.html +++ b/testing/test_package_docs/ex/TemplatedInterface/aSetter.html @@ -25,7 +25,7 @@ test_package ex - TemplatedInterface<A> + TemplatedInterface<A> aSetter property aSetter @@ -81,7 +81,7 @@ aSetter property void aSetter= -(AnotherParameterizedClass<List<bool>> thingToSet) +(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 32f7f6d9a4..6dd958a7c3 100644 --- a/testing/test_package_docs/ex/TemplatedInterface/aTypedefReturningMethodInterface.html +++ b/testing/test_package_docs/ex/TemplatedInterface/aTypedefReturningMethodInterface.html @@ -25,7 +25,7 @@ test_package ex - TemplatedInterface<A> + TemplatedInterface<A> aTypedefReturningMethodInterface abstract method aTypedefReturningMethodInterface @@ -75,7 +75,7 @@ TemplatedInterface class aTypedefReturningMethodInterface method - 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 d2eab36995..d7258e769b 100644 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs-class.html +++ b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs-class.html @@ -154,7 +154,7 @@ Properties Methods - getAComplexTypedef<A4, A5, A6>() + getAComplexTypedef<A4, A5, A6>() → aComplexTypedef @@ -163,8 +163,8 @@ Methods - getAFunctionReturningBool<T1, T2, T3>() - → Function<T4>(String, T1, T4) + getAFunctionReturningBool<T1, T2, T3>() + → bool Function<T4>(String, T1, T4) @@ -173,8 +173,8 @@ Methods - getAFunctionReturningVoid<T1, T2>(void callback(T1 argument1, T2 argument2)) - → Function(T1, T2) + getAFunctionReturningVoid<T1, T2>(void callback(T1 argument1, T2 argument2)) + → void Function(T1, T2) diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAComplexTypedef.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAComplexTypedef.html index 06bd4c6cee..742ae6afe9 100644 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAComplexTypedef.html +++ b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAComplexTypedef.html @@ -26,7 +26,7 @@ test_package ex TypedFunctionsWithoutTypedefs - getAComplexTypedef<A4, A5, A6> abstract method + getAComplexTypedef<A4, A5, A6> abstract method getAComplexTypedef @@ -64,12 +64,12 @@ TypedFunctionsWithoutTypedefs class - getAComplexTypedef<A4, A5, A6> method + getAComplexTypedef<A4, A5, A6> method aComplexTypedef getAComplexTypedef -<A4, A5, A6>() +<A4, A5, A6>() Returns a complex typedef that includes some anonymous typed functions. diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningBool.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningBool.html index c6bf9a5030..a7109dd253 100644 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningBool.html +++ b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningBool.html @@ -26,7 +26,7 @@ test_package ex TypedFunctionsWithoutTypedefs - getAFunctionReturningBool<T1, T2, T3> abstract method + getAFunctionReturningBool<T1, T2, T3> abstract method getAFunctionReturningBool @@ -64,12 +64,12 @@ TypedFunctionsWithoutTypedefs class - getAFunctionReturningBool<T1, T2, T3> method + getAFunctionReturningBool<T1, T2, T3> method - Function<T4>(String, T1, T4) + bool Function<T4>(String, T1, T4) getAFunctionReturningBool -<T1, T2, T3>() +<T1, T2, T3>() This helps us make sure we get both the empty and the non-empty diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningVoid.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningVoid.html index d53d98a4fe..f5611c9f62 100644 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningVoid.html +++ b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningVoid.html @@ -26,7 +26,7 @@ test_package ex TypedFunctionsWithoutTypedefs - getAFunctionReturningVoid<T1, T2> abstract method + getAFunctionReturningVoid<T1, T2> abstract method getAFunctionReturningVoid @@ -64,12 +64,12 @@ TypedFunctionsWithoutTypedefs class - getAFunctionReturningVoid<T1, T2> method + getAFunctionReturningVoid<T1, T2> method - Function(T1, T2) + void Function(T1, T2) getAFunctionReturningVoid -<T1, T2>(void callback(T1 argument1, T2 argument2)) +<T1, T2>(void callback(T1 argument1, T2 argument2)) Returns a function that returns a void with some generic types sprinkled in. diff --git a/testing/test_package_docs/ex/WithGeneric-class.html b/testing/test_package_docs/ex/WithGeneric-class.html index 01b83233d0..74de37571a 100644 --- a/testing/test_package_docs/ex/WithGeneric-class.html +++ b/testing/test_package_docs/ex/WithGeneric-class.html @@ -25,7 +25,7 @@ test_package ex - WithGeneric<T> class + WithGeneric<T> class WithGeneric @@ -107,7 +107,7 @@ ex library - WithGeneric<T> class + WithGeneric<T> class diff --git a/testing/test_package_docs/ex/WithGeneric/WithGeneric.html b/testing/test_package_docs/ex/WithGeneric/WithGeneric.html index b0ce994a7f..27b3764761 100644 --- a/testing/test_package_docs/ex/WithGeneric/WithGeneric.html +++ b/testing/test_package_docs/ex/WithGeneric/WithGeneric.html @@ -25,7 +25,7 @@ test_package ex - WithGeneric<T> + WithGeneric<T> WithGeneric constructor WithGeneric @@ -62,11 +62,11 @@ WithGeneric class - WithGeneric<T> constructor + WithGeneric<T> constructor - WithGeneric<T>(T prop) + WithGeneric<T>(T prop) diff --git a/testing/test_package_docs/ex/WithGeneric/hashCode.html b/testing/test_package_docs/ex/WithGeneric/hashCode.html index d613832f29..9dddcd9e73 100644 --- a/testing/test_package_docs/ex/WithGeneric/hashCode.html +++ b/testing/test_package_docs/ex/WithGeneric/hashCode.html @@ -25,7 +25,7 @@ test_package ex - WithGeneric<T> + WithGeneric<T> hashCode property hashCode diff --git a/testing/test_package_docs/ex/WithGeneric/noSuchMethod.html b/testing/test_package_docs/ex/WithGeneric/noSuchMethod.html index b30f04e215..a52c24a227 100644 --- a/testing/test_package_docs/ex/WithGeneric/noSuchMethod.html +++ b/testing/test_package_docs/ex/WithGeneric/noSuchMethod.html @@ -25,7 +25,7 @@ test_package ex - WithGeneric<T> + WithGeneric<T> noSuchMethod method noSuchMethod diff --git a/testing/test_package_docs/ex/WithGeneric/operator_equals.html b/testing/test_package_docs/ex/WithGeneric/operator_equals.html index eb62602ca5..4a42557bfc 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 @@ test_package ex - WithGeneric<T> + WithGeneric<T> operator == method operator == diff --git a/testing/test_package_docs/ex/WithGeneric/prop.html b/testing/test_package_docs/ex/WithGeneric/prop.html index b7924f8bd8..2c3eb600fd 100644 --- a/testing/test_package_docs/ex/WithGeneric/prop.html +++ b/testing/test_package_docs/ex/WithGeneric/prop.html @@ -25,7 +25,7 @@ test_package ex - WithGeneric<T> + WithGeneric<T> prop property prop diff --git a/testing/test_package_docs/ex/WithGeneric/runtimeType.html b/testing/test_package_docs/ex/WithGeneric/runtimeType.html index e1ebf5b668..192840926a 100644 --- a/testing/test_package_docs/ex/WithGeneric/runtimeType.html +++ b/testing/test_package_docs/ex/WithGeneric/runtimeType.html @@ -25,7 +25,7 @@ test_package ex - WithGeneric<T> + WithGeneric<T> runtimeType property runtimeType diff --git a/testing/test_package_docs/ex/WithGeneric/toString.html b/testing/test_package_docs/ex/WithGeneric/toString.html index 7a3b104e65..18f2e81a0b 100644 --- a/testing/test_package_docs/ex/WithGeneric/toString.html +++ b/testing/test_package_docs/ex/WithGeneric/toString.html @@ -25,7 +25,7 @@ test_package ex - WithGeneric<T> + WithGeneric<T> toString method toString diff --git a/testing/test_package_docs/ex/WithGenericSub-class.html b/testing/test_package_docs/ex/WithGenericSub-class.html index 08b1d4c32a..28cb503153 100644 --- a/testing/test_package_docs/ex/WithGenericSub-class.html +++ b/testing/test_package_docs/ex/WithGenericSub-class.html @@ -115,7 +115,7 @@ WithGenericSub class Inheritance Object - WithGeneric<Apple> + WithGeneric<Apple> WithGenericSub diff --git a/testing/test_package_docs/ex/aComplexTypedef.html b/testing/test_package_docs/ex/aComplexTypedef.html index 77b1099c28..3cd9a3f959 100644 --- a/testing/test_package_docs/ex/aComplexTypedef.html +++ b/testing/test_package_docs/ex/aComplexTypedef.html @@ -25,7 +25,7 @@ test_package ex - aComplexTypedef<A1, A2, A3> typedef + aComplexTypedef<A1, A2, A3> typedef aComplexTypedef @@ -107,10 +107,10 @@ ex library - aComplexTypedef<A1, A2, A3> typedef + aComplexTypedef<A1, A2, A3> typedef - Function(A1, A2, A3) + void 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 beefc48964..1e707a0a79 100644 --- a/testing/test_package_docs/ex/ex-library.html +++ b/testing/test_package_docs/ex/ex-library.html @@ -69,7 +69,7 @@ Classes - AnotherParameterizedClass<B> + AnotherParameterizedClass<B> @@ -141,7 +141,7 @@ Classes - F<T extends String> + F<T extends String> @@ -173,7 +173,7 @@ Classes A class - ParameterizedClass<T> + ParameterizedClass<T> Support class to test inheritance + type expansion from implements clause. @@ -210,13 +210,13 @@ Classes that has some operators - TemplatedClass<X> + TemplatedClass<X> - TemplatedInterface<A> + TemplatedInterface<A> Class for testing expansion of type from implements clause. @@ -228,7 +228,7 @@ Classes This class has a complicated type situation. - WithGeneric<T> + WithGeneric<T> @@ -336,7 +336,7 @@ Constants PRETTY_COLORS - → const List<String> + → const List<String> @@ -409,7 +409,7 @@ Functions - genericFunction<T>(T arg) + genericFunction<T>(T arg) → T @@ -439,8 +439,8 @@ Typedefs - aComplexTypedef<A1, A2, A3>(A3, String) - → Function(A1, A2, A3) + aComplexTypedef<A1, A2, A3>(A3, String) + → void Function(A1, A2, A3) @@ -448,7 +448,7 @@ Typedefs - ParameterizedTypedef<T>(T msg, int foo) + ParameterizedTypedef<T>(T msg, int foo) → String @@ -457,7 +457,7 @@ Typedefs - processMessage<T>(String msg) + processMessage<T>(String msg) → String diff --git a/testing/test_package_docs/ex/genericFunction.html b/testing/test_package_docs/ex/genericFunction.html index 238fa6db8c..22f15b4553 100644 --- a/testing/test_package_docs/ex/genericFunction.html +++ b/testing/test_package_docs/ex/genericFunction.html @@ -25,7 +25,7 @@ test_package ex - genericFunction<T> function + genericFunction<T> function genericFunction @@ -107,12 +107,12 @@ ex library - genericFunction<T> function + genericFunction<T> function T genericFunction -<T>(T arg) +<T>(T arg) diff --git a/testing/test_package_docs/ex/processMessage.html b/testing/test_package_docs/ex/processMessage.html index b034c8f726..ec1a2fe0aa 100644 --- a/testing/test_package_docs/ex/processMessage.html +++ b/testing/test_package_docs/ex/processMessage.html @@ -25,7 +25,7 @@ test_package ex - processMessage<T> typedef + processMessage<T> typedef processMessage @@ -107,7 +107,7 @@ ex library - processMessage<T> typedef + processMessage<T> typedef String diff --git a/testing/test_package_docs/fake/ABaseClass-class.html b/testing/test_package_docs/fake/ABaseClass-class.html index 57793ce6d8..ec9405de01 100644 --- a/testing/test_package_docs/fake/ABaseClass-class.html +++ b/testing/test_package_docs/fake/ABaseClass-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html b/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html index 1d3e8c147e..b705de0e55 100644 --- a/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html +++ b/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/AClassWithFancyProperties-class.html b/testing/test_package_docs/fake/AClassWithFancyProperties-class.html index 5c220ce906..318509552f 100644 --- a/testing/test_package_docs/fake/AClassWithFancyProperties-class.html +++ b/testing/test_package_docs/fake/AClassWithFancyProperties-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/AMixinCallingSuper-class.html b/testing/test_package_docs/fake/AMixinCallingSuper-class.html index 6077b80b22..9b980c2716 100644 --- a/testing/test_package_docs/fake/AMixinCallingSuper-class.html +++ b/testing/test_package_docs/fake/AMixinCallingSuper-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/ATypeTakingClass-class.html b/testing/test_package_docs/fake/ATypeTakingClass-class.html index f30c050be6..af8ef7ba34 100644 --- a/testing/test_package_docs/fake/ATypeTakingClass-class.html +++ b/testing/test_package_docs/fake/ATypeTakingClass-class.html @@ -25,7 +25,7 @@ test_package fake - ATypeTakingClass<T> class + ATypeTakingClass<T> class ATypeTakingClass @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -152,7 +154,7 @@ fake library - ATypeTakingClass<T> class + ATypeTakingClass<T> class This class takes a type, and it might be void. diff --git a/testing/test_package_docs/fake/ATypeTakingClass/ATypeTakingClass.html b/testing/test_package_docs/fake/ATypeTakingClass/ATypeTakingClass.html index f18b1b8c36..a6973d299e 100644 --- a/testing/test_package_docs/fake/ATypeTakingClass/ATypeTakingClass.html +++ b/testing/test_package_docs/fake/ATypeTakingClass/ATypeTakingClass.html @@ -25,7 +25,7 @@ test_package fake - ATypeTakingClass<T> + ATypeTakingClass<T> ATypeTakingClass constructor ATypeTakingClass @@ -62,11 +62,11 @@ ATypeTakingClass class - ATypeTakingClass<T> constructor + ATypeTakingClass<T> constructor - ATypeTakingClass<T>() + ATypeTakingClass<T>() diff --git a/testing/test_package_docs/fake/ATypeTakingClass/aMethodMaybeReturningVoid.html b/testing/test_package_docs/fake/ATypeTakingClass/aMethodMaybeReturningVoid.html index b6fb10a807..78967fb7a7 100644 --- a/testing/test_package_docs/fake/ATypeTakingClass/aMethodMaybeReturningVoid.html +++ b/testing/test_package_docs/fake/ATypeTakingClass/aMethodMaybeReturningVoid.html @@ -25,7 +25,7 @@ test_package fake - ATypeTakingClass<T> + ATypeTakingClass<T> aMethodMaybeReturningVoid method aMethodMaybeReturningVoid diff --git a/testing/test_package_docs/fake/ATypeTakingClass/hashCode.html b/testing/test_package_docs/fake/ATypeTakingClass/hashCode.html index dfc64d5082..85a72ac7f9 100644 --- a/testing/test_package_docs/fake/ATypeTakingClass/hashCode.html +++ b/testing/test_package_docs/fake/ATypeTakingClass/hashCode.html @@ -25,7 +25,7 @@ test_package fake - ATypeTakingClass<T> + ATypeTakingClass<T> hashCode property hashCode diff --git a/testing/test_package_docs/fake/ATypeTakingClass/noSuchMethod.html b/testing/test_package_docs/fake/ATypeTakingClass/noSuchMethod.html index 8aaeee5c7c..02395544b4 100644 --- a/testing/test_package_docs/fake/ATypeTakingClass/noSuchMethod.html +++ b/testing/test_package_docs/fake/ATypeTakingClass/noSuchMethod.html @@ -25,7 +25,7 @@ test_package fake - ATypeTakingClass<T> + ATypeTakingClass<T> noSuchMethod method noSuchMethod diff --git a/testing/test_package_docs/fake/ATypeTakingClass/operator_equals.html b/testing/test_package_docs/fake/ATypeTakingClass/operator_equals.html index af92cc3b4f..1b09522a1b 100644 --- a/testing/test_package_docs/fake/ATypeTakingClass/operator_equals.html +++ b/testing/test_package_docs/fake/ATypeTakingClass/operator_equals.html @@ -25,7 +25,7 @@ test_package fake - ATypeTakingClass<T> + ATypeTakingClass<T> operator == method operator == diff --git a/testing/test_package_docs/fake/ATypeTakingClass/runtimeType.html b/testing/test_package_docs/fake/ATypeTakingClass/runtimeType.html index 6e7510b364..9a70063cae 100644 --- a/testing/test_package_docs/fake/ATypeTakingClass/runtimeType.html +++ b/testing/test_package_docs/fake/ATypeTakingClass/runtimeType.html @@ -25,7 +25,7 @@ test_package fake - ATypeTakingClass<T> + ATypeTakingClass<T> runtimeType property runtimeType diff --git a/testing/test_package_docs/fake/ATypeTakingClass/toString.html b/testing/test_package_docs/fake/ATypeTakingClass/toString.html index 57ae725a64..e2e9c17503 100644 --- a/testing/test_package_docs/fake/ATypeTakingClass/toString.html +++ b/testing/test_package_docs/fake/ATypeTakingClass/toString.html @@ -25,7 +25,7 @@ test_package fake - ATypeTakingClass<T> + ATypeTakingClass<T> toString method toString diff --git a/testing/test_package_docs/fake/ATypeTakingClassMixedIn-class.html b/testing/test_package_docs/fake/ATypeTakingClassMixedIn-class.html index 439dc5ee4f..22df7bcbcb 100644 --- a/testing/test_package_docs/fake/ATypeTakingClassMixedIn-class.html +++ b/testing/test_package_docs/fake/ATypeTakingClassMixedIn-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -167,7 +169,7 @@ ATypeTakingClassMixedIn class Mixes-in - ATypeTakingClass<void> + ATypeTakingClass<void> diff --git a/testing/test_package_docs/fake/Annotation-class.html b/testing/test_package_docs/fake/Annotation-class.html index 4aa53c9e36..ac8a4640f0 100644 --- a/testing/test_package_docs/fake/Annotation-class.html +++ b/testing/test_package_docs/fake/Annotation-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/AnotherInterface-class.html b/testing/test_package_docs/fake/AnotherInterface-class.html index 1249880900..4e34253676 100644 --- a/testing/test_package_docs/fake/AnotherInterface-class.html +++ b/testing/test_package_docs/fake/AnotherInterface-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/BaseForDocComments-class.html b/testing/test_package_docs/fake/BaseForDocComments-class.html index 9e8ed14333..a12fe20139 100644 --- a/testing/test_package_docs/fake/BaseForDocComments-class.html +++ b/testing/test_package_docs/fake/BaseForDocComments-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/BaseThingy-class.html b/testing/test_package_docs/fake/BaseThingy-class.html index 4317b3a717..090957bd08 100644 --- a/testing/test_package_docs/fake/BaseThingy-class.html +++ b/testing/test_package_docs/fake/BaseThingy-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/BaseThingy2-class.html b/testing/test_package_docs/fake/BaseThingy2-class.html index 24ca694133..d6ab678540 100644 --- a/testing/test_package_docs/fake/BaseThingy2-class.html +++ b/testing/test_package_docs/fake/BaseThingy2-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html b/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html index e733847a72..c5394a4ff3 100644 --- a/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html +++ b/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/CUSTOM_CLASS_PRIVATE-constant.html b/testing/test_package_docs/fake/CUSTOM_CLASS_PRIVATE-constant.html index 09226731ce..7b26d8dafc 100644 --- a/testing/test_package_docs/fake/CUSTOM_CLASS_PRIVATE-constant.html +++ b/testing/test_package_docs/fake/CUSTOM_CLASS_PRIVATE-constant.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/Callback2.html b/testing/test_package_docs/fake/Callback2.html index c8a224e847..d7fc6be25a 100644 --- a/testing/test_package_docs/fake/Callback2.html +++ b/testing/test_package_docs/fake/Callback2.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html b/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html index 69f8e8a788..1e45ac62dc 100644 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html +++ b/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -210,7 +212,7 @@ Properties explicitGetterImplicitSetter - ↔ List<int> + ↔ List<int> Getter doc for explicitGetterImplicitSetter @@ -234,7 +236,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 2b8edd4d74..79b6880b9f 100644 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetterImplicitSetter.html +++ b/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetterImplicitSetter.html @@ -80,7 +80,7 @@ explicitGetterImplicitSetter property - List<int> + List<int> explicitGetterImplicitSetter @@ -96,7 +96,7 @@ explicitGetterImplicitSetter property void explicitGetterImplicitSetter= -(List<int> _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 2a0ed300ce..7530b11dcc 100644 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitSetter.html +++ b/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitSetter.html @@ -83,7 +83,7 @@ explicitSetter property void explicitSetter= -(dynamic f(int bar, Cool baz, List<int> macTruck)) +(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 ef8b3b9d8f..6f2b12d53d 100644 --- a/testing/test_package_docs/fake/Color-class.html +++ b/testing/test_package_docs/fake/Color-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -222,13 +224,13 @@ Constants values - → const List<Color> + → const List<Color> A constant List of the values in this enum, in order of their declaration. - const List<Color> + const List<Color> diff --git a/testing/test_package_docs/fake/ConstantClass-class.html b/testing/test_package_docs/fake/ConstantClass-class.html index 9b081d7276..c65d54982c 100644 --- a/testing/test_package_docs/fake/ConstantClass-class.html +++ b/testing/test_package_docs/fake/ConstantClass-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/ConstructorTester-class.html b/testing/test_package_docs/fake/ConstructorTester-class.html index 43bb59f754..68eebe5356 100644 --- a/testing/test_package_docs/fake/ConstructorTester-class.html +++ b/testing/test_package_docs/fake/ConstructorTester-class.html @@ -25,7 +25,7 @@ test_package fake - ConstructorTester<A, B> class + ConstructorTester<A, B> class ConstructorTester @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -152,7 +154,7 @@ fake library - ConstructorTester<A, B> class + ConstructorTester<A, B> class diff --git a/testing/test_package_docs/fake/ConstructorTester/ConstructorTester.fromSomething.html b/testing/test_package_docs/fake/ConstructorTester/ConstructorTester.fromSomething.html index 040bb2e4c0..2dc82402dd 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 @@ test_package fake - ConstructorTester<A, B> + ConstructorTester<A, B> ConstructorTester.fromSomething constructor ConstructorTester.fromSomething @@ -62,11 +62,11 @@ ConstructorTester class - ConstructorTester<A, B>.fromSomething constructor + ConstructorTester<A, B>.fromSomething constructor - ConstructorTester<A, B>.fromSomething(A foo) + ConstructorTester<A, B>.fromSomething(A foo) diff --git a/testing/test_package_docs/fake/ConstructorTester/ConstructorTester.html b/testing/test_package_docs/fake/ConstructorTester/ConstructorTester.html index ce2deb1297..4aa68af6fc 100644 --- a/testing/test_package_docs/fake/ConstructorTester/ConstructorTester.html +++ b/testing/test_package_docs/fake/ConstructorTester/ConstructorTester.html @@ -25,7 +25,7 @@ test_package fake - ConstructorTester<A, B> + ConstructorTester<A, B> ConstructorTester constructor ConstructorTester @@ -62,11 +62,11 @@ ConstructorTester class - ConstructorTester<A, B> constructor + ConstructorTester<A, B> constructor - ConstructorTester<A, B>(String param1) + ConstructorTester<A, B>(String param1) diff --git a/testing/test_package_docs/fake/ConstructorTester/hashCode.html b/testing/test_package_docs/fake/ConstructorTester/hashCode.html index 5a53e6da9c..b903835e3a 100644 --- a/testing/test_package_docs/fake/ConstructorTester/hashCode.html +++ b/testing/test_package_docs/fake/ConstructorTester/hashCode.html @@ -25,7 +25,7 @@ test_package fake - ConstructorTester<A, B> + ConstructorTester<A, B> hashCode property hashCode diff --git a/testing/test_package_docs/fake/ConstructorTester/noSuchMethod.html b/testing/test_package_docs/fake/ConstructorTester/noSuchMethod.html index 962da9f94c..3f9d94d67b 100644 --- a/testing/test_package_docs/fake/ConstructorTester/noSuchMethod.html +++ b/testing/test_package_docs/fake/ConstructorTester/noSuchMethod.html @@ -25,7 +25,7 @@ test_package fake - ConstructorTester<A, B> + ConstructorTester<A, B> noSuchMethod method noSuchMethod diff --git a/testing/test_package_docs/fake/ConstructorTester/operator_equals.html b/testing/test_package_docs/fake/ConstructorTester/operator_equals.html index 1ad1d30f38..a690bf2374 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 @@ test_package fake - ConstructorTester<A, B> + ConstructorTester<A, B> operator == method operator == diff --git a/testing/test_package_docs/fake/ConstructorTester/runtimeType.html b/testing/test_package_docs/fake/ConstructorTester/runtimeType.html index 76929d7ad9..b3d7fed9a5 100644 --- a/testing/test_package_docs/fake/ConstructorTester/runtimeType.html +++ b/testing/test_package_docs/fake/ConstructorTester/runtimeType.html @@ -25,7 +25,7 @@ test_package fake - ConstructorTester<A, B> + ConstructorTester<A, B> runtimeType property runtimeType diff --git a/testing/test_package_docs/fake/ConstructorTester/toString.html b/testing/test_package_docs/fake/ConstructorTester/toString.html index a552f64c53..499b861623 100644 --- a/testing/test_package_docs/fake/ConstructorTester/toString.html +++ b/testing/test_package_docs/fake/ConstructorTester/toString.html @@ -25,7 +25,7 @@ test_package fake - ConstructorTester<A, B> + ConstructorTester<A, B> toString method toString diff --git a/testing/test_package_docs/fake/Cool-class.html b/testing/test_package_docs/fake/Cool-class.html index bf892b25c0..28c01dba56 100644 --- a/testing/test_package_docs/fake/Cool-class.html +++ b/testing/test_package_docs/fake/Cool-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/DOWN-constant.html b/testing/test_package_docs/fake/DOWN-constant.html index a9b6736a4f..a240b20641 100644 --- a/testing/test_package_docs/fake/DOWN-constant.html +++ b/testing/test_package_docs/fake/DOWN-constant.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/DocumentWithATable-class.html b/testing/test_package_docs/fake/DocumentWithATable-class.html index bcfef59d60..a6e805064c 100644 --- a/testing/test_package_docs/fake/DocumentWithATable-class.html +++ b/testing/test_package_docs/fake/DocumentWithATable-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/Doh-class.html b/testing/test_package_docs/fake/Doh-class.html index a5884987a2..f37f30a18f 100644 --- a/testing/test_package_docs/fake/Doh-class.html +++ b/testing/test_package_docs/fake/Doh-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/ExtendsFutureVoid-class.html b/testing/test_package_docs/fake/ExtendsFutureVoid-class.html index 8f910bcd57..0b92e66008 100644 --- a/testing/test_package_docs/fake/ExtendsFutureVoid-class.html +++ b/testing/test_package_docs/fake/ExtendsFutureVoid-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -163,7 +165,7 @@ ExtendsFutureVoid class Inheritance Object - Future<void> + Future<void> ExtendsFutureVoid @@ -178,7 +180,7 @@ Constructors - ExtendsFutureVoid(FutureOr<void> computation()) + ExtendsFutureVoid(FutureOr<void> computation()) @@ -215,7 +217,7 @@ Methods asStream() - → Stream<void> + → Stream<void> @@ -224,7 +226,7 @@ Methods catchError(Function onError, { bool test(Object error) }) - → Future<void> + → Future<void> @@ -241,8 +243,8 @@ Methods inherited - then<S>(FutureOr<S> onValue(T value), { Function onError }) - → Future<S> + then<S>(FutureOr<S> onValue(T value), { Function onError }) + → Future<S> @@ -250,8 +252,8 @@ Methods inherited - timeout(Duration timeLimit, { FutureOr<void> onTimeout() }) - → Future<void> + timeout(Duration timeLimit, { FutureOr<void> onTimeout() }) + → Future<void> @@ -269,7 +271,7 @@ Methods whenComplete(FutureOr action()) - → Future<void> + → Future<void> diff --git a/testing/test_package_docs/fake/ExtendsFutureVoid/ExtendsFutureVoid.html b/testing/test_package_docs/fake/ExtendsFutureVoid/ExtendsFutureVoid.html index 63f08025f4..e01f90e0ad 100644 --- a/testing/test_package_docs/fake/ExtendsFutureVoid/ExtendsFutureVoid.html +++ b/testing/test_package_docs/fake/ExtendsFutureVoid/ExtendsFutureVoid.html @@ -70,7 +70,7 @@ ExtendsFutureVoid constructor - ExtendsFutureVoid(FutureOr<void> computation()) + ExtendsFutureVoid(FutureOr<void> computation()) diff --git a/testing/test_package_docs/fake/ExtendsFutureVoid/asStream.html b/testing/test_package_docs/fake/ExtendsFutureVoid/asStream.html index a1de8cdaa5..2a3d433143 100644 --- a/testing/test_package_docs/fake/ExtendsFutureVoid/asStream.html +++ b/testing/test_package_docs/fake/ExtendsFutureVoid/asStream.html @@ -69,7 +69,7 @@ ExtendsFutureVoid class asStream method - Stream<void> + Stream<void> asStream () diff --git a/testing/test_package_docs/fake/ExtendsFutureVoid/catchError.html b/testing/test_package_docs/fake/ExtendsFutureVoid/catchError.html index 3ca3eb9bee..3217c3fc16 100644 --- a/testing/test_package_docs/fake/ExtendsFutureVoid/catchError.html +++ b/testing/test_package_docs/fake/ExtendsFutureVoid/catchError.html @@ -69,7 +69,7 @@ ExtendsFutureVoid class catchError method - Future<void> + Future<void> catchError (Function onError, { bool test(Object error) }) diff --git a/testing/test_package_docs/fake/ExtendsFutureVoid/then.html b/testing/test_package_docs/fake/ExtendsFutureVoid/then.html index 6c6646dc87..8c81e1e7be 100644 --- a/testing/test_package_docs/fake/ExtendsFutureVoid/then.html +++ b/testing/test_package_docs/fake/ExtendsFutureVoid/then.html @@ -26,7 +26,7 @@ test_package fake ExtendsFutureVoid - then<S> abstract method + then<S> abstract method then @@ -66,12 +66,12 @@ ExtendsFutureVoid class - then<S> method + then<S> method - Future<S> + Future<S> then -<S>(FutureOr<S> onValue(T value), { Function onError }) +<S>(FutureOr<S> onValue(T value), { Function onError }) diff --git a/testing/test_package_docs/fake/ExtendsFutureVoid/timeout.html b/testing/test_package_docs/fake/ExtendsFutureVoid/timeout.html index b65ca9f588..1bb496d5eb 100644 --- a/testing/test_package_docs/fake/ExtendsFutureVoid/timeout.html +++ b/testing/test_package_docs/fake/ExtendsFutureVoid/timeout.html @@ -69,9 +69,9 @@ ExtendsFutureVoid class timeout method - Future<void> + Future<void> timeout -(Duration timeLimit, { FutureOr<void> onTimeout() }) +(Duration timeLimit, { FutureOr<void> onTimeout() }) diff --git a/testing/test_package_docs/fake/ExtendsFutureVoid/whenComplete.html b/testing/test_package_docs/fake/ExtendsFutureVoid/whenComplete.html index 23bc801a02..8946735397 100644 --- a/testing/test_package_docs/fake/ExtendsFutureVoid/whenComplete.html +++ b/testing/test_package_docs/fake/ExtendsFutureVoid/whenComplete.html @@ -69,7 +69,7 @@ ExtendsFutureVoid class whenComplete method - Future<void> + Future<void> whenComplete (FutureOr action()) diff --git a/testing/test_package_docs/fake/ExtraSpecialList-class.html b/testing/test_package_docs/fake/ExtraSpecialList-class.html index 47661f15e1..155f15e4c5 100644 --- a/testing/test_package_docs/fake/ExtraSpecialList-class.html +++ b/testing/test_package_docs/fake/ExtraSpecialList-class.html @@ -25,7 +25,7 @@ test_package fake - ExtraSpecialList<E> class + ExtraSpecialList<E> class ExtraSpecialList @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -152,7 +154,7 @@ fake library - ExtraSpecialList<E> class + ExtraSpecialList<E> class This inherits operators. @@ -163,7 +165,7 @@ ExtraSpecialList<E> class Inheritance Object - ListBase<E> + ListBase<E> SpecialList ExtraSpecialList @@ -306,7 +308,7 @@ Methods asMap() - → Map<int, dynamic> + → Map<int, dynamic> @@ -314,8 +316,8 @@ Methods inherited - cast<R>() - → List<R> + cast<R>() + → List<R> @@ -359,8 +361,8 @@ Methods inherited - expand<T>(Iterable<T> f(E element)) - → Iterable<T> + expand<T>(Iterable<T> f(E element)) + → Iterable<T> @@ -386,7 +388,7 @@ Methods inherited - fold<T>(T initialValue, T combine(T previousValue, E element)) + fold<T>(T initialValue, T combine(T previousValue, E element)) → T @@ -494,8 +496,8 @@ Methods inherited - map<T>(T f(E element)) - → Iterable<T> + map<T>(T f(E element)) + → Iterable<T> @@ -584,8 +586,8 @@ Methods inherited - retype<R>() - → List<R> + retype<R>() + → List<R> @@ -719,8 +721,8 @@ Methods inherited - whereType<T>() - → Iterable<T> + whereType<T>() + → Iterable<T> diff --git a/testing/test_package_docs/fake/ExtraSpecialList/ExtraSpecialList.html b/testing/test_package_docs/fake/ExtraSpecialList/ExtraSpecialList.html index b86323460c..730f34b0c0 100644 --- a/testing/test_package_docs/fake/ExtraSpecialList/ExtraSpecialList.html +++ b/testing/test_package_docs/fake/ExtraSpecialList/ExtraSpecialList.html @@ -25,7 +25,7 @@ test_package fake - ExtraSpecialList<E> + ExtraSpecialList<E> ExtraSpecialList constructor ExtraSpecialList @@ -120,11 +120,11 @@ ExtraSpecialList class - ExtraSpecialList<E> constructor + ExtraSpecialList<E> constructor - ExtraSpecialList<E>() + ExtraSpecialList<E>() diff --git a/testing/test_package_docs/fake/FakeProcesses.html b/testing/test_package_docs/fake/FakeProcesses.html index 9ff61b98db..6114002164 100644 --- a/testing/test_package_docs/fake/FakeProcesses.html +++ b/testing/test_package_docs/fake/FakeProcesses.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/Foo2-class.html b/testing/test_package_docs/fake/Foo2-class.html index 8432eeb23f..3ee53342e7 100644 --- a/testing/test_package_docs/fake/Foo2-class.html +++ b/testing/test_package_docs/fake/Foo2-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/GenericTypedef.html b/testing/test_package_docs/fake/GenericTypedef.html index 977c29d039..4596df4a2e 100644 --- a/testing/test_package_docs/fake/GenericTypedef.html +++ b/testing/test_package_docs/fake/GenericTypedef.html @@ -25,7 +25,7 @@ test_package fake - GenericTypedef<T> typedef + GenericTypedef<T> typedef GenericTypedef @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -152,7 +154,7 @@ fake library - GenericTypedef<T> typedef + GenericTypedef<T> typedef T diff --git a/testing/test_package_docs/fake/HasGenericWithExtends-class.html b/testing/test_package_docs/fake/HasGenericWithExtends-class.html index b27b0015a9..5fa2a704c2 100644 --- a/testing/test_package_docs/fake/HasGenericWithExtends-class.html +++ b/testing/test_package_docs/fake/HasGenericWithExtends-class.html @@ -25,7 +25,7 @@ test_package fake - HasGenericWithExtends<T extends Foo2> class + HasGenericWithExtends<T extends Foo2> class HasGenericWithExtends @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -152,7 +154,7 @@ fake library - HasGenericWithExtends<T extends Foo2> class + HasGenericWithExtends<T extends Foo2> class I have a generic and it extends Foo2 diff --git a/testing/test_package_docs/fake/HasGenericWithExtends/HasGenericWithExtends.html b/testing/test_package_docs/fake/HasGenericWithExtends/HasGenericWithExtends.html index a248ed07d3..56694b43f9 100644 --- a/testing/test_package_docs/fake/HasGenericWithExtends/HasGenericWithExtends.html +++ b/testing/test_package_docs/fake/HasGenericWithExtends/HasGenericWithExtends.html @@ -25,7 +25,7 @@ test_package fake - HasGenericWithExtends<T extends Foo2> + HasGenericWithExtends<T extends Foo2> HasGenericWithExtends constructor HasGenericWithExtends @@ -61,11 +61,11 @@ HasGenericWithExtends class - HasGenericWithExtends<T extends Foo2> constructor + HasGenericWithExtends<T extends Foo2> constructor - HasGenericWithExtends<T extends Foo2>() + HasGenericWithExtends<T extends Foo2>() diff --git a/testing/test_package_docs/fake/HasGenericWithExtends/hashCode.html b/testing/test_package_docs/fake/HasGenericWithExtends/hashCode.html index 9895c38fe6..0789db8043 100644 --- a/testing/test_package_docs/fake/HasGenericWithExtends/hashCode.html +++ b/testing/test_package_docs/fake/HasGenericWithExtends/hashCode.html @@ -25,7 +25,7 @@ test_package fake - HasGenericWithExtends<T extends Foo2> + HasGenericWithExtends<T extends Foo2> hashCode property hashCode diff --git a/testing/test_package_docs/fake/HasGenericWithExtends/noSuchMethod.html b/testing/test_package_docs/fake/HasGenericWithExtends/noSuchMethod.html index 9afb859fb8..e75e339006 100644 --- a/testing/test_package_docs/fake/HasGenericWithExtends/noSuchMethod.html +++ b/testing/test_package_docs/fake/HasGenericWithExtends/noSuchMethod.html @@ -25,7 +25,7 @@ test_package fake - HasGenericWithExtends<T extends Foo2> + HasGenericWithExtends<T extends Foo2> noSuchMethod method noSuchMethod diff --git a/testing/test_package_docs/fake/HasGenericWithExtends/operator_equals.html b/testing/test_package_docs/fake/HasGenericWithExtends/operator_equals.html index 9319bace68..67364cee17 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 @@ test_package fake - HasGenericWithExtends<T extends Foo2> + HasGenericWithExtends<T extends Foo2> operator == method operator == diff --git a/testing/test_package_docs/fake/HasGenericWithExtends/runtimeType.html b/testing/test_package_docs/fake/HasGenericWithExtends/runtimeType.html index 3286d06d5d..e71e7adc30 100644 --- a/testing/test_package_docs/fake/HasGenericWithExtends/runtimeType.html +++ b/testing/test_package_docs/fake/HasGenericWithExtends/runtimeType.html @@ -25,7 +25,7 @@ test_package fake - HasGenericWithExtends<T extends Foo2> + HasGenericWithExtends<T extends Foo2> runtimeType property runtimeType diff --git a/testing/test_package_docs/fake/HasGenericWithExtends/toString.html b/testing/test_package_docs/fake/HasGenericWithExtends/toString.html index c4334fffd0..0b2e991399 100644 --- a/testing/test_package_docs/fake/HasGenericWithExtends/toString.html +++ b/testing/test_package_docs/fake/HasGenericWithExtends/toString.html @@ -25,7 +25,7 @@ test_package fake - HasGenericWithExtends<T extends Foo2> + HasGenericWithExtends<T extends Foo2> toString method toString diff --git a/testing/test_package_docs/fake/HasGenerics-class.html b/testing/test_package_docs/fake/HasGenerics-class.html index 7fca4e804a..693bbf94f2 100644 --- a/testing/test_package_docs/fake/HasGenerics-class.html +++ b/testing/test_package_docs/fake/HasGenerics-class.html @@ -25,7 +25,7 @@ test_package fake - HasGenerics<X, Y, Z> class + HasGenerics<X, Y, Z> class HasGenerics @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -152,7 +154,7 @@ fake library - HasGenerics<X, Y, Z> class + HasGenerics<X, Y, Z> class @@ -197,7 +199,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 91481faafb..8edaa7b6d9 100644 --- a/testing/test_package_docs/fake/HasGenerics/HasGenerics.html +++ b/testing/test_package_docs/fake/HasGenerics/HasGenerics.html @@ -25,7 +25,7 @@ test_package fake - HasGenerics<X, Y, Z> + HasGenerics<X, Y, Z> HasGenerics constructor HasGenerics @@ -65,11 +65,11 @@ HasGenerics class - HasGenerics<X, Y, Z> constructor + HasGenerics<X, Y, Z> constructor - HasGenerics<X, Y, Z>(X x, Y y, Z z) + HasGenerics<X, Y, Z>(X x, Y y, Z z) diff --git a/testing/test_package_docs/fake/HasGenerics/convertToMap.html b/testing/test_package_docs/fake/HasGenerics/convertToMap.html index bb9003c482..7f9f261874 100644 --- a/testing/test_package_docs/fake/HasGenerics/convertToMap.html +++ b/testing/test_package_docs/fake/HasGenerics/convertToMap.html @@ -25,7 +25,7 @@ test_package fake - HasGenerics<X, Y, Z> + HasGenerics<X, Y, Z> convertToMap method convertToMap @@ -68,7 +68,7 @@ HasGenerics class convertToMap method - 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 7fc720b2b9..4cc12bbd54 100644 --- a/testing/test_package_docs/fake/HasGenerics/doStuff.html +++ b/testing/test_package_docs/fake/HasGenerics/doStuff.html @@ -25,7 +25,7 @@ test_package fake - HasGenerics<X, Y, Z> + HasGenerics<X, Y, Z> doStuff method doStuff diff --git a/testing/test_package_docs/fake/HasGenerics/hashCode.html b/testing/test_package_docs/fake/HasGenerics/hashCode.html index 4390f5d913..5521531cd6 100644 --- a/testing/test_package_docs/fake/HasGenerics/hashCode.html +++ b/testing/test_package_docs/fake/HasGenerics/hashCode.html @@ -25,7 +25,7 @@ test_package fake - HasGenerics<X, Y, Z> + HasGenerics<X, Y, Z> hashCode property hashCode diff --git a/testing/test_package_docs/fake/HasGenerics/noSuchMethod.html b/testing/test_package_docs/fake/HasGenerics/noSuchMethod.html index f1d2c17622..04db911bb8 100644 --- a/testing/test_package_docs/fake/HasGenerics/noSuchMethod.html +++ b/testing/test_package_docs/fake/HasGenerics/noSuchMethod.html @@ -25,7 +25,7 @@ test_package fake - HasGenerics<X, Y, Z> + HasGenerics<X, Y, Z> noSuchMethod method noSuchMethod diff --git a/testing/test_package_docs/fake/HasGenerics/operator_equals.html b/testing/test_package_docs/fake/HasGenerics/operator_equals.html index 42f17727d8..53139cf182 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 @@ test_package fake - HasGenerics<X, Y, Z> + HasGenerics<X, Y, Z> operator == method operator == diff --git a/testing/test_package_docs/fake/HasGenerics/returnX.html b/testing/test_package_docs/fake/HasGenerics/returnX.html index 78a6f9f146..6298f9db7b 100644 --- a/testing/test_package_docs/fake/HasGenerics/returnX.html +++ b/testing/test_package_docs/fake/HasGenerics/returnX.html @@ -25,7 +25,7 @@ test_package fake - HasGenerics<X, Y, Z> + HasGenerics<X, Y, Z> returnX method returnX diff --git a/testing/test_package_docs/fake/HasGenerics/returnZ.html b/testing/test_package_docs/fake/HasGenerics/returnZ.html index 56b83b57c5..78075163fb 100644 --- a/testing/test_package_docs/fake/HasGenerics/returnZ.html +++ b/testing/test_package_docs/fake/HasGenerics/returnZ.html @@ -25,7 +25,7 @@ test_package fake - HasGenerics<X, Y, Z> + HasGenerics<X, Y, Z> returnZ method returnZ diff --git a/testing/test_package_docs/fake/HasGenerics/runtimeType.html b/testing/test_package_docs/fake/HasGenerics/runtimeType.html index b8e1383db6..b4ffefdf8d 100644 --- a/testing/test_package_docs/fake/HasGenerics/runtimeType.html +++ b/testing/test_package_docs/fake/HasGenerics/runtimeType.html @@ -25,7 +25,7 @@ test_package fake - HasGenerics<X, Y, Z> + HasGenerics<X, Y, Z> runtimeType property runtimeType diff --git a/testing/test_package_docs/fake/HasGenerics/toString.html b/testing/test_package_docs/fake/HasGenerics/toString.html index 91bf106f25..a013872dcb 100644 --- a/testing/test_package_docs/fake/HasGenerics/toString.html +++ b/testing/test_package_docs/fake/HasGenerics/toString.html @@ -25,7 +25,7 @@ test_package fake - HasGenerics<X, Y, Z> + HasGenerics<X, Y, Z> toString method toString diff --git a/testing/test_package_docs/fake/ImplementingThingy-class.html b/testing/test_package_docs/fake/ImplementingThingy-class.html index 1045442c62..ac056e0547 100644 --- a/testing/test_package_docs/fake/ImplementingThingy-class.html +++ b/testing/test_package_docs/fake/ImplementingThingy-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/ImplementingThingy2-class.html b/testing/test_package_docs/fake/ImplementingThingy2-class.html index 03709fc660..c4242cba0d 100644 --- a/testing/test_package_docs/fake/ImplementingThingy2-class.html +++ b/testing/test_package_docs/fake/ImplementingThingy2-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/ImplementsFutureVoid-class.html b/testing/test_package_docs/fake/ImplementsFutureVoid-class.html index 7005b73997..2daf6b746b 100644 --- a/testing/test_package_docs/fake/ImplementsFutureVoid-class.html +++ b/testing/test_package_docs/fake/ImplementsFutureVoid-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -164,7 +166,7 @@ ImplementsFutureVoid class Implements - Future<void> + Future<void> @@ -214,7 +216,7 @@ Methods asStream() - → Stream<void> + → Stream<void> @@ -223,7 +225,7 @@ Methods catchError(Function onError, { bool test(Object error) }) - → Future<void> + → Future<void> @@ -240,8 +242,8 @@ Methods inherited - then<S>(FutureOr<S> onValue(T value), { Function onError }) - → Future<S> + then<S>(FutureOr<S> onValue(T value), { Function onError }) + → Future<S> @@ -249,8 +251,8 @@ Methods inherited - timeout(Duration timeLimit, { FutureOr<void> onTimeout() }) - → Future<void> + timeout(Duration timeLimit, { FutureOr<void> onTimeout() }) + → Future<void> @@ -268,7 +270,7 @@ Methods whenComplete(FutureOr action()) - → Future<void> + → Future<void> diff --git a/testing/test_package_docs/fake/ImplementsFutureVoid/asStream.html b/testing/test_package_docs/fake/ImplementsFutureVoid/asStream.html index 770b07d2c3..f74609b03c 100644 --- a/testing/test_package_docs/fake/ImplementsFutureVoid/asStream.html +++ b/testing/test_package_docs/fake/ImplementsFutureVoid/asStream.html @@ -69,7 +69,7 @@ ImplementsFutureVoid class asStream method - Stream<void> + Stream<void> asStream () diff --git a/testing/test_package_docs/fake/ImplementsFutureVoid/catchError.html b/testing/test_package_docs/fake/ImplementsFutureVoid/catchError.html index aae715018f..7797ff3480 100644 --- a/testing/test_package_docs/fake/ImplementsFutureVoid/catchError.html +++ b/testing/test_package_docs/fake/ImplementsFutureVoid/catchError.html @@ -69,7 +69,7 @@ ImplementsFutureVoid class catchError method - Future<void> + Future<void> catchError (Function onError, { bool test(Object error) }) diff --git a/testing/test_package_docs/fake/ImplementsFutureVoid/then.html b/testing/test_package_docs/fake/ImplementsFutureVoid/then.html index 38d7d20d9b..51db5a729e 100644 --- a/testing/test_package_docs/fake/ImplementsFutureVoid/then.html +++ b/testing/test_package_docs/fake/ImplementsFutureVoid/then.html @@ -26,7 +26,7 @@ test_package fake ImplementsFutureVoid - then<S> abstract method + then<S> abstract method then @@ -66,12 +66,12 @@ ImplementsFutureVoid class - then<S> method + then<S> method - Future<S> + Future<S> then -<S>(FutureOr<S> onValue(T value), { Function onError }) +<S>(FutureOr<S> onValue(T value), { Function onError }) diff --git a/testing/test_package_docs/fake/ImplementsFutureVoid/timeout.html b/testing/test_package_docs/fake/ImplementsFutureVoid/timeout.html index 2bafec77d6..0d800b5a72 100644 --- a/testing/test_package_docs/fake/ImplementsFutureVoid/timeout.html +++ b/testing/test_package_docs/fake/ImplementsFutureVoid/timeout.html @@ -69,9 +69,9 @@ ImplementsFutureVoid class timeout method - Future<void> + Future<void> timeout -(Duration timeLimit, { FutureOr<void> onTimeout() }) +(Duration timeLimit, { FutureOr<void> onTimeout() }) diff --git a/testing/test_package_docs/fake/ImplementsFutureVoid/whenComplete.html b/testing/test_package_docs/fake/ImplementsFutureVoid/whenComplete.html index d2fc201a03..3647e569f1 100644 --- a/testing/test_package_docs/fake/ImplementsFutureVoid/whenComplete.html +++ b/testing/test_package_docs/fake/ImplementsFutureVoid/whenComplete.html @@ -69,7 +69,7 @@ ImplementsFutureVoid class whenComplete method - Future<void> + Future<void> whenComplete (FutureOr action()) diff --git a/testing/test_package_docs/fake/ImplicitProperties-class.html b/testing/test_package_docs/fake/ImplicitProperties-class.html index 44cb641b00..6929d33929 100644 --- a/testing/test_package_docs/fake/ImplicitProperties-class.html +++ b/testing/test_package_docs/fake/ImplicitProperties-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -191,7 +193,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 49882fd36f..5f2a92b946 100644 --- a/testing/test_package_docs/fake/ImplicitProperties/explicitGetterImplicitSetter.html +++ b/testing/test_package_docs/fake/ImplicitProperties/explicitGetterImplicitSetter.html @@ -69,7 +69,7 @@ ImplicitProperties class explicitGetterImplicitSetter property - List<int> + List<int> explicitGetterImplicitSetter read / write diff --git a/testing/test_package_docs/fake/InheritingClassOne-class.html b/testing/test_package_docs/fake/InheritingClassOne-class.html index 326edbbeac..69e19c1fc3 100644 --- a/testing/test_package_docs/fake/InheritingClassOne-class.html +++ b/testing/test_package_docs/fake/InheritingClassOne-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/InheritingClassTwo-class.html b/testing/test_package_docs/fake/InheritingClassTwo-class.html index b90b9ebefc..d56922fd70 100644 --- a/testing/test_package_docs/fake/InheritingClassTwo-class.html +++ b/testing/test_package_docs/fake/InheritingClassTwo-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/Interface-class.html b/testing/test_package_docs/fake/Interface-class.html index 0df9ffa67e..fe0afaff47 100644 --- a/testing/test_package_docs/fake/Interface-class.html +++ b/testing/test_package_docs/fake/Interface-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/LongFirstLine-class.html b/testing/test_package_docs/fake/LongFirstLine-class.html index aefc8eb105..41861d8069 100644 --- a/testing/test_package_docs/fake/LongFirstLine-class.html +++ b/testing/test_package_docs/fake/LongFirstLine-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -253,7 +255,7 @@ Properties powers - ↔ List<String> + ↔ List<String> In the super class. diff --git a/testing/test_package_docs/fake/LotsAndLotsOfParameters.html b/testing/test_package_docs/fake/LotsAndLotsOfParameters.html index 48cb1eea4c..149898fec8 100644 --- a/testing/test_package_docs/fake/LotsAndLotsOfParameters.html +++ b/testing/test_package_docs/fake/LotsAndLotsOfParameters.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/MIEEBase-class.html b/testing/test_package_docs/fake/MIEEBase-class.html index 1e8b635794..5a9883bb3d 100644 --- a/testing/test_package_docs/fake/MIEEBase-class.html +++ b/testing/test_package_docs/fake/MIEEBase-class.html @@ -25,7 +25,7 @@ test_package fake - MIEEBase<K, V> abstract class + MIEEBase<K, V> abstract class MIEEBase @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -152,7 +154,7 @@ fake library - MIEEBase<K, V> class + MIEEBase<K, V> class @@ -160,7 +162,7 @@ MIEEBase<K, V> class Inheritance Object - MIEEMixin<K, V> + MIEEMixin<K, V> MIEEBase diff --git a/testing/test_package_docs/fake/MIEEBase/MIEEBase.html b/testing/test_package_docs/fake/MIEEBase/MIEEBase.html index 1d781a67d3..6b7c4db1ed 100644 --- a/testing/test_package_docs/fake/MIEEBase/MIEEBase.html +++ b/testing/test_package_docs/fake/MIEEBase/MIEEBase.html @@ -25,7 +25,7 @@ test_package fake - MIEEBase<K, V> + MIEEBase<K, V> MIEEBase constructor MIEEBase @@ -62,11 +62,11 @@ MIEEBase class - MIEEBase<K, V> constructor + MIEEBase<K, V> constructor - MIEEBase<K, V>() + MIEEBase<K, V>() diff --git a/testing/test_package_docs/fake/MIEEMixin-class.html b/testing/test_package_docs/fake/MIEEMixin-class.html index be5edf79e1..a3cfdf5195 100644 --- a/testing/test_package_docs/fake/MIEEMixin-class.html +++ b/testing/test_package_docs/fake/MIEEMixin-class.html @@ -25,7 +25,7 @@ test_package fake - MIEEMixin<K, V> abstract class + MIEEMixin<K, V> abstract class MIEEMixin @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -152,7 +154,7 @@ fake library - MIEEMixin<K, V> class + MIEEMixin<K, V> class @@ -161,7 +163,7 @@ MIEEMixin<K, V> class Implements - MIEEThing<K, V> + MIEEThing<K, V> diff --git a/testing/test_package_docs/fake/MIEEMixin/MIEEMixin.html b/testing/test_package_docs/fake/MIEEMixin/MIEEMixin.html index 8735cb7853..694a580744 100644 --- a/testing/test_package_docs/fake/MIEEMixin/MIEEMixin.html +++ b/testing/test_package_docs/fake/MIEEMixin/MIEEMixin.html @@ -25,7 +25,7 @@ test_package fake - MIEEMixin<K, V> + MIEEMixin<K, V> MIEEMixin constructor MIEEMixin @@ -62,11 +62,11 @@ MIEEMixin class - MIEEMixin<K, V> constructor + MIEEMixin<K, V> constructor - MIEEMixin<K, V>() + MIEEMixin<K, V>() diff --git a/testing/test_package_docs/fake/MIEEMixin/operator_put.html b/testing/test_package_docs/fake/MIEEMixin/operator_put.html index c07c525d40..0760d0cbbe 100644 --- a/testing/test_package_docs/fake/MIEEMixin/operator_put.html +++ b/testing/test_package_docs/fake/MIEEMixin/operator_put.html @@ -25,7 +25,7 @@ test_package fake - MIEEMixin<K, V> + MIEEMixin<K, V> operator []= abstract method operator []= diff --git a/testing/test_package_docs/fake/MIEEMixinWithOverride-class.html b/testing/test_package_docs/fake/MIEEMixinWithOverride-class.html index 912b9b9de6..cae76187f9 100644 --- a/testing/test_package_docs/fake/MIEEMixinWithOverride-class.html +++ b/testing/test_package_docs/fake/MIEEMixinWithOverride-class.html @@ -25,7 +25,7 @@ test_package fake - MIEEMixinWithOverride<K, V> abstract class + MIEEMixinWithOverride<K, V> abstract class MIEEMixinWithOverride @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -152,7 +154,7 @@ fake library - MIEEMixinWithOverride<K, V> class + MIEEMixinWithOverride<K, V> class Test an edge case for cases where inherited ExecutableElements can come @@ -165,8 +167,8 @@ MIEEMixinWithOverride<K, V> class Inheritance Object - MIEEMixin<K, V> - MIEEBase<K, V> + MIEEMixin<K, V> + MIEEBase<K, V> MIEEMixinWithOverride diff --git a/testing/test_package_docs/fake/MIEEMixinWithOverride/MIEEMixinWithOverride.html b/testing/test_package_docs/fake/MIEEMixinWithOverride/MIEEMixinWithOverride.html index b3c58f9348..94b262c456 100644 --- a/testing/test_package_docs/fake/MIEEMixinWithOverride/MIEEMixinWithOverride.html +++ b/testing/test_package_docs/fake/MIEEMixinWithOverride/MIEEMixinWithOverride.html @@ -25,7 +25,7 @@ test_package fake - MIEEMixinWithOverride<K, V> + MIEEMixinWithOverride<K, V> MIEEMixinWithOverride constructor MIEEMixinWithOverride @@ -62,11 +62,11 @@ MIEEMixinWithOverride class - MIEEMixinWithOverride<K, V> constructor + MIEEMixinWithOverride<K, V> constructor - MIEEMixinWithOverride<K, V>() + MIEEMixinWithOverride<K, V>() diff --git a/testing/test_package_docs/fake/MIEEMixinWithOverride/operator_put.html b/testing/test_package_docs/fake/MIEEMixinWithOverride/operator_put.html index b584f6d6c5..f2895c6bc3 100644 --- a/testing/test_package_docs/fake/MIEEMixinWithOverride/operator_put.html +++ b/testing/test_package_docs/fake/MIEEMixinWithOverride/operator_put.html @@ -25,7 +25,7 @@ test_package fake - MIEEMixinWithOverride<K, V> + MIEEMixinWithOverride<K, V> operator []= method operator []= diff --git a/testing/test_package_docs/fake/MIEEThing-class.html b/testing/test_package_docs/fake/MIEEThing-class.html index bb2dfcb6ff..4376adf33f 100644 --- a/testing/test_package_docs/fake/MIEEThing-class.html +++ b/testing/test_package_docs/fake/MIEEThing-class.html @@ -25,7 +25,7 @@ test_package fake - MIEEThing<K, V> abstract class + MIEEThing<K, V> abstract class MIEEThing @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -152,7 +154,7 @@ fake library - MIEEThing<K, V> class + MIEEThing<K, V> class diff --git a/testing/test_package_docs/fake/MIEEThing/MIEEThing.html b/testing/test_package_docs/fake/MIEEThing/MIEEThing.html index c3669ef499..6a196b6f07 100644 --- a/testing/test_package_docs/fake/MIEEThing/MIEEThing.html +++ b/testing/test_package_docs/fake/MIEEThing/MIEEThing.html @@ -25,7 +25,7 @@ test_package fake - MIEEThing<K, V> + MIEEThing<K, V> MIEEThing constructor MIEEThing @@ -62,11 +62,11 @@ MIEEThing class - MIEEThing<K, V> constructor + MIEEThing<K, V> constructor - MIEEThing<K, V>() + MIEEThing<K, V>() diff --git a/testing/test_package_docs/fake/MIEEThing/hashCode.html b/testing/test_package_docs/fake/MIEEThing/hashCode.html index 6fe0bde37b..b2522fa380 100644 --- a/testing/test_package_docs/fake/MIEEThing/hashCode.html +++ b/testing/test_package_docs/fake/MIEEThing/hashCode.html @@ -25,7 +25,7 @@ test_package fake - MIEEThing<K, V> + MIEEThing<K, V> hashCode property hashCode diff --git a/testing/test_package_docs/fake/MIEEThing/noSuchMethod.html b/testing/test_package_docs/fake/MIEEThing/noSuchMethod.html index d8dd5f31e9..94e0dbcd8e 100644 --- a/testing/test_package_docs/fake/MIEEThing/noSuchMethod.html +++ b/testing/test_package_docs/fake/MIEEThing/noSuchMethod.html @@ -25,7 +25,7 @@ test_package fake - MIEEThing<K, V> + MIEEThing<K, V> noSuchMethod method noSuchMethod diff --git a/testing/test_package_docs/fake/MIEEThing/operator_equals.html b/testing/test_package_docs/fake/MIEEThing/operator_equals.html index 36fe354618..107d6b27ac 100644 --- a/testing/test_package_docs/fake/MIEEThing/operator_equals.html +++ b/testing/test_package_docs/fake/MIEEThing/operator_equals.html @@ -25,7 +25,7 @@ test_package fake - MIEEThing<K, V> + MIEEThing<K, V> operator == method operator == diff --git a/testing/test_package_docs/fake/MIEEThing/operator_put.html b/testing/test_package_docs/fake/MIEEThing/operator_put.html index ecf6530886..5be4b57acd 100644 --- a/testing/test_package_docs/fake/MIEEThing/operator_put.html +++ b/testing/test_package_docs/fake/MIEEThing/operator_put.html @@ -25,7 +25,7 @@ test_package fake - MIEEThing<K, V> + MIEEThing<K, V> operator []= abstract method operator []= diff --git a/testing/test_package_docs/fake/MIEEThing/runtimeType.html b/testing/test_package_docs/fake/MIEEThing/runtimeType.html index 5b630bb90e..464e9af4f2 100644 --- a/testing/test_package_docs/fake/MIEEThing/runtimeType.html +++ b/testing/test_package_docs/fake/MIEEThing/runtimeType.html @@ -25,7 +25,7 @@ test_package fake - MIEEThing<K, V> + MIEEThing<K, V> runtimeType property runtimeType diff --git a/testing/test_package_docs/fake/MIEEThing/toString.html b/testing/test_package_docs/fake/MIEEThing/toString.html index dda14fcfa3..f5dc83d8dd 100644 --- a/testing/test_package_docs/fake/MIEEThing/toString.html +++ b/testing/test_package_docs/fake/MIEEThing/toString.html @@ -25,7 +25,7 @@ test_package fake - MIEEThing<K, V> + MIEEThing<K, V> toString method toString diff --git a/testing/test_package_docs/fake/MixMeIn-class.html b/testing/test_package_docs/fake/MixMeIn-class.html index 50a20906ea..725258906b 100644 --- a/testing/test_package_docs/fake/MixMeIn-class.html +++ b/testing/test_package_docs/fake/MixMeIn-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html b/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html index 2753e6a799..e0345ec6a8 100644 --- a/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html +++ b/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/NAME_WITH_TWO_UNDERSCORES-constant.html b/testing/test_package_docs/fake/NAME_WITH_TWO_UNDERSCORES-constant.html index 8eaf5eed5e..5954864dab 100644 --- a/testing/test_package_docs/fake/NAME_WITH_TWO_UNDERSCORES-constant.html +++ b/testing/test_package_docs/fake/NAME_WITH_TWO_UNDERSCORES-constant.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/NewGenericTypedef.html b/testing/test_package_docs/fake/NewGenericTypedef.html index 7d9058dfe0..7d0a177474 100644 --- a/testing/test_package_docs/fake/NewGenericTypedef.html +++ b/testing/test_package_docs/fake/NewGenericTypedef.html @@ -25,7 +25,7 @@ test_package fake - NewGenericTypedef<T> typedef + NewGenericTypedef<T> typedef NewGenericTypedef @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -152,12 +154,12 @@ fake library - NewGenericTypedef<T> typedef + NewGenericTypedef<T> typedef - List<S> + List<S> NewGenericTypedef -<S>(T, int, bool) +<S>(T, int, bool) diff --git a/testing/test_package_docs/fake/NotAMixin-class.html b/testing/test_package_docs/fake/NotAMixin-class.html index 429a6564f3..77e654b6bc 100644 --- a/testing/test_package_docs/fake/NotAMixin-class.html +++ b/testing/test_package_docs/fake/NotAMixin-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/Oops-class.html b/testing/test_package_docs/fake/Oops-class.html index da30193168..84159607bc 100644 --- a/testing/test_package_docs/fake/Oops-class.html +++ b/testing/test_package_docs/fake/Oops-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/OperatorReferenceClass-class.html b/testing/test_package_docs/fake/OperatorReferenceClass-class.html index d581ba965b..da3faadf75 100644 --- a/testing/test_package_docs/fake/OperatorReferenceClass-class.html +++ b/testing/test_package_docs/fake/OperatorReferenceClass-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/OtherGenericsThing-class.html b/testing/test_package_docs/fake/OtherGenericsThing-class.html index 364250bbd0..185af64b30 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing-class.html +++ b/testing/test_package_docs/fake/OtherGenericsThing-class.html @@ -25,7 +25,7 @@ test_package fake - OtherGenericsThing<A> class + OtherGenericsThing<A> class OtherGenericsThing @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -152,7 +154,7 @@ fake library - OtherGenericsThing<A> class + OtherGenericsThing<A> class @@ -197,7 +199,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 aa2d5c4b74..186d9d37b0 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing/OtherGenericsThing.html +++ b/testing/test_package_docs/fake/OtherGenericsThing/OtherGenericsThing.html @@ -25,7 +25,7 @@ test_package fake - OtherGenericsThing<A> + OtherGenericsThing<A> OtherGenericsThing constructor OtherGenericsThing @@ -62,11 +62,11 @@ OtherGenericsThing class - OtherGenericsThing<A> constructor + OtherGenericsThing<A> constructor - OtherGenericsThing<A>() + OtherGenericsThing<A>() diff --git a/testing/test_package_docs/fake/OtherGenericsThing/convert.html b/testing/test_package_docs/fake/OtherGenericsThing/convert.html index 15159a9f5f..6cc7412278 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing/convert.html +++ b/testing/test_package_docs/fake/OtherGenericsThing/convert.html @@ -25,7 +25,7 @@ test_package fake - OtherGenericsThing<A> + OtherGenericsThing<A> convert method convert @@ -65,7 +65,7 @@ OtherGenericsThing class convert method - 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 eb27496b98..fe8de73782 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing/hashCode.html +++ b/testing/test_package_docs/fake/OtherGenericsThing/hashCode.html @@ -25,7 +25,7 @@ test_package fake - OtherGenericsThing<A> + OtherGenericsThing<A> hashCode property hashCode diff --git a/testing/test_package_docs/fake/OtherGenericsThing/noSuchMethod.html b/testing/test_package_docs/fake/OtherGenericsThing/noSuchMethod.html index dba3478d15..89b153526d 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing/noSuchMethod.html +++ b/testing/test_package_docs/fake/OtherGenericsThing/noSuchMethod.html @@ -25,7 +25,7 @@ test_package fake - OtherGenericsThing<A> + OtherGenericsThing<A> noSuchMethod method noSuchMethod diff --git a/testing/test_package_docs/fake/OtherGenericsThing/operator_equals.html b/testing/test_package_docs/fake/OtherGenericsThing/operator_equals.html index 680d60fc5e..a7e13328b2 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 @@ test_package fake - OtherGenericsThing<A> + OtherGenericsThing<A> operator == method operator == diff --git a/testing/test_package_docs/fake/OtherGenericsThing/runtimeType.html b/testing/test_package_docs/fake/OtherGenericsThing/runtimeType.html index 9e7de59efd..0ee9520bcb 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing/runtimeType.html +++ b/testing/test_package_docs/fake/OtherGenericsThing/runtimeType.html @@ -25,7 +25,7 @@ test_package fake - OtherGenericsThing<A> + OtherGenericsThing<A> runtimeType property runtimeType diff --git a/testing/test_package_docs/fake/OtherGenericsThing/toString.html b/testing/test_package_docs/fake/OtherGenericsThing/toString.html index 90333f3709..ab600fcc66 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing/toString.html +++ b/testing/test_package_docs/fake/OtherGenericsThing/toString.html @@ -25,7 +25,7 @@ test_package fake - OtherGenericsThing<A> + OtherGenericsThing<A> toString method toString diff --git a/testing/test_package_docs/fake/PI-constant.html b/testing/test_package_docs/fake/PI-constant.html index 13baaa58e7..502d21694a 100644 --- a/testing/test_package_docs/fake/PI-constant.html +++ b/testing/test_package_docs/fake/PI-constant.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/ReferringClass-class.html b/testing/test_package_docs/fake/ReferringClass-class.html index 7a85bef636..8f4a0b77d1 100644 --- a/testing/test_package_docs/fake/ReferringClass-class.html +++ b/testing/test_package_docs/fake/ReferringClass-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/SpecialList-class.html b/testing/test_package_docs/fake/SpecialList-class.html index 91cd13282f..3e9fbf32dc 100644 --- a/testing/test_package_docs/fake/SpecialList-class.html +++ b/testing/test_package_docs/fake/SpecialList-class.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> class + SpecialList<E> class SpecialList @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -152,7 +154,7 @@ fake library - SpecialList<E> class + SpecialList<E> class Extends ListBase @@ -163,7 +165,7 @@ SpecialList<E> class Inheritance Object - ListBase<E> + ListBase<E> SpecialList @@ -236,7 +238,7 @@ Properties iterator - → Iterator<E> + → Iterator<E> @@ -252,7 +254,7 @@ Properties reversed - → Iterable<E> + → Iterable<E> @@ -290,7 +292,7 @@ Methods inherited - addAll(Iterable<E> iterable) + addAll(Iterable<E> iterable) → void @@ -309,7 +311,7 @@ Methods asMap() - → Map<int, E> + → Map<int, E> @@ -317,8 +319,8 @@ Methods inherited - cast<R>() - → List<R> + cast<R>() + → List<R> @@ -362,8 +364,8 @@ Methods inherited - expand<T>(Iterable<T> f(E element)) - → Iterable<T> + expand<T>(Iterable<T> f(E element)) + → Iterable<T> @@ -389,7 +391,7 @@ Methods inherited - fold<T>(T initialValue, T combine(T previousValue, E element)) + fold<T>(T initialValue, T combine(T previousValue, E element)) → T @@ -398,8 +400,8 @@ Methods inherited - followedBy(Iterable<E> other) - → Iterable<E> + followedBy(Iterable<E> other) + → Iterable<E> @@ -417,7 +419,7 @@ Methods getRange(int start, int end) - → Iterable<E> + → Iterable<E> @@ -452,7 +454,7 @@ Methods inherited - insertAll(int index, Iterable<E> iterable) + insertAll(int index, Iterable<E> iterable) → void @@ -497,8 +499,8 @@ Methods inherited - map<T>(T f(E element)) - → Iterable<T> + map<T>(T f(E element)) + → Iterable<T> @@ -569,7 +571,7 @@ Methods inherited - replaceRange(int start, int end, Iterable<E> newContents) + replaceRange(int start, int end, Iterable<E> newContents) → void @@ -587,8 +589,8 @@ Methods inherited - retype<R>() - → List<R> + retype<R>() + → List<R> @@ -596,7 +598,7 @@ Methods inherited - setAll(int index, Iterable<E> iterable) + setAll(int index, Iterable<E> iterable) → void @@ -605,7 +607,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 @@ -633,7 +635,7 @@ Methods skip(int count) - → Iterable<E> + → Iterable<E> @@ -642,7 +644,7 @@ Methods skipWhile(bool test(E element)) - → Iterable<E> + → Iterable<E> @@ -660,7 +662,7 @@ Methods sublist(int start, [ int end ]) - → List<E> + → List<E> @@ -669,7 +671,7 @@ Methods take(int count) - → Iterable<E> + → Iterable<E> @@ -678,7 +680,7 @@ Methods takeWhile(bool test(E element)) - → Iterable<E> + → Iterable<E> @@ -687,7 +689,7 @@ Methods toList({bool growable: true }) - → List<E> + → List<E> @@ -696,7 +698,7 @@ Methods toSet() - → Set<E> + → Set<E> @@ -714,7 +716,7 @@ Methods where(bool test(E element)) - → Iterable<E> + → Iterable<E> @@ -722,8 +724,8 @@ Methods inherited - whereType<T>() - → Iterable<T> + whereType<T>() + → Iterable<T> @@ -755,8 +757,8 @@ Operators - operator +(List<E> other) - → List<E> + operator +(List<E> other) + → List<E> diff --git a/testing/test_package_docs/fake/SpecialList/SpecialList.html b/testing/test_package_docs/fake/SpecialList/SpecialList.html index 96c61249b5..ae96de2297 100644 --- a/testing/test_package_docs/fake/SpecialList/SpecialList.html +++ b/testing/test_package_docs/fake/SpecialList/SpecialList.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> SpecialList constructor SpecialList @@ -120,11 +120,11 @@ SpecialList class - SpecialList<E> constructor + SpecialList<E> constructor - SpecialList<E>() + SpecialList<E>() diff --git a/testing/test_package_docs/fake/SpecialList/add.html b/testing/test_package_docs/fake/SpecialList/add.html index d01384f7bf..936f6a697f 100644 --- a/testing/test_package_docs/fake/SpecialList/add.html +++ b/testing/test_package_docs/fake/SpecialList/add.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> add method add diff --git a/testing/test_package_docs/fake/SpecialList/addAll.html b/testing/test_package_docs/fake/SpecialList/addAll.html index 8191f1d008..5072bee857 100644 --- a/testing/test_package_docs/fake/SpecialList/addAll.html +++ b/testing/test_package_docs/fake/SpecialList/addAll.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> addAll method addAll @@ -125,7 +125,7 @@ addAll method void addAll -(Iterable<E> iterable) +(Iterable<E> iterable) diff --git a/testing/test_package_docs/fake/SpecialList/any.html b/testing/test_package_docs/fake/SpecialList/any.html index 797d95aec2..9bc211c908 100644 --- a/testing/test_package_docs/fake/SpecialList/any.html +++ b/testing/test_package_docs/fake/SpecialList/any.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> any method any diff --git a/testing/test_package_docs/fake/SpecialList/asMap.html b/testing/test_package_docs/fake/SpecialList/asMap.html index 571fb5f4d7..1642235cd4 100644 --- a/testing/test_package_docs/fake/SpecialList/asMap.html +++ b/testing/test_package_docs/fake/SpecialList/asMap.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> asMap method asMap @@ -123,7 +123,7 @@ SpecialList class asMap method - Map<int, E> + Map<int, E> asMap () diff --git a/testing/test_package_docs/fake/SpecialList/cast.html b/testing/test_package_docs/fake/SpecialList/cast.html index 80a445fb5e..88297d1922 100644 --- a/testing/test_package_docs/fake/SpecialList/cast.html +++ b/testing/test_package_docs/fake/SpecialList/cast.html @@ -25,8 +25,8 @@ test_package fake - SpecialList<E> - cast<R> method + SpecialList<E> + cast<R> method cast @@ -120,12 +120,12 @@ SpecialList class - cast<R> method + cast<R> method - List<R> + List<R> cast -<R>() +<R>() diff --git a/testing/test_package_docs/fake/SpecialList/clear.html b/testing/test_package_docs/fake/SpecialList/clear.html index c3fea34fa5..5c32375bd2 100644 --- a/testing/test_package_docs/fake/SpecialList/clear.html +++ b/testing/test_package_docs/fake/SpecialList/clear.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> clear method clear diff --git a/testing/test_package_docs/fake/SpecialList/contains.html b/testing/test_package_docs/fake/SpecialList/contains.html index bf0028b1bc..55fa4099f2 100644 --- a/testing/test_package_docs/fake/SpecialList/contains.html +++ b/testing/test_package_docs/fake/SpecialList/contains.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> contains method contains diff --git a/testing/test_package_docs/fake/SpecialList/elementAt.html b/testing/test_package_docs/fake/SpecialList/elementAt.html index aa2d76b47d..9d623173a5 100644 --- a/testing/test_package_docs/fake/SpecialList/elementAt.html +++ b/testing/test_package_docs/fake/SpecialList/elementAt.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> elementAt method elementAt diff --git a/testing/test_package_docs/fake/SpecialList/every.html b/testing/test_package_docs/fake/SpecialList/every.html index a1ec27e150..96349fd272 100644 --- a/testing/test_package_docs/fake/SpecialList/every.html +++ b/testing/test_package_docs/fake/SpecialList/every.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> every method every diff --git a/testing/test_package_docs/fake/SpecialList/expand.html b/testing/test_package_docs/fake/SpecialList/expand.html index 6f2cc236ee..6db49914f3 100644 --- a/testing/test_package_docs/fake/SpecialList/expand.html +++ b/testing/test_package_docs/fake/SpecialList/expand.html @@ -25,8 +25,8 @@ test_package fake - SpecialList<E> - expand<T> method + SpecialList<E> + expand<T> method expand @@ -120,12 +120,12 @@ SpecialList class - expand<T> method + expand<T> method - Iterable<T> + Iterable<T> expand -<T>(Iterable<T> f(E element)) +<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 17a06ec437..1fca375907 100644 --- a/testing/test_package_docs/fake/SpecialList/fillRange.html +++ b/testing/test_package_docs/fake/SpecialList/fillRange.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> fillRange method fillRange diff --git a/testing/test_package_docs/fake/SpecialList/first.html b/testing/test_package_docs/fake/SpecialList/first.html index afbeccd9f6..98818f06e6 100644 --- a/testing/test_package_docs/fake/SpecialList/first.html +++ b/testing/test_package_docs/fake/SpecialList/first.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> first property first diff --git a/testing/test_package_docs/fake/SpecialList/firstWhere.html b/testing/test_package_docs/fake/SpecialList/firstWhere.html index 79a1ed55e0..a080aa6b5e 100644 --- a/testing/test_package_docs/fake/SpecialList/firstWhere.html +++ b/testing/test_package_docs/fake/SpecialList/firstWhere.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> firstWhere method firstWhere diff --git a/testing/test_package_docs/fake/SpecialList/fold.html b/testing/test_package_docs/fake/SpecialList/fold.html index 3d7aa2bd54..56eecce239 100644 --- a/testing/test_package_docs/fake/SpecialList/fold.html +++ b/testing/test_package_docs/fake/SpecialList/fold.html @@ -25,8 +25,8 @@ test_package fake - SpecialList<E> - fold<T> method + SpecialList<E> + fold<T> method fold @@ -120,12 +120,12 @@ SpecialList class - fold<T> method + fold<T> method T fold -<T>(T initialValue, T combine(T previousValue, E element)) +<T>(T initialValue, T combine(T previousValue, E element)) diff --git a/testing/test_package_docs/fake/SpecialList/followedBy.html b/testing/test_package_docs/fake/SpecialList/followedBy.html index 89e0b95c7f..d1235c3aeb 100644 --- a/testing/test_package_docs/fake/SpecialList/followedBy.html +++ b/testing/test_package_docs/fake/SpecialList/followedBy.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> followedBy method followedBy @@ -123,9 +123,9 @@ SpecialList class followedBy method - Iterable<E> + Iterable<E> followedBy -(Iterable<E> other) +(Iterable<E> other) diff --git a/testing/test_package_docs/fake/SpecialList/forEach.html b/testing/test_package_docs/fake/SpecialList/forEach.html index c6e4de1a11..c5fa3859eb 100644 --- a/testing/test_package_docs/fake/SpecialList/forEach.html +++ b/testing/test_package_docs/fake/SpecialList/forEach.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> forEach method forEach diff --git a/testing/test_package_docs/fake/SpecialList/getRange.html b/testing/test_package_docs/fake/SpecialList/getRange.html index c5c8a26489..cd89b24108 100644 --- a/testing/test_package_docs/fake/SpecialList/getRange.html +++ b/testing/test_package_docs/fake/SpecialList/getRange.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> getRange method getRange @@ -123,7 +123,7 @@ SpecialList class getRange method - 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 dacbdb1bdb..47128aeca5 100644 --- a/testing/test_package_docs/fake/SpecialList/hashCode.html +++ b/testing/test_package_docs/fake/SpecialList/hashCode.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> hashCode property hashCode diff --git a/testing/test_package_docs/fake/SpecialList/indexOf.html b/testing/test_package_docs/fake/SpecialList/indexOf.html index 6a709d1031..24e36b416c 100644 --- a/testing/test_package_docs/fake/SpecialList/indexOf.html +++ b/testing/test_package_docs/fake/SpecialList/indexOf.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> indexOf method indexOf diff --git a/testing/test_package_docs/fake/SpecialList/indexWhere.html b/testing/test_package_docs/fake/SpecialList/indexWhere.html index 64d81756ef..7f56a18332 100644 --- a/testing/test_package_docs/fake/SpecialList/indexWhere.html +++ b/testing/test_package_docs/fake/SpecialList/indexWhere.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> indexWhere method indexWhere diff --git a/testing/test_package_docs/fake/SpecialList/insert.html b/testing/test_package_docs/fake/SpecialList/insert.html index d8692e177c..2dd0b69abf 100644 --- a/testing/test_package_docs/fake/SpecialList/insert.html +++ b/testing/test_package_docs/fake/SpecialList/insert.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> insert method insert diff --git a/testing/test_package_docs/fake/SpecialList/insertAll.html b/testing/test_package_docs/fake/SpecialList/insertAll.html index 9c5e705cc3..e4508ea2f0 100644 --- a/testing/test_package_docs/fake/SpecialList/insertAll.html +++ b/testing/test_package_docs/fake/SpecialList/insertAll.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> insertAll method insertAll @@ -125,7 +125,7 @@ insertAll method void insertAll -(int index, Iterable<E> iterable) +(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 cf1166e91c..70819848ab 100644 --- a/testing/test_package_docs/fake/SpecialList/isEmpty.html +++ b/testing/test_package_docs/fake/SpecialList/isEmpty.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> isEmpty property isEmpty diff --git a/testing/test_package_docs/fake/SpecialList/isNotEmpty.html b/testing/test_package_docs/fake/SpecialList/isNotEmpty.html index 7da2139e1b..a472bf4e1c 100644 --- a/testing/test_package_docs/fake/SpecialList/isNotEmpty.html +++ b/testing/test_package_docs/fake/SpecialList/isNotEmpty.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> isNotEmpty property isNotEmpty diff --git a/testing/test_package_docs/fake/SpecialList/iterator.html b/testing/test_package_docs/fake/SpecialList/iterator.html index 880b3206dc..70d3f88ca4 100644 --- a/testing/test_package_docs/fake/SpecialList/iterator.html +++ b/testing/test_package_docs/fake/SpecialList/iterator.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> iterator property iterator @@ -126,7 +126,7 @@ iterator property - 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 b18a8b9ddc..5d98c4f87b 100644 --- a/testing/test_package_docs/fake/SpecialList/join.html +++ b/testing/test_package_docs/fake/SpecialList/join.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> join method join diff --git a/testing/test_package_docs/fake/SpecialList/last.html b/testing/test_package_docs/fake/SpecialList/last.html index a1fa059e1a..34e08091fc 100644 --- a/testing/test_package_docs/fake/SpecialList/last.html +++ b/testing/test_package_docs/fake/SpecialList/last.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> last property last diff --git a/testing/test_package_docs/fake/SpecialList/lastIndexOf.html b/testing/test_package_docs/fake/SpecialList/lastIndexOf.html index 0c76189cc0..20f3b511e8 100644 --- a/testing/test_package_docs/fake/SpecialList/lastIndexOf.html +++ b/testing/test_package_docs/fake/SpecialList/lastIndexOf.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> lastIndexOf method lastIndexOf diff --git a/testing/test_package_docs/fake/SpecialList/lastIndexWhere.html b/testing/test_package_docs/fake/SpecialList/lastIndexWhere.html index 3039c4772a..4fd08b5458 100644 --- a/testing/test_package_docs/fake/SpecialList/lastIndexWhere.html +++ b/testing/test_package_docs/fake/SpecialList/lastIndexWhere.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> lastIndexWhere method lastIndexWhere diff --git a/testing/test_package_docs/fake/SpecialList/lastWhere.html b/testing/test_package_docs/fake/SpecialList/lastWhere.html index c1e89df2b2..ed33ff4618 100644 --- a/testing/test_package_docs/fake/SpecialList/lastWhere.html +++ b/testing/test_package_docs/fake/SpecialList/lastWhere.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> lastWhere method lastWhere diff --git a/testing/test_package_docs/fake/SpecialList/length.html b/testing/test_package_docs/fake/SpecialList/length.html index 873a9545c3..71a1c4810e 100644 --- a/testing/test_package_docs/fake/SpecialList/length.html +++ b/testing/test_package_docs/fake/SpecialList/length.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> length property length diff --git a/testing/test_package_docs/fake/SpecialList/map.html b/testing/test_package_docs/fake/SpecialList/map.html index b4589ec7a0..82aa805865 100644 --- a/testing/test_package_docs/fake/SpecialList/map.html +++ b/testing/test_package_docs/fake/SpecialList/map.html @@ -25,8 +25,8 @@ test_package fake - SpecialList<E> - map<T> method + SpecialList<E> + map<T> method map @@ -120,12 +120,12 @@ SpecialList class - map<T> method + map<T> method - Iterable<T> + Iterable<T> map -<T>(T f(E element)) +<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 2beadb9c18..dbcefba949 100644 --- a/testing/test_package_docs/fake/SpecialList/noSuchMethod.html +++ b/testing/test_package_docs/fake/SpecialList/noSuchMethod.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> noSuchMethod method noSuchMethod diff --git a/testing/test_package_docs/fake/SpecialList/operator_equals.html b/testing/test_package_docs/fake/SpecialList/operator_equals.html index c4b8f75dd8..a106db3788 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 @@ test_package fake - SpecialList<E> + SpecialList<E> operator == method operator == diff --git a/testing/test_package_docs/fake/SpecialList/operator_get.html b/testing/test_package_docs/fake/SpecialList/operator_get.html index 5213e62df0..e61842f3e1 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 @@ test_package fake - SpecialList<E> + SpecialList<E> operator [] method operator [] diff --git a/testing/test_package_docs/fake/SpecialList/operator_plus.html b/testing/test_package_docs/fake/SpecialList/operator_plus.html index 400101674c..f07d43adb1 100644 --- a/testing/test_package_docs/fake/SpecialList/operator_plus.html +++ b/testing/test_package_docs/fake/SpecialList/operator_plus.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> operator + method operator + @@ -123,9 +123,9 @@ SpecialList class operator + method - List<E> + List<E> operator + -(List<E> other) +(List<E> other) diff --git a/testing/test_package_docs/fake/SpecialList/operator_put.html b/testing/test_package_docs/fake/SpecialList/operator_put.html index 8930c7b9f0..c00d3c0c65 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 @@ test_package fake - SpecialList<E> + SpecialList<E> operator []= method operator []= diff --git a/testing/test_package_docs/fake/SpecialList/reduce.html b/testing/test_package_docs/fake/SpecialList/reduce.html index c17629d8d9..36fbe0364e 100644 --- a/testing/test_package_docs/fake/SpecialList/reduce.html +++ b/testing/test_package_docs/fake/SpecialList/reduce.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> reduce method reduce diff --git a/testing/test_package_docs/fake/SpecialList/remove.html b/testing/test_package_docs/fake/SpecialList/remove.html index a594262bf8..da3472dd91 100644 --- a/testing/test_package_docs/fake/SpecialList/remove.html +++ b/testing/test_package_docs/fake/SpecialList/remove.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> remove method remove diff --git a/testing/test_package_docs/fake/SpecialList/removeAt.html b/testing/test_package_docs/fake/SpecialList/removeAt.html index 65e6c03bcc..9a9a18fd84 100644 --- a/testing/test_package_docs/fake/SpecialList/removeAt.html +++ b/testing/test_package_docs/fake/SpecialList/removeAt.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> removeAt method removeAt diff --git a/testing/test_package_docs/fake/SpecialList/removeLast.html b/testing/test_package_docs/fake/SpecialList/removeLast.html index 28405f21ff..8dca0ea3cc 100644 --- a/testing/test_package_docs/fake/SpecialList/removeLast.html +++ b/testing/test_package_docs/fake/SpecialList/removeLast.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> removeLast method removeLast diff --git a/testing/test_package_docs/fake/SpecialList/removeRange.html b/testing/test_package_docs/fake/SpecialList/removeRange.html index 7da04239ec..e65f65c924 100644 --- a/testing/test_package_docs/fake/SpecialList/removeRange.html +++ b/testing/test_package_docs/fake/SpecialList/removeRange.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> removeRange method removeRange diff --git a/testing/test_package_docs/fake/SpecialList/removeWhere.html b/testing/test_package_docs/fake/SpecialList/removeWhere.html index 376c4140e6..c39f9712aa 100644 --- a/testing/test_package_docs/fake/SpecialList/removeWhere.html +++ b/testing/test_package_docs/fake/SpecialList/removeWhere.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> removeWhere method removeWhere diff --git a/testing/test_package_docs/fake/SpecialList/replaceRange.html b/testing/test_package_docs/fake/SpecialList/replaceRange.html index 6a247bc1b5..1fdcdcb15d 100644 --- a/testing/test_package_docs/fake/SpecialList/replaceRange.html +++ b/testing/test_package_docs/fake/SpecialList/replaceRange.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> replaceRange method replaceRange @@ -125,7 +125,7 @@ replaceRange method void replaceRange -(int start, int end, Iterable<E> newContents) +(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 7b5dce0339..0f48407bc1 100644 --- a/testing/test_package_docs/fake/SpecialList/retainWhere.html +++ b/testing/test_package_docs/fake/SpecialList/retainWhere.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> retainWhere method retainWhere diff --git a/testing/test_package_docs/fake/SpecialList/retype.html b/testing/test_package_docs/fake/SpecialList/retype.html index 2474f8cbac..7c9618bae8 100644 --- a/testing/test_package_docs/fake/SpecialList/retype.html +++ b/testing/test_package_docs/fake/SpecialList/retype.html @@ -25,8 +25,8 @@ test_package fake - SpecialList<E> - retype<R> method + SpecialList<E> + retype<R> method retype @@ -120,12 +120,12 @@ SpecialList class - retype<R> method + retype<R> method - List<R> + List<R> retype -<R>() +<R>() diff --git a/testing/test_package_docs/fake/SpecialList/reversed.html b/testing/test_package_docs/fake/SpecialList/reversed.html index 5c7f32428a..d94765148f 100644 --- a/testing/test_package_docs/fake/SpecialList/reversed.html +++ b/testing/test_package_docs/fake/SpecialList/reversed.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> reversed property reversed @@ -126,7 +126,7 @@ reversed property - 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 0898ee4ee3..9435cd82e5 100644 --- a/testing/test_package_docs/fake/SpecialList/runtimeType.html +++ b/testing/test_package_docs/fake/SpecialList/runtimeType.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> runtimeType property runtimeType diff --git a/testing/test_package_docs/fake/SpecialList/setAll.html b/testing/test_package_docs/fake/SpecialList/setAll.html index 26157319a0..0e731d3e67 100644 --- a/testing/test_package_docs/fake/SpecialList/setAll.html +++ b/testing/test_package_docs/fake/SpecialList/setAll.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> setAll method setAll @@ -125,7 +125,7 @@ setAll method void setAll -(int index, Iterable<E> iterable) +(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 98580eebd1..bc7af74fae 100644 --- a/testing/test_package_docs/fake/SpecialList/setRange.html +++ b/testing/test_package_docs/fake/SpecialList/setRange.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> setRange method setRange @@ -125,7 +125,7 @@ setRange method void setRange -(int start, int end, Iterable<E> iterable, [ int skipCount = 0 ]) +(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 a7ebd5227f..fde47c6f55 100644 --- a/testing/test_package_docs/fake/SpecialList/shuffle.html +++ b/testing/test_package_docs/fake/SpecialList/shuffle.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> shuffle method shuffle diff --git a/testing/test_package_docs/fake/SpecialList/single.html b/testing/test_package_docs/fake/SpecialList/single.html index 825017a9d8..f0061a23a9 100644 --- a/testing/test_package_docs/fake/SpecialList/single.html +++ b/testing/test_package_docs/fake/SpecialList/single.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> single property single diff --git a/testing/test_package_docs/fake/SpecialList/singleWhere.html b/testing/test_package_docs/fake/SpecialList/singleWhere.html index e80e4dda75..3f02c593d4 100644 --- a/testing/test_package_docs/fake/SpecialList/singleWhere.html +++ b/testing/test_package_docs/fake/SpecialList/singleWhere.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> singleWhere method singleWhere diff --git a/testing/test_package_docs/fake/SpecialList/skip.html b/testing/test_package_docs/fake/SpecialList/skip.html index f18978a73e..3d98c76819 100644 --- a/testing/test_package_docs/fake/SpecialList/skip.html +++ b/testing/test_package_docs/fake/SpecialList/skip.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> skip method skip @@ -123,7 +123,7 @@ SpecialList class skip method - 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 f549f33f60..e3905c174f 100644 --- a/testing/test_package_docs/fake/SpecialList/skipWhile.html +++ b/testing/test_package_docs/fake/SpecialList/skipWhile.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> skipWhile method skipWhile @@ -123,7 +123,7 @@ SpecialList class skipWhile method - 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 b92d6cbe55..55ac73022e 100644 --- a/testing/test_package_docs/fake/SpecialList/sort.html +++ b/testing/test_package_docs/fake/SpecialList/sort.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> sort method sort diff --git a/testing/test_package_docs/fake/SpecialList/sublist.html b/testing/test_package_docs/fake/SpecialList/sublist.html index 8a1e140d13..c18bdd105b 100644 --- a/testing/test_package_docs/fake/SpecialList/sublist.html +++ b/testing/test_package_docs/fake/SpecialList/sublist.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> sublist method sublist @@ -123,7 +123,7 @@ SpecialList class sublist method - 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 20e633a388..d3279db005 100644 --- a/testing/test_package_docs/fake/SpecialList/take.html +++ b/testing/test_package_docs/fake/SpecialList/take.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> take method take @@ -123,7 +123,7 @@ SpecialList class take method - 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 48c55a2038..6d1a3d4694 100644 --- a/testing/test_package_docs/fake/SpecialList/takeWhile.html +++ b/testing/test_package_docs/fake/SpecialList/takeWhile.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> takeWhile method takeWhile @@ -123,7 +123,7 @@ SpecialList class takeWhile method - 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 850abd66c0..2155f8c13e 100644 --- a/testing/test_package_docs/fake/SpecialList/toList.html +++ b/testing/test_package_docs/fake/SpecialList/toList.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> toList method toList @@ -123,7 +123,7 @@ SpecialList class toList method - 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 efae0e897f..5b39814c2f 100644 --- a/testing/test_package_docs/fake/SpecialList/toSet.html +++ b/testing/test_package_docs/fake/SpecialList/toSet.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> toSet method toSet @@ -123,7 +123,7 @@ SpecialList class toSet method - 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 0e3b7aaeea..7077daa0a6 100644 --- a/testing/test_package_docs/fake/SpecialList/toString.html +++ b/testing/test_package_docs/fake/SpecialList/toString.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> toString method toString diff --git a/testing/test_package_docs/fake/SpecialList/where.html b/testing/test_package_docs/fake/SpecialList/where.html index d03eb7d365..1f6037deeb 100644 --- a/testing/test_package_docs/fake/SpecialList/where.html +++ b/testing/test_package_docs/fake/SpecialList/where.html @@ -25,7 +25,7 @@ test_package fake - SpecialList<E> + SpecialList<E> where method where @@ -123,7 +123,7 @@ SpecialList class where method - Iterable<E> + Iterable<E> where (bool test(E element)) diff --git a/testing/test_package_docs/fake/SpecialList/whereType.html b/testing/test_package_docs/fake/SpecialList/whereType.html index 46f866a2f1..988bc0e20d 100644 --- a/testing/test_package_docs/fake/SpecialList/whereType.html +++ b/testing/test_package_docs/fake/SpecialList/whereType.html @@ -25,8 +25,8 @@ test_package fake - SpecialList<E> - whereType<T> method + SpecialList<E> + whereType<T> method whereType @@ -120,12 +120,12 @@ SpecialList class - whereType<T> method + whereType<T> method - Iterable<T> + Iterable<T> whereType -<T>() +<T>() diff --git a/testing/test_package_docs/fake/SubForDocComments-class.html b/testing/test_package_docs/fake/SubForDocComments-class.html index 21c293d0e4..e04822508a 100644 --- a/testing/test_package_docs/fake/SubForDocComments-class.html +++ b/testing/test_package_docs/fake/SubForDocComments-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/SuperAwesomeClass-class.html b/testing/test_package_docs/fake/SuperAwesomeClass-class.html index 3aa3d95267..ee7d0793e9 100644 --- a/testing/test_package_docs/fake/SuperAwesomeClass-class.html +++ b/testing/test_package_docs/fake/SuperAwesomeClass-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -194,7 +196,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 709ebcc635..6922855466 100644 --- a/testing/test_package_docs/fake/SuperAwesomeClass/powers.html +++ b/testing/test_package_docs/fake/SuperAwesomeClass/powers.html @@ -67,7 +67,7 @@ SuperAwesomeClass class powers property - List<String> + List<String> powers read / write diff --git a/testing/test_package_docs/fake/TypedefUsingClass-class.html b/testing/test_package_docs/fake/TypedefUsingClass-class.html index 6d3d46bce5..84b40d5f43 100644 --- a/testing/test_package_docs/fake/TypedefUsingClass-class.html +++ b/testing/test_package_docs/fake/TypedefUsingClass-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -161,7 +163,7 @@ Constructors - TypedefUsingClass(ParameterizedTypedef<double> x) + TypedefUsingClass(ParameterizedTypedef<double> x) @@ -175,7 +177,7 @@ Properties x - ↔ ParameterizedTypedef<double> + ↔ ParameterizedTypedef<double> diff --git a/testing/test_package_docs/fake/TypedefUsingClass/TypedefUsingClass.html b/testing/test_package_docs/fake/TypedefUsingClass/TypedefUsingClass.html index 441d72b0f8..f8b9c85c4a 100644 --- a/testing/test_package_docs/fake/TypedefUsingClass/TypedefUsingClass.html +++ b/testing/test_package_docs/fake/TypedefUsingClass/TypedefUsingClass.html @@ -66,7 +66,7 @@ TypedefUsingClass constructor - TypedefUsingClass(ParameterizedTypedef<double> x) + TypedefUsingClass(ParameterizedTypedef<double> x) diff --git a/testing/test_package_docs/fake/TypedefUsingClass/x.html b/testing/test_package_docs/fake/TypedefUsingClass/x.html index fb383704df..949780930c 100644 --- a/testing/test_package_docs/fake/TypedefUsingClass/x.html +++ b/testing/test_package_docs/fake/TypedefUsingClass/x.html @@ -65,7 +65,7 @@ TypedefUsingClass class x property - ParameterizedTypedef<double> + ParameterizedTypedef<double> x read / write diff --git a/testing/test_package_docs/fake/UP-constant.html b/testing/test_package_docs/fake/UP-constant.html index e4370c3f47..e88e1c215d 100644 --- a/testing/test_package_docs/fake/UP-constant.html +++ b/testing/test_package_docs/fake/UP-constant.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/VoidCallback.html b/testing/test_package_docs/fake/VoidCallback.html index 8303565b0f..6f579b5236 100644 --- a/testing/test_package_docs/fake/VoidCallback.html +++ b/testing/test_package_docs/fake/VoidCallback.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/WithGetterAndSetter-class.html b/testing/test_package_docs/fake/WithGetterAndSetter-class.html index 02999da445..21bbbbcfba 100644 --- a/testing/test_package_docs/fake/WithGetterAndSetter-class.html +++ b/testing/test_package_docs/fake/WithGetterAndSetter-class.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/ZERO-constant.html b/testing/test_package_docs/fake/ZERO-constant.html index 9564cce7ec..001e82466e 100644 --- a/testing/test_package_docs/fake/ZERO-constant.html +++ b/testing/test_package_docs/fake/ZERO-constant.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/aCoolVariable.html b/testing/test_package_docs/fake/aCoolVariable.html index bacff2a876..6306188b8b 100644 --- a/testing/test_package_docs/fake/aCoolVariable.html +++ b/testing/test_package_docs/fake/aCoolVariable.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/aVoidParameter.html b/testing/test_package_docs/fake/aVoidParameter.html index 1129169672..8ba4b2ffa2 100644 --- a/testing/test_package_docs/fake/aVoidParameter.html +++ b/testing/test_package_docs/fake/aVoidParameter.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -157,7 +159,7 @@ aVoidParameter function void aVoidParameter -(Future<void> p1) +(Future<void> p1) This function requires a Future as a parameter diff --git a/testing/test_package_docs/fake/addCallback.html b/testing/test_package_docs/fake/addCallback.html index 81cd65cc47..5b98195c5c 100644 --- a/testing/test_package_docs/fake/addCallback.html +++ b/testing/test_package_docs/fake/addCallback.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/addCallback2.html b/testing/test_package_docs/fake/addCallback2.html index ea8b2c12ad..b6587c1b0e 100644 --- a/testing/test_package_docs/fake/addCallback2.html +++ b/testing/test_package_docs/fake/addCallback2.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/complicatedReturn.html b/testing/test_package_docs/fake/complicatedReturn.html new file mode 100644 index 0000000000..a2c5176491 --- /dev/null +++ b/testing/test_package_docs/fake/complicatedReturn.html @@ -0,0 +1,197 @@ + + + + + + + + complicatedReturn property - fake library - Dart API + + + + + + + + + + + + + + + + + + test_package + fake + complicatedReturn property + + complicatedReturn + + + + + + + + + fake library + + Classes + ABaseClass + AClassUsingASuperMixin + AClassWithFancyProperties + AMixinCallingSuper + Annotation + AnotherInterface + ATypeTakingClass + ATypeTakingClassMixedIn + BaseForDocComments + BaseThingy + BaseThingy2 + ClassWithUnusualProperties + ConstantClass + ConstructorTester + Cool + DocumentWithATable + ExtendsFutureVoid + ExtraSpecialList + Foo2 + HasGenerics + HasGenericWithExtends + ImplementingThingy + ImplementingThingy2 + ImplementsFutureVoid + ImplicitProperties + InheritingClassOne + InheritingClassTwo + Interface + LongFirstLine + MIEEBase + MIEEMixin + MIEEMixinWithOverride + MIEEThing + MixMeIn + NotAMixin + OperatorReferenceClass + OtherGenericsThing + ReferringClass + SpecialList + SubForDocComments + SuperAwesomeClass + TypedefUsingClass + WithGetterAndSetter + + Constants + CUSTOM_CLASS + CUSTOM_CLASS_PRIVATE + DOWN + greatAnnotation + greatestAnnotation + incorrectDocReference + myMap + NAME_SINGLEUNDERSCORE + NAME_WITH_TWO_UNDERSCORES + PI + required + testingCodeSyntaxInOneLiners + UP + ZERO + + Properties + aCoolVariable + complicatedReturn + dynamicGetter + getterSetterNodocGetter + getterSetterNodocSetter + importantComputations + justGetter + justSetter + mapWithDynamicKeys + meaningOfLife + setAndGet + simpleProperty + + Functions + addCallback + addCallback2 + aVoidParameter + functionWithFunctionParameters + myGenericFunction + onlyPositionalWithNoDefaultNoType + paintImage1 + paintImage2 + paramFromAnotherLib + paramOfFutureOrNull + returningFutureVoid + short + soIntense + thisIsAlsoAsync + thisIsAsync + thisIsFutureOr + thisIsFutureOrNull + thisIsFutureOrT + topLevelFunction + typeParamOfFutureOr + + Enums + Color + + Typedefs + Callback2 + FakeProcesses + GenericTypedef + LotsAndLotsOfParameters + myCoolTypedef + NewGenericTypedef + VoidCallback + + Exceptions + Doh + Oops + + + + + complicatedReturn top-level property + + + + + + ATypeTakingClass<String Function(int)> + complicatedReturn + + + + + A complicated type parameter to ATypeTakingClass. + + + + + + + + + + + + + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/dynamicGetter.html b/testing/test_package_docs/fake/dynamicGetter.html index d52bb66856..6b1305bc5b 100644 --- a/testing/test_package_docs/fake/dynamicGetter.html +++ b/testing/test_package_docs/fake/dynamicGetter.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/fake-library.html b/testing/test_package_docs/fake/fake-library.html index 7be70a412a..99f6fe698f 100644 --- a/testing/test_package_docs/fake/fake-library.html +++ b/testing/test_package_docs/fake/fake-library.html @@ -124,7 +124,7 @@ Classes Yet another interface that can be implemented. - ATypeTakingClass<T> + ATypeTakingClass<T> This class takes a type, and it might be void. @@ -166,7 +166,7 @@ Classes For make-better testing of constants. [...] - ConstructorTester<A, B> + ConstructorTester<A, B> @@ -190,7 +190,7 @@ Classes This class extends Future - ExtraSpecialList<E> + ExtraSpecialList<E> This inherits operators. @@ -202,13 +202,13 @@ Classes link to method from class Apple.m - HasGenerics<X, Y, Z> + HasGenerics<X, Y, Z> - HasGenericWithExtends<T extends Foo2> + HasGenericWithExtends<T extends Foo2> I have a generic and it extends Foo2 @@ -264,19 +264,19 @@ Classes across... wait for it... two physical lines. [...] - MIEEBase<K, V> + MIEEBase<K, V> - MIEEMixin<K, V> + MIEEMixin<K, V> - MIEEMixinWithOverride<K, V> + MIEEMixinWithOverride<K, V> Test an edge case for cases where inherited ExecutableElements can come @@ -284,7 +284,7 @@ Classes class still takes precedence (#1561). - MIEEThing<K, V> + MIEEThing<K, V> @@ -308,7 +308,7 @@ Classes Test operator references: OperatorReferenceClass.==. - OtherGenericsThing<A> + OtherGenericsThing<A> @@ -320,7 +320,7 @@ Classes - SpecialList<E> + SpecialList<E> Extends ListBase @@ -424,7 +424,7 @@ Constants myMap - → const Map<int, String> + → const Map<int, String> A map initialization making use of optional const. @@ -525,6 +525,14 @@ Properties A variable initalization making use of optional new. read / write + + + complicatedReturn + → ATypeTakingClass<String Function(int)> + + + A complicated type parameter to ATypeTakingClass. + read-only dynamicGetter @@ -549,6 +557,14 @@ Properties Getter docs should be shown. read-only + + + importantComputations + → Map<int, (List<num>) → dynamic> + + + Type inference mixing with anonymous functions. + final justGetter @@ -568,7 +584,7 @@ Properties mapWithDynamicKeys - ↔ Map<dynamic, String> + ↔ Map<dynamic, String> @@ -624,7 +640,7 @@ Functions - aVoidParameter(Future<void> p1) + aVoidParameter(Future<void> p1) → void @@ -642,7 +658,7 @@ Functions - myGenericFunction<S>(int a, bool b, S c) + myGenericFunction<S>(int a, bool b, S c) → void @@ -687,7 +703,7 @@ Functions - paramOfFutureOrNull(FutureOr<Null> future) + paramOfFutureOrNull(FutureOr<Null> future) → void @@ -697,7 +713,7 @@ Functions returningFutureVoid() - → Future<void> + → Future<void> @@ -752,7 +768,7 @@ Functions thisIsFutureOrNull() - → FutureOr<Null> + → FutureOr<Null> @@ -760,8 +776,8 @@ Functions - thisIsFutureOrT<T>() - → FutureOr<T> + thisIsFutureOrT<T>() + → FutureOr<T> @@ -778,7 +794,7 @@ Functions - typeParamOfFutureOr<T extends FutureOr<List>>() + typeParamOfFutureOr<T extends FutureOr<List>>() → void @@ -825,7 +841,7 @@ Typedefs - GenericTypedef<T>(T input) + GenericTypedef<T>(T input) → T @@ -852,8 +868,8 @@ Typedefs - NewGenericTypedef<T>(T, int, bool) - → List<S> + NewGenericTypedef<T>(T, int, bool) + → List<S> @@ -959,9 +975,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/functionWithFunctionParameters.html b/testing/test_package_docs/fake/functionWithFunctionParameters.html index fc5c8c5c00..b76c1c8ca1 100644 --- a/testing/test_package_docs/fake/functionWithFunctionParameters.html +++ b/testing/test_package_docs/fake/functionWithFunctionParameters.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/getterSetterNodocGetter.html b/testing/test_package_docs/fake/getterSetterNodocGetter.html index c4ff4152bb..7bc15d913c 100644 --- a/testing/test_package_docs/fake/getterSetterNodocGetter.html +++ b/testing/test_package_docs/fake/getterSetterNodocGetter.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/getterSetterNodocSetter.html b/testing/test_package_docs/fake/getterSetterNodocSetter.html index 7081f9cc4c..5e01ea76a2 100644 --- a/testing/test_package_docs/fake/getterSetterNodocSetter.html +++ b/testing/test_package_docs/fake/getterSetterNodocSetter.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/greatAnnotation-constant.html b/testing/test_package_docs/fake/greatAnnotation-constant.html index 35ac9f4fc1..82c3127fa8 100644 --- a/testing/test_package_docs/fake/greatAnnotation-constant.html +++ b/testing/test_package_docs/fake/greatAnnotation-constant.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/greatestAnnotation-constant.html b/testing/test_package_docs/fake/greatestAnnotation-constant.html index a04319ae5d..bf6deff277 100644 --- a/testing/test_package_docs/fake/greatestAnnotation-constant.html +++ b/testing/test_package_docs/fake/greatestAnnotation-constant.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/importantComputations.html b/testing/test_package_docs/fake/importantComputations.html new file mode 100644 index 0000000000..0a97dd55d3 --- /dev/null +++ b/testing/test_package_docs/fake/importantComputations.html @@ -0,0 +1,193 @@ + + + + + + + + importantComputations property - fake library - Dart API + + + + + + + + + + + + + + + + + + test_package + fake + importantComputations property + + importantComputations + + + + + + + + + fake library + + Classes + ABaseClass + AClassUsingASuperMixin + AClassWithFancyProperties + AMixinCallingSuper + Annotation + AnotherInterface + ATypeTakingClass + ATypeTakingClassMixedIn + BaseForDocComments + BaseThingy + BaseThingy2 + ClassWithUnusualProperties + ConstantClass + ConstructorTester + Cool + DocumentWithATable + ExtendsFutureVoid + ExtraSpecialList + Foo2 + HasGenerics + HasGenericWithExtends + ImplementingThingy + ImplementingThingy2 + ImplementsFutureVoid + ImplicitProperties + InheritingClassOne + InheritingClassTwo + Interface + LongFirstLine + MIEEBase + MIEEMixin + MIEEMixinWithOverride + MIEEThing + MixMeIn + NotAMixin + OperatorReferenceClass + OtherGenericsThing + ReferringClass + SpecialList + SubForDocComments + SuperAwesomeClass + TypedefUsingClass + WithGetterAndSetter + + Constants + CUSTOM_CLASS + CUSTOM_CLASS_PRIVATE + DOWN + greatAnnotation + greatestAnnotation + incorrectDocReference + myMap + NAME_SINGLEUNDERSCORE + NAME_WITH_TWO_UNDERSCORES + PI + required + testingCodeSyntaxInOneLiners + UP + ZERO + + Properties + aCoolVariable + complicatedReturn + dynamicGetter + getterSetterNodocGetter + getterSetterNodocSetter + importantComputations + justGetter + justSetter + mapWithDynamicKeys + meaningOfLife + setAndGet + simpleProperty + + Functions + addCallback + addCallback2 + aVoidParameter + functionWithFunctionParameters + myGenericFunction + onlyPositionalWithNoDefaultNoType + paintImage1 + paintImage2 + paramFromAnotherLib + paramOfFutureOrNull + returningFutureVoid + short + soIntense + thisIsAlsoAsync + thisIsAsync + thisIsFutureOr + thisIsFutureOrNull + thisIsFutureOrT + topLevelFunction + typeParamOfFutureOr + + Enums + Color + + Typedefs + Callback2 + FakeProcesses + GenericTypedef + LotsAndLotsOfParameters + myCoolTypedef + NewGenericTypedef + VoidCallback + + Exceptions + Doh + Oops + + + + + importantComputations top-level property + + + Map<int, (List<num>) → dynamic> + importantComputations + final + + + Type inference mixing with anonymous functions. + + + + + + + + + + + + + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/incorrectDocReference-constant.html b/testing/test_package_docs/fake/incorrectDocReference-constant.html index 1e780a75b0..57fc56f746 100644 --- a/testing/test_package_docs/fake/incorrectDocReference-constant.html +++ b/testing/test_package_docs/fake/incorrectDocReference-constant.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/justGetter.html b/testing/test_package_docs/fake/justGetter.html index ee2b551015..1e114cdd6e 100644 --- a/testing/test_package_docs/fake/justGetter.html +++ b/testing/test_package_docs/fake/justGetter.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/justSetter.html b/testing/test_package_docs/fake/justSetter.html index 28b129c692..bd464c109e 100644 --- a/testing/test_package_docs/fake/justSetter.html +++ b/testing/test_package_docs/fake/justSetter.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/mapWithDynamicKeys.html b/testing/test_package_docs/fake/mapWithDynamicKeys.html index c92e43ec57..74f1a6a5c5 100644 --- a/testing/test_package_docs/fake/mapWithDynamicKeys.html +++ b/testing/test_package_docs/fake/mapWithDynamicKeys.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -155,7 +157,7 @@ fake library mapWithDynamicKeys top-level property - Map<dynamic, String> + Map<dynamic, String> mapWithDynamicKeys read / write diff --git a/testing/test_package_docs/fake/meaningOfLife.html b/testing/test_package_docs/fake/meaningOfLife.html index b7dcca4ccc..f0c3c3e58b 100644 --- a/testing/test_package_docs/fake/meaningOfLife.html +++ b/testing/test_package_docs/fake/meaningOfLife.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/myCoolTypedef.html b/testing/test_package_docs/fake/myCoolTypedef.html index 0d0aadca15..37f1e91009 100644 --- a/testing/test_package_docs/fake/myCoolTypedef.html +++ b/testing/test_package_docs/fake/myCoolTypedef.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/myGenericFunction.html b/testing/test_package_docs/fake/myGenericFunction.html index 87c249c917..6e38c21ed9 100644 --- a/testing/test_package_docs/fake/myGenericFunction.html +++ b/testing/test_package_docs/fake/myGenericFunction.html @@ -25,7 +25,7 @@ test_package fake - myGenericFunction<S> function + myGenericFunction<S> function myGenericFunction @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -152,12 +154,12 @@ fake library - myGenericFunction<S> function + myGenericFunction<S> function void myGenericFunction -<S>(int a, bool b, S c) +<S>(int a, bool b, S c) A generic function with a type parameter. diff --git a/testing/test_package_docs/fake/myMap-constant.html b/testing/test_package_docs/fake/myMap-constant.html index d0453ae658..f48a4591a0 100644 --- a/testing/test_package_docs/fake/myMap-constant.html +++ b/testing/test_package_docs/fake/myMap-constant.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html b/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html index 3ce2bab0f0..250d34f88f 100644 --- a/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html +++ b/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/paintImage1.html b/testing/test_package_docs/fake/paintImage1.html index a00b47c6bf..d8a01c9abe 100644 --- a/testing/test_package_docs/fake/paintImage1.html +++ b/testing/test_package_docs/fake/paintImage1.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/paintImage2.html b/testing/test_package_docs/fake/paintImage2.html index dcd77054a2..e3010efa4f 100644 --- a/testing/test_package_docs/fake/paintImage2.html +++ b/testing/test_package_docs/fake/paintImage2.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/paramFromAnotherLib.html b/testing/test_package_docs/fake/paramFromAnotherLib.html index 13d6c4fce3..57b8824714 100644 --- a/testing/test_package_docs/fake/paramFromAnotherLib.html +++ b/testing/test_package_docs/fake/paramFromAnotherLib.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/paramOfFutureOrNull.html b/testing/test_package_docs/fake/paramOfFutureOrNull.html index 3a68ca5f29..e94e76755c 100644 --- a/testing/test_package_docs/fake/paramOfFutureOrNull.html +++ b/testing/test_package_docs/fake/paramOfFutureOrNull.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -157,7 +159,7 @@ paramOfFutureOrNull function void paramOfFutureOrNull -(FutureOr<Null> future) +(FutureOr<Null> future) Has a parameter explicitly typed FutureOr<Null>. diff --git a/testing/test_package_docs/fake/required-constant.html b/testing/test_package_docs/fake/required-constant.html index 39813d9373..8c9c1cc26b 100644 --- a/testing/test_package_docs/fake/required-constant.html +++ b/testing/test_package_docs/fake/required-constant.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/returningFutureVoid.html b/testing/test_package_docs/fake/returningFutureVoid.html index 426a39ebd7..ff6efd6d88 100644 --- a/testing/test_package_docs/fake/returningFutureVoid.html +++ b/testing/test_package_docs/fake/returningFutureVoid.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -155,7 +157,7 @@ fake library returningFutureVoid function - Future<void> + Future<void> returningFutureVoid () diff --git a/testing/test_package_docs/fake/setAndGet.html b/testing/test_package_docs/fake/setAndGet.html index 28b51b2087..bedaf73791 100644 --- a/testing/test_package_docs/fake/setAndGet.html +++ b/testing/test_package_docs/fake/setAndGet.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/short.html b/testing/test_package_docs/fake/short.html index c4b72471d1..d2f9b44470 100644 --- a/testing/test_package_docs/fake/short.html +++ b/testing/test_package_docs/fake/short.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/simpleProperty.html b/testing/test_package_docs/fake/simpleProperty.html index bbd6541281..2f6b1c904c 100644 --- a/testing/test_package_docs/fake/simpleProperty.html +++ b/testing/test_package_docs/fake/simpleProperty.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/soIntense.html b/testing/test_package_docs/fake/soIntense.html index f2f24ed6e4..7abe907b4f 100644 --- a/testing/test_package_docs/fake/soIntense.html +++ b/testing/test_package_docs/fake/soIntense.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html b/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html index 4d4cece011..02d5243084 100644 --- a/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html +++ b/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/thisIsAlsoAsync.html b/testing/test_package_docs/fake/thisIsAlsoAsync.html index 84fa861a04..4ed794d5ea 100644 --- a/testing/test_package_docs/fake/thisIsAlsoAsync.html +++ b/testing/test_package_docs/fake/thisIsAlsoAsync.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/thisIsAsync.html b/testing/test_package_docs/fake/thisIsAsync.html index 4080a53395..c297c1f884 100644 --- a/testing/test_package_docs/fake/thisIsAsync.html +++ b/testing/test_package_docs/fake/thisIsAsync.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/thisIsFutureOr.html b/testing/test_package_docs/fake/thisIsFutureOr.html index f731b26057..e53aa69965 100644 --- a/testing/test_package_docs/fake/thisIsFutureOr.html +++ b/testing/test_package_docs/fake/thisIsFutureOr.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/thisIsFutureOrNull.html b/testing/test_package_docs/fake/thisIsFutureOrNull.html index 7a5a48a6c8..505cfb603e 100644 --- a/testing/test_package_docs/fake/thisIsFutureOrNull.html +++ b/testing/test_package_docs/fake/thisIsFutureOrNull.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -155,7 +157,7 @@ fake library thisIsFutureOrNull function - FutureOr<Null> + FutureOr<Null> thisIsFutureOrNull () diff --git a/testing/test_package_docs/fake/thisIsFutureOrT.html b/testing/test_package_docs/fake/thisIsFutureOrT.html index 0a2cf17e79..f0f618f8f6 100644 --- a/testing/test_package_docs/fake/thisIsFutureOrT.html +++ b/testing/test_package_docs/fake/thisIsFutureOrT.html @@ -25,7 +25,7 @@ test_package fake - thisIsFutureOrT<T> function + thisIsFutureOrT<T> function thisIsFutureOrT @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -152,12 +154,12 @@ fake library - thisIsFutureOrT<T> function + thisIsFutureOrT<T> function - FutureOr<T> + FutureOr<T> thisIsFutureOrT -<T>() +<T>() Explicitly return a FutureOr<T>. diff --git a/testing/test_package_docs/fake/topLevelFunction.html b/testing/test_package_docs/fake/topLevelFunction.html index bd52e9d2de..d453033429 100644 --- a/testing/test_package_docs/fake/topLevelFunction.html +++ b/testing/test_package_docs/fake/topLevelFunction.html @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys diff --git a/testing/test_package_docs/fake/typeParamOfFutureOr.html b/testing/test_package_docs/fake/typeParamOfFutureOr.html index b40d99ae17..39858ebcaf 100644 --- a/testing/test_package_docs/fake/typeParamOfFutureOr.html +++ b/testing/test_package_docs/fake/typeParamOfFutureOr.html @@ -25,7 +25,7 @@ test_package fake - typeParamOfFutureOr<T extends FutureOr<List>> function + typeParamOfFutureOr<T extends FutureOr<List>> function typeParamOfFutureOr @@ -101,9 +101,11 @@ fake library Properties aCoolVariable + complicatedReturn dynamicGetter getterSetterNodocGetter getterSetterNodocSetter + importantComputations justGetter justSetter mapWithDynamicKeys @@ -152,12 +154,12 @@ fake library - typeParamOfFutureOr<T extends FutureOr<List>> function + typeParamOfFutureOr<T extends FutureOr<List>> function void typeParamOfFutureOr -<T extends FutureOr<List>>() +<T extends FutureOr<List>>() Has a type parameter bound to FutureOr<List>. diff --git a/testing/test_package_docs/index.json b/testing/test_package_docs/index.json index 6bf07d553e..8fce2a5e33 100644 --- a/testing/test_package_docs/index.json +++ b/testing/test_package_docs/index.json @@ -8181,6 +8181,17 @@ "type": "library" } }, + { + "name": "complicatedReturn", + "qualifiedName": "fake.complicatedReturn", + "href": "fake/complicatedReturn.html", + "type": "top-level property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "fake", + "type": "library" + } + }, { "name": "dynamicGetter", "qualifiedName": "fake.dynamicGetter", @@ -8247,6 +8258,17 @@ "type": "library" } }, + { + "name": "importantComputations", + "qualifiedName": "fake.importantComputations", + "href": "fake/importantComputations.html", + "type": "top-level property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "fake", + "type": "library" + } + }, { "name": "incorrectDocReference", "qualifiedName": "fake.incorrectDocReference", diff --git a/testing/test_package_docs/static-assets/styles.css b/testing/test_package_docs/static-assets/styles.css index 56648e9fec..ffedb90d4f 100644 --- a/testing/test_package_docs/static-assets/styles.css +++ b/testing/test_package_docs/static-assets/styles.css @@ -359,6 +359,15 @@ dl dt.callable .name { white-space: nowrap; } +.type-parameter { + white-space: nowrap; +} + +.multi-line-signature .type-parameter .parameter { + margin-left: 0px; + display: unset; +} + .signature { color: #727272; } 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 1910f7f506..376eabc9f4 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 @@ test_package test_package_imported.main - Whataclass<T> class + Whataclass<T> class Whataclass @@ -51,7 +51,7 @@ test_package_imported.main library - Whataclass<T> class + Whataclass<T> class Some docs for 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 d574bb0b13..4e5d3c1b5d 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 @@ test_package test_package_imported.main - Whataclass<T> + Whataclass<T> Whataclass constructor Whataclass @@ -61,11 +61,11 @@ Whataclass class - Whataclass<T> constructor + Whataclass<T> constructor - Whataclass<T>() + Whataclass<T>() 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 f015412839..9d5ac579ee 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 @@ test_package test_package_imported.main - Whataclass<T> + Whataclass<T> hashCode property 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 96f77fa44a..e26ddd0e2e 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 @@ test_package test_package_imported.main - Whataclass<T> + Whataclass<T> noSuchMethod method 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 9b863eb68a..336e9097fe 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 @@ test_package test_package_imported.main - Whataclass<T> + Whataclass<T> operator == method 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 5ebac74e09..1a66a5bf11 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 @@ test_package test_package_imported.main - Whataclass<T> + Whataclass<T> runtimeType property 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 c94e83964f..2172963d6e 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 @@ test_package test_package_imported.main - Whataclass<T> + Whataclass<T> toString method 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 f83b769685..de4d5e4b2f 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 @@ -66,7 +66,7 @@ Classes - Whataclass<T> + Whataclass<T> Some docs for whataclass
A constant List of the values in this enum, in order of their declaration.
const List<Animal>
Apple docs for whataclass
Support class to test inheritance + type expansion from implements clause.
Class for testing expansion of type from implements clause.
Returns a complex typedef that includes some anonymous typed functions.
This helps us make sure we get both the empty and the non-empty diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningVoid.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningVoid.html index d53d98a4fe..f5611c9f62 100644 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningVoid.html +++ b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningVoid.html @@ -26,7 +26,7 @@
Returns a function that returns a void with some generic types sprinkled in.
This class takes a type, and it might be void.
f
bar
baz
const List<Color>
This inherits operators.
I have a generic and it extends Foo2
Test an edge case for cases where inherited ExecutableElements can come @@ -165,8 +167,8 @@
Extends ListBase
ListBase
This function requires a Future as a parameter
A complicated type parameter to ATypeTakingClass.
Type inference mixing with anonymous functions.
A generic function with a type parameter.
Has a parameter explicitly typed FutureOr<Null>.
FutureOr<Null>
Explicitly return a FutureOr<T>.
FutureOr<T>
Has a type parameter bound to FutureOr<List>.
FutureOr<List>
Some docs for whataclass