diff --git a/lib/src/element_type.dart b/lib/src/element_type.dart index 67a3f9e646..50b244583d 100644 --- a/lib/src/element_type.dart +++ b/lib/src/element_type.dart @@ -7,180 +7,342 @@ library dartdoc.element_type; import 'package:analyzer/dart/element/element.dart'; import 'package:analyzer/dart/element/type.dart'; +import 'package:meta/meta.dart'; import 'model.dart'; -class ElementType extends Privacy { +/// Base class representing a type in Dartdoc. It wraps a [DartType], and +/// may link to a [ModelElement]. +abstract class ElementType extends Privacy { final DartType _type; - final ModelElement element; - String _linkedName; + final PackageGraph packageGraph; + final DefinedElementType returnedFrom; + + ElementType(this._type, this.packageGraph, this.returnedFrom); - ElementType(this._type, this.element) { - assert(element != null); + factory ElementType.from(DartType f, PackageGraph packageGraph, + [ElementType returnedFrom]) { + if (f.element == null || f.element.kind == ElementKind.DYNAMIC) { + return new UndefinedElementType(f, packageGraph, returnedFrom); + } else { + ModelElement element = + new ModelElement.fromElement(f.element, packageGraph); + 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) { + assert(element is! ModelFunctionAnonymous); + return new CallableGenericTypeAliasElementType( + f, packageGraph, element, returnedFrom); + } else { + if ((f.name ?? f.element.name) == '' || + (f.name ?? f.element.name) == null) { + assert(element is ModelFunctionAnonymous); + return new CallableAnonymousElementType( + f, packageGraph, element, returnedFrom); + } else { + assert(element is! ModelFunctionAnonymous); + return new CallableElementType( + f, packageGraph, element, returnedFrom); + } + } + } else if (isGenericTypeAlias) { + assert(f is TypeParameterType); + assert(element is! ModelFunctionAnonymous); + return new GenericTypeAliasElementType( + f, packageGraph, element, returnedFrom); + } + if (f is TypeParameterType) { + assert(element is! ModelFunctionAnonymous); + return new TypeParameterElementType( + f, packageGraph, element, returnedFrom); + } + assert(f is ParameterizedType); + assert(element is! ModelFunctionAnonymous); + return new ParameterizedElementType( + f, packageGraph, element, returnedFrom); + } } - DartType get type => _type; + bool get canHaveParameters => false; - Library get library => element.library; + // TODO(jcollins-g): change clients of ElementType to use subtypes more consistently + // and eliminate createLinkedReturnTypeName (instead, using returnType.linkedName); + String createLinkedReturnTypeName() => linkedName; - bool get isDynamic => _type.isDynamic; + bool get isTypedef => false; - bool get isFunctionType => (_type is FunctionType); + String get linkedName; - bool get isParameterizedType => (_type is ParameterizedType); + String get name => type.name ?? type.element.name; - bool get isParameterType => (_type is TypeParameterType); + String get nameWithGenerics; + + List get parameters => []; - /// This type is a public type if the underlying, canonical element is public. - /// This avoids discarding the resolved type information as canonicalization - /// would ordinarily do. @override - bool get isPublic { - Class canonicalClass = - element.packageGraph.findCanonicalModelElementFor(element.element) ?? - element; - return canonicalClass.isPublic; + String toString() => "$type"; + + DartType get type => _type; +} + +/// An [ElementType] that isn't pinned to an Element (or one that is, but whose +/// element is irrelevant). +class UndefinedElementType extends ElementType { + UndefinedElementType( + DartType f, PackageGraph packageGraph, ElementType returnedFrom) + : super(f, packageGraph, returnedFrom); + + @override + bool get isPublic => true; + + @override + + /// dynamic and void are not allowed to have parameterized types. + String get linkedName { + if (type.isDynamic && + returnedFrom != null && + returnedFrom.element.isAsynchronous) return 'Future'; + return name; } + @override + String get nameWithGenerics => name; +} + +class ParameterizedElementType extends DefinedElementType { + ParameterizedElementType(ParameterizedType type, PackageGraph packageGraph, + ModelElement element, ElementType returnedFrom) + : super(type, packageGraph, element, returnedFrom); + + String _linkedName; + @override String get linkedName { if (_linkedName == null) { StringBuffer buf = new StringBuffer(); - if (isParameterType) { - buf.write(name); - } else { - buf.write(element.linkedName); - } + buf.write(element.linkedName); - // not TypeParameterType or Void or Union type - if (isParameterizedType) { - if (!typeArguments.every((t) => t.linkedName == 'dynamic') && - typeArguments.isNotEmpty) { - buf.write(''); - buf.write('<'); - buf.writeAll(typeArguments.map((t) => t.linkedName), ', '); - buf.write('>'); - buf.write(''); - } - // Hide parameters if there's a an explicit typedef behind this - // element, but if there is no typedef, be explicit. - if (element is ModelFunctionAnonymous) { - buf.write(''); - buf.write('('); - buf.write(element.linkedParams()); - buf.write(')'); - buf.write(''); - } + if (!typeArguments.every((t) => t.name == 'dynamic') && + typeArguments.isNotEmpty) { + buf.write(''); + buf.write('<'); + buf.writeAll(typeArguments.map((t) => t.linkedName), ', '); + buf.write('>'); + buf.write(''); } + _linkedName = buf.toString(); } return _linkedName; } String _nameWithGenerics; + @override String get nameWithGenerics { if (_nameWithGenerics == null) { StringBuffer buf = new StringBuffer(); - if (isParameterType) { - buf.write(name); - } else { - buf.write(element.name); - } + buf.write(element.name); - // not TypeParameterType or Void or Union type - if (isParameterizedType) { - if (!typeArguments.every((t) => t.linkedName == 'dynamic') && - typeArguments.isNotEmpty) { - buf.write('<'); - buf.writeAll(typeArguments.map((t) => t.nameWithGenerics), ', '); - buf.write('>'); - } + if (!typeArguments.every((t) => t.name == 'dynamic') && + typeArguments.isNotEmpty) { + buf.write('<'); + buf.writeAll(typeArguments.map((t) => t.nameWithGenerics), ', '); + buf.write('>'); } _nameWithGenerics = buf.toString(); } return _nameWithGenerics; } +} - String get name => _type.name ?? _type.element.name; +class TypeParameterElementType extends DefinedElementType { + TypeParameterElementType(TypeParameterType type, PackageGraph packageGraph, + ModelElement element, ElementType returnedFrom) + : super(type, packageGraph, element, returnedFrom); - ModelElement get returnElement { - Element e; - if (_type is FunctionType) - e = _returnTypeCore.element; - else - e = _type.element; - if (e == null || e.library == null) { - return null; + @override + String get linkedName => name; + + String _nameWithGenerics; + @override + String get nameWithGenerics { + if (_nameWithGenerics == null) { + _nameWithGenerics = name; } - Library lib = new ModelElement.from(e.library, element.library); - return (new ModelElement.from(e, lib)); + return _nameWithGenerics; } +} - List get typeArguments { - var type = _type; - if (type is FunctionType) { - Iterable typeArguments; - if (element is! ModelFunctionAnonymous && type.typeFormals.isEmpty) { - // TODO(jcollins-g): replace with if (FunctionType.isInstantiated) once - // that's reliable and revealed through the interface. - typeArguments = type.typeArguments; - } else { - typeArguments = type.typeFormals.map((f) => f.type); - } - return typeArguments.map(_getElementTypeFrom).toList(); - } else { - return (_type as ParameterizedType) +/// An [ElementType] associated with an [Element]. +abstract class DefinedElementType extends ElementType { + @visibleForTesting + final ModelElement _element; + + DefinedElementType(DartType type, PackageGraph packageGraph, this._element, + ElementType returnedFrom) + : super(type, packageGraph, returnedFrom); + + ModelElement get element { + assert(_element != null); + return _element; + } + + bool get isParameterType => (type is TypeParameterType); + + /// This type is a public type if the underlying, canonical element is public. + /// This avoids discarding the resolved type information as canonicalization + /// would ordinarily do. + @override + bool get isPublic { + Class canonicalClass = + element.packageGraph.findCanonicalModelElementFor(element.element) ?? + element; + return canonicalClass.isPublic; + } + + @override + bool get isTypedef => element is Typedef || element is ModelFunctionTypedef; + + @override + List get parameters => + element.canHaveParameters ? element.parameters : []; + + ModelElement get returnElement => element; + ElementType _returnType; + ElementType get returnType { + if (_returnType == null) { + _returnType = new ElementType.from(type, packageGraph, this); + } + return _returnType; + } + + @override + String createLinkedReturnTypeName() => returnType.linkedName; + + Iterable _typeArguments; + Iterable get typeArguments { + if (_typeArguments == null) { + _typeArguments = (type as ParameterizedType) .typeArguments - .map((f) => _getElementTypeFrom(f)) + .map((f) => new ElementType.from(f, packageGraph)) .toList(); } + return _typeArguments; } +} - ElementType get _returnType { - var rt = _returnTypeCore; - Library lib = element.packageGraph.findLibraryFor(rt.element); - if (lib == null) { - lib = new ModelElement.from(rt.element.library, element.library); +/// Any callable ElementType will mix-in this class, whether anonymous or not. +abstract class CallableElementTypeMixin implements ParameterizedElementType { + @override + ModelElement get returnElement => returnType is DefinedElementType + ? (returnType as DefinedElementType).element + : null; + + @override + ElementType get returnType { + if (_returnType == null) { + _returnType = new ElementType.from(type.returnType, packageGraph, this); } - return new ElementType(rt, new ModelElement.from(rt.element, lib)); + return _returnType; } - DartType get _returnTypeCore => (_type as FunctionType).returnType; - - String get _returnTypeName => _returnTypeCore.name; + @override + FunctionType get type => _type; - String createLinkedReturnTypeName() { - if (_returnTypeCore.element == null || - _returnTypeCore.element.library == null) { - if (_returnTypeName != null) { - if (_returnTypeName == 'dynamic' && element.isAsynchronous) { - // TODO(keertip): for SDK docs it should be a link - return 'Future'; - } - return _returnTypeName; + @override + // TODO(jcollins-g): Rewrite this and improve object model so this doesn't + // require type checking everywhere. + Iterable get typeArguments { + if (_typeArguments == null) { + Iterable dartTypeArguments; + if (type.typeFormals.isEmpty && + element is! ModelFunctionAnonymous && + returnedFrom?.element is! ModelFunctionAnonymous) { + dartTypeArguments = type.typeArguments; + } else if (returnedFrom != null && + returnedFrom.type.element is GenericFunctionTypeElement) { + _typeArguments = returnedFrom.typeArguments; } else { - return ''; + dartTypeArguments = type.typeFormals.map((f) => f.type); + } + if (dartTypeArguments != null) { + _typeArguments = dartTypeArguments + .map((f) => new ElementType.from(f, packageGraph)) + .toList(); } - } else { - return _returnType.linkedName; } + return _typeArguments; } +} +/// A callable type that may or may not be backed by a declaration using the generic +/// function syntax. +class CallableElementType extends ParameterizedElementType + with CallableElementTypeMixin { + CallableElementType(FunctionType t, PackageGraph packageGraph, + ModelElement element, ElementType returnedFrom) + : super(t, packageGraph, element, returnedFrom); +} + +/// This is an anonymous function using the generic function syntax (declared +/// literally with "Function"). +class CallableAnonymousElementType extends CallableElementType { + CallableAnonymousElementType(FunctionType t, PackageGraph packageGraph, + ModelElement element, ElementType returnedFrom) + : super(t, packageGraph, element, returnedFrom); @override - String toString() => "$_type"; + String get name => 'Function'; - ElementType _getElementTypeFrom(DartType f) { - Library lib; - // can happen if element is dynamic - if (f.element.library != null) { - lib = new ModelElement.from(f.element.library, element.library); - } else { - // TODO(jcollins-g): Assigning libraries to dynamics doesn't make sense, - // really, but is needed for .package. - assert(f.element.kind == ElementKind.DYNAMIC); - lib = element.library; + @override + String get linkedName { + if (_linkedName == null) { + _linkedName = + '${super.linkedName}(${element.linkedParams()})'; + } + return _linkedName; + } +} + +/// Types backed by a [GenericTypeAliasElement] that may or may not be callable. +abstract class GenericTypeAliasElementTypeMixin {} + +/// A non-callable type backed by a [GenericTypeAliasElement]. +class GenericTypeAliasElementType extends TypeParameterElementType + with GenericTypeAliasElementTypeMixin { + GenericTypeAliasElementType(TypeParameterType t, PackageGraph packageGraph, + ModelElement element, ElementType returnedFrom) + : super(t, packageGraph, element, returnedFrom) {} +} + +/// A Callable generic type alias that may or may not have a name. +class CallableGenericTypeAliasElementType extends ParameterizedElementType + with CallableElementTypeMixin, GenericTypeAliasElementTypeMixin { + CallableGenericTypeAliasElementType(FunctionType t, PackageGraph packageGraph, + ModelElement element, ElementType returnedFrom) + : super(t, packageGraph, element, returnedFrom); + + ModelElement _returnElement; + @override + ModelElement get returnElement { + if (_returnElement == null) { + _returnElement = new ModelElement.fromElement( + type.element.enclosingElement, packageGraph); + } + return _returnElement; + } + + @override + ElementType get returnType { + if (_returnType == null) { + _returnType = new ElementType.from( + returnElement.modelType.type, packageGraph, this); } - return new ElementType(f, new ModelElement.from(f.element, lib)); + return _returnType; } } diff --git a/lib/src/markdown_processor.dart b/lib/src/markdown_processor.dart index 335de243a9..c486e98ec3 100644 --- a/lib/src/markdown_processor.dart +++ b/lib/src/markdown_processor.dart @@ -10,6 +10,7 @@ import 'dart:math'; import 'package:analyzer/dart/ast/ast.dart' hide TypeParameter; import 'package:analyzer/dart/element/element.dart'; +import 'package:dartdoc/src/element_type.dart'; import 'package:dartdoc/src/model_utils.dart'; import 'package:html/parser.dart' show parse; import 'package:markdown/markdown.dart' as md; @@ -422,7 +423,7 @@ ModelElement _findRefElementInLibrary(String codeRef, Warnable element, // Maybe this ModelElement has type parameters, and this is one of them. if (results.isEmpty) { if (element is TypeParameters) { - results.addAll((element as TypeParameters).typeParameters.where((p) => + results.addAll(element.typeParameters.where((p) => p.name == codeRefChomped || codeRefChomped.startsWith("${p.name}."))); } } @@ -644,8 +645,9 @@ void _getResultsForClass(Class tryClass, String codeRefChomped, // Otherwise, search the class. if ((tryClass.modelType.typeArguments.map((e) => e.name)) .contains(codeRefChomped)) { - results.add(tryClass.modelType.typeArguments - .firstWhere((e) => e.name == codeRefChomped) + results.add((tryClass.modelType.typeArguments.firstWhere( + (e) => e.name == codeRefChomped && e is DefinedElementType) + as DefinedElementType) .element); } else { // People like to use 'this' in docrefs too. @@ -655,14 +657,12 @@ void _getResultsForClass(Class tryClass, String codeRefChomped, // TODO(jcollins-g): get rid of reimplementation of identifier resolution // or integrate into ModelElement in a simpler way. List superChain = [tryClass]; - superChain - .addAll(tryClass.interfaces.map((t) => t.returnElement as Class)); + superChain.addAll(tryClass.interfaces.map((t) => t.element as Class)); // This seems duplicitous with our caller, but the preferredClass // hint matters with findCanonicalModelElementFor. // TODO(jcollins-g): This makes our caller ~O(n^2) vs length of superChain. // Fortunately superChains are short, but optimize this if it matters. - superChain - .addAll(tryClass.superChain.map((t) => t.returnElement as Class)); + superChain.addAll(tryClass.superChain.map((t) => t.element as Class)); List codeRefParts = codeRefChomped.split('.'); for (final c in superChain) { // TODO(jcollins-g): add a hash-map-enabled lookup function to Class? diff --git a/lib/src/model.dart b/lib/src/model.dart index 1a47583f39..f68fb59994 100644 --- a/lib/src/model.dart +++ b/lib/src/model.dart @@ -436,9 +436,9 @@ class Accessor extends ModelElement class Class extends ModelElement with TypeParameters implements EnclosedElement { - List _mixins; - ElementType _supertype; - List _interfaces; + List _mixins; + DefinedElementType _supertype; + List _interfaces; List _constructors; List _allMethods; List _operators; @@ -460,21 +460,18 @@ class Class extends ModelElement Class(ClassElement element, Library library) : super(element, library, null) { _mixins = _cls.mixins .map((f) { - ElementType t = new ElementType( - f, new ModelElement.fromElement(f.element, packageGraph)); + ElementType t = new ElementType.from(f, packageGraph); return t; }) .where((mixin) => mixin != null) .toList(growable: false); if (_cls.supertype != null && _cls.supertype.element.supertype != null) { - _supertype = new ElementType(_cls.supertype, - new ModelElement.fromElement(_cls.supertype.element, packageGraph)); + _supertype = new ElementType.from(_cls.supertype, packageGraph); } _interfaces = _cls.interfaces - .map((f) => new ElementType( - f, new ModelElement.fromElement(f.element, packageGraph))) + .map((f) => new ElementType.from(f, packageGraph)) .toList(growable: false); } @@ -788,14 +785,15 @@ class Class extends ModelElement Iterable get publicInstanceProperties => filterNonPublic(instanceProperties); - List get interfaces => _interfaces; - Iterable get publicInterfaces => filterNonPublic(interfaces); + List get interfaces => _interfaces; + Iterable get publicInterfaces => + filterNonPublic(interfaces); - List _interfaceChain; - List get interfaceChain { + List _interfaceChain; + List get interfaceChain { if (_interfaceChain == null) { _interfaceChain = []; - for (ElementType interface in interfaces) { + for (DefinedElementType interface in interfaces) { _interfaceChain.add(interface); _interfaceChain.addAll((interface.element as Class).interfaceChain); } @@ -829,9 +827,9 @@ class Class extends ModelElement List get methodsForPages => _genPageMethods.toList(growable: false); - List get mixins => _mixins; + List get mixins => _mixins; - Iterable get publicMixins => filterNonPublic(mixins); + Iterable get publicMixins => filterNonPublic(mixins); List get operators { if (_operators != null) return _operators; @@ -899,11 +897,11 @@ class Class extends ModelElement _inheritanceChain.add(this); /// Caching should make this recursion a little less painful. - for (Class c in mixins.reversed.map((e) => (e.returnElement as Class))) { + for (Class c in mixins.reversed.map((e) => (e.element as Class))) { _inheritanceChain.addAll(c.inheritanceChain); } - for (Class c in superChain.map((e) => (e.returnElement as Class))) { + for (Class c in superChain.map((e) => (e.element as Class))) { _inheritanceChain.addAll(c.inheritanceChain); } @@ -915,8 +913,8 @@ class Class extends ModelElement return _inheritanceChain.toList(growable: false); } - List get superChain { - List typeChain = []; + List get superChain { + List typeChain = []; var parent = _supertype; while (parent != null) { typeChain.add(parent); @@ -925,12 +923,13 @@ class Class extends ModelElement return typeChain; } - Iterable get superChainReversed => superChain.reversed; - Iterable get publicSuperChain => filterNonPublic(superChain); - Iterable get publicSuperChainReversed => + Iterable get superChainReversed => superChain.reversed; + Iterable get publicSuperChain => + filterNonPublic(superChain); + Iterable get publicSuperChainReversed => publicSuperChain.toList().reversed; - ElementType get supertype => _supertype; + DefinedElementType get supertype => _supertype; List __inheritedElements; List get _inheritedElements { @@ -3114,20 +3113,21 @@ abstract class ModelElement extends Canonicalization if (_originalMember != null && (_originalMember is ExecutableMember || _originalMember is ParameterMember)) { - dynamic originalMember = _originalMember; - _modelType = new ElementType( - originalMember.type, - new ModelElement.fromElement( - originalMember.type.element, packageGraph)); + if (_originalMember is ExecutableMember) { + _modelType = new ElementType.from( + (_originalMember as ExecutableMember).type, packageGraph); + } else { + // ParameterMember + _modelType = new ElementType.from( + (_originalMember as ParameterMember).type, packageGraph); + } } else if (element is ExecutableElement || element is FunctionTypedElement || element is ParameterElement || element is TypeDefiningElement || element is PropertyInducingElement) { - _modelType = new ElementType( - (element as dynamic).type, - new ModelElement.fromElement( - (element as dynamic).type.element, packageGraph)); + _modelType = + new ElementType.from((element as dynamic).type, packageGraph); } } return _modelType; @@ -3208,10 +3208,8 @@ abstract class ModelElement extends Canonicalization recursedParameters.addAll(newParameters); newParameters.clear(); for (Parameter p in recursedParameters) { - if (p.modelType.element.canHaveParameters) { - newParameters.addAll(p.modelType.element.parameters - .where((p) => !recursedParameters.contains(p))); - } + newParameters.addAll(p.modelType.parameters + .where((p) => !recursedParameters.contains(p))); } } _allParameters = recursedParameters.toList(); @@ -3281,65 +3279,59 @@ abstract class ModelElement extends Canonicalization } } - String linkedParams( - {bool showMetadata: true, bool showNames: true, String separator: ', '}) { - String renderParam(Parameter param, String suffix) { - StringBuffer buf = new StringBuffer(); - buf.write(''); - if (showMetadata && param.hasAnnotations) { - param.annotations.forEach((String annotation) { - buf.write('$annotation '); - }); + String renderParam( + Parameter param, String suffix, bool showMetadata, bool showNames) { + StringBuffer buf = new StringBuffer(); + ElementType paramModelType = param.modelType; + + buf.write(''); + if (showMetadata && param.hasAnnotations) { + param.annotations.forEach((String annotation) { + buf.write('$annotation '); + }); + } + if (paramModelType is CallableElementTypeMixin) { + var returnTypeName = paramModelType.createLinkedReturnTypeName(); + buf.write('${returnTypeName}'); + if (showNames) { + buf.write(' ${param.name}'); + } else if (paramModelType.isTypedef || + paramModelType is CallableAnonymousElementType) { + buf.write( + ' ${paramModelType.name}'); } - if (param.modelType.isFunctionType) { - var returnTypeName; - bool isTypedef = (param.modelType.element is Typedef || - param.modelType.element is ModelFunctionTypedef); - if (isTypedef) { - returnTypeName = param.modelType.linkedName; - } else { - returnTypeName = param.modelType.createLinkedReturnTypeName(); - } - buf.write('${returnTypeName}'); - if (showNames) { - buf.write(' ${param.name}'); - } else if (param.modelType.element is ModelFunctionAnonymous) { - buf.write(' Function'); - } - if (!isTypedef) { - buf.write('('); - buf.write(param.modelType.element - .linkedParams(showNames: showNames, showMetadata: showMetadata)); - buf.write(')'); - } - } else if (param.modelType != null && param.modelType.element != null) { - var mt = param.modelType; - String typeName = ""; - if (mt != null && !mt.isDynamic) { - typeName = mt.linkedName; - } - if (typeName.isNotEmpty) { - buf.write('$typeName'); - } - if (typeName.isNotEmpty && showNames && param.name.isNotEmpty) - buf.write(' '); - if (showNames && param.name.isNotEmpty) { - buf.write('${param.name}'); - } + if (!paramModelType.isTypedef) { + buf.write('('); + buf.write(paramModelType.element + .linkedParams(showNames: showNames, showMetadata: showMetadata)); + buf.write(')'); } + } else if (param.modelType != null) { + String typeName = paramModelType.linkedName; + if (typeName.isNotEmpty) { + buf.write('$typeName'); + } + if (typeName.isNotEmpty && showNames && param.name.isNotEmpty) + buf.write(' '); + if (showNames && param.name.isNotEmpty) { + buf.write('${param.name}'); + } + } - if (param.hasDefaultValue) { - if (param.isOptionalNamed) { - buf.write(': '); - } else { - buf.write(' = '); - } - buf.write('${param.defaultValue}'); + if (param.hasDefaultValue) { + if (param.isOptionalNamed) { + buf.write(': '); + } else { + buf.write(' = '); } - buf.write('${suffix}'); - return buf.toString(); + buf.write('${param.defaultValue}'); } + buf.write('${suffix}'); + return buf.toString(); + } + String linkedParams( + {bool showMetadata: true, bool showNames: true, String separator: ', '}) { List requiredParams = parameters.where((Parameter p) => !p.isOptional).toList(); List positionalParams = @@ -3367,17 +3359,19 @@ abstract class ModelElement extends Canonicalization } else { ext = isLast ? '' : ', '; } - builder.write(renderParam(param, ext)); + builder.write(renderParam(param, ext, showMetadata, showNames)); builder.write(' '); } for (Parameter param in positionalParams) { bool isLast = param == positionalParams.last; - builder.write(renderParam(param, isLast ? '' : ', ')); + builder.write( + renderParam(param, isLast ? '' : ', ', showMetadata, showNames)); builder.write(' '); } for (Parameter param in namedParams) { bool isLast = param == namedParams.last; - builder.write(renderParam(param, isLast ? '' : ', ')); + builder.write( + renderParam(param, isLast ? '' : ', ', showMetadata, showNames)); builder.write(' '); } @@ -3391,31 +3385,6 @@ abstract class ModelElement extends Canonicalization return builder.toString().trim(); } - /// Gather all the used elements, from the parameters and return type, for example - /// E.g. method Iterable blah(List foo) will return - /// [Iterable, String, List, int] - Iterable get usedElements { - final set = new Set(); - if (modelType != null) { - if (modelType.isFunctionType) { - if (modelType.returnElement != null) { - set.addAll(modelType.returnElement.usedElements); - } - if (canHaveParameters) { - set.addAll(parameters.map((p) => p.usedElements).expand((i) => i)); - } - } else if (modelType.element != null) { - set.add(modelType.element); - if (modelType.isParameterizedType) { - set.addAll(modelType.typeArguments - .map((arg) => arg.element.usedElements) - .expand((i) => i)); - } - } - } - return set; - } - @override String toString() => '$runtimeType $name'; @@ -4718,7 +4687,7 @@ abstract class SourceCodeMixin { } } -abstract class TypeParameters implements Nameable { +abstract class TypeParameters implements ModelElement { String get nameWithGenerics => '$name$genericParameters'; String get nameWithLinkedGenerics => '$name$linkedGenericParameters'; @@ -4735,6 +4704,9 @@ abstract class TypeParameters implements Nameable { return '<${typeParameters.map((t) => t.linkedName).join(', ')}>'; } + @override + DefinedElementType get modelType => super.modelType; + List get typeParameters; } @@ -4814,6 +4786,9 @@ class TopLevelVariable extends ModelElement @override String get fileName => isConst ? '$name-constant.html' : '$name.html'; + @override + DefinedElementType get modelType => super.modelType; + TopLevelVariableElement get _variable => (element as TopLevelVariableElement); } @@ -4856,9 +4831,7 @@ class Typedef extends ModelElement @override String get kind => 'typedef'; - String get linkedReturnType => modelType != null - ? modelType.createLinkedReturnTypeName() - : _typedef.returnType.name; + String get linkedReturnType => modelType.createLinkedReturnTypeName(); FunctionTypeAliasElement get _typedef => (element as FunctionTypeAliasElement); @@ -4889,28 +4862,36 @@ class TypeParameter extends ModelElement { @override String get kind => 'type parameter'; + ElementType _boundType; ElementType get boundType { - var bound = _typeParameter.bound; - if (bound != null) { - ModelElement boundClass = - new ModelElement.fromElement(bound.element, packageGraph); - return new ElementType(bound, boundClass); + if (_boundType == null) { + var bound = _typeParameter.bound; + if (bound != null) { + _boundType = new ElementType.from(bound, packageGraph); + } } - return null; + return _boundType; } + String _name; @override String get name { - return _typeParameter.bound != null - ? '${_typeParameter.name} extends ${boundType.nameWithGenerics}' - : _typeParameter.name; + if (_name == null) { + _name = _typeParameter.bound != null + ? '${_typeParameter.name} extends ${boundType.nameWithGenerics}' + : _typeParameter.name; + } + return _name; } @override String get linkedName { - return _typeParameter.bound != null - ? '${_typeParameter.name} extends ${boundType.linkedName}' - : _typeParameter.name; + if (_linkedName == null) { + _linkedName = _typeParameter.bound != null + ? '${_typeParameter.name} extends ${boundType.linkedName}' + : _typeParameter.name; + } + return _linkedName; } TypeParameterElement get _typeParameter => element as TypeParameterElement; diff --git a/pubspec.lock b/pubspec.lock index 6cc4e52ae3..025443eb7d 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -408,4 +408,4 @@ packages: source: hosted version: "2.1.13" sdks: - dart: ">=2.0.0-dev.23.0 <=2.0.0-dev.35.0" + dart: ">=2.0.0-dev.23.0 <=2.0.0-dev.34.0" diff --git a/test/model_test.dart b/test/model_test.dart index 62ffa182ac..60329f4ecc 100644 --- a/test/model_test.dart +++ b/test/model_test.dart @@ -163,7 +163,7 @@ void main() { expect(hashCode.canonicalEnclosingElement, equals(objectModelElement)); expect( EventTarget.publicSuperChainReversed - .any((et) => et.element.name == 'Interceptor'), + .any((et) => et.name == 'Interceptor'), isFalse); }); }); @@ -1176,6 +1176,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, // void addCallback(VoidCallback callback) { } ModelFunction function = fakeLibrary.functions.firstWhere((f) => f.name == 'addCallback'); + ElementType t = function.parameters.first.modelType; String params = function.linkedParams(); expect( params, @@ -1215,6 +1216,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, .singleWhere((f) => f.name == 'explicitSetter'); // TODO(jcollins-g): really, these shouldn't be called "parameters" in // the span class. + ElementType t = explicitSetter.modelType; expect(explicitSetter.linkedReturnType, 'dynamic Function(int, Cool, List<int>)'); }); @@ -1291,6 +1293,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, Method aTypedefReturningMethodInterface = TemplatedInterface .allInstanceMethods .singleWhere((m) => m.name == 'aTypedefReturningMethodInterface'); + ElementType mt = aTypedefReturningMethodInterface.modelType; expect(aTypedefReturningMethodInterface.linkedReturnType, 'ParameterizedTypedef<List<String>>'); }); @@ -2135,6 +2138,71 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, }); }); + group('void as type', () { + ModelFunction returningFutureVoid, aVoidParameter; + Class ExtendsFutureVoid, ImplementsFutureVoid, ATypeTakingClassMixedIn; + + setUp(() { + returningFutureVoid = fakeLibrary.functions + .firstWhere((f) => f.name == 'returningFutureVoid'); + aVoidParameter = + fakeLibrary.functions.firstWhere((f) => f.name == 'aVoidParameter'); + ExtendsFutureVoid = + fakeLibrary.classes.firstWhere((f) => f.name == 'ExtendsFutureVoid'); + ImplementsFutureVoid = fakeLibrary.classes + .firstWhere((f) => f.name == 'ImplementsFutureVoid'); + ATypeTakingClassMixedIn = fakeLibrary.classes + .firstWhere((f) => f.name == 'ATypeTakingClassMixedIn'); + }); + + test('a function returning a Future', () { + expect(returningFutureVoid.linkedReturnType, + equals('Future<void>')); + }); + + test('a function requiring a Future parameter', () { + expect( + aVoidParameter.linkedParams(showMetadata: true, showNames: true), + equals( + 'Future<void> p1')); + }); + + test('a class that extends Future', () { + expect( + ExtendsFutureVoid.linkedName, + equals( + 'ExtendsFutureVoid')); + DefinedElementType FutureVoid = ExtendsFutureVoid.publicSuperChain + .firstWhere((c) => c.name == 'Future'); + expect(FutureVoid.linkedName, + equals('Future<void>')); + }); + + test('a class that implements Future', () { + expect( + ImplementsFutureVoid.linkedName, + equals( + 'ImplementsFutureVoid')); + DefinedElementType FutureVoid = ImplementsFutureVoid.publicInterfaces + .firstWhere((c) => c.name == 'Future'); + expect(FutureVoid.linkedName, + equals('Future<void>')); + }); + + test('Verify that a mixin with a void type parameter works', () { + expect( + ATypeTakingClassMixedIn.linkedName, + equals( + 'ATypeTakingClassMixedIn')); + DefinedElementType ATypeTakingClassVoid = ATypeTakingClassMixedIn.mixins + .firstWhere((c) => c.name == 'ATypeTakingClass'); + expect( + ATypeTakingClassVoid.linkedName, + equals( + 'ATypeTakingClass<void>')); + }); + }); + group('ModelType', () { Field fList; @@ -2146,7 +2214,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, }); test('parameterized type', () { - expect(fList.modelType.isParameterizedType, isTrue); + expect(fList.modelType is ParameterizedElementType, isTrue); }); }); @@ -2154,6 +2222,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, Typedef t; Typedef generic; Typedef aComplexTypedef; + Class TypedefUsingClass; setUp(() { t = exLibrary.typedefs.firstWhere((t) => t.name == 'processMessage'); @@ -2161,9 +2230,17 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, fakeLibrary.typedefs.firstWhere((t) => t.name == 'NewGenericTypedef'); aComplexTypedef = exLibrary.typedefs.firstWhere((t) => t.name == 'aComplexTypedef'); + TypedefUsingClass = + fakeLibrary.classes.firstWhere((t) => t.name == 'TypedefUsingClass'); + }); + + test('Typedefs with bound type parameters indirectly referred in parameters are displayed', () { + Constructor theConstructor = TypedefUsingClass.constructors.first; + expect(theConstructor.linkedParams(), equals('ParameterizedTypedef<double> x')); }); test('anonymous nested functions inside typedefs are handled', () { + ElementType t = aComplexTypedef.modelType; expect(aComplexTypedef, isNotNull); expect(aComplexTypedef.linkedReturnType, startsWith('Function')); expect(aComplexTypedef.nameWithGenerics, @@ -2293,9 +2370,14 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, expect(param.library.name, equals('ex')); }); - test('typdef param is linked', () { + test('typedef param is linked and does not include types', () { + ElementType t = methodWithTypedefParam.parameters.first.modelType; var params = methodWithTypedefParam.linkedParams(); - expect(params.contains(''), isTrue); + expect( + params, + equals( + 'processMessage p')); + //expect(params, contains('')); }); }); diff --git a/testing/test_package/lib/fake.dart b/testing/test_package/lib/fake.dart index 8ebb76963b..087e14d398 100644 --- a/testing/test_package/lib/fake.dart +++ b/testing/test_package/lib/fake.dart @@ -270,8 +270,36 @@ class SuperAwesomeClass { } } +class TypedefUsingClass { + ParameterizedTypedef x; + TypedefUsingClass(this.x); +} + typedef void myCoolTypedef(Cool x, bool y); +/// This function returns Future +Future returningFutureVoid() async {} + +/// This function requires a Future as a parameter +void aVoidParameter(Future p1) {} + +/// This class extends Future +abstract class ExtendsFutureVoid extends Future { + factory ExtendsFutureVoid(FutureOr computation()) {} +} + +/// This class implements Future +abstract class ImplementsFutureVoid implements Future {} + +/// This class takes a type, and it might be void. +class ATypeTakingClass { + T aMethodMaybeReturningVoid() {} +} + +class ABaseClass {} + +class ATypeTakingClassMixedIn extends ABaseClass with ATypeTakingClass {} + /// Names are actually wrong in this class, but when we extend it, /// they are correct. class ImplicitProperties { diff --git a/testing/test_package_docs/ex/Animal-class.html b/testing/test_package_docs/ex/Animal-class.html index 926989f2a6..8787fa5bde 100644 --- a/testing/test_package_docs/ex/Animal-class.html +++ b/testing/test_package_docs/ex/Animal-class.html @@ -227,7 +227,7 @@

Methods

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/Animal/operator_equals.html b/testing/test_package_docs/ex/Animal/operator_equals.html index b90c048105..ca0cd247ac 100644 --- a/testing/test_package_docs/ex/Animal/operator_equals.html +++ b/testing/test_package_docs/ex/Animal/operator_equals.html @@ -70,7 +70,7 @@

operator == method

bool operator == -(other) +(dynamic other)
diff --git a/testing/test_package_docs/ex/AnotherParameterizedClass-class.html b/testing/test_package_docs/ex/AnotherParameterizedClass-class.html index 3d538dc8f7..604400d303 100644 --- a/testing/test_package_docs/ex/AnotherParameterizedClass-class.html +++ b/testing/test_package_docs/ex/AnotherParameterizedClass-class.html @@ -175,7 +175,7 @@

Methods

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/AnotherParameterizedClass/operator_equals.html b/testing/test_package_docs/ex/AnotherParameterizedClass/operator_equals.html index c62dd5fe16..36e1679a91 100644 --- a/testing/test_package_docs/ex/AnotherParameterizedClass/operator_equals.html +++ b/testing/test_package_docs/ex/AnotherParameterizedClass/operator_equals.html @@ -66,7 +66,7 @@

operator == method

bool operator == -(other) +(dynamic other)
diff --git a/testing/test_package_docs/ex/Apple-class.html b/testing/test_package_docs/ex/Apple-class.html index f5b08f482f..13b3f99e18 100644 --- a/testing/test_package_docs/ex/Apple-class.html +++ b/testing/test_package_docs/ex/Apple-class.html @@ -286,7 +286,7 @@

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/Apple/operator_equals.html b/testing/test_package_docs/ex/Apple/operator_equals.html index 4525913e1c..b870717db1 100644 --- a/testing/test_package_docs/ex/Apple/operator_equals.html +++ b/testing/test_package_docs/ex/Apple/operator_equals.html @@ -81,7 +81,7 @@

operator == method

bool operator == -(other) +(dynamic other)
diff --git a/testing/test_package_docs/ex/B-class.html b/testing/test_package_docs/ex/B-class.html index 2c77cd9358..d38a9c92f1 100644 --- a/testing/test_package_docs/ex/B-class.html +++ b/testing/test_package_docs/ex/B-class.html @@ -337,7 +337,7 @@

Operators

inherited
- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/Cat-class.html b/testing/test_package_docs/ex/Cat-class.html index e11fb252c8..cccca2a04e 100644 --- a/testing/test_package_docs/ex/Cat-class.html +++ b/testing/test_package_docs/ex/Cat-class.html @@ -206,7 +206,7 @@

Methods

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/Cat/operator_equals.html b/testing/test_package_docs/ex/Cat/operator_equals.html index 31ae83b1af..00b79dfe0b 100644 --- a/testing/test_package_docs/ex/Cat/operator_equals.html +++ b/testing/test_package_docs/ex/Cat/operator_equals.html @@ -68,7 +68,7 @@

operator == method

bool operator == -(other) +(dynamic other)
diff --git a/testing/test_package_docs/ex/CatString-class.html b/testing/test_package_docs/ex/CatString-class.html index 69177df613..01b5f5d943 100644 --- a/testing/test_package_docs/ex/CatString-class.html +++ b/testing/test_package_docs/ex/CatString-class.html @@ -258,7 +258,7 @@

Methods

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/CatString/operator_equals.html b/testing/test_package_docs/ex/CatString/operator_equals.html index afd7ff88b2..f3c31ee2ca 100644 --- a/testing/test_package_docs/ex/CatString/operator_equals.html +++ b/testing/test_package_docs/ex/CatString/operator_equals.html @@ -74,7 +74,7 @@

operator == method

bool operator == -(other) +(dynamic other)
diff --git a/testing/test_package_docs/ex/ConstantCat-class.html b/testing/test_package_docs/ex/ConstantCat-class.html index 87f497c202..048b50bc65 100644 --- a/testing/test_package_docs/ex/ConstantCat-class.html +++ b/testing/test_package_docs/ex/ConstantCat-class.html @@ -215,7 +215,7 @@

Methods

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/Deprecated-class.html b/testing/test_package_docs/ex/Deprecated-class.html index 686c02aada..27a3e8ab51 100644 --- a/testing/test_package_docs/ex/Deprecated-class.html +++ b/testing/test_package_docs/ex/Deprecated-class.html @@ -184,7 +184,7 @@

Methods

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/Deprecated/operator_equals.html b/testing/test_package_docs/ex/Deprecated/operator_equals.html index cc74a1337a..19eea51b3a 100644 --- a/testing/test_package_docs/ex/Deprecated/operator_equals.html +++ b/testing/test_package_docs/ex/Deprecated/operator_equals.html @@ -67,7 +67,7 @@

operator == method

bool operator == -(other) +(dynamic other)
diff --git a/testing/test_package_docs/ex/Dog-class.html b/testing/test_package_docs/ex/Dog-class.html index d5d222fab7..4b40c8cc44 100644 --- a/testing/test_package_docs/ex/Dog-class.html +++ b/testing/test_package_docs/ex/Dog-class.html @@ -374,7 +374,7 @@

Methods

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/Dog/operator_equals.html b/testing/test_package_docs/ex/Dog/operator_equals.html index 536f968e11..6ecf6507eb 100644 --- a/testing/test_package_docs/ex/Dog/operator_equals.html +++ b/testing/test_package_docs/ex/Dog/operator_equals.html @@ -99,7 +99,7 @@

operator == method

bool operator == -(other) +(dynamic other) diff --git a/testing/test_package_docs/ex/Dog/staticGetterSetter.html b/testing/test_package_docs/ex/Dog/staticGetterSetter.html index 718f3becda..dc6b654274 100644 --- a/testing/test_package_docs/ex/Dog/staticGetterSetter.html +++ b/testing/test_package_docs/ex/Dog/staticGetterSetter.html @@ -108,7 +108,7 @@

staticGetterSetter property

void staticGetterSetter= -(x) +(dynamic x)
diff --git a/testing/test_package_docs/ex/E-class.html b/testing/test_package_docs/ex/E-class.html index 3430ba64e2..50c8b6f94c 100644 --- a/testing/test_package_docs/ex/E-class.html +++ b/testing/test_package_docs/ex/E-class.html @@ -187,7 +187,7 @@

Methods

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/E/operator_equals.html b/testing/test_package_docs/ex/E/operator_equals.html index 7a7a2b7455..fd2efe0d10 100644 --- a/testing/test_package_docs/ex/E/operator_equals.html +++ b/testing/test_package_docs/ex/E/operator_equals.html @@ -66,7 +66,7 @@

operator == method

bool operator == -(other) +(dynamic other)
diff --git a/testing/test_package_docs/ex/ExtendedShortName-class.html b/testing/test_package_docs/ex/ExtendedShortName-class.html index 9c371163c6..e77de0d27f 100644 --- a/testing/test_package_docs/ex/ExtendedShortName-class.html +++ b/testing/test_package_docs/ex/ExtendedShortName-class.html @@ -198,7 +198,7 @@

Methods

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/F-class.html b/testing/test_package_docs/ex/F-class.html index b092b3ff31..b74facf186 100644 --- a/testing/test_package_docs/ex/F-class.html +++ b/testing/test_package_docs/ex/F-class.html @@ -370,7 +370,7 @@

Methods

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/ForAnnotation-class.html b/testing/test_package_docs/ex/ForAnnotation-class.html index 117081b9db..873e45cbee 100644 --- a/testing/test_package_docs/ex/ForAnnotation-class.html +++ b/testing/test_package_docs/ex/ForAnnotation-class.html @@ -184,7 +184,7 @@

Methods

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/ForAnnotation/operator_equals.html b/testing/test_package_docs/ex/ForAnnotation/operator_equals.html index f72f605bdf..49cee8adbc 100644 --- a/testing/test_package_docs/ex/ForAnnotation/operator_equals.html +++ b/testing/test_package_docs/ex/ForAnnotation/operator_equals.html @@ -67,7 +67,7 @@

operator == method

bool operator == -(other) +(dynamic other)
diff --git a/testing/test_package_docs/ex/HasAnnotation-class.html b/testing/test_package_docs/ex/HasAnnotation-class.html index fa38c65216..0f68641e50 100644 --- a/testing/test_package_docs/ex/HasAnnotation-class.html +++ b/testing/test_package_docs/ex/HasAnnotation-class.html @@ -187,7 +187,7 @@

Methods

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/HasAnnotation/operator_equals.html b/testing/test_package_docs/ex/HasAnnotation/operator_equals.html index 93ca1cf630..8842cc5fe9 100644 --- a/testing/test_package_docs/ex/HasAnnotation/operator_equals.html +++ b/testing/test_package_docs/ex/HasAnnotation/operator_equals.html @@ -66,7 +66,7 @@

operator == method

bool operator == -(other) +(dynamic other)
diff --git a/testing/test_package_docs/ex/Helper-class.html b/testing/test_package_docs/ex/Helper-class.html index d4b36c2aa0..881cbde535 100644 --- a/testing/test_package_docs/ex/Helper-class.html +++ b/testing/test_package_docs/ex/Helper-class.html @@ -189,7 +189,7 @@

Methods

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/Helper/operator_equals.html b/testing/test_package_docs/ex/Helper/operator_equals.html index 2ba5d81e31..6041f0e714 100644 --- a/testing/test_package_docs/ex/Helper/operator_equals.html +++ b/testing/test_package_docs/ex/Helper/operator_equals.html @@ -67,7 +67,7 @@

operator == method

bool operator == -(other) +(dynamic other)
diff --git a/testing/test_package_docs/ex/Klass-class.html b/testing/test_package_docs/ex/Klass-class.html index ac2745dffd..1f052f68c8 100644 --- a/testing/test_package_docs/ex/Klass-class.html +++ b/testing/test_package_docs/ex/Klass-class.html @@ -223,7 +223,7 @@

Methods

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/Klass/operator_equals.html b/testing/test_package_docs/ex/Klass/operator_equals.html index b5af6c495d..6714514157 100644 --- a/testing/test_package_docs/ex/Klass/operator_equals.html +++ b/testing/test_package_docs/ex/Klass/operator_equals.html @@ -71,7 +71,7 @@

operator == method

bool operator == -(other) +(dynamic other)
diff --git a/testing/test_package_docs/ex/MyError-class.html b/testing/test_package_docs/ex/MyError-class.html index 725299829f..0c801a22d5 100644 --- a/testing/test_package_docs/ex/MyError-class.html +++ b/testing/test_package_docs/ex/MyError-class.html @@ -197,7 +197,7 @@

Methods

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/MyError/operator_equals.html b/testing/test_package_docs/ex/MyError/operator_equals.html index 85e325f9d6..55f9e5c980 100644 --- a/testing/test_package_docs/ex/MyError/operator_equals.html +++ b/testing/test_package_docs/ex/MyError/operator_equals.html @@ -67,7 +67,7 @@

operator == method

bool operator == -(other) +(dynamic other)
diff --git a/testing/test_package_docs/ex/MyErrorImplements-class.html b/testing/test_package_docs/ex/MyErrorImplements-class.html index 52f511a9c5..80555597d8 100644 --- a/testing/test_package_docs/ex/MyErrorImplements-class.html +++ b/testing/test_package_docs/ex/MyErrorImplements-class.html @@ -197,7 +197,7 @@

Methods

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/MyErrorImplements/operator_equals.html b/testing/test_package_docs/ex/MyErrorImplements/operator_equals.html index 8e7fe510d1..7a7f9b4905 100644 --- a/testing/test_package_docs/ex/MyErrorImplements/operator_equals.html +++ b/testing/test_package_docs/ex/MyErrorImplements/operator_equals.html @@ -67,7 +67,7 @@

operator == method

bool operator == -(other) +(dynamic other)
diff --git a/testing/test_package_docs/ex/MyException-class.html b/testing/test_package_docs/ex/MyException-class.html index 1c59b9ff1c..4cba5e381d 100644 --- a/testing/test_package_docs/ex/MyException-class.html +++ b/testing/test_package_docs/ex/MyException-class.html @@ -189,7 +189,7 @@

Methods

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/MyException/operator_equals.html b/testing/test_package_docs/ex/MyException/operator_equals.html index 5a2185aa58..d927acb97e 100644 --- a/testing/test_package_docs/ex/MyException/operator_equals.html +++ b/testing/test_package_docs/ex/MyException/operator_equals.html @@ -66,7 +66,7 @@

operator == method

bool operator == -(other) +(dynamic other)
diff --git a/testing/test_package_docs/ex/MyExceptionImplements-class.html b/testing/test_package_docs/ex/MyExceptionImplements-class.html index fa06d53346..92358b9e42 100644 --- a/testing/test_package_docs/ex/MyExceptionImplements-class.html +++ b/testing/test_package_docs/ex/MyExceptionImplements-class.html @@ -189,7 +189,7 @@

Methods

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/MyExceptionImplements/operator_equals.html b/testing/test_package_docs/ex/MyExceptionImplements/operator_equals.html index e76d404568..bafea79f25 100644 --- a/testing/test_package_docs/ex/MyExceptionImplements/operator_equals.html +++ b/testing/test_package_docs/ex/MyExceptionImplements/operator_equals.html @@ -66,7 +66,7 @@

operator == method

bool operator == -(other) +(dynamic other)
diff --git a/testing/test_package_docs/ex/ParameterizedClass-class.html b/testing/test_package_docs/ex/ParameterizedClass-class.html index fa7ebc0659..a1dedae3bb 100644 --- a/testing/test_package_docs/ex/ParameterizedClass-class.html +++ b/testing/test_package_docs/ex/ParameterizedClass-class.html @@ -241,7 +241,7 @@

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/ParameterizedClass/operator_equals.html b/testing/test_package_docs/ex/ParameterizedClass/operator_equals.html index b3f331e316..f1a5dd3e20 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/operator_equals.html +++ b/testing/test_package_docs/ex/ParameterizedClass/operator_equals.html @@ -72,7 +72,7 @@

operator == method

bool operator == -(other) +(dynamic other)
diff --git a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass-class.html b/testing/test_package_docs/ex/PublicClassExtendsPrivateClass-class.html index 73c90f6b64..6cc157fb16 100644 --- a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass-class.html +++ b/testing/test_package_docs/ex/PublicClassExtendsPrivateClass-class.html @@ -184,7 +184,7 @@

Methods

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/operator_equals.html b/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/operator_equals.html index b98e63e8a4..137f5b319a 100644 --- a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/operator_equals.html +++ b/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/operator_equals.html @@ -67,7 +67,7 @@

operator == method

bool operator == -(other) +(dynamic other)
diff --git a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface-class.html b/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface-class.html index b2f5c48f61..de9005f9c1 100644 --- a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface-class.html +++ b/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface-class.html @@ -184,7 +184,7 @@

Methods

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/operator_equals.html b/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/operator_equals.html index a6b29fe14d..b87b46d3ae 100644 --- a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/operator_equals.html +++ b/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/operator_equals.html @@ -67,7 +67,7 @@

operator == method

bool operator == -(other) +(dynamic other)
diff --git a/testing/test_package_docs/ex/ShapeType-class.html b/testing/test_package_docs/ex/ShapeType-class.html index 367c30340b..8cc6ee08dc 100644 --- a/testing/test_package_docs/ex/ShapeType-class.html +++ b/testing/test_package_docs/ex/ShapeType-class.html @@ -177,7 +177,7 @@

Methods

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/ShapeType/operator_equals.html b/testing/test_package_docs/ex/ShapeType/operator_equals.html index a06cbfff7a..2be8faf08d 100644 --- a/testing/test_package_docs/ex/ShapeType/operator_equals.html +++ b/testing/test_package_docs/ex/ShapeType/operator_equals.html @@ -68,7 +68,7 @@

operator == method

bool operator == -(other) +(dynamic other)
diff --git a/testing/test_package_docs/ex/ShortName-class.html b/testing/test_package_docs/ex/ShortName-class.html index 3b23fff2a0..8e1b25a198 100644 --- a/testing/test_package_docs/ex/ShortName-class.html +++ b/testing/test_package_docs/ex/ShortName-class.html @@ -196,7 +196,7 @@

Methods

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/ShortName/operator_equals.html b/testing/test_package_docs/ex/ShortName/operator_equals.html index 278d6ebfaf..b941a26a29 100644 --- a/testing/test_package_docs/ex/ShortName/operator_equals.html +++ b/testing/test_package_docs/ex/ShortName/operator_equals.html @@ -67,7 +67,7 @@

operator == method

bool operator == -(other) +(dynamic other)
diff --git a/testing/test_package_docs/ex/SpecializedDuration-class.html b/testing/test_package_docs/ex/SpecializedDuration-class.html index dc90d03121..91555fea0a 100644 --- a/testing/test_package_docs/ex/SpecializedDuration-class.html +++ b/testing/test_package_docs/ex/SpecializedDuration-class.html @@ -312,7 +312,7 @@

Operators

inherited
- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/SpecializedDuration/operator_equals.html b/testing/test_package_docs/ex/SpecializedDuration/operator_equals.html index d457e6e66f..4ec9f7bec2 100644 --- a/testing/test_package_docs/ex/SpecializedDuration/operator_equals.html +++ b/testing/test_package_docs/ex/SpecializedDuration/operator_equals.html @@ -84,7 +84,7 @@

operator == method

bool operator == -(other) +(dynamic other)
diff --git a/testing/test_package_docs/ex/TemplatedClass-class.html b/testing/test_package_docs/ex/TemplatedClass-class.html index b965ca66d0..a4f504cc93 100644 --- a/testing/test_package_docs/ex/TemplatedClass-class.html +++ b/testing/test_package_docs/ex/TemplatedClass-class.html @@ -184,7 +184,7 @@

Methods

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/TemplatedClass/operator_equals.html b/testing/test_package_docs/ex/TemplatedClass/operator_equals.html index de1648c493..3fdc43e7b5 100644 --- a/testing/test_package_docs/ex/TemplatedClass/operator_equals.html +++ b/testing/test_package_docs/ex/TemplatedClass/operator_equals.html @@ -67,7 +67,7 @@

operator == method

bool operator == -(other) +(dynamic other)
diff --git a/testing/test_package_docs/ex/TemplatedInterface-class.html b/testing/test_package_docs/ex/TemplatedInterface-class.html index b945d07a7c..3b846902cf 100644 --- a/testing/test_package_docs/ex/TemplatedInterface-class.html +++ b/testing/test_package_docs/ex/TemplatedInterface-class.html @@ -285,7 +285,7 @@

Operators

inherited
- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs-class.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs-class.html index 93875919b3..f63be71089 100644 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs-class.html +++ b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs-class.html @@ -206,7 +206,7 @@

Methods

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/operator_equals.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/operator_equals.html index 9452c20031..1cda24cb69 100644 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/operator_equals.html +++ b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/operator_equals.html @@ -69,7 +69,7 @@

operator == method

bool operator == -(other) +(dynamic other)
diff --git a/testing/test_package_docs/ex/WithGeneric-class.html b/testing/test_package_docs/ex/WithGeneric-class.html index 45967eaa63..5b60146763 100644 --- a/testing/test_package_docs/ex/WithGeneric-class.html +++ b/testing/test_package_docs/ex/WithGeneric-class.html @@ -195,7 +195,7 @@

Methods

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/WithGeneric/operator_equals.html b/testing/test_package_docs/ex/WithGeneric/operator_equals.html index a64a0a84f6..0d1c144f8c 100644 --- a/testing/test_package_docs/ex/WithGeneric/operator_equals.html +++ b/testing/test_package_docs/ex/WithGeneric/operator_equals.html @@ -67,7 +67,7 @@

operator == method

bool operator == -(other) +(dynamic other)
diff --git a/testing/test_package_docs/ex/WithGenericSub-class.html b/testing/test_package_docs/ex/WithGenericSub-class.html index 6ec524db3f..126a852775 100644 --- a/testing/test_package_docs/ex/WithGenericSub-class.html +++ b/testing/test_package_docs/ex/WithGenericSub-class.html @@ -197,7 +197,7 @@

Methods

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/aThingToDo-class.html b/testing/test_package_docs/ex/aThingToDo-class.html index bd2237e3d8..69d7005627 100644 --- a/testing/test_package_docs/ex/aThingToDo-class.html +++ b/testing/test_package_docs/ex/aThingToDo-class.html @@ -195,7 +195,7 @@

Methods

Operators

- operator ==(other) + operator ==(dynamic other) → bool
diff --git a/testing/test_package_docs/ex/aThingToDo/operator_equals.html b/testing/test_package_docs/ex/aThingToDo/operator_equals.html index 313c71e67c..8260ab0516 100644 --- a/testing/test_package_docs/ex/aThingToDo/operator_equals.html +++ b/testing/test_package_docs/ex/aThingToDo/operator_equals.html @@ -68,7 +68,7 @@

operator == method

bool operator == -(other) +(dynamic other)
diff --git a/testing/test_package_docs/ex/ex-library.html b/testing/test_package_docs/ex/ex-library.html index 47f42a9b04..c4a8b8fd6b 100644 --- a/testing/test_package_docs/ex/ex-library.html +++ b/testing/test_package_docs/ex/ex-library.html @@ -396,7 +396,7 @@

Functions

- function1(String s, bool b, lastParam) + function1(String s, bool b, dynamic lastParam) → int
diff --git a/testing/test_package_docs/ex/function1.html b/testing/test_package_docs/ex/function1.html index 627fe3f6c1..66db32ffa7 100644 --- a/testing/test_package_docs/ex/function1.html +++ b/testing/test_package_docs/ex/function1.html @@ -112,7 +112,7 @@

function1 function

int function1 -(String s, bool b, lastParam) +(String s, bool b, dynamic lastParam)
diff --git a/testing/test_package_docs/fake/ABaseClass-class.html b/testing/test_package_docs/fake/ABaseClass-class.html new file mode 100644 index 0000000000..d3b313c0cb --- /dev/null +++ b/testing/test_package_docs/fake/ABaseClass-class.html @@ -0,0 +1,290 @@ + + + + + + + + ABaseClass class - fake library - Dart API + + + + + + + + + + + + +
+ +
+ + +
ABaseClass
+ +
+ +
+ + + +
+

ABaseClass class

+ + +
+
+ + + +
Implemented by
+
+ +
+
+ +
+

Constructors

+ +
+
+ ABaseClass() +
+
+ +
+
+
+ +
+

Properties

+ +
+
+ hashCode + → int +
+
+ +
read-only, inherited
+
+
+ runtimeType + → Type +
+
+ +
read-only, inherited
+
+
+
+ +
+

Methods

+
+
+ noSuchMethod(Invocation invocation) + → dynamic + +
+
+ +
inherited
+
+
+ toString() + → String + +
+
+ +
inherited
+
+
+
+ +
+

Operators

+
+
+ operator ==(dynamic other) + → bool + +
+
+ +
inherited
+
+
+
+ + + + +
+ + + +
+ +
+ + test_package 0.0.1 + + +
+ + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ABaseClass/ABaseClass.html b/testing/test_package_docs/fake/ABaseClass/ABaseClass.html new file mode 100644 index 0000000000..772fb8103f --- /dev/null +++ b/testing/test_package_docs/fake/ABaseClass/ABaseClass.html @@ -0,0 +1,97 @@ + + + + + + + + ABaseClass constructor - ABaseClass class - fake library - Dart API + + + + + + + + + + + + +
+ +
+ + +
ABaseClass
+ +
+ +
+ + + +
+

ABaseClass constructor

+ +
+ + ABaseClass() +
+ + + + +
+ + + +
+ +
+ + test_package 0.0.1 + + +
+ + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ABaseClass/hashCode.html b/testing/test_package_docs/fake/ABaseClass/hashCode.html new file mode 100644 index 0000000000..2b3935ec8a --- /dev/null +++ b/testing/test_package_docs/fake/ABaseClass/hashCode.html @@ -0,0 +1,101 @@ + + + + + + + + hashCode property - ABaseClass class - fake library - Dart API + + + + + + + + + + + + +
+ +
+ + +
hashCode
+ +
+ +
+ + + +
+

hashCode property

+ + +
+ +
+ int + hashCode +
inherited
+
+ + +
+ +
+ + + +
+ +
+ + test_package 0.0.1 + + +
+ + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ABaseClass/noSuchMethod.html b/testing/test_package_docs/fake/ABaseClass/noSuchMethod.html new file mode 100644 index 0000000000..c0fd73c2ee --- /dev/null +++ b/testing/test_package_docs/fake/ABaseClass/noSuchMethod.html @@ -0,0 +1,97 @@ + + + + + + + + noSuchMethod method - ABaseClass class - fake library - Dart API + + + + + + + + + + + + +
+ +
+ + +
noSuchMethod
+ +
+ +
+ + + +
+

noSuchMethod method

+ +
+ dynamic + noSuchMethod +(Invocation invocation) +
+ + + +
+ + + +
+ +
+ + test_package 0.0.1 + + +
+ + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ABaseClass/operator_equals.html b/testing/test_package_docs/fake/ABaseClass/operator_equals.html new file mode 100644 index 0000000000..821d45b358 --- /dev/null +++ b/testing/test_package_docs/fake/ABaseClass/operator_equals.html @@ -0,0 +1,97 @@ + + + + + + + + operator == method - ABaseClass class - fake library - Dart API + + + + + + + + + + + + +
+ +
+ + +
operator ==
+ +
+ +
+ + + +
+

operator == method

+ +
+ bool + operator == +(dynamic other) +
+ + + +
+ + + +
+ +
+ + test_package 0.0.1 + + +
+ + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ABaseClass/runtimeType.html b/testing/test_package_docs/fake/ABaseClass/runtimeType.html new file mode 100644 index 0000000000..dffadff77b --- /dev/null +++ b/testing/test_package_docs/fake/ABaseClass/runtimeType.html @@ -0,0 +1,101 @@ + + + + + + + + runtimeType property - ABaseClass class - fake library - Dart API + + + + + + + + + + + + +
+ +
+ + +
runtimeType
+ +
+ +
+ + + +
+

runtimeType property

+ + +
+ +
+ Type + runtimeType +
inherited
+
+ + +
+ +
+ + + +
+ +
+ + test_package 0.0.1 + + +
+ + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ABaseClass/toString.html b/testing/test_package_docs/fake/ABaseClass/toString.html new file mode 100644 index 0000000000..f5c671ac98 --- /dev/null +++ b/testing/test_package_docs/fake/ABaseClass/toString.html @@ -0,0 +1,97 @@ + + + + + + + + toString method - ABaseClass class - fake library - Dart API + + + + + + + + + + + + +
+ +
+ + +
toString
+ +
+ +
+ + + +
+

toString method

+ +
+ String + toString +() +
+ + + +
+ + + +
+ +
+ + test_package 0.0.1 + + +
+ + + + + + + + + + + diff --git a/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html b/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html index 68eded37e4..c0d32c8410 100644 --- a/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html +++ b/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html @@ -39,11 +39,14 @@
fake library
  1. Classes
  2. +
  3. ABaseClass
  4. AClassUsingASuperMixin
  5. AClassWithFancyProperties
  6. AMixinCallingSuper
  7. Annotation
  8. AnotherInterface
  9. +
  10. ATypeTakingClass
  11. +
  12. ATypeTakingClassMixedIn
  13. BaseForDocComments
  14. BaseThingy
  15. BaseThingy2
  16. @@ -52,12 +55,14 @@
    fake library
  17. ConstructorTester
  18. Cool
  19. DocumentWithATable
  20. +
  21. ExtendsFutureVoid
  22. ExtraSpecialList
  23. Foo2
  24. HasGenerics
  25. HasGenericWithExtends
  26. ImplementingThingy
  27. ImplementingThingy2
  28. +
  29. ImplementsFutureVoid
  30. ImplicitProperties
  31. InheritingClassOne
  32. InheritingClassTwo
  33. @@ -75,6 +80,7 @@
    fake library
  34. SpecialList
  35. SubForDocComments
  36. SuperAwesomeClass
  37. +
  38. TypedefUsingClass
  39. WithGetterAndSetter
  40. Constants
  41. @@ -106,6 +112,7 @@
    fake library
  42. Functions
  43. addCallback
  44. addCallback2
  45. +
  46. aVoidParameter
  47. functionWithFunctionParameters
  48. myGenericFunction
  49. onlyPositionalWithNoDefaultNoType
  50. @@ -113,6 +120,7 @@
    fake library
  51. paintImage2
  52. paramFromAnotherLib
  53. paramOfFutureOrNull
  54. +
  55. returningFutureVoid
  56. short
  57. soIntense
  58. thisIsAlsoAsync
  59. @@ -239,7 +247,7 @@

    Methods

    Operators

    - operator ==(other) + operator ==(dynamic other) → bool
    diff --git a/testing/test_package_docs/fake/AClassWithFancyProperties-class.html b/testing/test_package_docs/fake/AClassWithFancyProperties-class.html index c0dc8a49ab..8a63e34673 100644 --- a/testing/test_package_docs/fake/AClassWithFancyProperties-class.html +++ b/testing/test_package_docs/fake/AClassWithFancyProperties-class.html @@ -39,11 +39,14 @@
    fake library
    1. Classes
    2. +
    3. ABaseClass
    4. AClassUsingASuperMixin
    5. AClassWithFancyProperties
    6. AMixinCallingSuper
    7. Annotation
    8. AnotherInterface
    9. +
    10. ATypeTakingClass
    11. +
    12. ATypeTakingClassMixedIn
    13. BaseForDocComments
    14. BaseThingy
    15. BaseThingy2
    16. @@ -52,12 +55,14 @@
      fake library
    17. ConstructorTester
    18. Cool
    19. DocumentWithATable
    20. +
    21. ExtendsFutureVoid
    22. ExtraSpecialList
    23. Foo2
    24. HasGenerics
    25. HasGenericWithExtends
    26. ImplementingThingy
    27. ImplementingThingy2
    28. +
    29. ImplementsFutureVoid
    30. ImplicitProperties
    31. InheritingClassOne
    32. InheritingClassTwo
    33. @@ -75,6 +80,7 @@
      fake library
    34. SpecialList
    35. SubForDocComments
    36. SuperAwesomeClass
    37. +
    38. TypedefUsingClass
    39. WithGetterAndSetter
    40. Constants
    41. @@ -106,6 +112,7 @@
      fake library
    42. Functions
    43. addCallback
    44. addCallback2
    45. +
    46. aVoidParameter
    47. functionWithFunctionParameters
    48. myGenericFunction
    49. onlyPositionalWithNoDefaultNoType
    50. @@ -113,6 +120,7 @@
      fake library
    51. paintImage2
    52. paramFromAnotherLib
    53. paramOfFutureOrNull
    54. +
    55. returningFutureVoid
    56. short
    57. soIntense
    58. thisIsAlsoAsync
    59. @@ -218,7 +226,7 @@

      Methods

      Operators

      - operator ==(other) + operator ==(dynamic other) → bool
      diff --git a/testing/test_package_docs/fake/AClassWithFancyProperties/operator_equals.html b/testing/test_package_docs/fake/AClassWithFancyProperties/operator_equals.html index 48c9b10bb6..6601ecc5eb 100644 --- a/testing/test_package_docs/fake/AClassWithFancyProperties/operator_equals.html +++ b/testing/test_package_docs/fake/AClassWithFancyProperties/operator_equals.html @@ -67,7 +67,7 @@

      operator == method

      bool operator == -(other) +(dynamic other)
      diff --git a/testing/test_package_docs/fake/AMixinCallingSuper-class.html b/testing/test_package_docs/fake/AMixinCallingSuper-class.html index e918b4af3b..52487ea928 100644 --- a/testing/test_package_docs/fake/AMixinCallingSuper-class.html +++ b/testing/test_package_docs/fake/AMixinCallingSuper-class.html @@ -39,11 +39,14 @@
      fake library
      1. Classes
      2. +
      3. ABaseClass
      4. AClassUsingASuperMixin
      5. AClassWithFancyProperties
      6. AMixinCallingSuper
      7. Annotation
      8. AnotherInterface
      9. +
      10. ATypeTakingClass
      11. +
      12. ATypeTakingClassMixedIn
      13. BaseForDocComments
      14. BaseThingy
      15. BaseThingy2
      16. @@ -52,12 +55,14 @@
        fake library
      17. ConstructorTester
      18. Cool
      19. DocumentWithATable
      20. +
      21. ExtendsFutureVoid
      22. ExtraSpecialList
      23. Foo2
      24. HasGenerics
      25. HasGenericWithExtends
      26. ImplementingThingy
      27. ImplementingThingy2
      28. +
      29. ImplementsFutureVoid
      30. ImplicitProperties
      31. InheritingClassOne
      32. InheritingClassTwo
      33. @@ -75,6 +80,7 @@
        fake library
      34. SpecialList
      35. SubForDocComments
      36. SuperAwesomeClass
      37. +
      38. TypedefUsingClass
      39. WithGetterAndSetter
      40. Constants
      41. @@ -106,6 +112,7 @@
        fake library
      42. Functions
      43. addCallback
      44. addCallback2
      45. +
      46. aVoidParameter
      47. functionWithFunctionParameters
      48. myGenericFunction
      49. onlyPositionalWithNoDefaultNoType
      50. @@ -113,6 +120,7 @@
        fake library
      51. paintImage2
      52. paramFromAnotherLib
      53. paramOfFutureOrNull
      54. +
      55. returningFutureVoid
      56. short
      57. soIntense
      58. thisIsAlsoAsync
      59. @@ -236,7 +244,7 @@

        Methods

        Operators

        - operator ==(other) + operator ==(dynamic other) → bool
        diff --git a/testing/test_package_docs/fake/ATypeTakingClass-class.html b/testing/test_package_docs/fake/ATypeTakingClass-class.html new file mode 100644 index 0000000000..43cdf19b4a --- /dev/null +++ b/testing/test_package_docs/fake/ATypeTakingClass-class.html @@ -0,0 +1,303 @@ + + + + + + + + ATypeTakingClass class - fake library - Dart API + + + + + + + + + + + + +
        + +
        + + +
        ATypeTakingClass
        + +
        + +
        + + + +
        +

        ATypeTakingClass<T> class

        + +
        +

        This class takes a type, and it might be void.

        +
        + +
        +
        + + + +
        Implemented by
        +
        + +
        +
        + +
        +

        Constructors

        + +
        +
        + ATypeTakingClass() +
        +
        + +
        +
        +
        + +
        +

        Properties

        + +
        +
        + hashCode + → int +
        +
        + +
        read-only, inherited
        +
        +
        + runtimeType + → Type +
        +
        + +
        read-only, inherited
        +
        +
        +
        + +
        +

        Methods

        +
        +
        + aMethodMaybeReturningVoid() + → T + +
        +
        + + +
        +
        + noSuchMethod(Invocation invocation) + → dynamic + +
        +
        + +
        inherited
        +
        +
        + toString() + → String + +
        +
        + +
        inherited
        +
        +
        +
        + +
        +

        Operators

        +
        +
        + operator ==(dynamic other) + → bool + +
        +
        + +
        inherited
        +
        +
        +
        + + + + +
        + + + +
        + +
        + + test_package 0.0.1 + + +
        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ATypeTakingClass/ATypeTakingClass.html b/testing/test_package_docs/fake/ATypeTakingClass/ATypeTakingClass.html new file mode 100644 index 0000000000..673175223b --- /dev/null +++ b/testing/test_package_docs/fake/ATypeTakingClass/ATypeTakingClass.html @@ -0,0 +1,98 @@ + + + + + + + + ATypeTakingClass constructor - ATypeTakingClass class - fake library - Dart API + + + + + + + + + + + + +
        + +
        + + +
        ATypeTakingClass
        + +
        + +
        + + + +
        +

        ATypeTakingClass<T> constructor

        + +
        + + ATypeTakingClass<T>() +
        + + + + +
        + + + +
        + +
        + + test_package 0.0.1 + + +
        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ATypeTakingClass/aMethodMaybeReturningVoid.html b/testing/test_package_docs/fake/ATypeTakingClass/aMethodMaybeReturningVoid.html new file mode 100644 index 0000000000..91e19fb8ac --- /dev/null +++ b/testing/test_package_docs/fake/ATypeTakingClass/aMethodMaybeReturningVoid.html @@ -0,0 +1,98 @@ + + + + + + + + aMethodMaybeReturningVoid method - ATypeTakingClass class - fake library - Dart API + + + + + + + + + + + + +
        + +
        + + +
        aMethodMaybeReturningVoid
        + +
        + +
        + + + +
        +

        aMethodMaybeReturningVoid method

        + +
        + T + aMethodMaybeReturningVoid +() +
        + + + +
        + + + +
        + +
        + + test_package 0.0.1 + + +
        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ATypeTakingClass/hashCode.html b/testing/test_package_docs/fake/ATypeTakingClass/hashCode.html new file mode 100644 index 0000000000..6d15c4de3c --- /dev/null +++ b/testing/test_package_docs/fake/ATypeTakingClass/hashCode.html @@ -0,0 +1,102 @@ + + + + + + + + hashCode property - ATypeTakingClass class - fake library - Dart API + + + + + + + + + + + + +
        + +
        + + +
        hashCode
        + +
        + +
        + + + +
        +

        hashCode property

        + + +
        + +
        + int + hashCode +
        inherited
        +
        + + +
        + +
        + + + +
        + +
        + + test_package 0.0.1 + + +
        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ATypeTakingClass/noSuchMethod.html b/testing/test_package_docs/fake/ATypeTakingClass/noSuchMethod.html new file mode 100644 index 0000000000..ff650d4e92 --- /dev/null +++ b/testing/test_package_docs/fake/ATypeTakingClass/noSuchMethod.html @@ -0,0 +1,98 @@ + + + + + + + + noSuchMethod method - ATypeTakingClass class - fake library - Dart API + + + + + + + + + + + + +
        + +
        + + +
        noSuchMethod
        + +
        + +
        + + + +
        +

        noSuchMethod method

        + +
        + dynamic + noSuchMethod +(Invocation invocation) +
        + + + +
        + + + +
        + +
        + + test_package 0.0.1 + + +
        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ATypeTakingClass/operator_equals.html b/testing/test_package_docs/fake/ATypeTakingClass/operator_equals.html new file mode 100644 index 0000000000..99661a0ea1 --- /dev/null +++ b/testing/test_package_docs/fake/ATypeTakingClass/operator_equals.html @@ -0,0 +1,98 @@ + + + + + + + + operator == method - ATypeTakingClass class - fake library - Dart API + + + + + + + + + + + + +
        + +
        + + +
        operator ==
        + +
        + +
        + + + +
        +

        operator == method

        + +
        + bool + operator == +(dynamic other) +
        + + + +
        + + + +
        + +
        + + test_package 0.0.1 + + +
        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ATypeTakingClass/runtimeType.html b/testing/test_package_docs/fake/ATypeTakingClass/runtimeType.html new file mode 100644 index 0000000000..c1da64df3b --- /dev/null +++ b/testing/test_package_docs/fake/ATypeTakingClass/runtimeType.html @@ -0,0 +1,102 @@ + + + + + + + + runtimeType property - ATypeTakingClass class - fake library - Dart API + + + + + + + + + + + + +
        + +
        + + +
        runtimeType
        + +
        + +
        + + + +
        +

        runtimeType property

        + + +
        + +
        + Type + runtimeType +
        inherited
        +
        + + +
        + +
        + + + +
        + +
        + + test_package 0.0.1 + + +
        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ATypeTakingClass/toString.html b/testing/test_package_docs/fake/ATypeTakingClass/toString.html new file mode 100644 index 0000000000..598d14ae82 --- /dev/null +++ b/testing/test_package_docs/fake/ATypeTakingClass/toString.html @@ -0,0 +1,98 @@ + + + + + + + + toString method - ATypeTakingClass class - fake library - Dart API + + + + + + + + + + + + +
        + +
        + + +
        toString
        + +
        + +
        + + + +
        +

        toString method

        + +
        + String + toString +() +
        + + + +
        + + + +
        + +
        + + test_package 0.0.1 + + +
        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ATypeTakingClassMixedIn-class.html b/testing/test_package_docs/fake/ATypeTakingClassMixedIn-class.html new file mode 100644 index 0000000000..d8e2bf5965 --- /dev/null +++ b/testing/test_package_docs/fake/ATypeTakingClassMixedIn-class.html @@ -0,0 +1,306 @@ + + + + + + + + ATypeTakingClassMixedIn class - fake library - Dart API + + + + + + + + + + + + +
        + +
        + + +
        ATypeTakingClassMixedIn
        + +
        + +
        + + + +
        +

        ATypeTakingClassMixedIn class

        + + +
        +
        +
        Inheritance
        +
          +
        • Object
        • +
        • ABaseClass
        • +
        • ATypeTakingClassMixedIn
        • +
        + + +
        Mixes-in
        +
        + + +
        +
        + +
        +

        Constructors

        + +
        +
        + ATypeTakingClassMixedIn() +
        +
        + +
        +
        +
        + +
        +

        Properties

        + +
        +
        + hashCode + → int +
        +
        + +
        read-only, inherited
        +
        +
        + runtimeType + → Type +
        +
        + +
        read-only, inherited
        +
        +
        +
        + +
        +

        Methods

        +
        +
        + aMethodMaybeReturningVoid() + → void + +
        +
        + +
        inherited
        +
        +
        + noSuchMethod(Invocation invocation) + → dynamic + +
        +
        + +
        inherited
        +
        +
        + toString() + → String + +
        +
        + +
        inherited
        +
        +
        +
        + +
        +

        Operators

        +
        +
        + operator ==(dynamic other) + → bool + +
        +
        + +
        inherited
        +
        +
        +
        + + + + +
        + + + +
        + +
        + + test_package 0.0.1 + + +
        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ATypeTakingClassMixedIn/ATypeTakingClassMixedIn.html b/testing/test_package_docs/fake/ATypeTakingClassMixedIn/ATypeTakingClassMixedIn.html new file mode 100644 index 0000000000..1a9ac0e82f --- /dev/null +++ b/testing/test_package_docs/fake/ATypeTakingClassMixedIn/ATypeTakingClassMixedIn.html @@ -0,0 +1,98 @@ + + + + + + + + ATypeTakingClassMixedIn constructor - ATypeTakingClassMixedIn class - fake library - Dart API + + + + + + + + + + + + +
        + +
        + + +
        ATypeTakingClassMixedIn
        + +
        + +
        + + + +
        +

        ATypeTakingClassMixedIn constructor

        + +
        + + ATypeTakingClassMixedIn() +
        + + + + +
        + + + +
        + +
        + + test_package 0.0.1 + + +
        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/Annotation-class.html b/testing/test_package_docs/fake/Annotation-class.html index d245906f3d..4457b159d9 100644 --- a/testing/test_package_docs/fake/Annotation-class.html +++ b/testing/test_package_docs/fake/Annotation-class.html @@ -39,11 +39,14 @@
        fake library
        1. Classes
        2. +
        3. ABaseClass
        4. AClassUsingASuperMixin
        5. AClassWithFancyProperties
        6. AMixinCallingSuper
        7. Annotation
        8. AnotherInterface
        9. +
        10. ATypeTakingClass
        11. +
        12. ATypeTakingClassMixedIn
        13. BaseForDocComments
        14. BaseThingy
        15. BaseThingy2
        16. @@ -52,12 +55,14 @@
          fake library
        17. ConstructorTester
        18. Cool
        19. DocumentWithATable
        20. +
        21. ExtendsFutureVoid
        22. ExtraSpecialList
        23. Foo2
        24. HasGenerics
        25. HasGenericWithExtends
        26. ImplementingThingy
        27. ImplementingThingy2
        28. +
        29. ImplementsFutureVoid
        30. ImplicitProperties
        31. InheritingClassOne
        32. InheritingClassTwo
        33. @@ -75,6 +80,7 @@
          fake library
        34. SpecialList
        35. SubForDocComments
        36. SuperAwesomeClass
        37. +
        38. TypedefUsingClass
        39. WithGetterAndSetter
        40. Constants
        41. @@ -106,6 +112,7 @@
          fake library
        42. Functions
        43. addCallback
        44. addCallback2
        45. +
        46. aVoidParameter
        47. functionWithFunctionParameters
        48. myGenericFunction
        49. onlyPositionalWithNoDefaultNoType
        50. @@ -113,6 +120,7 @@
          fake library
        51. paintImage2
        52. paramFromAnotherLib
        53. paramOfFutureOrNull
        54. +
        55. returningFutureVoid
        56. short
        57. soIntense
        58. thisIsAlsoAsync
        59. @@ -222,7 +230,7 @@

          Methods

          Operators

          - operator ==(other) + operator ==(dynamic other) → bool
          diff --git a/testing/test_package_docs/fake/Annotation/operator_equals.html b/testing/test_package_docs/fake/Annotation/operator_equals.html index 79e078dc3c..367096a44b 100644 --- a/testing/test_package_docs/fake/Annotation/operator_equals.html +++ b/testing/test_package_docs/fake/Annotation/operator_equals.html @@ -67,7 +67,7 @@

          operator == method

          bool operator == -(other) +(dynamic other)
          diff --git a/testing/test_package_docs/fake/AnotherInterface-class.html b/testing/test_package_docs/fake/AnotherInterface-class.html index 5c6fc5b735..26b7c2fd81 100644 --- a/testing/test_package_docs/fake/AnotherInterface-class.html +++ b/testing/test_package_docs/fake/AnotherInterface-class.html @@ -39,11 +39,14 @@
          fake library
          1. Classes
          2. +
          3. ABaseClass
          4. AClassUsingASuperMixin
          5. AClassWithFancyProperties
          6. AMixinCallingSuper
          7. Annotation
          8. AnotherInterface
          9. +
          10. ATypeTakingClass
          11. +
          12. ATypeTakingClassMixedIn
          13. BaseForDocComments
          14. BaseThingy
          15. BaseThingy2
          16. @@ -52,12 +55,14 @@
            fake library
          17. ConstructorTester
          18. Cool
          19. DocumentWithATable
          20. +
          21. ExtendsFutureVoid
          22. ExtraSpecialList
          23. Foo2
          24. HasGenerics
          25. HasGenericWithExtends
          26. ImplementingThingy
          27. ImplementingThingy2
          28. +
          29. ImplementsFutureVoid
          30. ImplicitProperties
          31. InheritingClassOne
          32. InheritingClassTwo
          33. @@ -75,6 +80,7 @@
            fake library
          34. SpecialList
          35. SubForDocComments
          36. SuperAwesomeClass
          37. +
          38. TypedefUsingClass
          39. WithGetterAndSetter
          40. Constants
          41. @@ -106,6 +112,7 @@
            fake library
          42. Functions
          43. addCallback
          44. addCallback2
          45. +
          46. aVoidParameter
          47. functionWithFunctionParameters
          48. myGenericFunction
          49. onlyPositionalWithNoDefaultNoType
          50. @@ -113,6 +120,7 @@
            fake library
          51. paintImage2
          52. paramFromAnotherLib
          53. paramOfFutureOrNull
          54. +
          55. returningFutureVoid
          56. short
          57. soIntense
          58. thisIsAlsoAsync
          59. @@ -226,7 +234,7 @@

            Methods

            Operators

            - operator ==(other) + operator ==(dynamic other) → bool
            diff --git a/testing/test_package_docs/fake/AnotherInterface/operator_equals.html b/testing/test_package_docs/fake/AnotherInterface/operator_equals.html index 3f7dfe688a..0eecb5dbaa 100644 --- a/testing/test_package_docs/fake/AnotherInterface/operator_equals.html +++ b/testing/test_package_docs/fake/AnotherInterface/operator_equals.html @@ -66,7 +66,7 @@

            operator == method

            bool operator == -(other) +(dynamic other)
            diff --git a/testing/test_package_docs/fake/BaseForDocComments-class.html b/testing/test_package_docs/fake/BaseForDocComments-class.html index bea1a78785..58667727e0 100644 --- a/testing/test_package_docs/fake/BaseForDocComments-class.html +++ b/testing/test_package_docs/fake/BaseForDocComments-class.html @@ -39,11 +39,14 @@
            fake library
            1. Classes
            2. +
            3. ABaseClass
            4. AClassUsingASuperMixin
            5. AClassWithFancyProperties
            6. AMixinCallingSuper
            7. Annotation
            8. AnotherInterface
            9. +
            10. ATypeTakingClass
            11. +
            12. ATypeTakingClassMixedIn
            13. BaseForDocComments
            14. BaseThingy
            15. BaseThingy2
            16. @@ -52,12 +55,14 @@
              fake library
            17. ConstructorTester
            18. Cool
            19. DocumentWithATable
            20. +
            21. ExtendsFutureVoid
            22. ExtraSpecialList
            23. Foo2
            24. HasGenerics
            25. HasGenericWithExtends
            26. ImplementingThingy
            27. ImplementingThingy2
            28. +
            29. ImplementsFutureVoid
            30. ImplicitProperties
            31. InheritingClassOne
            32. InheritingClassTwo
            33. @@ -75,6 +80,7 @@
              fake library
            34. SpecialList
            35. SubForDocComments
            36. SuperAwesomeClass
            37. +
            38. TypedefUsingClass
            39. WithGetterAndSetter
            40. Constants
            41. @@ -106,6 +112,7 @@
              fake library
            42. Functions
            43. addCallback
            44. addCallback2
            45. +
            46. aVoidParameter
            47. functionWithFunctionParameters
            48. myGenericFunction
            49. onlyPositionalWithNoDefaultNoType
            50. @@ -113,6 +120,7 @@
              fake library
            51. paintImage2
            52. paramFromAnotherLib
            53. paramOfFutureOrNull
            54. +
            55. returningFutureVoid
            56. short
            57. soIntense
            58. thisIsAlsoAsync
            59. @@ -240,7 +248,7 @@

              Methods

              Operators

              - operator ==(other) + operator ==(dynamic other) → bool
              diff --git a/testing/test_package_docs/fake/BaseForDocComments/operator_equals.html b/testing/test_package_docs/fake/BaseForDocComments/operator_equals.html index 1e80af2c72..052bce5338 100644 --- a/testing/test_package_docs/fake/BaseForDocComments/operator_equals.html +++ b/testing/test_package_docs/fake/BaseForDocComments/operator_equals.html @@ -68,7 +68,7 @@

              operator == method

              bool operator == -(other) +(dynamic other)
              diff --git a/testing/test_package_docs/fake/BaseThingy-class.html b/testing/test_package_docs/fake/BaseThingy-class.html index 57fd190445..1279b681d2 100644 --- a/testing/test_package_docs/fake/BaseThingy-class.html +++ b/testing/test_package_docs/fake/BaseThingy-class.html @@ -39,11 +39,14 @@
              fake library
              1. Classes
              2. +
              3. ABaseClass
              4. AClassUsingASuperMixin
              5. AClassWithFancyProperties
              6. AMixinCallingSuper
              7. Annotation
              8. AnotherInterface
              9. +
              10. ATypeTakingClass
              11. +
              12. ATypeTakingClassMixedIn
              13. BaseForDocComments
              14. BaseThingy
              15. BaseThingy2
              16. @@ -52,12 +55,14 @@
                fake library
              17. ConstructorTester
              18. Cool
              19. DocumentWithATable
              20. +
              21. ExtendsFutureVoid
              22. ExtraSpecialList
              23. Foo2
              24. HasGenerics
              25. HasGenericWithExtends
              26. ImplementingThingy
              27. ImplementingThingy2
              28. +
              29. ImplementsFutureVoid
              30. ImplicitProperties
              31. InheritingClassOne
              32. InheritingClassTwo
              33. @@ -75,6 +80,7 @@
                fake library
              34. SpecialList
              35. SubForDocComments
              36. SuperAwesomeClass
              37. +
              38. TypedefUsingClass
              39. WithGetterAndSetter
              40. Constants
              41. @@ -106,6 +112,7 @@
                fake library
              42. Functions
              43. addCallback
              44. addCallback2
              45. +
              46. aVoidParameter
              47. functionWithFunctionParameters
              48. myGenericFunction
              49. onlyPositionalWithNoDefaultNoType
              50. @@ -113,6 +120,7 @@
                fake library
              51. paintImage2
              52. paramFromAnotherLib
              53. paramOfFutureOrNull
              54. +
              55. returningFutureVoid
              56. short
              57. soIntense
              58. thisIsAlsoAsync
              59. @@ -248,7 +256,7 @@

                Methods

                Operators

                - operator ==(other) + operator ==(dynamic other) → bool
                diff --git a/testing/test_package_docs/fake/BaseThingy/operator_equals.html b/testing/test_package_docs/fake/BaseThingy/operator_equals.html index 19f595f8c5..8b2cabb1e1 100644 --- a/testing/test_package_docs/fake/BaseThingy/operator_equals.html +++ b/testing/test_package_docs/fake/BaseThingy/operator_equals.html @@ -69,7 +69,7 @@

                operator == method

                bool operator == -(other) +(dynamic other)
                diff --git a/testing/test_package_docs/fake/BaseThingy2-class.html b/testing/test_package_docs/fake/BaseThingy2-class.html index 6222c1e3b7..e1471f318d 100644 --- a/testing/test_package_docs/fake/BaseThingy2-class.html +++ b/testing/test_package_docs/fake/BaseThingy2-class.html @@ -39,11 +39,14 @@
                fake library
                1. Classes
                2. +
                3. ABaseClass
                4. AClassUsingASuperMixin
                5. AClassWithFancyProperties
                6. AMixinCallingSuper
                7. Annotation
                8. AnotherInterface
                9. +
                10. ATypeTakingClass
                11. +
                12. ATypeTakingClassMixedIn
                13. BaseForDocComments
                14. BaseThingy
                15. BaseThingy2
                16. @@ -52,12 +55,14 @@
                  fake library
                17. ConstructorTester
                18. Cool
                19. DocumentWithATable
                20. +
                21. ExtendsFutureVoid
                22. ExtraSpecialList
                23. Foo2
                24. HasGenerics
                25. HasGenericWithExtends
                26. ImplementingThingy
                27. ImplementingThingy2
                28. +
                29. ImplementsFutureVoid
                30. ImplicitProperties
                31. InheritingClassOne
                32. InheritingClassTwo
                33. @@ -75,6 +80,7 @@
                  fake library
                34. SpecialList
                35. SubForDocComments
                36. SuperAwesomeClass
                37. +
                38. TypedefUsingClass
                39. WithGetterAndSetter
                40. Constants
                41. @@ -106,6 +112,7 @@
                  fake library
                42. Functions
                43. addCallback
                44. addCallback2
                45. +
                46. aVoidParameter
                47. functionWithFunctionParameters
                48. myGenericFunction
                49. onlyPositionalWithNoDefaultNoType
                50. @@ -113,6 +120,7 @@
                  fake library
                51. paintImage2
                52. paramFromAnotherLib
                53. paramOfFutureOrNull
                54. +
                55. returningFutureVoid
                56. short
                57. soIntense
                58. thisIsAlsoAsync
                59. @@ -256,7 +264,7 @@

                  Methods

                  Operators

                  - operator ==(other) + operator ==(dynamic other) → bool
                  diff --git a/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html b/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html index fb79925d47..d47f439967 100644 --- a/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html +++ b/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html @@ -39,11 +39,14 @@
                  fake library
                  1. Classes
                  2. +
                  3. ABaseClass
                  4. AClassUsingASuperMixin
                  5. AClassWithFancyProperties
                  6. AMixinCallingSuper
                  7. Annotation
                  8. AnotherInterface
                  9. +
                  10. ATypeTakingClass
                  11. +
                  12. ATypeTakingClassMixedIn
                  13. BaseForDocComments
                  14. BaseThingy
                  15. BaseThingy2
                  16. @@ -52,12 +55,14 @@
                    fake library
                  17. ConstructorTester
                  18. Cool
                  19. DocumentWithATable
                  20. +
                  21. ExtendsFutureVoid
                  22. ExtraSpecialList
                  23. Foo2
                  24. HasGenerics
                  25. HasGenericWithExtends
                  26. ImplementingThingy
                  27. ImplementingThingy2
                  28. +
                  29. ImplementsFutureVoid
                  30. ImplicitProperties
                  31. InheritingClassOne
                  32. InheritingClassTwo
                  33. @@ -75,6 +80,7 @@
                    fake library
                  34. SpecialList
                  35. SubForDocComments
                  36. SuperAwesomeClass
                  37. +
                  38. TypedefUsingClass
                  39. WithGetterAndSetter
                  40. Constants
                  41. @@ -106,6 +112,7 @@
                    fake library
                  42. Functions
                  43. addCallback
                  44. addCallback2
                  45. +
                  46. aVoidParameter
                  47. functionWithFunctionParameters
                  48. myGenericFunction
                  49. onlyPositionalWithNoDefaultNoType
                  50. @@ -113,6 +120,7 @@
                    fake library
                  51. paintImage2
                  52. paramFromAnotherLib
                  53. paramOfFutureOrNull
                  54. +
                  55. returningFutureVoid
                  56. short
                  57. soIntense
                  58. thisIsAlsoAsync
                  59. 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 900f537649..a0d244ea14 100644 --- a/testing/test_package_docs/fake/CUSTOM_CLASS_PRIVATE-constant.html +++ b/testing/test_package_docs/fake/CUSTOM_CLASS_PRIVATE-constant.html @@ -39,11 +39,14 @@
                    fake library
                    1. Classes
                    2. +
                    3. ABaseClass
                    4. AClassUsingASuperMixin
                    5. AClassWithFancyProperties
                    6. AMixinCallingSuper
                    7. Annotation
                    8. AnotherInterface
                    9. +
                    10. ATypeTakingClass
                    11. +
                    12. ATypeTakingClassMixedIn
                    13. BaseForDocComments
                    14. BaseThingy
                    15. BaseThingy2
                    16. @@ -52,12 +55,14 @@
                      fake library
                    17. ConstructorTester
                    18. Cool
                    19. DocumentWithATable
                    20. +
                    21. ExtendsFutureVoid
                    22. ExtraSpecialList
                    23. Foo2
                    24. HasGenerics
                    25. HasGenericWithExtends
                    26. ImplementingThingy
                    27. ImplementingThingy2
                    28. +
                    29. ImplementsFutureVoid
                    30. ImplicitProperties
                    31. InheritingClassOne
                    32. InheritingClassTwo
                    33. @@ -75,6 +80,7 @@
                      fake library
                    34. SpecialList
                    35. SubForDocComments
                    36. SuperAwesomeClass
                    37. +
                    38. TypedefUsingClass
                    39. WithGetterAndSetter
                    40. Constants
                    41. @@ -106,6 +112,7 @@
                      fake library
                    42. Functions
                    43. addCallback
                    44. addCallback2
                    45. +
                    46. aVoidParameter
                    47. functionWithFunctionParameters
                    48. myGenericFunction
                    49. onlyPositionalWithNoDefaultNoType
                    50. @@ -113,6 +120,7 @@
                      fake library
                    51. paintImage2
                    52. paramFromAnotherLib
                    53. paramOfFutureOrNull
                    54. +
                    55. returningFutureVoid
                    56. short
                    57. soIntense
                    58. thisIsAlsoAsync
                    59. diff --git a/testing/test_package_docs/fake/Callback2.html b/testing/test_package_docs/fake/Callback2.html index 4cc8f61006..e219647307 100644 --- a/testing/test_package_docs/fake/Callback2.html +++ b/testing/test_package_docs/fake/Callback2.html @@ -39,11 +39,14 @@
                      fake library
                      1. Classes
                      2. +
                      3. ABaseClass
                      4. AClassUsingASuperMixin
                      5. AClassWithFancyProperties
                      6. AMixinCallingSuper
                      7. Annotation
                      8. AnotherInterface
                      9. +
                      10. ATypeTakingClass
                      11. +
                      12. ATypeTakingClassMixedIn
                      13. BaseForDocComments
                      14. BaseThingy
                      15. BaseThingy2
                      16. @@ -52,12 +55,14 @@
                        fake library
                      17. ConstructorTester
                      18. Cool
                      19. DocumentWithATable
                      20. +
                      21. ExtendsFutureVoid
                      22. ExtraSpecialList
                      23. Foo2
                      24. HasGenerics
                      25. HasGenericWithExtends
                      26. ImplementingThingy
                      27. ImplementingThingy2
                      28. +
                      29. ImplementsFutureVoid
                      30. ImplicitProperties
                      31. InheritingClassOne
                      32. InheritingClassTwo
                      33. @@ -75,6 +80,7 @@
                        fake library
                      34. SpecialList
                      35. SubForDocComments
                      36. SuperAwesomeClass
                      37. +
                      38. TypedefUsingClass
                      39. WithGetterAndSetter
                      40. Constants
                      41. @@ -106,6 +112,7 @@
                        fake library
                      42. Functions
                      43. addCallback
                      44. addCallback2
                      45. +
                      46. aVoidParameter
                      47. functionWithFunctionParameters
                      48. myGenericFunction
                      49. onlyPositionalWithNoDefaultNoType
                      50. @@ -113,6 +120,7 @@
                        fake library
                      51. paintImage2
                      52. paramFromAnotherLib
                      53. paramOfFutureOrNull
                      54. +
                      55. returningFutureVoid
                      56. short
                      57. soIntense
                      58. thisIsAlsoAsync
                      59. @@ -147,7 +155,7 @@

                        Callback2 typedef

                        int Callback2 -(String) +(dynamic String)
                        diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html b/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html index 09fe8f10fd..eb1375cf31 100644 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html +++ b/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html @@ -39,11 +39,14 @@
                        fake library
                        1. Classes
                        2. +
                        3. ABaseClass
                        4. AClassUsingASuperMixin
                        5. AClassWithFancyProperties
                        6. AMixinCallingSuper
                        7. Annotation
                        8. AnotherInterface
                        9. +
                        10. ATypeTakingClass
                        11. +
                        12. ATypeTakingClassMixedIn
                        13. BaseForDocComments
                        14. BaseThingy
                        15. BaseThingy2
                        16. @@ -52,12 +55,14 @@
                          fake library
                        17. ConstructorTester
                        18. Cool
                        19. DocumentWithATable
                        20. +
                        21. ExtendsFutureVoid
                        22. ExtraSpecialList
                        23. Foo2
                        24. HasGenerics
                        25. HasGenericWithExtends
                        26. ImplementingThingy
                        27. ImplementingThingy2
                        28. +
                        29. ImplementsFutureVoid
                        30. ImplicitProperties
                        31. InheritingClassOne
                        32. InheritingClassTwo
                        33. @@ -75,6 +80,7 @@
                          fake library
                        34. SpecialList
                        35. SubForDocComments
                        36. SuperAwesomeClass
                        37. +
                        38. TypedefUsingClass
                        39. WithGetterAndSetter
                        40. Constants
                        41. @@ -106,6 +112,7 @@
                          fake library
                        42. Functions
                        43. addCallback
                        44. addCallback2
                        45. +
                        46. aVoidParameter
                        47. functionWithFunctionParameters
                        48. myGenericFunction
                        49. onlyPositionalWithNoDefaultNoType
                        50. @@ -113,6 +120,7 @@
                          fake library
                        51. paintImage2
                        52. paramFromAnotherLib
                        53. paramOfFutureOrNull
                        54. +
                        55. returningFutureVoid
                        56. short
                        57. soIntense
                        58. thisIsAlsoAsync
                        59. @@ -334,7 +342,7 @@

                          Methods

                          Operators

                          - operator ==(other) + operator ==(dynamic other) → bool
                          diff --git a/testing/test_package_docs/fake/Color-class.html b/testing/test_package_docs/fake/Color-class.html index aeedd5c861..2fe09ffc97 100644 --- a/testing/test_package_docs/fake/Color-class.html +++ b/testing/test_package_docs/fake/Color-class.html @@ -39,11 +39,14 @@
                          fake library
                          1. Classes
                          2. +
                          3. ABaseClass
                          4. AClassUsingASuperMixin
                          5. AClassWithFancyProperties
                          6. AMixinCallingSuper
                          7. Annotation
                          8. AnotherInterface
                          9. +
                          10. ATypeTakingClass
                          11. +
                          12. ATypeTakingClassMixedIn
                          13. BaseForDocComments
                          14. BaseThingy
                          15. BaseThingy2
                          16. @@ -52,12 +55,14 @@
                            fake library
                          17. ConstructorTester
                          18. Cool
                          19. DocumentWithATable
                          20. +
                          21. ExtendsFutureVoid
                          22. ExtraSpecialList
                          23. Foo2
                          24. HasGenerics
                          25. HasGenericWithExtends
                          26. ImplementingThingy
                          27. ImplementingThingy2
                          28. +
                          29. ImplementsFutureVoid
                          30. ImplicitProperties
                          31. InheritingClassOne
                          32. InheritingClassTwo
                          33. @@ -75,6 +80,7 @@
                            fake library
                          34. SpecialList
                          35. SubForDocComments
                          36. SuperAwesomeClass
                          37. +
                          38. TypedefUsingClass
                          39. WithGetterAndSetter
                          40. Constants
                          41. @@ -106,6 +112,7 @@
                            fake library
                          42. Functions
                          43. addCallback
                          44. addCallback2
                          45. +
                          46. aVoidParameter
                          47. functionWithFunctionParameters
                          48. myGenericFunction
                          49. onlyPositionalWithNoDefaultNoType
                          50. @@ -113,6 +120,7 @@
                            fake library
                          51. paintImage2
                          52. paramFromAnotherLib
                          53. paramOfFutureOrNull
                          54. +
                          55. returningFutureVoid
                          56. short
                          57. soIntense
                          58. thisIsAlsoAsync
                          59. @@ -306,7 +314,7 @@

                            Methods

                            Operators

                            - operator ==(other) + operator ==(dynamic other) → bool
                            diff --git a/testing/test_package_docs/fake/Color/operator_equals.html b/testing/test_package_docs/fake/Color/operator_equals.html index 98d0c431f0..89b27223ed 100644 --- a/testing/test_package_docs/fake/Color/operator_equals.html +++ b/testing/test_package_docs/fake/Color/operator_equals.html @@ -74,7 +74,7 @@

                            operator == method

                            bool operator == -(other) +(dynamic other)
                            diff --git a/testing/test_package_docs/fake/ConstantClass-class.html b/testing/test_package_docs/fake/ConstantClass-class.html index 9e3c1563fe..56b432d11d 100644 --- a/testing/test_package_docs/fake/ConstantClass-class.html +++ b/testing/test_package_docs/fake/ConstantClass-class.html @@ -39,11 +39,14 @@
                            fake library
                            1. Classes
                            2. +
                            3. ABaseClass
                            4. AClassUsingASuperMixin
                            5. AClassWithFancyProperties
                            6. AMixinCallingSuper
                            7. Annotation
                            8. AnotherInterface
                            9. +
                            10. ATypeTakingClass
                            11. +
                            12. ATypeTakingClassMixedIn
                            13. BaseForDocComments
                            14. BaseThingy
                            15. BaseThingy2
                            16. @@ -52,12 +55,14 @@
                              fake library
                            17. ConstructorTester
                            18. Cool
                            19. DocumentWithATable
                            20. +
                            21. ExtendsFutureVoid
                            22. ExtraSpecialList
                            23. Foo2
                            24. HasGenerics
                            25. HasGenericWithExtends
                            26. ImplementingThingy
                            27. ImplementingThingy2
                            28. +
                            29. ImplementsFutureVoid
                            30. ImplicitProperties
                            31. InheritingClassOne
                            32. InheritingClassTwo
                            33. @@ -75,6 +80,7 @@
                              fake library
                            34. SpecialList
                            35. SubForDocComments
                            36. SuperAwesomeClass
                            37. +
                            38. TypedefUsingClass
                            39. WithGetterAndSetter
                            40. Constants
                            41. @@ -106,6 +112,7 @@
                              fake library
                            42. Functions
                            43. addCallback
                            44. addCallback2
                            45. +
                            46. aVoidParameter
                            47. functionWithFunctionParameters
                            48. myGenericFunction
                            49. onlyPositionalWithNoDefaultNoType
                            50. @@ -113,6 +120,7 @@
                              fake library
                            51. paintImage2
                            52. paramFromAnotherLib
                            53. paramOfFutureOrNull
                            54. +
                            55. returningFutureVoid
                            56. short
                            57. soIntense
                            58. thisIsAlsoAsync
                            59. @@ -242,7 +250,7 @@

                              Methods

                              Operators

                              - operator ==(other) + operator ==(dynamic other) → bool
                              diff --git a/testing/test_package_docs/fake/ConstantClass/operator_equals.html b/testing/test_package_docs/fake/ConstantClass/operator_equals.html index 92d8e62605..f93954c599 100644 --- a/testing/test_package_docs/fake/ConstantClass/operator_equals.html +++ b/testing/test_package_docs/fake/ConstantClass/operator_equals.html @@ -69,7 +69,7 @@

                              operator == method

                              bool operator == -(other) +(dynamic other)
                              diff --git a/testing/test_package_docs/fake/ConstructorTester-class.html b/testing/test_package_docs/fake/ConstructorTester-class.html index 2c405487b2..208d07d933 100644 --- a/testing/test_package_docs/fake/ConstructorTester-class.html +++ b/testing/test_package_docs/fake/ConstructorTester-class.html @@ -39,11 +39,14 @@
                              fake library
                              1. Classes
                              2. +
                              3. ABaseClass
                              4. AClassUsingASuperMixin
                              5. AClassWithFancyProperties
                              6. AMixinCallingSuper
                              7. Annotation
                              8. AnotherInterface
                              9. +
                              10. ATypeTakingClass
                              11. +
                              12. ATypeTakingClassMixedIn
                              13. BaseForDocComments
                              14. BaseThingy
                              15. BaseThingy2
                              16. @@ -52,12 +55,14 @@
                                fake library
                              17. ConstructorTester
                              18. Cool
                              19. DocumentWithATable
                              20. +
                              21. ExtendsFutureVoid
                              22. ExtraSpecialList
                              23. Foo2
                              24. HasGenerics
                              25. HasGenericWithExtends
                              26. ImplementingThingy
                              27. ImplementingThingy2
                              28. +
                              29. ImplementsFutureVoid
                              30. ImplicitProperties
                              31. InheritingClassOne
                              32. InheritingClassTwo
                              33. @@ -75,6 +80,7 @@
                                fake library
                              34. SpecialList
                              35. SubForDocComments
                              36. SuperAwesomeClass
                              37. +
                              38. TypedefUsingClass
                              39. WithGetterAndSetter
                              40. Constants
                              41. @@ -106,6 +112,7 @@
                                fake library
                              42. Functions
                              43. addCallback
                              44. addCallback2
                              45. +
                              46. aVoidParameter
                              47. functionWithFunctionParameters
                              48. myGenericFunction
                              49. onlyPositionalWithNoDefaultNoType
                              50. @@ -113,6 +120,7 @@
                                fake library
                              51. paintImage2
                              52. paramFromAnotherLib
                              53. paramOfFutureOrNull
                              54. +
                              55. returningFutureVoid
                              56. short
                              57. soIntense
                              58. thisIsAlsoAsync
                              59. @@ -216,7 +224,7 @@

                                Methods

                                Operators

                                - operator ==(other) + operator ==(dynamic other) → bool
                                diff --git a/testing/test_package_docs/fake/ConstructorTester/operator_equals.html b/testing/test_package_docs/fake/ConstructorTester/operator_equals.html index 49ab0730e0..66cc3886ae 100644 --- a/testing/test_package_docs/fake/ConstructorTester/operator_equals.html +++ b/testing/test_package_docs/fake/ConstructorTester/operator_equals.html @@ -67,7 +67,7 @@

                                operator == method

                                bool operator == -(other) +(dynamic other)
                                diff --git a/testing/test_package_docs/fake/Cool-class.html b/testing/test_package_docs/fake/Cool-class.html index f98053cce2..fa49247679 100644 --- a/testing/test_package_docs/fake/Cool-class.html +++ b/testing/test_package_docs/fake/Cool-class.html @@ -39,11 +39,14 @@
                                fake library
                                1. Classes
                                2. +
                                3. ABaseClass
                                4. AClassUsingASuperMixin
                                5. AClassWithFancyProperties
                                6. AMixinCallingSuper
                                7. Annotation
                                8. AnotherInterface
                                9. +
                                10. ATypeTakingClass
                                11. +
                                12. ATypeTakingClassMixedIn
                                13. BaseForDocComments
                                14. BaseThingy
                                15. BaseThingy2
                                16. @@ -52,12 +55,14 @@
                                  fake library
                                17. ConstructorTester
                                18. Cool
                                19. DocumentWithATable
                                20. +
                                21. ExtendsFutureVoid
                                22. ExtraSpecialList
                                23. Foo2
                                24. HasGenerics
                                25. HasGenericWithExtends
                                26. ImplementingThingy
                                27. ImplementingThingy2
                                28. +
                                29. ImplementsFutureVoid
                                30. ImplicitProperties
                                31. InheritingClassOne
                                32. InheritingClassTwo
                                33. @@ -75,6 +80,7 @@
                                  fake library
                                34. SpecialList
                                35. SubForDocComments
                                36. SuperAwesomeClass
                                37. +
                                38. TypedefUsingClass
                                39. WithGetterAndSetter
                                40. Constants
                                41. @@ -106,6 +112,7 @@
                                  fake library
                                42. Functions
                                43. addCallback
                                44. addCallback2
                                45. +
                                46. aVoidParameter
                                47. functionWithFunctionParameters
                                48. myGenericFunction
                                49. onlyPositionalWithNoDefaultNoType
                                50. @@ -113,6 +120,7 @@
                                  fake library
                                51. paintImage2
                                52. paramFromAnotherLib
                                53. paramOfFutureOrNull
                                54. +
                                55. returningFutureVoid
                                56. short
                                57. soIntense
                                58. thisIsAlsoAsync
                                59. @@ -222,7 +230,7 @@

                                  Methods

                                  Operators

                                  - operator ==(other) + operator ==(dynamic other) → bool
                                  diff --git a/testing/test_package_docs/fake/Cool/operator_equals.html b/testing/test_package_docs/fake/Cool/operator_equals.html index 66582d8501..8ea61164a6 100644 --- a/testing/test_package_docs/fake/Cool/operator_equals.html +++ b/testing/test_package_docs/fake/Cool/operator_equals.html @@ -67,7 +67,7 @@

                                  operator == method

                                  bool operator == -(other) +(dynamic other)
                                  diff --git a/testing/test_package_docs/fake/DOWN-constant.html b/testing/test_package_docs/fake/DOWN-constant.html index b6bc7b0201..db1f9e35cc 100644 --- a/testing/test_package_docs/fake/DOWN-constant.html +++ b/testing/test_package_docs/fake/DOWN-constant.html @@ -39,11 +39,14 @@
                                  fake library
                                  1. Classes
                                  2. +
                                  3. ABaseClass
                                  4. AClassUsingASuperMixin
                                  5. AClassWithFancyProperties
                                  6. AMixinCallingSuper
                                  7. Annotation
                                  8. AnotherInterface
                                  9. +
                                  10. ATypeTakingClass
                                  11. +
                                  12. ATypeTakingClassMixedIn
                                  13. BaseForDocComments
                                  14. BaseThingy
                                  15. BaseThingy2
                                  16. @@ -52,12 +55,14 @@
                                    fake library
                                  17. ConstructorTester
                                  18. Cool
                                  19. DocumentWithATable
                                  20. +
                                  21. ExtendsFutureVoid
                                  22. ExtraSpecialList
                                  23. Foo2
                                  24. HasGenerics
                                  25. HasGenericWithExtends
                                  26. ImplementingThingy
                                  27. ImplementingThingy2
                                  28. +
                                  29. ImplementsFutureVoid
                                  30. ImplicitProperties
                                  31. InheritingClassOne
                                  32. InheritingClassTwo
                                  33. @@ -75,6 +80,7 @@
                                    fake library
                                  34. SpecialList
                                  35. SubForDocComments
                                  36. SuperAwesomeClass
                                  37. +
                                  38. TypedefUsingClass
                                  39. WithGetterAndSetter
                                  40. Constants
                                  41. @@ -106,6 +112,7 @@
                                    fake library
                                  42. Functions
                                  43. addCallback
                                  44. addCallback2
                                  45. +
                                  46. aVoidParameter
                                  47. functionWithFunctionParameters
                                  48. myGenericFunction
                                  49. onlyPositionalWithNoDefaultNoType
                                  50. @@ -113,6 +120,7 @@
                                    fake library
                                  51. paintImage2
                                  52. paramFromAnotherLib
                                  53. paramOfFutureOrNull
                                  54. +
                                  55. returningFutureVoid
                                  56. short
                                  57. soIntense
                                  58. thisIsAlsoAsync
                                  59. diff --git a/testing/test_package_docs/fake/DocumentWithATable-class.html b/testing/test_package_docs/fake/DocumentWithATable-class.html index 6ba6a2053e..f19bb56e99 100644 --- a/testing/test_package_docs/fake/DocumentWithATable-class.html +++ b/testing/test_package_docs/fake/DocumentWithATable-class.html @@ -39,11 +39,14 @@
                                    fake library
                                    1. Classes
                                    2. +
                                    3. ABaseClass
                                    4. AClassUsingASuperMixin
                                    5. AClassWithFancyProperties
                                    6. AMixinCallingSuper
                                    7. Annotation
                                    8. AnotherInterface
                                    9. +
                                    10. ATypeTakingClass
                                    11. +
                                    12. ATypeTakingClassMixedIn
                                    13. BaseForDocComments
                                    14. BaseThingy
                                    15. BaseThingy2
                                    16. @@ -52,12 +55,14 @@
                                      fake library
                                    17. ConstructorTester
                                    18. Cool
                                    19. DocumentWithATable
                                    20. +
                                    21. ExtendsFutureVoid
                                    22. ExtraSpecialList
                                    23. Foo2
                                    24. HasGenerics
                                    25. HasGenericWithExtends
                                    26. ImplementingThingy
                                    27. ImplementingThingy2
                                    28. +
                                    29. ImplementsFutureVoid
                                    30. ImplicitProperties
                                    31. InheritingClassOne
                                    32. InheritingClassTwo
                                    33. @@ -75,6 +80,7 @@
                                      fake library
                                    34. SpecialList
                                    35. SubForDocComments
                                    36. SuperAwesomeClass
                                    37. +
                                    38. TypedefUsingClass
                                    39. WithGetterAndSetter
                                    40. Constants
                                    41. @@ -106,6 +112,7 @@
                                      fake library
                                    42. Functions
                                    43. addCallback
                                    44. addCallback2
                                    45. +
                                    46. aVoidParameter
                                    47. functionWithFunctionParameters
                                    48. myGenericFunction
                                    49. onlyPositionalWithNoDefaultNoType
                                    50. @@ -113,6 +120,7 @@
                                      fake library
                                    51. paintImage2
                                    52. paramFromAnotherLib
                                    53. paramOfFutureOrNull
                                    54. +
                                    55. returningFutureVoid
                                    56. short
                                    57. soIntense
                                    58. thisIsAlsoAsync
                                    59. @@ -226,7 +234,7 @@

                                      Methods

                                      Operators

                                      - operator ==(other) + operator ==(dynamic other) → bool
                                      diff --git a/testing/test_package_docs/fake/DocumentWithATable/operator_equals.html b/testing/test_package_docs/fake/DocumentWithATable/operator_equals.html index 52431e3d42..fda1a8c4f2 100644 --- a/testing/test_package_docs/fake/DocumentWithATable/operator_equals.html +++ b/testing/test_package_docs/fake/DocumentWithATable/operator_equals.html @@ -70,7 +70,7 @@

                                      operator == method

                                      bool operator == -(other) +(dynamic other)
                                      diff --git a/testing/test_package_docs/fake/Doh-class.html b/testing/test_package_docs/fake/Doh-class.html index 4774aae9fc..7b4102f40f 100644 --- a/testing/test_package_docs/fake/Doh-class.html +++ b/testing/test_package_docs/fake/Doh-class.html @@ -39,11 +39,14 @@
                                      fake library
                                      1. Classes
                                      2. +
                                      3. ABaseClass
                                      4. AClassUsingASuperMixin
                                      5. AClassWithFancyProperties
                                      6. AMixinCallingSuper
                                      7. Annotation
                                      8. AnotherInterface
                                      9. +
                                      10. ATypeTakingClass
                                      11. +
                                      12. ATypeTakingClassMixedIn
                                      13. BaseForDocComments
                                      14. BaseThingy
                                      15. BaseThingy2
                                      16. @@ -52,12 +55,14 @@
                                        fake library
                                      17. ConstructorTester
                                      18. Cool
                                      19. DocumentWithATable
                                      20. +
                                      21. ExtendsFutureVoid
                                      22. ExtraSpecialList
                                      23. Foo2
                                      24. HasGenerics
                                      25. HasGenericWithExtends
                                      26. ImplementingThingy
                                      27. ImplementingThingy2
                                      28. +
                                      29. ImplementsFutureVoid
                                      30. ImplicitProperties
                                      31. InheritingClassOne
                                      32. InheritingClassTwo
                                      33. @@ -75,6 +80,7 @@
                                        fake library
                                      34. SpecialList
                                      35. SubForDocComments
                                      36. SuperAwesomeClass
                                      37. +
                                      38. TypedefUsingClass
                                      39. WithGetterAndSetter
                                      40. Constants
                                      41. @@ -106,6 +112,7 @@
                                        fake library
                                      42. Functions
                                      43. addCallback
                                      44. addCallback2
                                      45. +
                                      46. aVoidParameter
                                      47. functionWithFunctionParameters
                                      48. myGenericFunction
                                      49. onlyPositionalWithNoDefaultNoType
                                      50. @@ -113,6 +120,7 @@
                                        fake library
                                      51. paintImage2
                                      52. paramFromAnotherLib
                                      53. paramOfFutureOrNull
                                      54. +
                                      55. returningFutureVoid
                                      56. short
                                      57. soIntense
                                      58. thisIsAlsoAsync
                                      59. @@ -239,7 +247,7 @@

                                        Methods

                                        Operators

                                        - operator ==(other) + operator ==(dynamic other) → bool
                                        diff --git a/testing/test_package_docs/fake/Doh/operator_equals.html b/testing/test_package_docs/fake/Doh/operator_equals.html index 4efa4bcc54..f6cd09f3eb 100644 --- a/testing/test_package_docs/fake/Doh/operator_equals.html +++ b/testing/test_package_docs/fake/Doh/operator_equals.html @@ -67,7 +67,7 @@

                                        operator == method

                                        bool operator == -(other) +(dynamic other)
                                        diff --git a/testing/test_package_docs/fake/ExtendsFutureVoid-class.html b/testing/test_package_docs/fake/ExtendsFutureVoid-class.html new file mode 100644 index 0000000000..7e48fd2553 --- /dev/null +++ b/testing/test_package_docs/fake/ExtendsFutureVoid-class.html @@ -0,0 +1,346 @@ + + + + + + + + ExtendsFutureVoid class - fake library - Dart API + + + + + + + + + + + + +
                                        + +
                                        + + +
                                        ExtendsFutureVoid
                                        + +
                                        + +
                                        + + + +
                                        +

                                        ExtendsFutureVoid class

                                        + +
                                        +

                                        This class extends Future

                                        +
                                        + +
                                        +
                                        +
                                        Inheritance
                                        +
                                          +
                                        • Object
                                        • +
                                        • Future<void>
                                        • +
                                        • ExtendsFutureVoid
                                        • +
                                        + + + + +
                                        +
                                        + +
                                        +

                                        Constructors

                                        + +
                                        +
                                        + ExtendsFutureVoid(FutureOr<void> computation()) +
                                        +
                                        + +
                                        factory
                                        +
                                        +
                                        +
                                        + +
                                        +

                                        Properties

                                        + +
                                        +
                                        + hashCode + → int +
                                        +
                                        + +
                                        read-only, inherited
                                        +
                                        +
                                        + runtimeType + → Type +
                                        +
                                        + +
                                        read-only, inherited
                                        +
                                        +
                                        +
                                        + +
                                        +

                                        Methods

                                        +
                                        +
                                        + asStream() + → Stream<void> + +
                                        +
                                        + +
                                        inherited
                                        +
                                        +
                                        + catchError(Function onError, { bool test(Object error) }) + → Future<void> + +
                                        +
                                        + +
                                        inherited
                                        +
                                        +
                                        + noSuchMethod(Invocation invocation) + → dynamic + +
                                        +
                                        + +
                                        inherited
                                        +
                                        +
                                        + then<S>(FutureOr<S> onValue(T value), { Function onError }) + → Future<S> + +
                                        +
                                        + +
                                        inherited
                                        +
                                        +
                                        + timeout(Duration timeLimit, { FutureOr<void> onTimeout() }) + → Future<void> + +
                                        +
                                        + +
                                        inherited
                                        +
                                        +
                                        + toString() + → String + +
                                        +
                                        + +
                                        inherited
                                        +
                                        +
                                        + whenComplete(FutureOr action()) + → Future<void> + +
                                        +
                                        + +
                                        inherited
                                        +
                                        +
                                        +
                                        + +
                                        +

                                        Operators

                                        +
                                        +
                                        + operator ==(dynamic other) + → bool + +
                                        +
                                        + +
                                        inherited
                                        +
                                        +
                                        +
                                        + + + + +
                                        + + + +
                                        + +
                                        + + test_package 0.0.1 + + +
                                        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ExtendsFutureVoid/ExtendsFutureVoid.html b/testing/test_package_docs/fake/ExtendsFutureVoid/ExtendsFutureVoid.html new file mode 100644 index 0000000000..9b14ea1743 --- /dev/null +++ b/testing/test_package_docs/fake/ExtendsFutureVoid/ExtendsFutureVoid.html @@ -0,0 +1,102 @@ + + + + + + + + ExtendsFutureVoid constructor - ExtendsFutureVoid class - fake library - Dart API + + + + + + + + + + + + +
                                        + +
                                        + + +
                                        ExtendsFutureVoid
                                        + +
                                        + +
                                        + + + +
                                        +

                                        ExtendsFutureVoid constructor

                                        + +
                                        + + ExtendsFutureVoid(FutureOr<void> computation()) +
                                        + + + + +
                                        + + + +
                                        + +
                                        + + test_package 0.0.1 + + +
                                        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ExtendsFutureVoid/asStream.html b/testing/test_package_docs/fake/ExtendsFutureVoid/asStream.html new file mode 100644 index 0000000000..d31d401e52 --- /dev/null +++ b/testing/test_package_docs/fake/ExtendsFutureVoid/asStream.html @@ -0,0 +1,102 @@ + + + + + + + + asStream method - ExtendsFutureVoid class - fake library - Dart API + + + + + + + + + + + + +
                                        + +
                                        + + +
                                        asStream
                                        + +
                                        + +
                                        + + + +
                                        +

                                        asStream method

                                        + +
                                        + Stream<void> + asStream +() +
                                        + + + +
                                        + + + +
                                        + +
                                        + + test_package 0.0.1 + + +
                                        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ExtendsFutureVoid/catchError.html b/testing/test_package_docs/fake/ExtendsFutureVoid/catchError.html new file mode 100644 index 0000000000..0088c46484 --- /dev/null +++ b/testing/test_package_docs/fake/ExtendsFutureVoid/catchError.html @@ -0,0 +1,102 @@ + + + + + + + + catchError method - ExtendsFutureVoid class - fake library - Dart API + + + + + + + + + + + + +
                                        + +
                                        + + +
                                        catchError
                                        + +
                                        + +
                                        + + + +
                                        +

                                        catchError method

                                        + +
                                        + Future<void> + catchError +(Function onError, { bool test(Object error) }) +
                                        + + + +
                                        + + + +
                                        + +
                                        + + test_package 0.0.1 + + +
                                        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ExtendsFutureVoid/hashCode.html b/testing/test_package_docs/fake/ExtendsFutureVoid/hashCode.html new file mode 100644 index 0000000000..d011062f08 --- /dev/null +++ b/testing/test_package_docs/fake/ExtendsFutureVoid/hashCode.html @@ -0,0 +1,106 @@ + + + + + + + + hashCode property - ExtendsFutureVoid class - fake library - Dart API + + + + + + + + + + + + +
                                        + +
                                        + + +
                                        hashCode
                                        + +
                                        + +
                                        + + + +
                                        +

                                        hashCode property

                                        + + +
                                        + +
                                        + int + hashCode +
                                        inherited
                                        +
                                        + + +
                                        + +
                                        + + + +
                                        + +
                                        + + test_package 0.0.1 + + +
                                        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ExtendsFutureVoid/noSuchMethod.html b/testing/test_package_docs/fake/ExtendsFutureVoid/noSuchMethod.html new file mode 100644 index 0000000000..0abf57c5ec --- /dev/null +++ b/testing/test_package_docs/fake/ExtendsFutureVoid/noSuchMethod.html @@ -0,0 +1,102 @@ + + + + + + + + noSuchMethod method - ExtendsFutureVoid class - fake library - Dart API + + + + + + + + + + + + +
                                        + +
                                        + + +
                                        noSuchMethod
                                        + +
                                        + +
                                        + + + +
                                        +

                                        noSuchMethod method

                                        + +
                                        + dynamic + noSuchMethod +(Invocation invocation) +
                                        + + + +
                                        + + + +
                                        + +
                                        + + test_package 0.0.1 + + +
                                        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ExtendsFutureVoid/operator_equals.html b/testing/test_package_docs/fake/ExtendsFutureVoid/operator_equals.html new file mode 100644 index 0000000000..8adfbd5f1c --- /dev/null +++ b/testing/test_package_docs/fake/ExtendsFutureVoid/operator_equals.html @@ -0,0 +1,102 @@ + + + + + + + + operator == method - ExtendsFutureVoid class - fake library - Dart API + + + + + + + + + + + + +
                                        + +
                                        + + +
                                        operator ==
                                        + +
                                        + +
                                        + + + +
                                        +

                                        operator == method

                                        + +
                                        + bool + operator == +(dynamic other) +
                                        + + + +
                                        + + + +
                                        + +
                                        + + test_package 0.0.1 + + +
                                        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ExtendsFutureVoid/runtimeType.html b/testing/test_package_docs/fake/ExtendsFutureVoid/runtimeType.html new file mode 100644 index 0000000000..48f9151b57 --- /dev/null +++ b/testing/test_package_docs/fake/ExtendsFutureVoid/runtimeType.html @@ -0,0 +1,106 @@ + + + + + + + + runtimeType property - ExtendsFutureVoid class - fake library - Dart API + + + + + + + + + + + + +
                                        + +
                                        + + +
                                        runtimeType
                                        + +
                                        + +
                                        + + + +
                                        +

                                        runtimeType property

                                        + + +
                                        + +
                                        + Type + runtimeType +
                                        inherited
                                        +
                                        + + +
                                        + +
                                        + + + +
                                        + +
                                        + + test_package 0.0.1 + + +
                                        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ExtendsFutureVoid/then.html b/testing/test_package_docs/fake/ExtendsFutureVoid/then.html new file mode 100644 index 0000000000..74bbf47f0c --- /dev/null +++ b/testing/test_package_docs/fake/ExtendsFutureVoid/then.html @@ -0,0 +1,102 @@ + + + + + + + + then method - ExtendsFutureVoid class - fake library - Dart API + + + + + + + + + + + + +
                                        + +
                                        + + +
                                        then
                                        + +
                                        + +
                                        + + + +
                                        +

                                        then<S> method

                                        + +
                                        + Future<S> + then +<S>(FutureOr<S> onValue(T value), { Function onError }) +
                                        + + + +
                                        + + + +
                                        + +
                                        + + test_package 0.0.1 + + +
                                        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ExtendsFutureVoid/timeout.html b/testing/test_package_docs/fake/ExtendsFutureVoid/timeout.html new file mode 100644 index 0000000000..8622596513 --- /dev/null +++ b/testing/test_package_docs/fake/ExtendsFutureVoid/timeout.html @@ -0,0 +1,102 @@ + + + + + + + + timeout method - ExtendsFutureVoid class - fake library - Dart API + + + + + + + + + + + + +
                                        + +
                                        + + +
                                        timeout
                                        + +
                                        + +
                                        + + + +
                                        +

                                        timeout method

                                        + +
                                        + Future<void> + timeout +(Duration timeLimit, { FutureOr<void> onTimeout() }) +
                                        + + + +
                                        + + + +
                                        + +
                                        + + test_package 0.0.1 + + +
                                        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ExtendsFutureVoid/toString.html b/testing/test_package_docs/fake/ExtendsFutureVoid/toString.html new file mode 100644 index 0000000000..216f8be4bd --- /dev/null +++ b/testing/test_package_docs/fake/ExtendsFutureVoid/toString.html @@ -0,0 +1,102 @@ + + + + + + + + toString method - ExtendsFutureVoid class - fake library - Dart API + + + + + + + + + + + + +
                                        + +
                                        + + +
                                        toString
                                        + +
                                        + +
                                        + + + +
                                        +

                                        toString method

                                        + +
                                        + String + toString +() +
                                        + + + +
                                        + + + +
                                        + +
                                        + + test_package 0.0.1 + + +
                                        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ExtendsFutureVoid/whenComplete.html b/testing/test_package_docs/fake/ExtendsFutureVoid/whenComplete.html new file mode 100644 index 0000000000..63cde9027c --- /dev/null +++ b/testing/test_package_docs/fake/ExtendsFutureVoid/whenComplete.html @@ -0,0 +1,102 @@ + + + + + + + + whenComplete method - ExtendsFutureVoid class - fake library - Dart API + + + + + + + + + + + + +
                                        + +
                                        + + +
                                        whenComplete
                                        + +
                                        + +
                                        + + + +
                                        +

                                        whenComplete method

                                        + +
                                        + Future<void> + whenComplete +(FutureOr action()) +
                                        + + + +
                                        + + + +
                                        + +
                                        + + test_package 0.0.1 + + +
                                        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ExtraSpecialList-class.html b/testing/test_package_docs/fake/ExtraSpecialList-class.html index a4d83d8dec..381e3b297b 100644 --- a/testing/test_package_docs/fake/ExtraSpecialList-class.html +++ b/testing/test_package_docs/fake/ExtraSpecialList-class.html @@ -39,11 +39,14 @@
                                        fake library
                                        1. Classes
                                        2. +
                                        3. ABaseClass
                                        4. AClassUsingASuperMixin
                                        5. AClassWithFancyProperties
                                        6. AMixinCallingSuper
                                        7. Annotation
                                        8. AnotherInterface
                                        9. +
                                        10. ATypeTakingClass
                                        11. +
                                        12. ATypeTakingClassMixedIn
                                        13. BaseForDocComments
                                        14. BaseThingy
                                        15. BaseThingy2
                                        16. @@ -52,12 +55,14 @@
                                          fake library
                                        17. ConstructorTester
                                        18. Cool
                                        19. DocumentWithATable
                                        20. +
                                        21. ExtendsFutureVoid
                                        22. ExtraSpecialList
                                        23. Foo2
                                        24. HasGenerics
                                        25. HasGenericWithExtends
                                        26. ImplementingThingy
                                        27. ImplementingThingy2
                                        28. +
                                        29. ImplementsFutureVoid
                                        30. ImplicitProperties
                                        31. InheritingClassOne
                                        32. InheritingClassTwo
                                        33. @@ -75,6 +80,7 @@
                                          fake library
                                        34. SpecialList
                                        35. SubForDocComments
                                        36. SuperAwesomeClass
                                        37. +
                                        38. TypedefUsingClass
                                        39. WithGetterAndSetter
                                        40. Constants
                                        41. @@ -106,6 +112,7 @@
                                          fake library
                                        42. Functions
                                        43. addCallback
                                        44. addCallback2
                                        45. +
                                        46. aVoidParameter
                                        47. functionWithFunctionParameters
                                        48. myGenericFunction
                                        49. onlyPositionalWithNoDefaultNoType
                                        50. @@ -113,6 +120,7 @@
                                          fake library
                                        51. paintImage2
                                        52. paramFromAnotherLib
                                        53. paramOfFutureOrNull
                                        54. +
                                        55. returningFutureVoid
                                        56. short
                                        57. soIntense
                                        58. thisIsAlsoAsync
                                        59. @@ -268,7 +276,7 @@

                                          Properties

                                          Methods

                                          - add(element) + add(dynamic element) → void
                                          @@ -358,7 +366,7 @@

                                          Methods

                                          inherited
                                          - fillRange(int start, int end, [ fill ]) + fillRange(int start, int end, [ dynamic fill ]) → void
                                          @@ -430,7 +438,7 @@

                                          Methods

                                          inherited
                                          - insert(int index, element) + insert(int index, dynamic element) → void
                                          @@ -733,7 +741,7 @@

                                          Operators

                                          inherited
                                          - operator ==(other) + operator ==(dynamic other) → bool
                                          @@ -751,7 +759,7 @@

                                          Operators

                                          inherited
                                          - operator []=(int index, value) + operator []=(int index, dynamic value) → void
                                          diff --git a/testing/test_package_docs/fake/FakeProcesses.html b/testing/test_package_docs/fake/FakeProcesses.html index be45178127..03dc31e2c8 100644 --- a/testing/test_package_docs/fake/FakeProcesses.html +++ b/testing/test_package_docs/fake/FakeProcesses.html @@ -39,11 +39,14 @@
                                          fake library
                                          1. Classes
                                          2. +
                                          3. ABaseClass
                                          4. AClassUsingASuperMixin
                                          5. AClassWithFancyProperties
                                          6. AMixinCallingSuper
                                          7. Annotation
                                          8. AnotherInterface
                                          9. +
                                          10. ATypeTakingClass
                                          11. +
                                          12. ATypeTakingClassMixedIn
                                          13. BaseForDocComments
                                          14. BaseThingy
                                          15. BaseThingy2
                                          16. @@ -52,12 +55,14 @@
                                            fake library
                                          17. ConstructorTester
                                          18. Cool
                                          19. DocumentWithATable
                                          20. +
                                          21. ExtendsFutureVoid
                                          22. ExtraSpecialList
                                          23. Foo2
                                          24. HasGenerics
                                          25. HasGenericWithExtends
                                          26. ImplementingThingy
                                          27. ImplementingThingy2
                                          28. +
                                          29. ImplementsFutureVoid
                                          30. ImplicitProperties
                                          31. InheritingClassOne
                                          32. InheritingClassTwo
                                          33. @@ -75,6 +80,7 @@
                                            fake library
                                          34. SpecialList
                                          35. SubForDocComments
                                          36. SuperAwesomeClass
                                          37. +
                                          38. TypedefUsingClass
                                          39. WithGetterAndSetter
                                          40. Constants
                                          41. @@ -106,6 +112,7 @@
                                            fake library
                                          42. Functions
                                          43. addCallback
                                          44. addCallback2
                                          45. +
                                          46. aVoidParameter
                                          47. functionWithFunctionParameters
                                          48. myGenericFunction
                                          49. onlyPositionalWithNoDefaultNoType
                                          50. @@ -113,6 +120,7 @@
                                            fake library
                                          51. paintImage2
                                          52. paramFromAnotherLib
                                          53. paramOfFutureOrNull
                                          54. +
                                          55. returningFutureVoid
                                          56. short
                                          57. soIntense
                                          58. thisIsAlsoAsync
                                          59. diff --git a/testing/test_package_docs/fake/Foo2-class.html b/testing/test_package_docs/fake/Foo2-class.html index 0150f82ecd..9b05e4b0c6 100644 --- a/testing/test_package_docs/fake/Foo2-class.html +++ b/testing/test_package_docs/fake/Foo2-class.html @@ -39,11 +39,14 @@
                                            fake library
                                            1. Classes
                                            2. +
                                            3. ABaseClass
                                            4. AClassUsingASuperMixin
                                            5. AClassWithFancyProperties
                                            6. AMixinCallingSuper
                                            7. Annotation
                                            8. AnotherInterface
                                            9. +
                                            10. ATypeTakingClass
                                            11. +
                                            12. ATypeTakingClassMixedIn
                                            13. BaseForDocComments
                                            14. BaseThingy
                                            15. BaseThingy2
                                            16. @@ -52,12 +55,14 @@
                                              fake library
                                            17. ConstructorTester
                                            18. Cool
                                            19. DocumentWithATable
                                            20. +
                                            21. ExtendsFutureVoid
                                            22. ExtraSpecialList
                                            23. Foo2
                                            24. HasGenerics
                                            25. HasGenericWithExtends
                                            26. ImplementingThingy
                                            27. ImplementingThingy2
                                            28. +
                                            29. ImplementsFutureVoid
                                            30. ImplicitProperties
                                            31. InheritingClassOne
                                            32. InheritingClassTwo
                                            33. @@ -75,6 +80,7 @@
                                              fake library
                                            34. SpecialList
                                            35. SubForDocComments
                                            36. SuperAwesomeClass
                                            37. +
                                            38. TypedefUsingClass
                                            39. WithGetterAndSetter
                                            40. Constants
                                            41. @@ -106,6 +112,7 @@
                                              fake library
                                            42. Functions
                                            43. addCallback
                                            44. addCallback2
                                            45. +
                                            46. aVoidParameter
                                            47. functionWithFunctionParameters
                                            48. myGenericFunction
                                            49. onlyPositionalWithNoDefaultNoType
                                            50. @@ -113,6 +120,7 @@
                                              fake library
                                            51. paintImage2
                                            52. paramFromAnotherLib
                                            53. paramOfFutureOrNull
                                            54. +
                                            55. returningFutureVoid
                                            56. short
                                            57. soIntense
                                            58. thisIsAlsoAsync
                                            59. @@ -222,7 +230,7 @@

                                              Methods

                                              Operators

                                              - operator ==(other) + operator ==(dynamic other) → bool
                                              diff --git a/testing/test_package_docs/fake/Foo2/operator_equals.html b/testing/test_package_docs/fake/Foo2/operator_equals.html index 95dcbe9447..41e5c7d730 100644 --- a/testing/test_package_docs/fake/Foo2/operator_equals.html +++ b/testing/test_package_docs/fake/Foo2/operator_equals.html @@ -70,7 +70,7 @@

                                              operator == method

                                              bool operator == -(other) +(dynamic other)
                                              diff --git a/testing/test_package_docs/fake/GenericTypedef.html b/testing/test_package_docs/fake/GenericTypedef.html index 79789d4ca7..c045d19e5c 100644 --- a/testing/test_package_docs/fake/GenericTypedef.html +++ b/testing/test_package_docs/fake/GenericTypedef.html @@ -39,11 +39,14 @@
                                              fake library
                                              1. Classes
                                              2. +
                                              3. ABaseClass
                                              4. AClassUsingASuperMixin
                                              5. AClassWithFancyProperties
                                              6. AMixinCallingSuper
                                              7. Annotation
                                              8. AnotherInterface
                                              9. +
                                              10. ATypeTakingClass
                                              11. +
                                              12. ATypeTakingClassMixedIn
                                              13. BaseForDocComments
                                              14. BaseThingy
                                              15. BaseThingy2
                                              16. @@ -52,12 +55,14 @@
                                                fake library
                                              17. ConstructorTester
                                              18. Cool
                                              19. DocumentWithATable
                                              20. +
                                              21. ExtendsFutureVoid
                                              22. ExtraSpecialList
                                              23. Foo2
                                              24. HasGenerics
                                              25. HasGenericWithExtends
                                              26. ImplementingThingy
                                              27. ImplementingThingy2
                                              28. +
                                              29. ImplementsFutureVoid
                                              30. ImplicitProperties
                                              31. InheritingClassOne
                                              32. InheritingClassTwo
                                              33. @@ -75,6 +80,7 @@
                                                fake library
                                              34. SpecialList
                                              35. SubForDocComments
                                              36. SuperAwesomeClass
                                              37. +
                                              38. TypedefUsingClass
                                              39. WithGetterAndSetter
                                              40. Constants
                                              41. @@ -106,6 +112,7 @@
                                                fake library
                                              42. Functions
                                              43. addCallback
                                              44. addCallback2
                                              45. +
                                              46. aVoidParameter
                                              47. functionWithFunctionParameters
                                              48. myGenericFunction
                                              49. onlyPositionalWithNoDefaultNoType
                                              50. @@ -113,6 +120,7 @@
                                                fake library
                                              51. paintImage2
                                              52. paramFromAnotherLib
                                              53. paramOfFutureOrNull
                                              54. +
                                              55. returningFutureVoid
                                              56. short
                                              57. soIntense
                                              58. thisIsAlsoAsync
                                              59. diff --git a/testing/test_package_docs/fake/HasGenericWithExtends-class.html b/testing/test_package_docs/fake/HasGenericWithExtends-class.html index 13945302c0..ba691cd014 100644 --- a/testing/test_package_docs/fake/HasGenericWithExtends-class.html +++ b/testing/test_package_docs/fake/HasGenericWithExtends-class.html @@ -39,11 +39,14 @@
                                                fake library
                                                1. Classes
                                                2. +
                                                3. ABaseClass
                                                4. AClassUsingASuperMixin
                                                5. AClassWithFancyProperties
                                                6. AMixinCallingSuper
                                                7. Annotation
                                                8. AnotherInterface
                                                9. +
                                                10. ATypeTakingClass
                                                11. +
                                                12. ATypeTakingClassMixedIn
                                                13. BaseForDocComments
                                                14. BaseThingy
                                                15. BaseThingy2
                                                16. @@ -52,12 +55,14 @@
                                                  fake library
                                                17. ConstructorTester
                                                18. Cool
                                                19. DocumentWithATable
                                                20. +
                                                21. ExtendsFutureVoid
                                                22. ExtraSpecialList
                                                23. Foo2
                                                24. HasGenerics
                                                25. HasGenericWithExtends
                                                26. ImplementingThingy
                                                27. ImplementingThingy2
                                                28. +
                                                29. ImplementsFutureVoid
                                                30. ImplicitProperties
                                                31. InheritingClassOne
                                                32. InheritingClassTwo
                                                33. @@ -75,6 +80,7 @@
                                                  fake library
                                                34. SpecialList
                                                35. SubForDocComments
                                                36. SuperAwesomeClass
                                                37. +
                                                38. TypedefUsingClass
                                                39. WithGetterAndSetter
                                                40. Constants
                                                41. @@ -106,6 +112,7 @@
                                                  fake library
                                                42. Functions
                                                43. addCallback
                                                44. addCallback2
                                                45. +
                                                46. aVoidParameter
                                                47. functionWithFunctionParameters
                                                48. myGenericFunction
                                                49. onlyPositionalWithNoDefaultNoType
                                                50. @@ -113,6 +120,7 @@
                                                  fake library
                                                51. paintImage2
                                                52. paramFromAnotherLib
                                                53. paramOfFutureOrNull
                                                54. +
                                                55. returningFutureVoid
                                                56. short
                                                57. soIntense
                                                58. thisIsAlsoAsync
                                                59. @@ -213,7 +221,7 @@

                                                  Methods

                                                  Operators

                                                  - operator ==(other) + operator ==(dynamic other) → bool
                                                  diff --git a/testing/test_package_docs/fake/HasGenericWithExtends/operator_equals.html b/testing/test_package_docs/fake/HasGenericWithExtends/operator_equals.html index db10f18d0b..68e32a3693 100644 --- a/testing/test_package_docs/fake/HasGenericWithExtends/operator_equals.html +++ b/testing/test_package_docs/fake/HasGenericWithExtends/operator_equals.html @@ -66,7 +66,7 @@

                                                  operator == method

                                                  bool operator == -(other) +(dynamic other)
                                                  diff --git a/testing/test_package_docs/fake/HasGenerics-class.html b/testing/test_package_docs/fake/HasGenerics-class.html index 26ec8acbd7..5513c733cb 100644 --- a/testing/test_package_docs/fake/HasGenerics-class.html +++ b/testing/test_package_docs/fake/HasGenerics-class.html @@ -39,11 +39,14 @@
                                                  fake library
                                                  1. Classes
                                                  2. +
                                                  3. ABaseClass
                                                  4. AClassUsingASuperMixin
                                                  5. AClassWithFancyProperties
                                                  6. AMixinCallingSuper
                                                  7. Annotation
                                                  8. AnotherInterface
                                                  9. +
                                                  10. ATypeTakingClass
                                                  11. +
                                                  12. ATypeTakingClassMixedIn
                                                  13. BaseForDocComments
                                                  14. BaseThingy
                                                  15. BaseThingy2
                                                  16. @@ -52,12 +55,14 @@
                                                    fake library
                                                  17. ConstructorTester
                                                  18. Cool
                                                  19. DocumentWithATable
                                                  20. +
                                                  21. ExtendsFutureVoid
                                                  22. ExtraSpecialList
                                                  23. Foo2
                                                  24. HasGenerics
                                                  25. HasGenericWithExtends
                                                  26. ImplementingThingy
                                                  27. ImplementingThingy2
                                                  28. +
                                                  29. ImplementsFutureVoid
                                                  30. ImplicitProperties
                                                  31. InheritingClassOne
                                                  32. InheritingClassTwo
                                                  33. @@ -75,6 +80,7 @@
                                                    fake library
                                                  34. SpecialList
                                                  35. SubForDocComments
                                                  36. SuperAwesomeClass
                                                  37. +
                                                  38. TypedefUsingClass
                                                  39. WithGetterAndSetter
                                                  40. Constants
                                                  41. @@ -106,6 +112,7 @@
                                                    fake library
                                                  42. Functions
                                                  43. addCallback
                                                  44. addCallback2
                                                  45. +
                                                  46. aVoidParameter
                                                  47. functionWithFunctionParameters
                                                  48. myGenericFunction
                                                  49. onlyPositionalWithNoDefaultNoType
                                                  50. @@ -113,6 +120,7 @@
                                                    fake library
                                                  51. paintImage2
                                                  52. paramFromAnotherLib
                                                  53. paramOfFutureOrNull
                                                  54. +
                                                  55. returningFutureVoid
                                                  56. short
                                                  57. soIntense
                                                  58. thisIsAlsoAsync
                                                  59. @@ -246,7 +254,7 @@

                                                    Methods

                                                    Operators

                                                    - operator ==(other) + operator ==(dynamic other) → bool
                                                    diff --git a/testing/test_package_docs/fake/HasGenerics/operator_equals.html b/testing/test_package_docs/fake/HasGenerics/operator_equals.html index ed877d94c8..a53b988e12 100644 --- a/testing/test_package_docs/fake/HasGenerics/operator_equals.html +++ b/testing/test_package_docs/fake/HasGenerics/operator_equals.html @@ -70,7 +70,7 @@

                                                    operator == method

                                                    bool operator == -(other) +(dynamic other)
                                                    diff --git a/testing/test_package_docs/fake/ImplementingThingy-class.html b/testing/test_package_docs/fake/ImplementingThingy-class.html index d00378ca68..5fd89e7779 100644 --- a/testing/test_package_docs/fake/ImplementingThingy-class.html +++ b/testing/test_package_docs/fake/ImplementingThingy-class.html @@ -39,11 +39,14 @@
                                                    fake library
                                                    1. Classes
                                                    2. +
                                                    3. ABaseClass
                                                    4. AClassUsingASuperMixin
                                                    5. AClassWithFancyProperties
                                                    6. AMixinCallingSuper
                                                    7. Annotation
                                                    8. AnotherInterface
                                                    9. +
                                                    10. ATypeTakingClass
                                                    11. +
                                                    12. ATypeTakingClassMixedIn
                                                    13. BaseForDocComments
                                                    14. BaseThingy
                                                    15. BaseThingy2
                                                    16. @@ -52,12 +55,14 @@
                                                      fake library
                                                    17. ConstructorTester
                                                    18. Cool
                                                    19. DocumentWithATable
                                                    20. +
                                                    21. ExtendsFutureVoid
                                                    22. ExtraSpecialList
                                                    23. Foo2
                                                    24. HasGenerics
                                                    25. HasGenericWithExtends
                                                    26. ImplementingThingy
                                                    27. ImplementingThingy2
                                                    28. +
                                                    29. ImplementsFutureVoid
                                                    30. ImplicitProperties
                                                    31. InheritingClassOne
                                                    32. InheritingClassTwo
                                                    33. @@ -75,6 +80,7 @@
                                                      fake library
                                                    34. SpecialList
                                                    35. SubForDocComments
                                                    36. SuperAwesomeClass
                                                    37. +
                                                    38. TypedefUsingClass
                                                    39. WithGetterAndSetter
                                                    40. Constants
                                                    41. @@ -106,6 +112,7 @@
                                                      fake library
                                                    42. Functions
                                                    43. addCallback
                                                    44. addCallback2
                                                    45. +
                                                    46. aVoidParameter
                                                    47. functionWithFunctionParameters
                                                    48. myGenericFunction
                                                    49. onlyPositionalWithNoDefaultNoType
                                                    50. @@ -113,6 +120,7 @@
                                                      fake library
                                                    51. paintImage2
                                                    52. paramFromAnotherLib
                                                    53. paramOfFutureOrNull
                                                    54. +
                                                    55. returningFutureVoid
                                                    56. short
                                                    57. soIntense
                                                    58. thisIsAlsoAsync
                                                    59. @@ -253,7 +261,7 @@

                                                      Methods

                                                      Operators

                                                      - operator ==(other) + operator ==(dynamic other) → bool
                                                      diff --git a/testing/test_package_docs/fake/ImplementingThingy2-class.html b/testing/test_package_docs/fake/ImplementingThingy2-class.html index 29dcf4472f..54006356fb 100644 --- a/testing/test_package_docs/fake/ImplementingThingy2-class.html +++ b/testing/test_package_docs/fake/ImplementingThingy2-class.html @@ -39,11 +39,14 @@
                                                      fake library
                                                      1. Classes
                                                      2. +
                                                      3. ABaseClass
                                                      4. AClassUsingASuperMixin
                                                      5. AClassWithFancyProperties
                                                      6. AMixinCallingSuper
                                                      7. Annotation
                                                      8. AnotherInterface
                                                      9. +
                                                      10. ATypeTakingClass
                                                      11. +
                                                      12. ATypeTakingClassMixedIn
                                                      13. BaseForDocComments
                                                      14. BaseThingy
                                                      15. BaseThingy2
                                                      16. @@ -52,12 +55,14 @@
                                                        fake library
                                                      17. ConstructorTester
                                                      18. Cool
                                                      19. DocumentWithATable
                                                      20. +
                                                      21. ExtendsFutureVoid
                                                      22. ExtraSpecialList
                                                      23. Foo2
                                                      24. HasGenerics
                                                      25. HasGenericWithExtends
                                                      26. ImplementingThingy
                                                      27. ImplementingThingy2
                                                      28. +
                                                      29. ImplementsFutureVoid
                                                      30. ImplicitProperties
                                                      31. InheritingClassOne
                                                      32. InheritingClassTwo
                                                      33. @@ -75,6 +80,7 @@
                                                        fake library
                                                      34. SpecialList
                                                      35. SubForDocComments
                                                      36. SuperAwesomeClass
                                                      37. +
                                                      38. TypedefUsingClass
                                                      39. WithGetterAndSetter
                                                      40. Constants
                                                      41. @@ -106,6 +112,7 @@
                                                        fake library
                                                      42. Functions
                                                      43. addCallback
                                                      44. addCallback2
                                                      45. +
                                                      46. aVoidParameter
                                                      47. functionWithFunctionParameters
                                                      48. myGenericFunction
                                                      49. onlyPositionalWithNoDefaultNoType
                                                      50. @@ -113,6 +120,7 @@
                                                        fake library
                                                      51. paintImage2
                                                      52. paramFromAnotherLib
                                                      53. paramOfFutureOrNull
                                                      54. +
                                                      55. returningFutureVoid
                                                      56. short
                                                      57. soIntense
                                                      58. thisIsAlsoAsync
                                                      59. @@ -250,7 +258,7 @@

                                                        Methods

                                                        Operators

                                                        - operator ==(other) + operator ==(dynamic other) → bool
                                                        diff --git a/testing/test_package_docs/fake/ImplementsFutureVoid-class.html b/testing/test_package_docs/fake/ImplementsFutureVoid-class.html new file mode 100644 index 0000000000..80a630450c --- /dev/null +++ b/testing/test_package_docs/fake/ImplementsFutureVoid-class.html @@ -0,0 +1,345 @@ + + + + + + + + ImplementsFutureVoid class - fake library - Dart API + + + + + + + + + + + + +
                                                        + +
                                                        + + +
                                                        ImplementsFutureVoid
                                                        + +
                                                        + +
                                                        + + + +
                                                        +

                                                        ImplementsFutureVoid class

                                                        + +
                                                        +

                                                        This class implements Future

                                                        +
                                                        + +
                                                        +
                                                        + +
                                                        Implements
                                                        +
                                                        +
                                                          +
                                                        • Future<void>
                                                        • +
                                                        +
                                                        + + + +
                                                        +
                                                        + +
                                                        +

                                                        Constructors

                                                        + +
                                                        +
                                                        + ImplementsFutureVoid() +
                                                        +
                                                        + +
                                                        +
                                                        +
                                                        + +
                                                        +

                                                        Properties

                                                        + +
                                                        +
                                                        + hashCode + → int +
                                                        +
                                                        + +
                                                        read-only, inherited
                                                        +
                                                        +
                                                        + runtimeType + → Type +
                                                        +
                                                        + +
                                                        read-only, inherited
                                                        +
                                                        +
                                                        +
                                                        + +
                                                        +

                                                        Methods

                                                        +
                                                        +
                                                        + asStream() + → Stream<void> + +
                                                        +
                                                        + +
                                                        inherited
                                                        +
                                                        +
                                                        + catchError(Function onError, { bool test(Object error) }) + → Future<void> + +
                                                        +
                                                        + +
                                                        inherited
                                                        +
                                                        +
                                                        + noSuchMethod(Invocation invocation) + → dynamic + +
                                                        +
                                                        + +
                                                        inherited
                                                        +
                                                        +
                                                        + then<S>(FutureOr<S> onValue(T value), { Function onError }) + → Future<S> + +
                                                        +
                                                        + +
                                                        inherited
                                                        +
                                                        +
                                                        + timeout(Duration timeLimit, { FutureOr<void> onTimeout() }) + → Future<void> + +
                                                        +
                                                        + +
                                                        inherited
                                                        +
                                                        +
                                                        + toString() + → String + +
                                                        +
                                                        + +
                                                        inherited
                                                        +
                                                        +
                                                        + whenComplete(FutureOr action()) + → Future<void> + +
                                                        +
                                                        + +
                                                        inherited
                                                        +
                                                        +
                                                        +
                                                        + +
                                                        +

                                                        Operators

                                                        +
                                                        +
                                                        + operator ==(dynamic other) + → bool + +
                                                        +
                                                        + +
                                                        inherited
                                                        +
                                                        +
                                                        +
                                                        + + + + +
                                                        + + + +
                                                        + +
                                                        + + test_package 0.0.1 + + +
                                                        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ImplementsFutureVoid/ImplementsFutureVoid.html b/testing/test_package_docs/fake/ImplementsFutureVoid/ImplementsFutureVoid.html new file mode 100644 index 0000000000..edb362b813 --- /dev/null +++ b/testing/test_package_docs/fake/ImplementsFutureVoid/ImplementsFutureVoid.html @@ -0,0 +1,102 @@ + + + + + + + + ImplementsFutureVoid constructor - ImplementsFutureVoid class - fake library - Dart API + + + + + + + + + + + + +
                                                        + +
                                                        + + +
                                                        ImplementsFutureVoid
                                                        + +
                                                        + +
                                                        + + + +
                                                        +

                                                        ImplementsFutureVoid constructor

                                                        + +
                                                        + + ImplementsFutureVoid() +
                                                        + + + + +
                                                        + + + +
                                                        + +
                                                        + + test_package 0.0.1 + + +
                                                        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ImplementsFutureVoid/asStream.html b/testing/test_package_docs/fake/ImplementsFutureVoid/asStream.html new file mode 100644 index 0000000000..61ffc072fb --- /dev/null +++ b/testing/test_package_docs/fake/ImplementsFutureVoid/asStream.html @@ -0,0 +1,102 @@ + + + + + + + + asStream method - ImplementsFutureVoid class - fake library - Dart API + + + + + + + + + + + + +
                                                        + +
                                                        + + +
                                                        asStream
                                                        + +
                                                        + +
                                                        + + + +
                                                        +

                                                        asStream method

                                                        + +
                                                        + Stream<void> + asStream +() +
                                                        + + + +
                                                        + + + +
                                                        + +
                                                        + + test_package 0.0.1 + + +
                                                        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ImplementsFutureVoid/catchError.html b/testing/test_package_docs/fake/ImplementsFutureVoid/catchError.html new file mode 100644 index 0000000000..eb43ae8f7b --- /dev/null +++ b/testing/test_package_docs/fake/ImplementsFutureVoid/catchError.html @@ -0,0 +1,102 @@ + + + + + + + + catchError method - ImplementsFutureVoid class - fake library - Dart API + + + + + + + + + + + + +
                                                        + +
                                                        + + +
                                                        catchError
                                                        + +
                                                        + +
                                                        + + + +
                                                        +

                                                        catchError method

                                                        + +
                                                        + Future<void> + catchError +(Function onError, { bool test(Object error) }) +
                                                        + + + +
                                                        + + + +
                                                        + +
                                                        + + test_package 0.0.1 + + +
                                                        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ImplementsFutureVoid/hashCode.html b/testing/test_package_docs/fake/ImplementsFutureVoid/hashCode.html new file mode 100644 index 0000000000..d6b688037d --- /dev/null +++ b/testing/test_package_docs/fake/ImplementsFutureVoid/hashCode.html @@ -0,0 +1,106 @@ + + + + + + + + hashCode property - ImplementsFutureVoid class - fake library - Dart API + + + + + + + + + + + + +
                                                        + +
                                                        + + +
                                                        hashCode
                                                        + +
                                                        + +
                                                        + + + +
                                                        +

                                                        hashCode property

                                                        + + +
                                                        + +
                                                        + int + hashCode +
                                                        inherited
                                                        +
                                                        + + +
                                                        + +
                                                        + + + +
                                                        + +
                                                        + + test_package 0.0.1 + + +
                                                        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ImplementsFutureVoid/noSuchMethod.html b/testing/test_package_docs/fake/ImplementsFutureVoid/noSuchMethod.html new file mode 100644 index 0000000000..e0578b3bcb --- /dev/null +++ b/testing/test_package_docs/fake/ImplementsFutureVoid/noSuchMethod.html @@ -0,0 +1,102 @@ + + + + + + + + noSuchMethod method - ImplementsFutureVoid class - fake library - Dart API + + + + + + + + + + + + +
                                                        + +
                                                        + + +
                                                        noSuchMethod
                                                        + +
                                                        + +
                                                        + + + +
                                                        +

                                                        noSuchMethod method

                                                        + +
                                                        + dynamic + noSuchMethod +(Invocation invocation) +
                                                        + + + +
                                                        + + + +
                                                        + +
                                                        + + test_package 0.0.1 + + +
                                                        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ImplementsFutureVoid/operator_equals.html b/testing/test_package_docs/fake/ImplementsFutureVoid/operator_equals.html new file mode 100644 index 0000000000..2c7f2aa3ae --- /dev/null +++ b/testing/test_package_docs/fake/ImplementsFutureVoid/operator_equals.html @@ -0,0 +1,102 @@ + + + + + + + + operator == method - ImplementsFutureVoid class - fake library - Dart API + + + + + + + + + + + + +
                                                        + +
                                                        + + +
                                                        operator ==
                                                        + +
                                                        + +
                                                        + + + +
                                                        +

                                                        operator == method

                                                        + +
                                                        + bool + operator == +(dynamic other) +
                                                        + + + +
                                                        + + + +
                                                        + +
                                                        + + test_package 0.0.1 + + +
                                                        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ImplementsFutureVoid/runtimeType.html b/testing/test_package_docs/fake/ImplementsFutureVoid/runtimeType.html new file mode 100644 index 0000000000..777875c3e5 --- /dev/null +++ b/testing/test_package_docs/fake/ImplementsFutureVoid/runtimeType.html @@ -0,0 +1,106 @@ + + + + + + + + runtimeType property - ImplementsFutureVoid class - fake library - Dart API + + + + + + + + + + + + +
                                                        + +
                                                        + + +
                                                        runtimeType
                                                        + +
                                                        + +
                                                        + + + +
                                                        +

                                                        runtimeType property

                                                        + + +
                                                        + +
                                                        + Type + runtimeType +
                                                        inherited
                                                        +
                                                        + + +
                                                        + +
                                                        + + + +
                                                        + +
                                                        + + test_package 0.0.1 + + +
                                                        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ImplementsFutureVoid/then.html b/testing/test_package_docs/fake/ImplementsFutureVoid/then.html new file mode 100644 index 0000000000..19a0750a3c --- /dev/null +++ b/testing/test_package_docs/fake/ImplementsFutureVoid/then.html @@ -0,0 +1,102 @@ + + + + + + + + then method - ImplementsFutureVoid class - fake library - Dart API + + + + + + + + + + + + +
                                                        + +
                                                        + + +
                                                        then
                                                        + +
                                                        + +
                                                        + + + +
                                                        +

                                                        then<S> method

                                                        + +
                                                        + Future<S> + then +<S>(FutureOr<S> onValue(T value), { Function onError }) +
                                                        + + + +
                                                        + + + +
                                                        + +
                                                        + + test_package 0.0.1 + + +
                                                        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ImplementsFutureVoid/timeout.html b/testing/test_package_docs/fake/ImplementsFutureVoid/timeout.html new file mode 100644 index 0000000000..9ac208df73 --- /dev/null +++ b/testing/test_package_docs/fake/ImplementsFutureVoid/timeout.html @@ -0,0 +1,102 @@ + + + + + + + + timeout method - ImplementsFutureVoid class - fake library - Dart API + + + + + + + + + + + + +
                                                        + +
                                                        + + +
                                                        timeout
                                                        + +
                                                        + +
                                                        + + + +
                                                        +

                                                        timeout method

                                                        + +
                                                        + Future<void> + timeout +(Duration timeLimit, { FutureOr<void> onTimeout() }) +
                                                        + + + +
                                                        + + + +
                                                        + +
                                                        + + test_package 0.0.1 + + +
                                                        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ImplementsFutureVoid/toString.html b/testing/test_package_docs/fake/ImplementsFutureVoid/toString.html new file mode 100644 index 0000000000..f61ab6b2d7 --- /dev/null +++ b/testing/test_package_docs/fake/ImplementsFutureVoid/toString.html @@ -0,0 +1,102 @@ + + + + + + + + toString method - ImplementsFutureVoid class - fake library - Dart API + + + + + + + + + + + + +
                                                        + +
                                                        + + +
                                                        toString
                                                        + +
                                                        + +
                                                        + + + +
                                                        +

                                                        toString method

                                                        + +
                                                        + String + toString +() +
                                                        + + + +
                                                        + + + +
                                                        + +
                                                        + + test_package 0.0.1 + + +
                                                        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ImplementsFutureVoid/whenComplete.html b/testing/test_package_docs/fake/ImplementsFutureVoid/whenComplete.html new file mode 100644 index 0000000000..b08a0fb6f5 --- /dev/null +++ b/testing/test_package_docs/fake/ImplementsFutureVoid/whenComplete.html @@ -0,0 +1,102 @@ + + + + + + + + whenComplete method - ImplementsFutureVoid class - fake library - Dart API + + + + + + + + + + + + +
                                                        + +
                                                        + + +
                                                        whenComplete
                                                        + +
                                                        + +
                                                        + + + +
                                                        +

                                                        whenComplete method

                                                        + +
                                                        + Future<void> + whenComplete +(FutureOr action()) +
                                                        + + + +
                                                        + + + +
                                                        + +
                                                        + + test_package 0.0.1 + + +
                                                        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/ImplicitProperties-class.html b/testing/test_package_docs/fake/ImplicitProperties-class.html index 15c003f9a8..5b5af6c8e5 100644 --- a/testing/test_package_docs/fake/ImplicitProperties-class.html +++ b/testing/test_package_docs/fake/ImplicitProperties-class.html @@ -39,11 +39,14 @@
                                                        fake library
                                                        1. Classes
                                                        2. +
                                                        3. ABaseClass
                                                        4. AClassUsingASuperMixin
                                                        5. AClassWithFancyProperties
                                                        6. AMixinCallingSuper
                                                        7. Annotation
                                                        8. AnotherInterface
                                                        9. +
                                                        10. ATypeTakingClass
                                                        11. +
                                                        12. ATypeTakingClassMixedIn
                                                        13. BaseForDocComments
                                                        14. BaseThingy
                                                        15. BaseThingy2
                                                        16. @@ -52,12 +55,14 @@
                                                          fake library
                                                        17. ConstructorTester
                                                        18. Cool
                                                        19. DocumentWithATable
                                                        20. +
                                                        21. ExtendsFutureVoid
                                                        22. ExtraSpecialList
                                                        23. Foo2
                                                        24. HasGenerics
                                                        25. HasGenericWithExtends
                                                        26. ImplementingThingy
                                                        27. ImplementingThingy2
                                                        28. +
                                                        29. ImplementsFutureVoid
                                                        30. ImplicitProperties
                                                        31. InheritingClassOne
                                                        32. InheritingClassTwo
                                                        33. @@ -75,6 +80,7 @@
                                                          fake library
                                                        34. SpecialList
                                                        35. SubForDocComments
                                                        36. SuperAwesomeClass
                                                        37. +
                                                        38. TypedefUsingClass
                                                        39. WithGetterAndSetter
                                                        40. Constants
                                                        41. @@ -106,6 +112,7 @@
                                                          fake library
                                                        42. Functions
                                                        43. addCallback
                                                        44. addCallback2
                                                        45. +
                                                        46. aVoidParameter
                                                        47. functionWithFunctionParameters
                                                        48. myGenericFunction
                                                        49. onlyPositionalWithNoDefaultNoType
                                                        50. @@ -113,6 +120,7 @@
                                                          fake library
                                                        51. paintImage2
                                                        52. paramFromAnotherLib
                                                        53. paramOfFutureOrNull
                                                        54. +
                                                        55. returningFutureVoid
                                                        56. short
                                                        57. soIntense
                                                        58. thisIsAlsoAsync
                                                        59. @@ -266,7 +274,7 @@

                                                          Methods

                                                          Operators

                                                          - operator ==(other) + operator ==(dynamic other) → bool
                                                          diff --git a/testing/test_package_docs/fake/ImplicitProperties/operator_equals.html b/testing/test_package_docs/fake/ImplicitProperties/operator_equals.html index ec745f217d..ceecfa9828 100644 --- a/testing/test_package_docs/fake/ImplicitProperties/operator_equals.html +++ b/testing/test_package_docs/fake/ImplicitProperties/operator_equals.html @@ -71,7 +71,7 @@

                                                          operator == method

                                                          bool operator == -(other) +(dynamic other)
                                                          diff --git a/testing/test_package_docs/fake/InheritingClassOne-class.html b/testing/test_package_docs/fake/InheritingClassOne-class.html index 272903ce63..d1778e930d 100644 --- a/testing/test_package_docs/fake/InheritingClassOne-class.html +++ b/testing/test_package_docs/fake/InheritingClassOne-class.html @@ -39,11 +39,14 @@
                                                          fake library
                                                          1. Classes
                                                          2. +
                                                          3. ABaseClass
                                                          4. AClassUsingASuperMixin
                                                          5. AClassWithFancyProperties
                                                          6. AMixinCallingSuper
                                                          7. Annotation
                                                          8. AnotherInterface
                                                          9. +
                                                          10. ATypeTakingClass
                                                          11. +
                                                          12. ATypeTakingClassMixedIn
                                                          13. BaseForDocComments
                                                          14. BaseThingy
                                                          15. BaseThingy2
                                                          16. @@ -52,12 +55,14 @@
                                                            fake library
                                                          17. ConstructorTester
                                                          18. Cool
                                                          19. DocumentWithATable
                                                          20. +
                                                          21. ExtendsFutureVoid
                                                          22. ExtraSpecialList
                                                          23. Foo2
                                                          24. HasGenerics
                                                          25. HasGenericWithExtends
                                                          26. ImplementingThingy
                                                          27. ImplementingThingy2
                                                          28. +
                                                          29. ImplementsFutureVoid
                                                          30. ImplicitProperties
                                                          31. InheritingClassOne
                                                          32. InheritingClassTwo
                                                          33. @@ -75,6 +80,7 @@
                                                            fake library
                                                          34. SpecialList
                                                          35. SubForDocComments
                                                          36. SuperAwesomeClass
                                                          37. +
                                                          38. TypedefUsingClass
                                                          39. WithGetterAndSetter
                                                          40. Constants
                                                          41. @@ -106,6 +112,7 @@
                                                            fake library
                                                          42. Functions
                                                          43. addCallback
                                                          44. addCallback2
                                                          45. +
                                                          46. aVoidParameter
                                                          47. functionWithFunctionParameters
                                                          48. myGenericFunction
                                                          49. onlyPositionalWithNoDefaultNoType
                                                          50. @@ -113,6 +120,7 @@
                                                            fake library
                                                          51. paintImage2
                                                          52. paramFromAnotherLib
                                                          53. paramOfFutureOrNull
                                                          54. +
                                                          55. returningFutureVoid
                                                          56. short
                                                          57. soIntense
                                                          58. thisIsAlsoAsync
                                                          59. @@ -219,7 +227,7 @@

                                                            Methods

                                                            Operators

                                                            - operator ==(other) + operator ==(dynamic other) → bool
                                                            diff --git a/testing/test_package_docs/fake/InheritingClassOne/operator_equals.html b/testing/test_package_docs/fake/InheritingClassOne/operator_equals.html index 95cae87019..db48f600ca 100644 --- a/testing/test_package_docs/fake/InheritingClassOne/operator_equals.html +++ b/testing/test_package_docs/fake/InheritingClassOne/operator_equals.html @@ -67,7 +67,7 @@

                                                            operator == method

                                                            bool operator == -(other) +(dynamic other)
                                                            diff --git a/testing/test_package_docs/fake/InheritingClassTwo-class.html b/testing/test_package_docs/fake/InheritingClassTwo-class.html index 68d710e4ee..23f78bb3ad 100644 --- a/testing/test_package_docs/fake/InheritingClassTwo-class.html +++ b/testing/test_package_docs/fake/InheritingClassTwo-class.html @@ -39,11 +39,14 @@
                                                            fake library
                                                            1. Classes
                                                            2. +
                                                            3. ABaseClass
                                                            4. AClassUsingASuperMixin
                                                            5. AClassWithFancyProperties
                                                            6. AMixinCallingSuper
                                                            7. Annotation
                                                            8. AnotherInterface
                                                            9. +
                                                            10. ATypeTakingClass
                                                            11. +
                                                            12. ATypeTakingClassMixedIn
                                                            13. BaseForDocComments
                                                            14. BaseThingy
                                                            15. BaseThingy2
                                                            16. @@ -52,12 +55,14 @@
                                                              fake library
                                                            17. ConstructorTester
                                                            18. Cool
                                                            19. DocumentWithATable
                                                            20. +
                                                            21. ExtendsFutureVoid
                                                            22. ExtraSpecialList
                                                            23. Foo2
                                                            24. HasGenerics
                                                            25. HasGenericWithExtends
                                                            26. ImplementingThingy
                                                            27. ImplementingThingy2
                                                            28. +
                                                            29. ImplementsFutureVoid
                                                            30. ImplicitProperties
                                                            31. InheritingClassOne
                                                            32. InheritingClassTwo
                                                            33. @@ -75,6 +80,7 @@
                                                              fake library
                                                            34. SpecialList
                                                            35. SubForDocComments
                                                            36. SuperAwesomeClass
                                                            37. +
                                                            38. TypedefUsingClass
                                                            39. WithGetterAndSetter
                                                            40. Constants
                                                            41. @@ -106,6 +112,7 @@
                                                              fake library
                                                            42. Functions
                                                            43. addCallback
                                                            44. addCallback2
                                                            45. +
                                                            46. aVoidParameter
                                                            47. functionWithFunctionParameters
                                                            48. myGenericFunction
                                                            49. onlyPositionalWithNoDefaultNoType
                                                            50. @@ -113,6 +120,7 @@
                                                              fake library
                                                            51. paintImage2
                                                            52. paramFromAnotherLib
                                                            53. paramOfFutureOrNull
                                                            54. +
                                                            55. returningFutureVoid
                                                            56. short
                                                            57. soIntense
                                                            58. thisIsAlsoAsync
                                                            59. @@ -219,7 +227,7 @@

                                                              Methods

                                                              Operators

                                                              - operator ==(other) + operator ==(dynamic other) → bool
                                                              diff --git a/testing/test_package_docs/fake/InheritingClassTwo/operator_equals.html b/testing/test_package_docs/fake/InheritingClassTwo/operator_equals.html index 325b1f4df2..f5ab9d8c52 100644 --- a/testing/test_package_docs/fake/InheritingClassTwo/operator_equals.html +++ b/testing/test_package_docs/fake/InheritingClassTwo/operator_equals.html @@ -67,7 +67,7 @@

                                                              operator == method

                                                              bool operator == -(other) +(dynamic other)
                                                              diff --git a/testing/test_package_docs/fake/Interface-class.html b/testing/test_package_docs/fake/Interface-class.html index a12c88651c..d0a27ef03f 100644 --- a/testing/test_package_docs/fake/Interface-class.html +++ b/testing/test_package_docs/fake/Interface-class.html @@ -39,11 +39,14 @@
                                                              fake library
                                                              1. Classes
                                                              2. +
                                                              3. ABaseClass
                                                              4. AClassUsingASuperMixin
                                                              5. AClassWithFancyProperties
                                                              6. AMixinCallingSuper
                                                              7. Annotation
                                                              8. AnotherInterface
                                                              9. +
                                                              10. ATypeTakingClass
                                                              11. +
                                                              12. ATypeTakingClassMixedIn
                                                              13. BaseForDocComments
                                                              14. BaseThingy
                                                              15. BaseThingy2
                                                              16. @@ -52,12 +55,14 @@
                                                                fake library
                                                              17. ConstructorTester
                                                              18. Cool
                                                              19. DocumentWithATable
                                                              20. +
                                                              21. ExtendsFutureVoid
                                                              22. ExtraSpecialList
                                                              23. Foo2
                                                              24. HasGenerics
                                                              25. HasGenericWithExtends
                                                              26. ImplementingThingy
                                                              27. ImplementingThingy2
                                                              28. +
                                                              29. ImplementsFutureVoid
                                                              30. ImplicitProperties
                                                              31. InheritingClassOne
                                                              32. InheritingClassTwo
                                                              33. @@ -75,6 +80,7 @@
                                                                fake library
                                                              34. SpecialList
                                                              35. SubForDocComments
                                                              36. SuperAwesomeClass
                                                              37. +
                                                              38. TypedefUsingClass
                                                              39. WithGetterAndSetter
                                                              40. Constants
                                                              41. @@ -106,6 +112,7 @@
                                                                fake library
                                                              42. Functions
                                                              43. addCallback
                                                              44. addCallback2
                                                              45. +
                                                              46. aVoidParameter
                                                              47. functionWithFunctionParameters
                                                              48. myGenericFunction
                                                              49. onlyPositionalWithNoDefaultNoType
                                                              50. @@ -113,6 +120,7 @@
                                                                fake library
                                                              51. paintImage2
                                                              52. paramFromAnotherLib
                                                              53. paramOfFutureOrNull
                                                              54. +
                                                              55. returningFutureVoid
                                                              56. short
                                                              57. soIntense
                                                              58. thisIsAlsoAsync
                                                              59. @@ -225,7 +233,7 @@

                                                                Methods

                                                                Operators

                                                                - operator ==(other) + operator ==(dynamic other) → bool
                                                                diff --git a/testing/test_package_docs/fake/Interface/operator_equals.html b/testing/test_package_docs/fake/Interface/operator_equals.html index 0f5aa2cc5b..9b77b13574 100644 --- a/testing/test_package_docs/fake/Interface/operator_equals.html +++ b/testing/test_package_docs/fake/Interface/operator_equals.html @@ -66,7 +66,7 @@

                                                                operator == method

                                                                bool operator == -(other) +(dynamic other)
                                                                diff --git a/testing/test_package_docs/fake/LongFirstLine-class.html b/testing/test_package_docs/fake/LongFirstLine-class.html index 391f8e3084..6de3b2fbba 100644 --- a/testing/test_package_docs/fake/LongFirstLine-class.html +++ b/testing/test_package_docs/fake/LongFirstLine-class.html @@ -39,11 +39,14 @@
                                                                fake library
                                                                1. Classes
                                                                2. +
                                                                3. ABaseClass
                                                                4. AClassUsingASuperMixin
                                                                5. AClassWithFancyProperties
                                                                6. AMixinCallingSuper
                                                                7. Annotation
                                                                8. AnotherInterface
                                                                9. +
                                                                10. ATypeTakingClass
                                                                11. +
                                                                12. ATypeTakingClassMixedIn
                                                                13. BaseForDocComments
                                                                14. BaseThingy
                                                                15. BaseThingy2
                                                                16. @@ -52,12 +55,14 @@
                                                                  fake library
                                                                17. ConstructorTester
                                                                18. Cool
                                                                19. DocumentWithATable
                                                                20. +
                                                                21. ExtendsFutureVoid
                                                                22. ExtraSpecialList
                                                                23. Foo2
                                                                24. HasGenerics
                                                                25. HasGenericWithExtends
                                                                26. ImplementingThingy
                                                                27. ImplementingThingy2
                                                                28. +
                                                                29. ImplementsFutureVoid
                                                                30. ImplicitProperties
                                                                31. InheritingClassOne
                                                                32. InheritingClassTwo
                                                                33. @@ -75,6 +80,7 @@
                                                                  fake library
                                                                34. SpecialList
                                                                35. SubForDocComments
                                                                36. SuperAwesomeClass
                                                                37. +
                                                                38. TypedefUsingClass
                                                                39. WithGetterAndSetter
                                                                40. Constants
                                                                41. @@ -106,6 +112,7 @@
                                                                  fake library
                                                                42. Functions
                                                                43. addCallback
                                                                44. addCallback2
                                                                45. +
                                                                46. aVoidParameter
                                                                47. functionWithFunctionParameters
                                                                48. myGenericFunction
                                                                49. onlyPositionalWithNoDefaultNoType
                                                                50. @@ -113,6 +120,7 @@
                                                                  fake library
                                                                51. paintImage2
                                                                52. paramFromAnotherLib
                                                                53. paramOfFutureOrNull
                                                                54. +
                                                                55. returningFutureVoid
                                                                56. short
                                                                57. soIntense
                                                                58. thisIsAlsoAsync
                                                                59. @@ -273,7 +281,7 @@

                                                                  Methods

                                                                  - optionalParams(first, { second, int third }) + optionalParams(dynamic first, { dynamic second, int third }) → bool
                                                                  @@ -291,7 +299,7 @@

                                                                  Methods

                                                                  - twoParams(String one, two) + twoParams(String one, dynamic two) → int
                                                                  @@ -351,7 +359,7 @@

                                                                  Operators

                                                                  - operator -(other) + operator -(dynamic other) SuperAwesomeClass
                                                                  @@ -360,7 +368,7 @@

                                                                  Operators

                                                                  inherited
                                                                  - operator ==(other) + operator ==(dynamic other) → bool
                                                                  @@ -415,7 +423,7 @@

                                                                  Static Methods

                                                                  - staticMethodReturnsVoid(dynamicThing) + staticMethodReturnsVoid(dynamic dynamicThing) → void
                                                                  diff --git a/testing/test_package_docs/fake/LongFirstLine/optionalParams.html b/testing/test_package_docs/fake/LongFirstLine/optionalParams.html index 5b3d0e23c6..58d6138be5 100644 --- a/testing/test_package_docs/fake/LongFirstLine/optionalParams.html +++ b/testing/test_package_docs/fake/LongFirstLine/optionalParams.html @@ -90,7 +90,7 @@

                                                                  optionalParams method

                                                                  bool optionalParams -(first, { second, int third }) +(dynamic first, { dynamic second, int third })

                                                                  One dynamic param, two named optionals.

                                                                  diff --git a/testing/test_package_docs/fake/LongFirstLine/staticMethodReturnsVoid.html b/testing/test_package_docs/fake/LongFirstLine/staticMethodReturnsVoid.html index 928f9e09b2..c6fb2b91ff 100644 --- a/testing/test_package_docs/fake/LongFirstLine/staticMethodReturnsVoid.html +++ b/testing/test_package_docs/fake/LongFirstLine/staticMethodReturnsVoid.html @@ -90,7 +90,7 @@

                                                                  staticMethodReturnsVoid method

                                                                  void staticMethodReturnsVoid -(dynamicThing) +(dynamic dynamicThing)

                                                                  A static method that takes a single dynamic thing, and returns void.

                                                                  diff --git a/testing/test_package_docs/fake/LongFirstLine/twoParams.html b/testing/test_package_docs/fake/LongFirstLine/twoParams.html index 4717bb4f0b..934758f74f 100644 --- a/testing/test_package_docs/fake/LongFirstLine/twoParams.html +++ b/testing/test_package_docs/fake/LongFirstLine/twoParams.html @@ -90,7 +90,7 @@

                                                                  twoParams method

                                                                  int twoParams -(String one, two) +(String one, dynamic two)

                                                                  Two params, the first has a type annotation, the second does not.

                                                                  diff --git a/testing/test_package_docs/fake/LotsAndLotsOfParameters.html b/testing/test_package_docs/fake/LotsAndLotsOfParameters.html index 5a524b2ae3..1437a03568 100644 --- a/testing/test_package_docs/fake/LotsAndLotsOfParameters.html +++ b/testing/test_package_docs/fake/LotsAndLotsOfParameters.html @@ -39,11 +39,14 @@
                                                                  fake library
                                                                  1. Classes
                                                                  2. +
                                                                  3. ABaseClass
                                                                  4. AClassUsingASuperMixin
                                                                  5. AClassWithFancyProperties
                                                                  6. AMixinCallingSuper
                                                                  7. Annotation
                                                                  8. AnotherInterface
                                                                  9. +
                                                                  10. ATypeTakingClass
                                                                  11. +
                                                                  12. ATypeTakingClassMixedIn
                                                                  13. BaseForDocComments
                                                                  14. BaseThingy
                                                                  15. BaseThingy2
                                                                  16. @@ -52,12 +55,14 @@
                                                                    fake library
                                                                  17. ConstructorTester
                                                                  18. Cool
                                                                  19. DocumentWithATable
                                                                  20. +
                                                                  21. ExtendsFutureVoid
                                                                  22. ExtraSpecialList
                                                                  23. Foo2
                                                                  24. HasGenerics
                                                                  25. HasGenericWithExtends
                                                                  26. ImplementingThingy
                                                                  27. ImplementingThingy2
                                                                  28. +
                                                                  29. ImplementsFutureVoid
                                                                  30. ImplicitProperties
                                                                  31. InheritingClassOne
                                                                  32. InheritingClassTwo
                                                                  33. @@ -75,6 +80,7 @@
                                                                    fake library
                                                                  34. SpecialList
                                                                  35. SubForDocComments
                                                                  36. SuperAwesomeClass
                                                                  37. +
                                                                  38. TypedefUsingClass
                                                                  39. WithGetterAndSetter
                                                                  40. Constants
                                                                  41. @@ -106,6 +112,7 @@
                                                                    fake library
                                                                  42. Functions
                                                                  43. addCallback
                                                                  44. addCallback2
                                                                  45. +
                                                                  46. aVoidParameter
                                                                  47. functionWithFunctionParameters
                                                                  48. myGenericFunction
                                                                  49. onlyPositionalWithNoDefaultNoType
                                                                  50. @@ -113,6 +120,7 @@
                                                                    fake library
                                                                  51. paintImage2
                                                                  52. paramFromAnotherLib
                                                                  53. paramOfFutureOrNull
                                                                  54. +
                                                                  55. returningFutureVoid
                                                                  56. short
                                                                  57. soIntense
                                                                  58. thisIsAlsoAsync
                                                                  59. @@ -147,7 +155,7 @@

                                                                    LotsAndLotsOfParameters typedef

                                                                    int LotsAndLotsOfParameters -(so, many, parameters, it, should, wrap, when, converted, to, html, documentation) +(dynamic so, dynamic many, dynamic parameters, dynamic it, dynamic should, dynamic wrap, dynamic when, dynamic converted, dynamic to, dynamic html, dynamic documentation)
                                                                    diff --git a/testing/test_package_docs/fake/MIEEBase-class.html b/testing/test_package_docs/fake/MIEEBase-class.html index 9b54ac4cc3..aeee45bfa3 100644 --- a/testing/test_package_docs/fake/MIEEBase-class.html +++ b/testing/test_package_docs/fake/MIEEBase-class.html @@ -39,11 +39,14 @@
                                                                    fake library
                                                                    1. Classes
                                                                    2. +
                                                                    3. ABaseClass
                                                                    4. AClassUsingASuperMixin
                                                                    5. AClassWithFancyProperties
                                                                    6. AMixinCallingSuper
                                                                    7. Annotation
                                                                    8. AnotherInterface
                                                                    9. +
                                                                    10. ATypeTakingClass
                                                                    11. +
                                                                    12. ATypeTakingClassMixedIn
                                                                    13. BaseForDocComments
                                                                    14. BaseThingy
                                                                    15. BaseThingy2
                                                                    16. @@ -52,12 +55,14 @@
                                                                      fake library
                                                                    17. ConstructorTester
                                                                    18. Cool
                                                                    19. DocumentWithATable
                                                                    20. +
                                                                    21. ExtendsFutureVoid
                                                                    22. ExtraSpecialList
                                                                    23. Foo2
                                                                    24. HasGenerics
                                                                    25. HasGenericWithExtends
                                                                    26. ImplementingThingy
                                                                    27. ImplementingThingy2
                                                                    28. +
                                                                    29. ImplementsFutureVoid
                                                                    30. ImplicitProperties
                                                                    31. InheritingClassOne
                                                                    32. InheritingClassTwo
                                                                    33. @@ -75,6 +80,7 @@
                                                                      fake library
                                                                    34. SpecialList
                                                                    35. SubForDocComments
                                                                    36. SuperAwesomeClass
                                                                    37. +
                                                                    38. TypedefUsingClass
                                                                    39. WithGetterAndSetter
                                                                    40. Constants
                                                                    41. @@ -106,6 +112,7 @@
                                                                      fake library
                                                                    42. Functions
                                                                    43. addCallback
                                                                    44. addCallback2
                                                                    45. +
                                                                    46. aVoidParameter
                                                                    47. functionWithFunctionParameters
                                                                    48. myGenericFunction
                                                                    49. onlyPositionalWithNoDefaultNoType
                                                                    50. @@ -113,6 +120,7 @@
                                                                      fake library
                                                                    51. paintImage2
                                                                    52. paramFromAnotherLib
                                                                    53. paramOfFutureOrNull
                                                                    54. +
                                                                    55. returningFutureVoid
                                                                    56. short
                                                                    57. soIntense
                                                                    58. thisIsAlsoAsync
                                                                    59. @@ -228,7 +236,7 @@

                                                                      Methods

                                                                      Operators

                                                                      - operator ==(other) + operator ==(dynamic other) → bool
                                                                      diff --git a/testing/test_package_docs/fake/MIEEMixin-class.html b/testing/test_package_docs/fake/MIEEMixin-class.html index 7783cff694..2c8263c775 100644 --- a/testing/test_package_docs/fake/MIEEMixin-class.html +++ b/testing/test_package_docs/fake/MIEEMixin-class.html @@ -39,11 +39,14 @@
                                                                      fake library
                                                                      1. Classes
                                                                      2. +
                                                                      3. ABaseClass
                                                                      4. AClassUsingASuperMixin
                                                                      5. AClassWithFancyProperties
                                                                      6. AMixinCallingSuper
                                                                      7. Annotation
                                                                      8. AnotherInterface
                                                                      9. +
                                                                      10. ATypeTakingClass
                                                                      11. +
                                                                      12. ATypeTakingClassMixedIn
                                                                      13. BaseForDocComments
                                                                      14. BaseThingy
                                                                      15. BaseThingy2
                                                                      16. @@ -52,12 +55,14 @@
                                                                        fake library
                                                                      17. ConstructorTester
                                                                      18. Cool
                                                                      19. DocumentWithATable
                                                                      20. +
                                                                      21. ExtendsFutureVoid
                                                                      22. ExtraSpecialList
                                                                      23. Foo2
                                                                      24. HasGenerics
                                                                      25. HasGenericWithExtends
                                                                      26. ImplementingThingy
                                                                      27. ImplementingThingy2
                                                                      28. +
                                                                      29. ImplementsFutureVoid
                                                                      30. ImplicitProperties
                                                                      31. InheritingClassOne
                                                                      32. InheritingClassTwo
                                                                      33. @@ -75,6 +80,7 @@
                                                                        fake library
                                                                      34. SpecialList
                                                                      35. SubForDocComments
                                                                      36. SuperAwesomeClass
                                                                      37. +
                                                                      38. TypedefUsingClass
                                                                      39. WithGetterAndSetter
                                                                      40. Constants
                                                                      41. @@ -106,6 +112,7 @@
                                                                        fake library
                                                                      42. Functions
                                                                      43. addCallback
                                                                      44. addCallback2
                                                                      45. +
                                                                      46. aVoidParameter
                                                                      47. functionWithFunctionParameters
                                                                      48. myGenericFunction
                                                                      49. onlyPositionalWithNoDefaultNoType
                                                                      50. @@ -113,6 +120,7 @@
                                                                        fake library
                                                                      51. paintImage2
                                                                      52. paramFromAnotherLib
                                                                      53. paramOfFutureOrNull
                                                                      54. +
                                                                      55. returningFutureVoid
                                                                      56. short
                                                                      57. soIntense
                                                                      58. thisIsAlsoAsync
                                                                      59. @@ -237,7 +245,7 @@

                                                                        Operators

                                                                        - operator ==(other) + operator ==(dynamic other) → bool
                                                                        diff --git a/testing/test_package_docs/fake/MIEEMixinWithOverride-class.html b/testing/test_package_docs/fake/MIEEMixinWithOverride-class.html index 7df7a1be53..a1d52a936a 100644 --- a/testing/test_package_docs/fake/MIEEMixinWithOverride-class.html +++ b/testing/test_package_docs/fake/MIEEMixinWithOverride-class.html @@ -39,11 +39,14 @@
                                                                        fake library
                                                                        1. Classes
                                                                        2. +
                                                                        3. ABaseClass
                                                                        4. AClassUsingASuperMixin
                                                                        5. AClassWithFancyProperties
                                                                        6. AMixinCallingSuper
                                                                        7. Annotation
                                                                        8. AnotherInterface
                                                                        9. +
                                                                        10. ATypeTakingClass
                                                                        11. +
                                                                        12. ATypeTakingClassMixedIn
                                                                        13. BaseForDocComments
                                                                        14. BaseThingy
                                                                        15. BaseThingy2
                                                                        16. @@ -52,12 +55,14 @@
                                                                          fake library
                                                                        17. ConstructorTester
                                                                        18. Cool
                                                                        19. DocumentWithATable
                                                                        20. +
                                                                        21. ExtendsFutureVoid
                                                                        22. ExtraSpecialList
                                                                        23. Foo2
                                                                        24. HasGenerics
                                                                        25. HasGenericWithExtends
                                                                        26. ImplementingThingy
                                                                        27. ImplementingThingy2
                                                                        28. +
                                                                        29. ImplementsFutureVoid
                                                                        30. ImplicitProperties
                                                                        31. InheritingClassOne
                                                                        32. InheritingClassTwo
                                                                        33. @@ -75,6 +80,7 @@
                                                                          fake library
                                                                        34. SpecialList
                                                                        35. SubForDocComments
                                                                        36. SuperAwesomeClass
                                                                        37. +
                                                                        38. TypedefUsingClass
                                                                        39. WithGetterAndSetter
                                                                        40. Constants
                                                                        41. @@ -106,6 +112,7 @@
                                                                          fake library
                                                                        42. Functions
                                                                        43. addCallback
                                                                        44. addCallback2
                                                                        45. +
                                                                        46. aVoidParameter
                                                                        47. functionWithFunctionParameters
                                                                        48. myGenericFunction
                                                                        49. onlyPositionalWithNoDefaultNoType
                                                                        50. @@ -113,6 +120,7 @@
                                                                          fake library
                                                                        51. paintImage2
                                                                        52. paramFromAnotherLib
                                                                        53. paramOfFutureOrNull
                                                                        54. +
                                                                        55. returningFutureVoid
                                                                        56. short
                                                                        57. soIntense
                                                                        58. thisIsAlsoAsync
                                                                        59. @@ -230,7 +238,7 @@

                                                                          Methods

                                                                          Operators

                                                                          - operator ==(other) + operator ==(dynamic other) → bool
                                                                          diff --git a/testing/test_package_docs/fake/MIEEThing-class.html b/testing/test_package_docs/fake/MIEEThing-class.html index 7959d60b6f..5e9889cea7 100644 --- a/testing/test_package_docs/fake/MIEEThing-class.html +++ b/testing/test_package_docs/fake/MIEEThing-class.html @@ -39,11 +39,14 @@
                                                                          fake library
                                                                          1. Classes
                                                                          2. +
                                                                          3. ABaseClass
                                                                          4. AClassUsingASuperMixin
                                                                          5. AClassWithFancyProperties
                                                                          6. AMixinCallingSuper
                                                                          7. Annotation
                                                                          8. AnotherInterface
                                                                          9. +
                                                                          10. ATypeTakingClass
                                                                          11. +
                                                                          12. ATypeTakingClassMixedIn
                                                                          13. BaseForDocComments
                                                                          14. BaseThingy
                                                                          15. BaseThingy2
                                                                          16. @@ -52,12 +55,14 @@
                                                                            fake library
                                                                          17. ConstructorTester
                                                                          18. Cool
                                                                          19. DocumentWithATable
                                                                          20. +
                                                                          21. ExtendsFutureVoid
                                                                          22. ExtraSpecialList
                                                                          23. Foo2
                                                                          24. HasGenerics
                                                                          25. HasGenericWithExtends
                                                                          26. ImplementingThingy
                                                                          27. ImplementingThingy2
                                                                          28. +
                                                                          29. ImplementsFutureVoid
                                                                          30. ImplicitProperties
                                                                          31. InheritingClassOne
                                                                          32. InheritingClassTwo
                                                                          33. @@ -75,6 +80,7 @@
                                                                            fake library
                                                                          34. SpecialList
                                                                          35. SubForDocComments
                                                                          36. SuperAwesomeClass
                                                                          37. +
                                                                          38. TypedefUsingClass
                                                                          39. WithGetterAndSetter
                                                                          40. Constants
                                                                          41. @@ -106,6 +112,7 @@
                                                                            fake library
                                                                          42. Functions
                                                                          43. addCallback
                                                                          44. addCallback2
                                                                          45. +
                                                                          46. aVoidParameter
                                                                          47. functionWithFunctionParameters
                                                                          48. myGenericFunction
                                                                          49. onlyPositionalWithNoDefaultNoType
                                                                          50. @@ -113,6 +120,7 @@
                                                                            fake library
                                                                          51. paintImage2
                                                                          52. paramFromAnotherLib
                                                                          53. paramOfFutureOrNull
                                                                          54. +
                                                                          55. returningFutureVoid
                                                                          56. short
                                                                          57. soIntense
                                                                          58. thisIsAlsoAsync
                                                                          59. @@ -231,7 +239,7 @@

                                                                            Operators

                                                                            - operator ==(other) + operator ==(dynamic other) → bool
                                                                            diff --git a/testing/test_package_docs/fake/MIEEThing/operator_equals.html b/testing/test_package_docs/fake/MIEEThing/operator_equals.html index aa512f44c2..e4db75ef11 100644 --- a/testing/test_package_docs/fake/MIEEThing/operator_equals.html +++ b/testing/test_package_docs/fake/MIEEThing/operator_equals.html @@ -67,7 +67,7 @@

                                                                            operator == method

                                                                            bool operator == -(other) +(dynamic other)
                                                                            diff --git a/testing/test_package_docs/fake/MixMeIn-class.html b/testing/test_package_docs/fake/MixMeIn-class.html index 6f2652135e..a3647b3fff 100644 --- a/testing/test_package_docs/fake/MixMeIn-class.html +++ b/testing/test_package_docs/fake/MixMeIn-class.html @@ -39,11 +39,14 @@
                                                                            fake library
                                                                            1. Classes
                                                                            2. +
                                                                            3. ABaseClass
                                                                            4. AClassUsingASuperMixin
                                                                            5. AClassWithFancyProperties
                                                                            6. AMixinCallingSuper
                                                                            7. Annotation
                                                                            8. AnotherInterface
                                                                            9. +
                                                                            10. ATypeTakingClass
                                                                            11. +
                                                                            12. ATypeTakingClassMixedIn
                                                                            13. BaseForDocComments
                                                                            14. BaseThingy
                                                                            15. BaseThingy2
                                                                            16. @@ -52,12 +55,14 @@
                                                                              fake library
                                                                            17. ConstructorTester
                                                                            18. Cool
                                                                            19. DocumentWithATable
                                                                            20. +
                                                                            21. ExtendsFutureVoid
                                                                            22. ExtraSpecialList
                                                                            23. Foo2
                                                                            24. HasGenerics
                                                                            25. HasGenericWithExtends
                                                                            26. ImplementingThingy
                                                                            27. ImplementingThingy2
                                                                            28. +
                                                                            29. ImplementsFutureVoid
                                                                            30. ImplicitProperties
                                                                            31. InheritingClassOne
                                                                            32. InheritingClassTwo
                                                                            33. @@ -75,6 +80,7 @@
                                                                              fake library
                                                                            34. SpecialList
                                                                            35. SubForDocComments
                                                                            36. SuperAwesomeClass
                                                                            37. +
                                                                            38. TypedefUsingClass
                                                                            39. WithGetterAndSetter
                                                                            40. Constants
                                                                            41. @@ -106,6 +112,7 @@
                                                                              fake library
                                                                            42. Functions
                                                                            43. addCallback
                                                                            44. addCallback2
                                                                            45. +
                                                                            46. aVoidParameter
                                                                            47. functionWithFunctionParameters
                                                                            48. myGenericFunction
                                                                            49. onlyPositionalWithNoDefaultNoType
                                                                            50. @@ -113,6 +120,7 @@
                                                                              fake library
                                                                            51. paintImage2
                                                                            52. paramFromAnotherLib
                                                                            53. paramOfFutureOrNull
                                                                            54. +
                                                                            55. returningFutureVoid
                                                                            56. short
                                                                            57. soIntense
                                                                            58. thisIsAlsoAsync
                                                                            59. @@ -225,7 +233,7 @@

                                                                              Methods

                                                                              Operators

                                                                              - operator ==(other) + operator ==(dynamic other) → bool
                                                                              diff --git a/testing/test_package_docs/fake/MixMeIn/operator_equals.html b/testing/test_package_docs/fake/MixMeIn/operator_equals.html index c20e066dc8..15cccea6c8 100644 --- a/testing/test_package_docs/fake/MixMeIn/operator_equals.html +++ b/testing/test_package_docs/fake/MixMeIn/operator_equals.html @@ -66,7 +66,7 @@

                                                                              operator == method

                                                                              bool operator == -(other) +(dynamic other)
                                                                              diff --git a/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html b/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html index df2e4ee0d1..983929b037 100644 --- a/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html +++ b/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html @@ -39,11 +39,14 @@
                                                                              fake library
                                                                              1. Classes
                                                                              2. +
                                                                              3. ABaseClass
                                                                              4. AClassUsingASuperMixin
                                                                              5. AClassWithFancyProperties
                                                                              6. AMixinCallingSuper
                                                                              7. Annotation
                                                                              8. AnotherInterface
                                                                              9. +
                                                                              10. ATypeTakingClass
                                                                              11. +
                                                                              12. ATypeTakingClassMixedIn
                                                                              13. BaseForDocComments
                                                                              14. BaseThingy
                                                                              15. BaseThingy2
                                                                              16. @@ -52,12 +55,14 @@
                                                                                fake library
                                                                              17. ConstructorTester
                                                                              18. Cool
                                                                              19. DocumentWithATable
                                                                              20. +
                                                                              21. ExtendsFutureVoid
                                                                              22. ExtraSpecialList
                                                                              23. Foo2
                                                                              24. HasGenerics
                                                                              25. HasGenericWithExtends
                                                                              26. ImplementingThingy
                                                                              27. ImplementingThingy2
                                                                              28. +
                                                                              29. ImplementsFutureVoid
                                                                              30. ImplicitProperties
                                                                              31. InheritingClassOne
                                                                              32. InheritingClassTwo
                                                                              33. @@ -75,6 +80,7 @@
                                                                                fake library
                                                                              34. SpecialList
                                                                              35. SubForDocComments
                                                                              36. SuperAwesomeClass
                                                                              37. +
                                                                              38. TypedefUsingClass
                                                                              39. WithGetterAndSetter
                                                                              40. Constants
                                                                              41. @@ -106,6 +112,7 @@
                                                                                fake library
                                                                              42. Functions
                                                                              43. addCallback
                                                                              44. addCallback2
                                                                              45. +
                                                                              46. aVoidParameter
                                                                              47. functionWithFunctionParameters
                                                                              48. myGenericFunction
                                                                              49. onlyPositionalWithNoDefaultNoType
                                                                              50. @@ -113,6 +120,7 @@
                                                                                fake library
                                                                              51. paintImage2
                                                                              52. paramFromAnotherLib
                                                                              53. paramOfFutureOrNull
                                                                              54. +
                                                                              55. returningFutureVoid
                                                                              56. short
                                                                              57. soIntense
                                                                              58. thisIsAlsoAsync
                                                                              59. 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 d1fd86beb5..261d49770a 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 @@ -39,11 +39,14 @@
                                                                                fake library
                                                                                1. Classes
                                                                                2. +
                                                                                3. ABaseClass
                                                                                4. AClassUsingASuperMixin
                                                                                5. AClassWithFancyProperties
                                                                                6. AMixinCallingSuper
                                                                                7. Annotation
                                                                                8. AnotherInterface
                                                                                9. +
                                                                                10. ATypeTakingClass
                                                                                11. +
                                                                                12. ATypeTakingClassMixedIn
                                                                                13. BaseForDocComments
                                                                                14. BaseThingy
                                                                                15. BaseThingy2
                                                                                16. @@ -52,12 +55,14 @@
                                                                                  fake library
                                                                                17. ConstructorTester
                                                                                18. Cool
                                                                                19. DocumentWithATable
                                                                                20. +
                                                                                21. ExtendsFutureVoid
                                                                                22. ExtraSpecialList
                                                                                23. Foo2
                                                                                24. HasGenerics
                                                                                25. HasGenericWithExtends
                                                                                26. ImplementingThingy
                                                                                27. ImplementingThingy2
                                                                                28. +
                                                                                29. ImplementsFutureVoid
                                                                                30. ImplicitProperties
                                                                                31. InheritingClassOne
                                                                                32. InheritingClassTwo
                                                                                33. @@ -75,6 +80,7 @@
                                                                                  fake library
                                                                                34. SpecialList
                                                                                35. SubForDocComments
                                                                                36. SuperAwesomeClass
                                                                                37. +
                                                                                38. TypedefUsingClass
                                                                                39. WithGetterAndSetter
                                                                                40. Constants
                                                                                41. @@ -106,6 +112,7 @@
                                                                                  fake library
                                                                                42. Functions
                                                                                43. addCallback
                                                                                44. addCallback2
                                                                                45. +
                                                                                46. aVoidParameter
                                                                                47. functionWithFunctionParameters
                                                                                48. myGenericFunction
                                                                                49. onlyPositionalWithNoDefaultNoType
                                                                                50. @@ -113,6 +120,7 @@
                                                                                  fake library
                                                                                51. paintImage2
                                                                                52. paramFromAnotherLib
                                                                                53. paramOfFutureOrNull
                                                                                54. +
                                                                                55. returningFutureVoid
                                                                                56. short
                                                                                57. soIntense
                                                                                58. thisIsAlsoAsync
                                                                                59. diff --git a/testing/test_package_docs/fake/NewGenericTypedef.html b/testing/test_package_docs/fake/NewGenericTypedef.html index 1a620ad076..e091dd33c6 100644 --- a/testing/test_package_docs/fake/NewGenericTypedef.html +++ b/testing/test_package_docs/fake/NewGenericTypedef.html @@ -39,11 +39,14 @@
                                                                                  fake library
                                                                                  1. Classes
                                                                                  2. +
                                                                                  3. ABaseClass
                                                                                  4. AClassUsingASuperMixin
                                                                                  5. AClassWithFancyProperties
                                                                                  6. AMixinCallingSuper
                                                                                  7. Annotation
                                                                                  8. AnotherInterface
                                                                                  9. +
                                                                                  10. ATypeTakingClass
                                                                                  11. +
                                                                                  12. ATypeTakingClassMixedIn
                                                                                  13. BaseForDocComments
                                                                                  14. BaseThingy
                                                                                  15. BaseThingy2
                                                                                  16. @@ -52,12 +55,14 @@
                                                                                    fake library
                                                                                  17. ConstructorTester
                                                                                  18. Cool
                                                                                  19. DocumentWithATable
                                                                                  20. +
                                                                                  21. ExtendsFutureVoid
                                                                                  22. ExtraSpecialList
                                                                                  23. Foo2
                                                                                  24. HasGenerics
                                                                                  25. HasGenericWithExtends
                                                                                  26. ImplementingThingy
                                                                                  27. ImplementingThingy2
                                                                                  28. +
                                                                                  29. ImplementsFutureVoid
                                                                                  30. ImplicitProperties
                                                                                  31. InheritingClassOne
                                                                                  32. InheritingClassTwo
                                                                                  33. @@ -75,6 +80,7 @@
                                                                                    fake library
                                                                                  34. SpecialList
                                                                                  35. SubForDocComments
                                                                                  36. SuperAwesomeClass
                                                                                  37. +
                                                                                  38. TypedefUsingClass
                                                                                  39. WithGetterAndSetter
                                                                                  40. Constants
                                                                                  41. @@ -106,6 +112,7 @@
                                                                                    fake library
                                                                                  42. Functions
                                                                                  43. addCallback
                                                                                  44. addCallback2
                                                                                  45. +
                                                                                  46. aVoidParameter
                                                                                  47. functionWithFunctionParameters
                                                                                  48. myGenericFunction
                                                                                  49. onlyPositionalWithNoDefaultNoType
                                                                                  50. @@ -113,6 +120,7 @@
                                                                                    fake library
                                                                                  51. paintImage2
                                                                                  52. paramFromAnotherLib
                                                                                  53. paramOfFutureOrNull
                                                                                  54. +
                                                                                  55. returningFutureVoid
                                                                                  56. short
                                                                                  57. soIntense
                                                                                  58. thisIsAlsoAsync
                                                                                  59. diff --git a/testing/test_package_docs/fake/NotAMixin-class.html b/testing/test_package_docs/fake/NotAMixin-class.html index 7adf5a8295..4886938c26 100644 --- a/testing/test_package_docs/fake/NotAMixin-class.html +++ b/testing/test_package_docs/fake/NotAMixin-class.html @@ -39,11 +39,14 @@
                                                                                    fake library
                                                                                    1. Classes
                                                                                    2. +
                                                                                    3. ABaseClass
                                                                                    4. AClassUsingASuperMixin
                                                                                    5. AClassWithFancyProperties
                                                                                    6. AMixinCallingSuper
                                                                                    7. Annotation
                                                                                    8. AnotherInterface
                                                                                    9. +
                                                                                    10. ATypeTakingClass
                                                                                    11. +
                                                                                    12. ATypeTakingClassMixedIn
                                                                                    13. BaseForDocComments
                                                                                    14. BaseThingy
                                                                                    15. BaseThingy2
                                                                                    16. @@ -52,12 +55,14 @@
                                                                                      fake library
                                                                                    17. ConstructorTester
                                                                                    18. Cool
                                                                                    19. DocumentWithATable
                                                                                    20. +
                                                                                    21. ExtendsFutureVoid
                                                                                    22. ExtraSpecialList
                                                                                    23. Foo2
                                                                                    24. HasGenerics
                                                                                    25. HasGenericWithExtends
                                                                                    26. ImplementingThingy
                                                                                    27. ImplementingThingy2
                                                                                    28. +
                                                                                    29. ImplementsFutureVoid
                                                                                    30. ImplicitProperties
                                                                                    31. InheritingClassOne
                                                                                    32. InheritingClassTwo
                                                                                    33. @@ -75,6 +80,7 @@
                                                                                      fake library
                                                                                    34. SpecialList
                                                                                    35. SubForDocComments
                                                                                    36. SuperAwesomeClass
                                                                                    37. +
                                                                                    38. TypedefUsingClass
                                                                                    39. WithGetterAndSetter
                                                                                    40. Constants
                                                                                    41. @@ -106,6 +112,7 @@
                                                                                      fake library
                                                                                    42. Functions
                                                                                    43. addCallback
                                                                                    44. addCallback2
                                                                                    45. +
                                                                                    46. aVoidParameter
                                                                                    47. functionWithFunctionParameters
                                                                                    48. myGenericFunction
                                                                                    49. onlyPositionalWithNoDefaultNoType
                                                                                    50. @@ -113,6 +120,7 @@
                                                                                      fake library
                                                                                    51. paintImage2
                                                                                    52. paramFromAnotherLib
                                                                                    53. paramOfFutureOrNull
                                                                                    54. +
                                                                                    55. returningFutureVoid
                                                                                    56. short
                                                                                    57. soIntense
                                                                                    58. thisIsAlsoAsync
                                                                                    59. @@ -230,7 +238,7 @@

                                                                                      Methods

                                                                                      Operators

                                                                                      - operator ==(other) + operator ==(dynamic other) → bool
                                                                                      diff --git a/testing/test_package_docs/fake/NotAMixin/operator_equals.html b/testing/test_package_docs/fake/NotAMixin/operator_equals.html index 5d5f572e8d..ec62d4df3f 100644 --- a/testing/test_package_docs/fake/NotAMixin/operator_equals.html +++ b/testing/test_package_docs/fake/NotAMixin/operator_equals.html @@ -67,7 +67,7 @@

                                                                                      operator == method

                                                                                      bool operator == -(other) +(dynamic other)
                                                                                      diff --git a/testing/test_package_docs/fake/Oops-class.html b/testing/test_package_docs/fake/Oops-class.html index c9b6e8893b..f45a6e2748 100644 --- a/testing/test_package_docs/fake/Oops-class.html +++ b/testing/test_package_docs/fake/Oops-class.html @@ -39,11 +39,14 @@
                                                                                      fake library
                                                                                      1. Classes
                                                                                      2. +
                                                                                      3. ABaseClass
                                                                                      4. AClassUsingASuperMixin
                                                                                      5. AClassWithFancyProperties
                                                                                      6. AMixinCallingSuper
                                                                                      7. Annotation
                                                                                      8. AnotherInterface
                                                                                      9. +
                                                                                      10. ATypeTakingClass
                                                                                      11. +
                                                                                      12. ATypeTakingClassMixedIn
                                                                                      13. BaseForDocComments
                                                                                      14. BaseThingy
                                                                                      15. BaseThingy2
                                                                                      16. @@ -52,12 +55,14 @@
                                                                                        fake library
                                                                                      17. ConstructorTester
                                                                                      18. Cool
                                                                                      19. DocumentWithATable
                                                                                      20. +
                                                                                      21. ExtendsFutureVoid
                                                                                      22. ExtraSpecialList
                                                                                      23. Foo2
                                                                                      24. HasGenerics
                                                                                      25. HasGenericWithExtends
                                                                                      26. ImplementingThingy
                                                                                      27. ImplementingThingy2
                                                                                      28. +
                                                                                      29. ImplementsFutureVoid
                                                                                      30. ImplicitProperties
                                                                                      31. InheritingClassOne
                                                                                      32. InheritingClassTwo
                                                                                      33. @@ -75,6 +80,7 @@
                                                                                        fake library
                                                                                      34. SpecialList
                                                                                      35. SubForDocComments
                                                                                      36. SuperAwesomeClass
                                                                                      37. +
                                                                                      38. TypedefUsingClass
                                                                                      39. WithGetterAndSetter
                                                                                      40. Constants
                                                                                      41. @@ -106,6 +112,7 @@
                                                                                        fake library
                                                                                      42. Functions
                                                                                      43. addCallback
                                                                                      44. addCallback2
                                                                                      45. +
                                                                                      46. aVoidParameter
                                                                                      47. functionWithFunctionParameters
                                                                                      48. myGenericFunction
                                                                                      49. onlyPositionalWithNoDefaultNoType
                                                                                      50. @@ -113,6 +120,7 @@
                                                                                        fake library
                                                                                      51. paintImage2
                                                                                      52. paramFromAnotherLib
                                                                                      53. paramOfFutureOrNull
                                                                                      54. +
                                                                                      55. returningFutureVoid
                                                                                      56. short
                                                                                      57. soIntense
                                                                                      58. thisIsAlsoAsync
                                                                                      59. @@ -235,7 +243,7 @@

                                                                                        Methods

                                                                                        Operators

                                                                                        - operator ==(other) + operator ==(dynamic other) → bool
                                                                                        diff --git a/testing/test_package_docs/fake/Oops/operator_equals.html b/testing/test_package_docs/fake/Oops/operator_equals.html index bdab78d83d..4048098fc6 100644 --- a/testing/test_package_docs/fake/Oops/operator_equals.html +++ b/testing/test_package_docs/fake/Oops/operator_equals.html @@ -67,7 +67,7 @@

                                                                                        operator == method

                                                                                        bool operator == -(other) +(dynamic other)
                                                                                        diff --git a/testing/test_package_docs/fake/OperatorReferenceClass-class.html b/testing/test_package_docs/fake/OperatorReferenceClass-class.html index 4422b2b25b..601d65e2ff 100644 --- a/testing/test_package_docs/fake/OperatorReferenceClass-class.html +++ b/testing/test_package_docs/fake/OperatorReferenceClass-class.html @@ -39,11 +39,14 @@
                                                                                        fake library
                                                                                        1. Classes
                                                                                        2. +
                                                                                        3. ABaseClass
                                                                                        4. AClassUsingASuperMixin
                                                                                        5. AClassWithFancyProperties
                                                                                        6. AMixinCallingSuper
                                                                                        7. Annotation
                                                                                        8. AnotherInterface
                                                                                        9. +
                                                                                        10. ATypeTakingClass
                                                                                        11. +
                                                                                        12. ATypeTakingClassMixedIn
                                                                                        13. BaseForDocComments
                                                                                        14. BaseThingy
                                                                                        15. BaseThingy2
                                                                                        16. @@ -52,12 +55,14 @@
                                                                                          fake library
                                                                                        17. ConstructorTester
                                                                                        18. Cool
                                                                                        19. DocumentWithATable
                                                                                        20. +
                                                                                        21. ExtendsFutureVoid
                                                                                        22. ExtraSpecialList
                                                                                        23. Foo2
                                                                                        24. HasGenerics
                                                                                        25. HasGenericWithExtends
                                                                                        26. ImplementingThingy
                                                                                        27. ImplementingThingy2
                                                                                        28. +
                                                                                        29. ImplementsFutureVoid
                                                                                        30. ImplicitProperties
                                                                                        31. InheritingClassOne
                                                                                        32. InheritingClassTwo
                                                                                        33. @@ -75,6 +80,7 @@
                                                                                          fake library
                                                                                        34. SpecialList
                                                                                        35. SubForDocComments
                                                                                        36. SuperAwesomeClass
                                                                                        37. +
                                                                                        38. TypedefUsingClass
                                                                                        39. WithGetterAndSetter
                                                                                        40. Constants
                                                                                        41. @@ -106,6 +112,7 @@
                                                                                          fake library
                                                                                        42. Functions
                                                                                        43. addCallback
                                                                                        44. addCallback2
                                                                                        45. +
                                                                                        46. aVoidParameter
                                                                                        47. functionWithFunctionParameters
                                                                                        48. myGenericFunction
                                                                                        49. onlyPositionalWithNoDefaultNoType
                                                                                        50. @@ -113,6 +120,7 @@
                                                                                          fake library
                                                                                        51. paintImage2
                                                                                        52. paramFromAnotherLib
                                                                                        53. paramOfFutureOrNull
                                                                                        54. +
                                                                                        55. returningFutureVoid
                                                                                        56. short
                                                                                        57. soIntense
                                                                                        58. thisIsAlsoAsync
                                                                                        59. @@ -213,7 +221,7 @@

                                                                                          Methods

                                                                                          Operators

                                                                                          - operator ==(other) + operator ==(dynamic other) → bool
                                                                                          diff --git a/testing/test_package_docs/fake/OperatorReferenceClass/operator_equals.html b/testing/test_package_docs/fake/OperatorReferenceClass/operator_equals.html index 2e0cfe1313..60f2e2b7d0 100644 --- a/testing/test_package_docs/fake/OperatorReferenceClass/operator_equals.html +++ b/testing/test_package_docs/fake/OperatorReferenceClass/operator_equals.html @@ -71,7 +71,7 @@

                                                                                          operator == method

                                                                                          bool operator == -(other) +(dynamic other)
                                                                    diff --git a/testing/test_package_docs/fake/OtherGenericsThing-class.html b/testing/test_package_docs/fake/OtherGenericsThing-class.html index c7d2790e93..711db0f9c6 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing-class.html +++ b/testing/test_package_docs/fake/OtherGenericsThing-class.html @@ -39,11 +39,14 @@
                                                                    fake library
                                                                    1. Classes
                                                                    2. +
                                                                    3. ABaseClass
                                                                    4. AClassUsingASuperMixin
                                                                    5. AClassWithFancyProperties
                                                                    6. AMixinCallingSuper
                                                                    7. Annotation
                                                                    8. AnotherInterface
                                                                    9. +
                                                                    10. ATypeTakingClass
                                                                    11. +
                                                                    12. ATypeTakingClassMixedIn
                                                                    13. BaseForDocComments
                                                                    14. BaseThingy
                                                                    15. BaseThingy2
                                                                    16. @@ -52,12 +55,14 @@
                                                                      fake library
                                                                    17. ConstructorTester
                                                                    18. Cool
                                                                    19. DocumentWithATable
                                                                    20. +
                                                                    21. ExtendsFutureVoid
                                                                    22. ExtraSpecialList
                                                                    23. Foo2
                                                                    24. HasGenerics
                                                                    25. HasGenericWithExtends
                                                                    26. ImplementingThingy
                                                                    27. ImplementingThingy2
                                                                    28. +
                                                                    29. ImplementsFutureVoid
                                                                    30. ImplicitProperties
                                                                    31. InheritingClassOne
                                                                    32. InheritingClassTwo
                                                                    33. @@ -75,6 +80,7 @@
                                                                      fake library
                                                                    34. SpecialList
                                                                    35. SubForDocComments
                                                                    36. SuperAwesomeClass
                                                                    37. +
                                                                    38. TypedefUsingClass
                                                                    39. WithGetterAndSetter
                                                                    40. Constants
                                                                    41. @@ -106,6 +112,7 @@
                                                                      fake library
                                                                    42. Functions
                                                                    43. addCallback
                                                                    44. addCallback2
                                                                    45. +
                                                                    46. aVoidParameter
                                                                    47. functionWithFunctionParameters
                                                                    48. myGenericFunction
                                                                    49. onlyPositionalWithNoDefaultNoType
                                                                    50. @@ -113,6 +120,7 @@
                                                                      fake library
                                                                    51. paintImage2
                                                                    52. paramFromAnotherLib
                                                                    53. paramOfFutureOrNull
                                                                    54. +
                                                                    55. returningFutureVoid
                                                                    56. short
                                                                    57. soIntense
                                                                    58. thisIsAlsoAsync
                                                                    59. @@ -219,7 +227,7 @@

                                                                      Methods

                                                                      Operators

                                                                      - operator ==(other) + operator ==(dynamic other) → bool
                                                                      diff --git a/testing/test_package_docs/fake/OtherGenericsThing/operator_equals.html b/testing/test_package_docs/fake/OtherGenericsThing/operator_equals.html index 139b25997b..1da21c2d4e 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing/operator_equals.html +++ b/testing/test_package_docs/fake/OtherGenericsThing/operator_equals.html @@ -67,7 +67,7 @@

                                                                      operator == method

                                                                      bool operator == -(other) +(dynamic other)
                                                                      diff --git a/testing/test_package_docs/fake/PI-constant.html b/testing/test_package_docs/fake/PI-constant.html index 15a6f4e20e..d23fe17011 100644 --- a/testing/test_package_docs/fake/PI-constant.html +++ b/testing/test_package_docs/fake/PI-constant.html @@ -39,11 +39,14 @@
                                                                      fake library
                                                                      1. Classes
                                                                      2. +
                                                                      3. ABaseClass
                                                                      4. AClassUsingASuperMixin
                                                                      5. AClassWithFancyProperties
                                                                      6. AMixinCallingSuper
                                                                      7. Annotation
                                                                      8. AnotherInterface
                                                                      9. +
                                                                      10. ATypeTakingClass
                                                                      11. +
                                                                      12. ATypeTakingClassMixedIn
                                                                      13. BaseForDocComments
                                                                      14. BaseThingy
                                                                      15. BaseThingy2
                                                                      16. @@ -52,12 +55,14 @@
                                                                        fake library
                                                                      17. ConstructorTester
                                                                      18. Cool
                                                                      19. DocumentWithATable
                                                                      20. +
                                                                      21. ExtendsFutureVoid
                                                                      22. ExtraSpecialList
                                                                      23. Foo2
                                                                      24. HasGenerics
                                                                      25. HasGenericWithExtends
                                                                      26. ImplementingThingy
                                                                      27. ImplementingThingy2
                                                                      28. +
                                                                      29. ImplementsFutureVoid
                                                                      30. ImplicitProperties
                                                                      31. InheritingClassOne
                                                                      32. InheritingClassTwo
                                                                      33. @@ -75,6 +80,7 @@
                                                                        fake library
                                                                      34. SpecialList
                                                                      35. SubForDocComments
                                                                      36. SuperAwesomeClass
                                                                      37. +
                                                                      38. TypedefUsingClass
                                                                      39. WithGetterAndSetter
                                                                      40. Constants
                                                                      41. @@ -106,6 +112,7 @@
                                                                        fake library
                                                                      42. Functions
                                                                      43. addCallback
                                                                      44. addCallback2
                                                                      45. +
                                                                      46. aVoidParameter
                                                                      47. functionWithFunctionParameters
                                                                      48. myGenericFunction
                                                                      49. onlyPositionalWithNoDefaultNoType
                                                                      50. @@ -113,6 +120,7 @@
                                                                        fake library
                                                                      51. paintImage2
                                                                      52. paramFromAnotherLib
                                                                      53. paramOfFutureOrNull
                                                                      54. +
                                                                      55. returningFutureVoid
                                                                      56. short
                                                                      57. soIntense
                                                                      58. thisIsAlsoAsync
                                                                      59. diff --git a/testing/test_package_docs/fake/ReferringClass-class.html b/testing/test_package_docs/fake/ReferringClass-class.html index c5154016cc..f28185f79a 100644 --- a/testing/test_package_docs/fake/ReferringClass-class.html +++ b/testing/test_package_docs/fake/ReferringClass-class.html @@ -39,11 +39,14 @@
                                                                        fake library
                                                                        1. Classes
                                                                        2. +
                                                                        3. ABaseClass
                                                                        4. AClassUsingASuperMixin
                                                                        5. AClassWithFancyProperties
                                                                        6. AMixinCallingSuper
                                                                        7. Annotation
                                                                        8. AnotherInterface
                                                                        9. +
                                                                        10. ATypeTakingClass
                                                                        11. +
                                                                        12. ATypeTakingClassMixedIn
                                                                        13. BaseForDocComments
                                                                        14. BaseThingy
                                                                        15. BaseThingy2
                                                                        16. @@ -52,12 +55,14 @@
                                                                          fake library
                                                                        17. ConstructorTester
                                                                        18. Cool
                                                                        19. DocumentWithATable
                                                                        20. +
                                                                        21. ExtendsFutureVoid
                                                                        22. ExtraSpecialList
                                                                        23. Foo2
                                                                        24. HasGenerics
                                                                        25. HasGenericWithExtends
                                                                        26. ImplementingThingy
                                                                        27. ImplementingThingy2
                                                                        28. +
                                                                        29. ImplementsFutureVoid
                                                                        30. ImplicitProperties
                                                                        31. InheritingClassOne
                                                                        32. InheritingClassTwo
                                                                        33. @@ -75,6 +80,7 @@
                                                                          fake library
                                                                        34. SpecialList
                                                                        35. SubForDocComments
                                                                        36. SuperAwesomeClass
                                                                        37. +
                                                                        38. TypedefUsingClass
                                                                        39. WithGetterAndSetter
                                                                        40. Constants
                                                                        41. @@ -106,6 +112,7 @@
                                                                          fake library
                                                                        42. Functions
                                                                        43. addCallback
                                                                        44. addCallback2
                                                                        45. +
                                                                        46. aVoidParameter
                                                                        47. functionWithFunctionParameters
                                                                        48. myGenericFunction
                                                                        49. onlyPositionalWithNoDefaultNoType
                                                                        50. @@ -113,6 +120,7 @@
                                                                          fake library
                                                                        51. paintImage2
                                                                        52. paramFromAnotherLib
                                                                        53. paramOfFutureOrNull
                                                                        54. +
                                                                        55. returningFutureVoid
                                                                        56. short
                                                                        57. soIntense
                                                                        58. thisIsAlsoAsync
                                                                        59. @@ -221,7 +229,7 @@

                                                                          Methods

                                                                          Operators

                                                                          - operator ==(other) + operator ==(dynamic other) → bool
                                                                          diff --git a/testing/test_package_docs/fake/ReferringClass/operator_equals.html b/testing/test_package_docs/fake/ReferringClass/operator_equals.html index d1e0db3621..4b0d69d2f8 100644 --- a/testing/test_package_docs/fake/ReferringClass/operator_equals.html +++ b/testing/test_package_docs/fake/ReferringClass/operator_equals.html @@ -67,7 +67,7 @@

                                                                          operator == method

                                                                          bool operator == -(other) +(dynamic other)
                                                                          diff --git a/testing/test_package_docs/fake/SpecialList-class.html b/testing/test_package_docs/fake/SpecialList-class.html index dabad1838d..a5682c0534 100644 --- a/testing/test_package_docs/fake/SpecialList-class.html +++ b/testing/test_package_docs/fake/SpecialList-class.html @@ -39,11 +39,14 @@
                                                                          fake library
                                                                          1. Classes
                                                                          2. +
                                                                          3. ABaseClass
                                                                          4. AClassUsingASuperMixin
                                                                          5. AClassWithFancyProperties
                                                                          6. AMixinCallingSuper
                                                                          7. Annotation
                                                                          8. AnotherInterface
                                                                          9. +
                                                                          10. ATypeTakingClass
                                                                          11. +
                                                                          12. ATypeTakingClassMixedIn
                                                                          13. BaseForDocComments
                                                                          14. BaseThingy
                                                                          15. BaseThingy2
                                                                          16. @@ -52,12 +55,14 @@
                                                                            fake library
                                                                          17. ConstructorTester
                                                                          18. Cool
                                                                          19. DocumentWithATable
                                                                          20. +
                                                                          21. ExtendsFutureVoid
                                                                          22. ExtraSpecialList
                                                                          23. Foo2
                                                                          24. HasGenerics
                                                                          25. HasGenericWithExtends
                                                                          26. ImplementingThingy
                                                                          27. ImplementingThingy2
                                                                          28. +
                                                                          29. ImplementsFutureVoid
                                                                          30. ImplicitProperties
                                                                          31. InheritingClassOne
                                                                          32. InheritingClassTwo
                                                                          33. @@ -75,6 +80,7 @@
                                                                            fake library
                                                                          34. SpecialList
                                                                          35. SubForDocComments
                                                                          36. SuperAwesomeClass
                                                                          37. +
                                                                          38. TypedefUsingClass
                                                                          39. WithGetterAndSetter
                                                                          40. Constants
                                                                          41. @@ -106,6 +112,7 @@
                                                                            fake library
                                                                          42. Functions
                                                                          43. addCallback
                                                                          44. addCallback2
                                                                          45. +
                                                                          46. aVoidParameter
                                                                          47. functionWithFunctionParameters
                                                                          48. myGenericFunction
                                                                          49. onlyPositionalWithNoDefaultNoType
                                                                          50. @@ -113,6 +120,7 @@
                                                                            fake library
                                                                          51. paintImage2
                                                                          52. paramFromAnotherLib
                                                                          53. paramOfFutureOrNull
                                                                          54. +
                                                                          55. returningFutureVoid
                                                                          56. short
                                                                          57. soIntense
                                                                          58. thisIsAlsoAsync
                                                                          59. @@ -754,7 +762,7 @@

                                                                            Operators

                                                                            inherited
                                                                            - operator ==(other) + operator ==(dynamic other) → bool
                                                                            diff --git a/testing/test_package_docs/fake/SpecialList/operator_equals.html b/testing/test_package_docs/fake/SpecialList/operator_equals.html index d4666d7440..7b227631be 100644 --- a/testing/test_package_docs/fake/SpecialList/operator_equals.html +++ b/testing/test_package_docs/fake/SpecialList/operator_equals.html @@ -125,7 +125,7 @@

                                                                            operator == method

                                                                            bool operator == -(other) +(dynamic other)
                                                                            diff --git a/testing/test_package_docs/fake/SubForDocComments-class.html b/testing/test_package_docs/fake/SubForDocComments-class.html index 1ebce5b0d4..5c144b92d2 100644 --- a/testing/test_package_docs/fake/SubForDocComments-class.html +++ b/testing/test_package_docs/fake/SubForDocComments-class.html @@ -39,11 +39,14 @@
                                                                            fake library
                                                                            1. Classes
                                                                            2. +
                                                                            3. ABaseClass
                                                                            4. AClassUsingASuperMixin
                                                                            5. AClassWithFancyProperties
                                                                            6. AMixinCallingSuper
                                                                            7. Annotation
                                                                            8. AnotherInterface
                                                                            9. +
                                                                            10. ATypeTakingClass
                                                                            11. +
                                                                            12. ATypeTakingClassMixedIn
                                                                            13. BaseForDocComments
                                                                            14. BaseThingy
                                                                            15. BaseThingy2
                                                                            16. @@ -52,12 +55,14 @@
                                                                              fake library
                                                                            17. ConstructorTester
                                                                            18. Cool
                                                                            19. DocumentWithATable
                                                                            20. +
                                                                            21. ExtendsFutureVoid
                                                                            22. ExtraSpecialList
                                                                            23. Foo2
                                                                            24. HasGenerics
                                                                            25. HasGenericWithExtends
                                                                            26. ImplementingThingy
                                                                            27. ImplementingThingy2
                                                                            28. +
                                                                            29. ImplementsFutureVoid
                                                                            30. ImplicitProperties
                                                                            31. InheritingClassOne
                                                                            32. InheritingClassTwo
                                                                            33. @@ -75,6 +80,7 @@
                                                                              fake library
                                                                            34. SpecialList
                                                                            35. SubForDocComments
                                                                            36. SuperAwesomeClass
                                                                            37. +
                                                                            38. TypedefUsingClass
                                                                            39. WithGetterAndSetter
                                                                            40. Constants
                                                                            41. @@ -106,6 +112,7 @@
                                                                              fake library
                                                                            42. Functions
                                                                            43. addCallback
                                                                            44. addCallback2
                                                                            45. +
                                                                            46. aVoidParameter
                                                                            47. functionWithFunctionParameters
                                                                            48. myGenericFunction
                                                                            49. onlyPositionalWithNoDefaultNoType
                                                                            50. @@ -113,6 +120,7 @@
                                                                              fake library
                                                                            51. paintImage2
                                                                            52. paramFromAnotherLib
                                                                            53. paramOfFutureOrNull
                                                                            54. +
                                                                            55. returningFutureVoid
                                                                            56. short
                                                                            57. soIntense
                                                                            58. thisIsAlsoAsync
                                                                            59. @@ -203,7 +211,7 @@

                                                                              Properties

                                                                              Methods

                                                                              - localMethod(String foo, bar) + localMethod(String foo, dynamic bar) → void
                                                                              @@ -254,7 +262,7 @@

                                                                              Methods

                                                                              Operators

                                                                              - operator ==(other) + operator ==(dynamic other) → bool
                                                                              diff --git a/testing/test_package_docs/fake/SubForDocComments/localMethod.html b/testing/test_package_docs/fake/SubForDocComments/localMethod.html index 1118a24ebe..bc16829ded 100644 --- a/testing/test_package_docs/fake/SubForDocComments/localMethod.html +++ b/testing/test_package_docs/fake/SubForDocComments/localMethod.html @@ -69,7 +69,7 @@

                                                                              localMethod method

                                                                              void localMethod -(String foo, bar) +(String foo, dynamic bar)

                                                                              Reference to foo and bar

                                                                              diff --git a/testing/test_package_docs/fake/SuperAwesomeClass-class.html b/testing/test_package_docs/fake/SuperAwesomeClass-class.html index dd181c3ead..2d46b0d18f 100644 --- a/testing/test_package_docs/fake/SuperAwesomeClass-class.html +++ b/testing/test_package_docs/fake/SuperAwesomeClass-class.html @@ -39,11 +39,14 @@
                                                                              fake library
                                                                              1. Classes
                                                                              2. +
                                                                              3. ABaseClass
                                                                              4. AClassUsingASuperMixin
                                                                              5. AClassWithFancyProperties
                                                                              6. AMixinCallingSuper
                                                                              7. Annotation
                                                                              8. AnotherInterface
                                                                              9. +
                                                                              10. ATypeTakingClass
                                                                              11. +
                                                                              12. ATypeTakingClassMixedIn
                                                                              13. BaseForDocComments
                                                                              14. BaseThingy
                                                                              15. BaseThingy2
                                                                              16. @@ -52,12 +55,14 @@
                                                                                fake library
                                                                              17. ConstructorTester
                                                                              18. Cool
                                                                              19. DocumentWithATable
                                                                              20. +
                                                                              21. ExtendsFutureVoid
                                                                              22. ExtraSpecialList
                                                                              23. Foo2
                                                                              24. HasGenerics
                                                                              25. HasGenericWithExtends
                                                                              26. ImplementingThingy
                                                                              27. ImplementingThingy2
                                                                              28. +
                                                                              29. ImplementsFutureVoid
                                                                              30. ImplicitProperties
                                                                              31. InheritingClassOne
                                                                              32. InheritingClassTwo
                                                                              33. @@ -75,6 +80,7 @@
                                                                                fake library
                                                                              34. SpecialList
                                                                              35. SubForDocComments
                                                                              36. SuperAwesomeClass
                                                                              37. +
                                                                              38. TypedefUsingClass
                                                                              39. WithGetterAndSetter
                                                                              40. Constants
                                                                              41. @@ -106,6 +112,7 @@
                                                                                fake library
                                                                              42. Functions
                                                                              43. addCallback
                                                                              44. addCallback2
                                                                              45. +
                                                                              46. aVoidParameter
                                                                              47. functionWithFunctionParameters
                                                                              48. myGenericFunction
                                                                              49. onlyPositionalWithNoDefaultNoType
                                                                              50. @@ -113,6 +120,7 @@
                                                                                fake library
                                                                              51. paintImage2
                                                                              52. paramFromAnotherLib
                                                                              53. paramOfFutureOrNull
                                                                              54. +
                                                                              55. returningFutureVoid
                                                                              56. short
                                                                              57. soIntense
                                                                              58. thisIsAlsoAsync
                                                                              59. @@ -246,7 +254,7 @@

                                                                                Methods

                                                                                Operators

                                                                                - operator -(other) + operator -(dynamic other) SuperAwesomeClass
                                                                                @@ -255,7 +263,7 @@

                                                                                Operators

                                                                                - operator ==(other) + operator ==(dynamic other) → bool
                                                                                diff --git a/testing/test_package_docs/fake/SuperAwesomeClass/operator_equals.html b/testing/test_package_docs/fake/SuperAwesomeClass/operator_equals.html index 397fff8581..127369675f 100644 --- a/testing/test_package_docs/fake/SuperAwesomeClass/operator_equals.html +++ b/testing/test_package_docs/fake/SuperAwesomeClass/operator_equals.html @@ -69,7 +69,7 @@

                                                                                operator == method

                                                                                bool operator == -(other) +(dynamic other)
                                                                                diff --git a/testing/test_package_docs/fake/SuperAwesomeClass/operator_minus.html b/testing/test_package_docs/fake/SuperAwesomeClass/operator_minus.html index c0681e2d7e..b5b0c17ec0 100644 --- a/testing/test_package_docs/fake/SuperAwesomeClass/operator_minus.html +++ b/testing/test_package_docs/fake/SuperAwesomeClass/operator_minus.html @@ -69,7 +69,7 @@

                                                                                operator - method

                                                                                SuperAwesomeClass operator - -(other) +(dynamic other)
                                                                                diff --git a/testing/test_package_docs/fake/TypedefUsingClass-class.html b/testing/test_package_docs/fake/TypedefUsingClass-class.html new file mode 100644 index 0000000000..f11697815a --- /dev/null +++ b/testing/test_package_docs/fake/TypedefUsingClass-class.html @@ -0,0 +1,287 @@ + + + + + + + + TypedefUsingClass class - fake library - Dart API + + + + + + + + + + + + +
                                                                                + +
                                                                                + + +
                                                                                TypedefUsingClass
                                                                                + +
                                                                                + +
                                                                                + + + +
                                                                                +

                                                                                TypedefUsingClass class

                                                                                + + + +
                                                                                +

                                                                                Constructors

                                                                                + +
                                                                                +
                                                                                + TypedefUsingClass(ParameterizedTypedef<double> x) +
                                                                                +
                                                                                + +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +

                                                                                Properties

                                                                                + +
                                                                                +
                                                                                + x + ParameterizedTypedef<double> +
                                                                                +
                                                                                + +
                                                                                read / write
                                                                                +
                                                                                +
                                                                                + hashCode + → int +
                                                                                +
                                                                                + +
                                                                                read-only, inherited
                                                                                +
                                                                                +
                                                                                + runtimeType + → Type +
                                                                                +
                                                                                + +
                                                                                read-only, inherited
                                                                                +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +

                                                                                Methods

                                                                                +
                                                                                +
                                                                                + noSuchMethod(Invocation invocation) + → dynamic + +
                                                                                +
                                                                                + +
                                                                                inherited
                                                                                +
                                                                                +
                                                                                + toString() + → String + +
                                                                                +
                                                                                + +
                                                                                inherited
                                                                                +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +

                                                                                Operators

                                                                                +
                                                                                +
                                                                                + operator ==(dynamic other) + → bool + +
                                                                                +
                                                                                + +
                                                                                inherited
                                                                                +
                                                                                +
                                                                                +
                                                                                + + + + +
                                                                                + + + +
                                                                                + +
                                                                                + + test_package 0.0.1 + + +
                                                                                + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/TypedefUsingClass/TypedefUsingClass.html b/testing/test_package_docs/fake/TypedefUsingClass/TypedefUsingClass.html new file mode 100644 index 0000000000..f8aadfa6cc --- /dev/null +++ b/testing/test_package_docs/fake/TypedefUsingClass/TypedefUsingClass.html @@ -0,0 +1,98 @@ + + + + + + + + TypedefUsingClass constructor - TypedefUsingClass class - fake library - Dart API + + + + + + + + + + + + +
                                                                                + +
                                                                                + + +
                                                                                TypedefUsingClass
                                                                                + +
                                                                                + +
                                                                                + + + +
                                                                                +

                                                                                TypedefUsingClass constructor

                                                                                + +
                                                                                + + TypedefUsingClass(ParameterizedTypedef<double> x) +
                                                                                + + + + +
                                                                                + + + +
                                                                                + +
                                                                                + + test_package 0.0.1 + + +
                                                                                + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/TypedefUsingClass/hashCode.html b/testing/test_package_docs/fake/TypedefUsingClass/hashCode.html new file mode 100644 index 0000000000..e172cd7259 --- /dev/null +++ b/testing/test_package_docs/fake/TypedefUsingClass/hashCode.html @@ -0,0 +1,102 @@ + + + + + + + + hashCode property - TypedefUsingClass class - fake library - Dart API + + + + + + + + + + + + +
                                                                                + +
                                                                                + + +
                                                                                hashCode
                                                                                + +
                                                                                + +
                                                                                + + + +
                                                                                +

                                                                                hashCode property

                                                                                + + +
                                                                                + +
                                                                                + int + hashCode +
                                                                                inherited
                                                                                +
                                                                                + + +
                                                                                + +
                                                                                + + + +
                                                                                + +
                                                                                + + test_package 0.0.1 + + +
                                                                                + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/TypedefUsingClass/noSuchMethod.html b/testing/test_package_docs/fake/TypedefUsingClass/noSuchMethod.html new file mode 100644 index 0000000000..328826cff4 --- /dev/null +++ b/testing/test_package_docs/fake/TypedefUsingClass/noSuchMethod.html @@ -0,0 +1,98 @@ + + + + + + + + noSuchMethod method - TypedefUsingClass class - fake library - Dart API + + + + + + + + + + + + +
                                                                                + +
                                                                                + + +
                                                                                noSuchMethod
                                                                                + +
                                                                                + +
                                                                                + + + +
                                                                                +

                                                                                noSuchMethod method

                                                                                + +
                                                                                + dynamic + noSuchMethod +(Invocation invocation) +
                                                                                + + + +
                                                                                + + + +
                                                                                + +
                                                                                + + test_package 0.0.1 + + +
                                                                                + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/TypedefUsingClass/operator_equals.html b/testing/test_package_docs/fake/TypedefUsingClass/operator_equals.html new file mode 100644 index 0000000000..f8430e5252 --- /dev/null +++ b/testing/test_package_docs/fake/TypedefUsingClass/operator_equals.html @@ -0,0 +1,98 @@ + + + + + + + + operator == method - TypedefUsingClass class - fake library - Dart API + + + + + + + + + + + + +
                                                                                + +
                                                                                + + +
                                                                                operator ==
                                                                                + +
                                                                                + +
                                                                                + + + +
                                                                                +

                                                                                operator == method

                                                                                + +
                                                                                + bool + operator == +(dynamic other) +
                                                                                + + + +
                                                                                + + + +
                                                                                + +
                                                                                + + test_package 0.0.1 + + +
                                                                                + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/TypedefUsingClass/runtimeType.html b/testing/test_package_docs/fake/TypedefUsingClass/runtimeType.html new file mode 100644 index 0000000000..296d38752a --- /dev/null +++ b/testing/test_package_docs/fake/TypedefUsingClass/runtimeType.html @@ -0,0 +1,102 @@ + + + + + + + + runtimeType property - TypedefUsingClass class - fake library - Dart API + + + + + + + + + + + + +
                                                                                + +
                                                                                + + +
                                                                                runtimeType
                                                                                + +
                                                                                + +
                                                                                + + + +
                                                                                +

                                                                                runtimeType property

                                                                                + + +
                                                                                + +
                                                                                + Type + runtimeType +
                                                                                inherited
                                                                                +
                                                                                + + +
                                                                                + +
                                                                                + + + +
                                                                                + +
                                                                                + + test_package 0.0.1 + + +
                                                                                + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/TypedefUsingClass/toString.html b/testing/test_package_docs/fake/TypedefUsingClass/toString.html new file mode 100644 index 0000000000..2674b4ed07 --- /dev/null +++ b/testing/test_package_docs/fake/TypedefUsingClass/toString.html @@ -0,0 +1,98 @@ + + + + + + + + toString method - TypedefUsingClass class - fake library - Dart API + + + + + + + + + + + + +
                                                                                + +
                                                                                + + +
                                                                                toString
                                                                                + +
                                                                                + +
                                                                                + + + +
                                                                                +

                                                                                toString method

                                                                                + +
                                                                                + String + toString +() +
                                                                                + + + +
                                                                                + + + +
                                                                                + +
                                                                                + + test_package 0.0.1 + + +
                                                                                + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/TypedefUsingClass/x.html b/testing/test_package_docs/fake/TypedefUsingClass/x.html new file mode 100644 index 0000000000..82fa8e916c --- /dev/null +++ b/testing/test_package_docs/fake/TypedefUsingClass/x.html @@ -0,0 +1,97 @@ + + + + + + + + x property - TypedefUsingClass class - fake library - Dart API + + + + + + + + + + + + +
                                                                                + +
                                                                                + + +
                                                                                x
                                                                                + +
                                                                                + +
                                                                                + + + +
                                                                                +

                                                                                x property

                                                                                + +
                                                                                + ParameterizedTypedef<double> + x +
                                                                                read / write
                                                                                +
                                                                                + + +
                                                                                + + + +
                                                                                + +
                                                                                + + test_package 0.0.1 + + +
                                                                                + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/UP-constant.html b/testing/test_package_docs/fake/UP-constant.html index 57b500c9e3..4d7dbf04c8 100644 --- a/testing/test_package_docs/fake/UP-constant.html +++ b/testing/test_package_docs/fake/UP-constant.html @@ -39,11 +39,14 @@
                                                                                fake library
                                                                                1. Classes
                                                                                2. +
                                                                                3. ABaseClass
                                                                                4. AClassUsingASuperMixin
                                                                                5. AClassWithFancyProperties
                                                                                6. AMixinCallingSuper
                                                                                7. Annotation
                                                                                8. AnotherInterface
                                                                                9. +
                                                                                10. ATypeTakingClass
                                                                                11. +
                                                                                12. ATypeTakingClassMixedIn
                                                                                13. BaseForDocComments
                                                                                14. BaseThingy
                                                                                15. BaseThingy2
                                                                                16. @@ -52,12 +55,14 @@
                                                                                  fake library
                                                                                17. ConstructorTester
                                                                                18. Cool
                                                                                19. DocumentWithATable
                                                                                20. +
                                                                                21. ExtendsFutureVoid
                                                                                22. ExtraSpecialList
                                                                                23. Foo2
                                                                                24. HasGenerics
                                                                                25. HasGenericWithExtends
                                                                                26. ImplementingThingy
                                                                                27. ImplementingThingy2
                                                                                28. +
                                                                                29. ImplementsFutureVoid
                                                                                30. ImplicitProperties
                                                                                31. InheritingClassOne
                                                                                32. InheritingClassTwo
                                                                                33. @@ -75,6 +80,7 @@
                                                                                  fake library
                                                                                34. SpecialList
                                                                                35. SubForDocComments
                                                                                36. SuperAwesomeClass
                                                                                37. +
                                                                                38. TypedefUsingClass
                                                                                39. WithGetterAndSetter
                                                                                40. Constants
                                                                                41. @@ -106,6 +112,7 @@
                                                                                  fake library
                                                                                42. Functions
                                                                                43. addCallback
                                                                                44. addCallback2
                                                                                45. +
                                                                                46. aVoidParameter
                                                                                47. functionWithFunctionParameters
                                                                                48. myGenericFunction
                                                                                49. onlyPositionalWithNoDefaultNoType
                                                                                50. @@ -113,6 +120,7 @@
                                                                                  fake library
                                                                                51. paintImage2
                                                                                52. paramFromAnotherLib
                                                                                53. paramOfFutureOrNull
                                                                                54. +
                                                                                55. returningFutureVoid
                                                                                56. short
                                                                                57. soIntense
                                                                                58. thisIsAlsoAsync
                                                                                59. diff --git a/testing/test_package_docs/fake/VoidCallback.html b/testing/test_package_docs/fake/VoidCallback.html index 7bef52dcbe..80c93a7e6f 100644 --- a/testing/test_package_docs/fake/VoidCallback.html +++ b/testing/test_package_docs/fake/VoidCallback.html @@ -39,11 +39,14 @@
                                                                                  fake library
                                                                                  1. Classes
                                                                                  2. +
                                                                                  3. ABaseClass
                                                                                  4. AClassUsingASuperMixin
                                                                                  5. AClassWithFancyProperties
                                                                                  6. AMixinCallingSuper
                                                                                  7. Annotation
                                                                                  8. AnotherInterface
                                                                                  9. +
                                                                                  10. ATypeTakingClass
                                                                                  11. +
                                                                                  12. ATypeTakingClassMixedIn
                                                                                  13. BaseForDocComments
                                                                                  14. BaseThingy
                                                                                  15. BaseThingy2
                                                                                  16. @@ -52,12 +55,14 @@
                                                                                    fake library
                                                                                  17. ConstructorTester
                                                                                  18. Cool
                                                                                  19. DocumentWithATable
                                                                                  20. +
                                                                                  21. ExtendsFutureVoid
                                                                                  22. ExtraSpecialList
                                                                                  23. Foo2
                                                                                  24. HasGenerics
                                                                                  25. HasGenericWithExtends
                                                                                  26. ImplementingThingy
                                                                                  27. ImplementingThingy2
                                                                                  28. +
                                                                                  29. ImplementsFutureVoid
                                                                                  30. ImplicitProperties
                                                                                  31. InheritingClassOne
                                                                                  32. InheritingClassTwo
                                                                                  33. @@ -75,6 +80,7 @@
                                                                                    fake library
                                                                                  34. SpecialList
                                                                                  35. SubForDocComments
                                                                                  36. SuperAwesomeClass
                                                                                  37. +
                                                                                  38. TypedefUsingClass
                                                                                  39. WithGetterAndSetter
                                                                                  40. Constants
                                                                                  41. @@ -106,6 +112,7 @@
                                                                                    fake library
                                                                                  42. Functions
                                                                                  43. addCallback
                                                                                  44. addCallback2
                                                                                  45. +
                                                                                  46. aVoidParameter
                                                                                  47. functionWithFunctionParameters
                                                                                  48. myGenericFunction
                                                                                  49. onlyPositionalWithNoDefaultNoType
                                                                                  50. @@ -113,6 +120,7 @@
                                                                                    fake library
                                                                                  51. paintImage2
                                                                                  52. paramFromAnotherLib
                                                                                  53. paramOfFutureOrNull
                                                                                  54. +
                                                                                  55. returningFutureVoid
                                                                                  56. short
                                                                                  57. soIntense
                                                                                  58. thisIsAlsoAsync
                                                                                  59. diff --git a/testing/test_package_docs/fake/WithGetterAndSetter-class.html b/testing/test_package_docs/fake/WithGetterAndSetter-class.html index ffcd7399ce..00398f0b6c 100644 --- a/testing/test_package_docs/fake/WithGetterAndSetter-class.html +++ b/testing/test_package_docs/fake/WithGetterAndSetter-class.html @@ -39,11 +39,14 @@
                                                                                    fake library
                                                                                    1. Classes
                                                                                    2. +
                                                                                    3. ABaseClass
                                                                                    4. AClassUsingASuperMixin
                                                                                    5. AClassWithFancyProperties
                                                                                    6. AMixinCallingSuper
                                                                                    7. Annotation
                                                                                    8. AnotherInterface
                                                                                    9. +
                                                                                    10. ATypeTakingClass
                                                                                    11. +
                                                                                    12. ATypeTakingClassMixedIn
                                                                                    13. BaseForDocComments
                                                                                    14. BaseThingy
                                                                                    15. BaseThingy2
                                                                                    16. @@ -52,12 +55,14 @@
                                                                                      fake library
                                                                                    17. ConstructorTester
                                                                                    18. Cool
                                                                                    19. DocumentWithATable
                                                                                    20. +
                                                                                    21. ExtendsFutureVoid
                                                                                    22. ExtraSpecialList
                                                                                    23. Foo2
                                                                                    24. HasGenerics
                                                                                    25. HasGenericWithExtends
                                                                                    26. ImplementingThingy
                                                                                    27. ImplementingThingy2
                                                                                    28. +
                                                                                    29. ImplementsFutureVoid
                                                                                    30. ImplicitProperties
                                                                                    31. InheritingClassOne
                                                                                    32. InheritingClassTwo
                                                                                    33. @@ -75,6 +80,7 @@
                                                                                      fake library
                                                                                    34. SpecialList
                                                                                    35. SubForDocComments
                                                                                    36. SuperAwesomeClass
                                                                                    37. +
                                                                                    38. TypedefUsingClass
                                                                                    39. WithGetterAndSetter
                                                                                    40. Constants
                                                                                    41. @@ -106,6 +112,7 @@
                                                                                      fake library
                                                                                    42. Functions
                                                                                    43. addCallback
                                                                                    44. addCallback2
                                                                                    45. +
                                                                                    46. aVoidParameter
                                                                                    47. functionWithFunctionParameters
                                                                                    48. myGenericFunction
                                                                                    49. onlyPositionalWithNoDefaultNoType
                                                                                    50. @@ -113,6 +120,7 @@
                                                                                      fake library
                                                                                    51. paintImage2
                                                                                    52. paramFromAnotherLib
                                                                                    53. paramOfFutureOrNull
                                                                                    54. +
                                                                                    55. returningFutureVoid
                                                                                    56. short
                                                                                    57. soIntense
                                                                                    58. thisIsAlsoAsync
                                                                                    59. @@ -233,7 +241,7 @@

                                                                                      Methods

                                                                                      Operators

                                                                                      - operator ==(other) + operator ==(dynamic other) → bool
                                                                                      diff --git a/testing/test_package_docs/fake/WithGetterAndSetter/operator_equals.html b/testing/test_package_docs/fake/WithGetterAndSetter/operator_equals.html index 7fb0f0fcbc..fff0ac4cc2 100644 --- a/testing/test_package_docs/fake/WithGetterAndSetter/operator_equals.html +++ b/testing/test_package_docs/fake/WithGetterAndSetter/operator_equals.html @@ -67,7 +67,7 @@

                                                                                      operator == method

                                                                                      bool operator == -(other) +(dynamic other)
                                                                                      diff --git a/testing/test_package_docs/fake/ZERO-constant.html b/testing/test_package_docs/fake/ZERO-constant.html index d7bd870fe5..e96cabd017 100644 --- a/testing/test_package_docs/fake/ZERO-constant.html +++ b/testing/test_package_docs/fake/ZERO-constant.html @@ -39,11 +39,14 @@
                                                                                      fake library
                                                                                      1. Classes
                                                                                      2. +
                                                                                      3. ABaseClass
                                                                                      4. AClassUsingASuperMixin
                                                                                      5. AClassWithFancyProperties
                                                                                      6. AMixinCallingSuper
                                                                                      7. Annotation
                                                                                      8. AnotherInterface
                                                                                      9. +
                                                                                      10. ATypeTakingClass
                                                                                      11. +
                                                                                      12. ATypeTakingClassMixedIn
                                                                                      13. BaseForDocComments
                                                                                      14. BaseThingy
                                                                                      15. BaseThingy2
                                                                                      16. @@ -52,12 +55,14 @@
                                                                                        fake library
                                                                                      17. ConstructorTester
                                                                                      18. Cool
                                                                                      19. DocumentWithATable
                                                                                      20. +
                                                                                      21. ExtendsFutureVoid
                                                                                      22. ExtraSpecialList
                                                                                      23. Foo2
                                                                                      24. HasGenerics
                                                                                      25. HasGenericWithExtends
                                                                                      26. ImplementingThingy
                                                                                      27. ImplementingThingy2
                                                                                      28. +
                                                                                      29. ImplementsFutureVoid
                                                                                      30. ImplicitProperties
                                                                                      31. InheritingClassOne
                                                                                      32. InheritingClassTwo
                                                                                      33. @@ -75,6 +80,7 @@
                                                                                        fake library
                                                                                      34. SpecialList
                                                                                      35. SubForDocComments
                                                                                      36. SuperAwesomeClass
                                                                                      37. +
                                                                                      38. TypedefUsingClass
                                                                                      39. WithGetterAndSetter
                                                                                      40. Constants
                                                                                      41. @@ -106,6 +112,7 @@
                                                                                        fake library
                                                                                      42. Functions
                                                                                      43. addCallback
                                                                                      44. addCallback2
                                                                                      45. +
                                                                                      46. aVoidParameter
                                                                                      47. functionWithFunctionParameters
                                                                                      48. myGenericFunction
                                                                                      49. onlyPositionalWithNoDefaultNoType
                                                                                      50. @@ -113,6 +120,7 @@
                                                                                        fake library
                                                                                      51. paintImage2
                                                                                      52. paramFromAnotherLib
                                                                                      53. paramOfFutureOrNull
                                                                                      54. +
                                                                                      55. returningFutureVoid
                                                                                      56. short
                                                                                      57. soIntense
                                                                                      58. thisIsAlsoAsync
                                                                                      59. diff --git a/testing/test_package_docs/fake/aVoidParameter.html b/testing/test_package_docs/fake/aVoidParameter.html new file mode 100644 index 0000000000..1bfce0ec3b --- /dev/null +++ b/testing/test_package_docs/fake/aVoidParameter.html @@ -0,0 +1,189 @@ + + + + + + + + aVoidParameter function - fake library - Dart API + + + + + + + + + + + + +
                                                                                        + +
                                                                                        + + +
                                                                                        aVoidParameter
                                                                                        + +
                                                                                        + +
                                                                                        + + + +
                                                                                        +

                                                                                        aVoidParameter function

                                                                                        + +
                                                                                        + void + aVoidParameter +(Future<void> p1) +
                                                                                        +
                                                                                        +

                                                                                        This function requires a Future as a parameter

                                                                                        +
                                                                                        + + + +
                                                                                        + + + +
                                                                                        + +
                                                                                        + + test_package 0.0.1 + + +
                                                                                        + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/addCallback.html b/testing/test_package_docs/fake/addCallback.html index e46f91f8dd..4920cbd864 100644 --- a/testing/test_package_docs/fake/addCallback.html +++ b/testing/test_package_docs/fake/addCallback.html @@ -39,11 +39,14 @@
                                                                                        fake library
                                                                                        1. Classes
                                                                                        2. +
                                                                                        3. ABaseClass
                                                                                        4. AClassUsingASuperMixin
                                                                                        5. AClassWithFancyProperties
                                                                                        6. AMixinCallingSuper
                                                                                        7. Annotation
                                                                                        8. AnotherInterface
                                                                                        9. +
                                                                                        10. ATypeTakingClass
                                                                                        11. +
                                                                                        12. ATypeTakingClassMixedIn
                                                                                        13. BaseForDocComments
                                                                                        14. BaseThingy
                                                                                        15. BaseThingy2
                                                                                        16. @@ -52,12 +55,14 @@
                                                                                          fake library
                                                                                        17. ConstructorTester
                                                                                        18. Cool
                                                                                        19. DocumentWithATable
                                                                                        20. +
                                                                                        21. ExtendsFutureVoid
                                                                                        22. ExtraSpecialList
                                                                                        23. Foo2
                                                                                        24. HasGenerics
                                                                                        25. HasGenericWithExtends
                                                                                        26. ImplementingThingy
                                                                                        27. ImplementingThingy2
                                                                                        28. +
                                                                                        29. ImplementsFutureVoid
                                                                                        30. ImplicitProperties
                                                                                        31. InheritingClassOne
                                                                                        32. InheritingClassTwo
                                                                                        33. @@ -75,6 +80,7 @@
                                                                                          fake library
                                                                                        34. SpecialList
                                                                                        35. SubForDocComments
                                                                                        36. SuperAwesomeClass
                                                                                        37. +
                                                                                        38. TypedefUsingClass
                                                                                        39. WithGetterAndSetter
                                                                                        40. Constants
                                                                                        41. @@ -106,6 +112,7 @@
                                                                                          fake library
                                                                                        42. Functions
                                                                                        43. addCallback
                                                                                        44. addCallback2
                                                                                        45. +
                                                                                        46. aVoidParameter
                                                                                        47. functionWithFunctionParameters
                                                                                        48. myGenericFunction
                                                                                        49. onlyPositionalWithNoDefaultNoType
                                                                                        50. @@ -113,6 +120,7 @@
                                                                                          fake library
                                                                                        51. paintImage2
                                                                                        52. paramFromAnotherLib
                                                                                        53. paramOfFutureOrNull
                                                                                        54. +
                                                                                        55. returningFutureVoid
                                                                                        56. short
                                                                                        57. soIntense
                                                                                        58. thisIsAlsoAsync
                                                                                        59. diff --git a/testing/test_package_docs/fake/addCallback2.html b/testing/test_package_docs/fake/addCallback2.html index 2a3231536d..0c212c97fb 100644 --- a/testing/test_package_docs/fake/addCallback2.html +++ b/testing/test_package_docs/fake/addCallback2.html @@ -39,11 +39,14 @@
                                                                                          fake library
                                                                                          1. Classes
                                                                                          2. +
                                                                                          3. ABaseClass
                                                                                          4. AClassUsingASuperMixin
                                                                                          5. AClassWithFancyProperties
                                                                                          6. AMixinCallingSuper
                                                                                          7. Annotation
                                                                                          8. AnotherInterface
                                                                                          9. +
                                                                                          10. ATypeTakingClass
                                                                                          11. +
                                                                                          12. ATypeTakingClassMixedIn
                                                                                          13. BaseForDocComments
                                                                                          14. BaseThingy
                                                                                          15. BaseThingy2
                                                                                          16. @@ -52,12 +55,14 @@
                                                                                            fake library
                                                                                          17. ConstructorTester
                                                                                          18. Cool
                                                                                          19. DocumentWithATable
                                                                                          20. +
                                                                                          21. ExtendsFutureVoid
                                                                                          22. ExtraSpecialList
                                                                                          23. Foo2
                                                                                          24. HasGenerics
                                                                                          25. HasGenericWithExtends
                                                                                          26. ImplementingThingy
                                                                                          27. ImplementingThingy2
                                                                                          28. +
                                                                                          29. ImplementsFutureVoid
                                                                                          30. ImplicitProperties
                                                                                          31. InheritingClassOne
                                                                                          32. InheritingClassTwo
                                                                                          33. @@ -75,6 +80,7 @@
                                                                                            fake library
                                                                                          34. SpecialList
                                                                                          35. SubForDocComments
                                                                                          36. SuperAwesomeClass
                                                                                          37. +
                                                                                          38. TypedefUsingClass
                                                                                          39. WithGetterAndSetter
                                                                                          40. Constants
                                                                                          41. @@ -106,6 +112,7 @@
                                                                                            fake library
                                                                                          42. Functions
                                                                                          43. addCallback
                                                                                          44. addCallback2
                                                                                          45. +
                                                                                          46. aVoidParameter
                                                                                          47. functionWithFunctionParameters
                                                                                          48. myGenericFunction
                                                                                          49. onlyPositionalWithNoDefaultNoType
                                                                                          50. @@ -113,6 +120,7 @@
                                                                                            fake library
                                                                                          51. paintImage2
                                                                                          52. paramFromAnotherLib
                                                                                          53. paramOfFutureOrNull
                                                                                          54. +
                                                                                          55. returningFutureVoid
                                                                                          56. short
                                                                                          57. soIntense
                                                                                          58. thisIsAlsoAsync
                                                                                          59. diff --git a/testing/test_package_docs/fake/dynamicGetter.html b/testing/test_package_docs/fake/dynamicGetter.html index 1db9f5af69..0c6c7b64e7 100644 --- a/testing/test_package_docs/fake/dynamicGetter.html +++ b/testing/test_package_docs/fake/dynamicGetter.html @@ -39,11 +39,14 @@
                                                                                            fake library
                                                                                            1. Classes
                                                                                            2. +
                                                                                            3. ABaseClass
                                                                                            4. AClassUsingASuperMixin
                                                                                            5. AClassWithFancyProperties
                                                                                            6. AMixinCallingSuper
                                                                                            7. Annotation
                                                                                            8. AnotherInterface
                                                                                            9. +
                                                                                            10. ATypeTakingClass
                                                                                            11. +
                                                                                            12. ATypeTakingClassMixedIn
                                                                                            13. BaseForDocComments
                                                                                            14. BaseThingy
                                                                                            15. BaseThingy2
                                                                                            16. @@ -52,12 +55,14 @@
                                                                                              fake library
                                                                                            17. ConstructorTester
                                                                                            18. Cool
                                                                                            19. DocumentWithATable
                                                                                            20. +
                                                                                            21. ExtendsFutureVoid
                                                                                            22. ExtraSpecialList
                                                                                            23. Foo2
                                                                                            24. HasGenerics
                                                                                            25. HasGenericWithExtends
                                                                                            26. ImplementingThingy
                                                                                            27. ImplementingThingy2
                                                                                            28. +
                                                                                            29. ImplementsFutureVoid
                                                                                            30. ImplicitProperties
                                                                                            31. InheritingClassOne
                                                                                            32. InheritingClassTwo
                                                                                            33. @@ -75,6 +80,7 @@
                                                                                              fake library
                                                                                            34. SpecialList
                                                                                            35. SubForDocComments
                                                                                            36. SuperAwesomeClass
                                                                                            37. +
                                                                                            38. TypedefUsingClass
                                                                                            39. WithGetterAndSetter
                                                                                            40. Constants
                                                                                            41. @@ -106,6 +112,7 @@
                                                                                              fake library
                                                                                            42. Functions
                                                                                            43. addCallback
                                                                                            44. addCallback2
                                                                                            45. +
                                                                                            46. aVoidParameter
                                                                                            47. functionWithFunctionParameters
                                                                                            48. myGenericFunction
                                                                                            49. onlyPositionalWithNoDefaultNoType
                                                                                            50. @@ -113,6 +120,7 @@
                                                                                              fake library
                                                                                            51. paintImage2
                                                                                            52. paramFromAnotherLib
                                                                                            53. paramOfFutureOrNull
                                                                                            54. +
                                                                                            55. returningFutureVoid
                                                                                            56. short
                                                                                            57. soIntense
                                                                                            58. thisIsAlsoAsync
                                                                                            59. diff --git a/testing/test_package_docs/fake/fake-library.html b/testing/test_package_docs/fake/fake-library.html index e6ae6c3ca3..1c9002157f 100644 --- a/testing/test_package_docs/fake/fake-library.html +++ b/testing/test_package_docs/fake/fake-library.html @@ -83,6 +83,12 @@
                                                                                              I am an h5

                                                                                              Classes

                                                                                              +
                                                                                              + ABaseClass +
                                                                                              +
                                                                                              + +
                                                                                              AClassUsingASuperMixin
                                                                                              @@ -112,6 +118,18 @@

                                                                                              Classes

                                                                                              Yet another interface that can be implemented. +
                                                                                              +
                                                                                              + ATypeTakingClass<T> +
                                                                                              +
                                                                                              + This class takes a type, and it might be void. +
                                                                                              +
                                                                                              + ATypeTakingClassMixedIn +
                                                                                              +
                                                                                              +
                                                                                              BaseForDocComments @@ -161,6 +179,12 @@

                                                                                              Classes

                                                                                              This is a class with a table. [...]
                                                                                              +
                                                                                              + ExtendsFutureVoid +
                                                                                              +
                                                                                              + This class extends Future +
                                                                                              ExtraSpecialList<E>
                                                                                              @@ -196,6 +220,12 @@

                                                                                              Classes

                                                                                              +
                                                                                              +
                                                                                              + ImplementsFutureVoid +
                                                                                              +
                                                                                              + This class implements Future
                                                                                              ImplicitProperties @@ -302,6 +332,12 @@

                                                                                              Classes

                                                                                              A super class, with many powers. Link to Apple from another library. +
                                                                                              +
                                                                                              + TypedefUsingClass +
                                                                                              +
                                                                                              +
                                                                                              WithGetterAndSetter @@ -563,9 +599,18 @@

                                                                                              Functions

                                                                                              Adds another callback. +
                                                                                              +
                                                                                              + aVoidParameter(Future<void> p1) + → void + +
                                                                                              +
                                                                                              + This function requires a Future as a parameter +
                                                                                              - functionWithFunctionParameters(int number, void thing(one, two), String string, Future asyncThing(three, four, five, six, seven)) + functionWithFunctionParameters(int number, void thing(dynamic one, dynamic two), String string, Future asyncThing(dynamic three, dynamic four, dynamic five, dynamic six, dynamic seven)) → String
                                                                                              @@ -583,7 +628,7 @@

                                                                                              Functions

                                                                                              - onlyPositionalWithNoDefaultNoType([anything ]) + onlyPositionalWithNoDefaultNoType([dynamic anything ]) → void
                                                                                              @@ -626,6 +671,15 @@

                                                                                              Functions

                                                                                              Has a parameter explicitly typed FutureOr<Null>. +
                                                                                              +
                                                                                              + returningFutureVoid() + → Future<void> + +
                                                                                              +
                                                                                              + This function returns Future +
                                                                                              short() @@ -637,7 +691,7 @@

                                                                                              Functions

                                                                                              - soIntense(anything, { bool flag: true, int value }) + soIntense(dynamic anything, { bool flag: true, int value }) → void
                                                                                              @@ -730,7 +784,7 @@

                                                                                              Typedefs

                                                                                              - Callback2(String) + Callback2(dynamic String) → int
                                                                                              @@ -757,7 +811,7 @@

                                                                                              Typedefs

                                                                                              - LotsAndLotsOfParameters(so, many, parameters, it, should, wrap, when, converted, to, html, documentation) + LotsAndLotsOfParameters(dynamic so, dynamic many, dynamic parameters, dynamic it, dynamic should, dynamic wrap, dynamic when, dynamic converted, dynamic to, dynamic html, dynamic documentation) → int
                                                                                              @@ -820,11 +874,14 @@

                                                                                              Exceptions / Errors

                                                                                              fake library
                                                                                              1. Classes
                                                                                              2. +
                                                                                              3. ABaseClass
                                                                                              4. AClassUsingASuperMixin
                                                                                              5. AClassWithFancyProperties
                                                                                              6. AMixinCallingSuper
                                                                                              7. Annotation
                                                                                              8. AnotherInterface
                                                                                              9. +
                                                                                              10. ATypeTakingClass
                                                                                              11. +
                                                                                              12. ATypeTakingClassMixedIn
                                                                                              13. BaseForDocComments
                                                                                              14. BaseThingy
                                                                                              15. BaseThingy2
                                                                                              16. @@ -833,12 +890,14 @@
                                                                                                fake library
                                                                                              17. ConstructorTester
                                                                                              18. Cool
                                                                                              19. DocumentWithATable
                                                                                              20. +
                                                                                              21. ExtendsFutureVoid
                                                                                              22. ExtraSpecialList
                                                                                              23. Foo2
                                                                                              24. HasGenerics
                                                                                              25. HasGenericWithExtends
                                                                                              26. ImplementingThingy
                                                                                              27. ImplementingThingy2
                                                                                              28. +
                                                                                              29. ImplementsFutureVoid
                                                                                              30. ImplicitProperties
                                                                                              31. InheritingClassOne
                                                                                              32. InheritingClassTwo
                                                                                              33. @@ -856,6 +915,7 @@
                                                                                                fake library
                                                                                              34. SpecialList
                                                                                              35. SubForDocComments
                                                                                              36. SuperAwesomeClass
                                                                                              37. +
                                                                                              38. TypedefUsingClass
                                                                                              39. WithGetterAndSetter
                                                                                              40. Constants
                                                                                              41. @@ -887,6 +947,7 @@
                                                                                                fake library
                                                                                              42. Functions
                                                                                              43. addCallback
                                                                                              44. addCallback2
                                                                                              45. +
                                                                                              46. aVoidParameter
                                                                                              47. functionWithFunctionParameters
                                                                                              48. myGenericFunction
                                                                                              49. onlyPositionalWithNoDefaultNoType
                                                                                              50. @@ -894,6 +955,7 @@
                                                                                                fake library
                                                                                              51. paintImage2
                                                                                              52. paramFromAnotherLib
                                                                                              53. paramOfFutureOrNull
                                                                                              54. +
                                                                                              55. returningFutureVoid
                                                                                              56. short
                                                                                              57. soIntense
                                                                                              58. thisIsAlsoAsync
                                                                                              59. diff --git a/testing/test_package_docs/fake/functionWithFunctionParameters.html b/testing/test_package_docs/fake/functionWithFunctionParameters.html index 309ddd7b3c..487273b404 100644 --- a/testing/test_package_docs/fake/functionWithFunctionParameters.html +++ b/testing/test_package_docs/fake/functionWithFunctionParameters.html @@ -39,11 +39,14 @@
                                                                                                fake library
                                                                                                1. Classes
                                                                                                2. +
                                                                                                3. ABaseClass
                                                                                                4. AClassUsingASuperMixin
                                                                                                5. AClassWithFancyProperties
                                                                                                6. AMixinCallingSuper
                                                                                                7. Annotation
                                                                                                8. AnotherInterface
                                                                                                9. +
                                                                                                10. ATypeTakingClass
                                                                                                11. +
                                                                                                12. ATypeTakingClassMixedIn
                                                                                                13. BaseForDocComments
                                                                                                14. BaseThingy
                                                                                                15. BaseThingy2
                                                                                                16. @@ -52,12 +55,14 @@
                                                                                                  fake library
                                                                                                17. ConstructorTester
                                                                                                18. Cool
                                                                                                19. DocumentWithATable
                                                                                                20. +
                                                                                                21. ExtendsFutureVoid
                                                                                                22. ExtraSpecialList
                                                                                                23. Foo2
                                                                                                24. HasGenerics
                                                                                                25. HasGenericWithExtends
                                                                                                26. ImplementingThingy
                                                                                                27. ImplementingThingy2
                                                                                                28. +
                                                                                                29. ImplementsFutureVoid
                                                                                                30. ImplicitProperties
                                                                                                31. InheritingClassOne
                                                                                                32. InheritingClassTwo
                                                                                                33. @@ -75,6 +80,7 @@
                                                                                                  fake library
                                                                                                34. SpecialList
                                                                                                35. SubForDocComments
                                                                                                36. SuperAwesomeClass
                                                                                                37. +
                                                                                                38. TypedefUsingClass
                                                                                                39. WithGetterAndSetter
                                                                                                40. Constants
                                                                                                41. @@ -106,6 +112,7 @@
                                                                                                  fake library
                                                                                                42. Functions
                                                                                                43. addCallback
                                                                                                44. addCallback2
                                                                                                45. +
                                                                                                46. aVoidParameter
                                                                                                47. functionWithFunctionParameters
                                                                                                48. myGenericFunction
                                                                                                49. onlyPositionalWithNoDefaultNoType
                                                                                                50. @@ -113,6 +120,7 @@
                                                                                                  fake library
                                                                                                51. paintImage2
                                                                                                52. paramFromAnotherLib
                                                                                                53. paramOfFutureOrNull
                                                                                                54. +
                                                                                                55. returningFutureVoid
                                                                                                56. short
                                                                                                57. soIntense
                                                                                                58. thisIsAlsoAsync
                                                                                                59. @@ -147,7 +155,7 @@

                                                                                                  functionWithFunctionParameters function

                                                                                                  String functionWithFunctionParameters -(int number, void thing(one, two), String string, Future asyncThing(three, four, five, six, seven)) +(int number, void thing(dynamic one, dynamic two), String string, Future asyncThing(dynamic three, dynamic four, dynamic five, dynamic six, dynamic seven))

                                                                                                  This function has two parameters that are functions.

                                                                                                  diff --git a/testing/test_package_docs/fake/getterSetterNodocGetter.html b/testing/test_package_docs/fake/getterSetterNodocGetter.html index 02144c72d8..3553e9918a 100644 --- a/testing/test_package_docs/fake/getterSetterNodocGetter.html +++ b/testing/test_package_docs/fake/getterSetterNodocGetter.html @@ -39,11 +39,14 @@
                                                                                                  fake library
                                                                                                  1. Classes
                                                                                                  2. +
                                                                                                  3. ABaseClass
                                                                                                  4. AClassUsingASuperMixin
                                                                                                  5. AClassWithFancyProperties
                                                                                                  6. AMixinCallingSuper
                                                                                                  7. Annotation
                                                                                                  8. AnotherInterface
                                                                                                  9. +
                                                                                                  10. ATypeTakingClass
                                                                                                  11. +
                                                                                                  12. ATypeTakingClassMixedIn
                                                                                                  13. BaseForDocComments
                                                                                                  14. BaseThingy
                                                                                                  15. BaseThingy2
                                                                                                  16. @@ -52,12 +55,14 @@
                                                                                                    fake library
                                                                                                  17. ConstructorTester
                                                                                                  18. Cool
                                                                                                  19. DocumentWithATable
                                                                                                  20. +
                                                                                                  21. ExtendsFutureVoid
                                                                                                  22. ExtraSpecialList
                                                                                                  23. Foo2
                                                                                                  24. HasGenerics
                                                                                                  25. HasGenericWithExtends
                                                                                                  26. ImplementingThingy
                                                                                                  27. ImplementingThingy2
                                                                                                  28. +
                                                                                                  29. ImplementsFutureVoid
                                                                                                  30. ImplicitProperties
                                                                                                  31. InheritingClassOne
                                                                                                  32. InheritingClassTwo
                                                                                                  33. @@ -75,6 +80,7 @@
                                                                                                    fake library
                                                                                                  34. SpecialList
                                                                                                  35. SubForDocComments
                                                                                                  36. SuperAwesomeClass
                                                                                                  37. +
                                                                                                  38. TypedefUsingClass
                                                                                                  39. WithGetterAndSetter
                                                                                                  40. Constants
                                                                                                  41. @@ -106,6 +112,7 @@
                                                                                                    fake library
                                                                                                  42. Functions
                                                                                                  43. addCallback
                                                                                                  44. addCallback2
                                                                                                  45. +
                                                                                                  46. aVoidParameter
                                                                                                  47. functionWithFunctionParameters
                                                                                                  48. myGenericFunction
                                                                                                  49. onlyPositionalWithNoDefaultNoType
                                                                                                  50. @@ -113,6 +120,7 @@
                                                                                                    fake library
                                                                                                  51. paintImage2
                                                                                                  52. paramFromAnotherLib
                                                                                                  53. paramOfFutureOrNull
                                                                                                  54. +
                                                                                                  55. returningFutureVoid
                                                                                                  56. short
                                                                                                  57. soIntense
                                                                                                  58. thisIsAlsoAsync
                                                                                                  59. diff --git a/testing/test_package_docs/fake/getterSetterNodocSetter.html b/testing/test_package_docs/fake/getterSetterNodocSetter.html index a77f52eb8c..650f7c115f 100644 --- a/testing/test_package_docs/fake/getterSetterNodocSetter.html +++ b/testing/test_package_docs/fake/getterSetterNodocSetter.html @@ -39,11 +39,14 @@
                                                                                                    fake library
                                                                                                    1. Classes
                                                                                                    2. +
                                                                                                    3. ABaseClass
                                                                                                    4. AClassUsingASuperMixin
                                                                                                    5. AClassWithFancyProperties
                                                                                                    6. AMixinCallingSuper
                                                                                                    7. Annotation
                                                                                                    8. AnotherInterface
                                                                                                    9. +
                                                                                                    10. ATypeTakingClass
                                                                                                    11. +
                                                                                                    12. ATypeTakingClassMixedIn
                                                                                                    13. BaseForDocComments
                                                                                                    14. BaseThingy
                                                                                                    15. BaseThingy2
                                                                                                    16. @@ -52,12 +55,14 @@
                                                                                                      fake library
                                                                                                    17. ConstructorTester
                                                                                                    18. Cool
                                                                                                    19. DocumentWithATable
                                                                                                    20. +
                                                                                                    21. ExtendsFutureVoid
                                                                                                    22. ExtraSpecialList
                                                                                                    23. Foo2
                                                                                                    24. HasGenerics
                                                                                                    25. HasGenericWithExtends
                                                                                                    26. ImplementingThingy
                                                                                                    27. ImplementingThingy2
                                                                                                    28. +
                                                                                                    29. ImplementsFutureVoid
                                                                                                    30. ImplicitProperties
                                                                                                    31. InheritingClassOne
                                                                                                    32. InheritingClassTwo
                                                                                                    33. @@ -75,6 +80,7 @@
                                                                                                      fake library
                                                                                                    34. SpecialList
                                                                                                    35. SubForDocComments
                                                                                                    36. SuperAwesomeClass
                                                                                                    37. +
                                                                                                    38. TypedefUsingClass
                                                                                                    39. WithGetterAndSetter
                                                                                                    40. Constants
                                                                                                    41. @@ -106,6 +112,7 @@
                                                                                                      fake library
                                                                                                    42. Functions
                                                                                                    43. addCallback
                                                                                                    44. addCallback2
                                                                                                    45. +
                                                                                                    46. aVoidParameter
                                                                                                    47. functionWithFunctionParameters
                                                                                                    48. myGenericFunction
                                                                                                    49. onlyPositionalWithNoDefaultNoType
                                                                                                    50. @@ -113,6 +120,7 @@
                                                                                                      fake library
                                                                                                    51. paintImage2
                                                                                                    52. paramFromAnotherLib
                                                                                                    53. paramOfFutureOrNull
                                                                                                    54. +
                                                                                                    55. returningFutureVoid
                                                                                                    56. short
                                                                                                    57. soIntense
                                                                                                    58. thisIsAlsoAsync
                                                                                                    59. diff --git a/testing/test_package_docs/fake/greatAnnotation-constant.html b/testing/test_package_docs/fake/greatAnnotation-constant.html index 5d51bda26a..e0fd997689 100644 --- a/testing/test_package_docs/fake/greatAnnotation-constant.html +++ b/testing/test_package_docs/fake/greatAnnotation-constant.html @@ -39,11 +39,14 @@
                                                                                                      fake library
                                                                                                      1. Classes
                                                                                                      2. +
                                                                                                      3. ABaseClass
                                                                                                      4. AClassUsingASuperMixin
                                                                                                      5. AClassWithFancyProperties
                                                                                                      6. AMixinCallingSuper
                                                                                                      7. Annotation
                                                                                                      8. AnotherInterface
                                                                                                      9. +
                                                                                                      10. ATypeTakingClass
                                                                                                      11. +
                                                                                                      12. ATypeTakingClassMixedIn
                                                                                                      13. BaseForDocComments
                                                                                                      14. BaseThingy
                                                                                                      15. BaseThingy2
                                                                                                      16. @@ -52,12 +55,14 @@
                                                                                                        fake library
                                                                                                      17. ConstructorTester
                                                                                                      18. Cool
                                                                                                      19. DocumentWithATable
                                                                                                      20. +
                                                                                                      21. ExtendsFutureVoid
                                                                                                      22. ExtraSpecialList
                                                                                                      23. Foo2
                                                                                                      24. HasGenerics
                                                                                                      25. HasGenericWithExtends
                                                                                                      26. ImplementingThingy
                                                                                                      27. ImplementingThingy2
                                                                                                      28. +
                                                                                                      29. ImplementsFutureVoid
                                                                                                      30. ImplicitProperties
                                                                                                      31. InheritingClassOne
                                                                                                      32. InheritingClassTwo
                                                                                                      33. @@ -75,6 +80,7 @@
                                                                                                        fake library
                                                                                                      34. SpecialList
                                                                                                      35. SubForDocComments
                                                                                                      36. SuperAwesomeClass
                                                                                                      37. +
                                                                                                      38. TypedefUsingClass
                                                                                                      39. WithGetterAndSetter
                                                                                                      40. Constants
                                                                                                      41. @@ -106,6 +112,7 @@
                                                                                                        fake library
                                                                                                      42. Functions
                                                                                                      43. addCallback
                                                                                                      44. addCallback2
                                                                                                      45. +
                                                                                                      46. aVoidParameter
                                                                                                      47. functionWithFunctionParameters
                                                                                                      48. myGenericFunction
                                                                                                      49. onlyPositionalWithNoDefaultNoType
                                                                                                      50. @@ -113,6 +120,7 @@
                                                                                                        fake library
                                                                                                      51. paintImage2
                                                                                                      52. paramFromAnotherLib
                                                                                                      53. paramOfFutureOrNull
                                                                                                      54. +
                                                                                                      55. returningFutureVoid
                                                                                                      56. short
                                                                                                      57. soIntense
                                                                                                      58. thisIsAlsoAsync
                                                                                                      59. diff --git a/testing/test_package_docs/fake/greatestAnnotation-constant.html b/testing/test_package_docs/fake/greatestAnnotation-constant.html index 62866fdcbd..90593001a6 100644 --- a/testing/test_package_docs/fake/greatestAnnotation-constant.html +++ b/testing/test_package_docs/fake/greatestAnnotation-constant.html @@ -39,11 +39,14 @@
                                                                                                        fake library
                                                                                                        1. Classes
                                                                                                        2. +
                                                                                                        3. ABaseClass
                                                                                                        4. AClassUsingASuperMixin
                                                                                                        5. AClassWithFancyProperties
                                                                                                        6. AMixinCallingSuper
                                                                                                        7. Annotation
                                                                                                        8. AnotherInterface
                                                                                                        9. +
                                                                                                        10. ATypeTakingClass
                                                                                                        11. +
                                                                                                        12. ATypeTakingClassMixedIn
                                                                                                        13. BaseForDocComments
                                                                                                        14. BaseThingy
                                                                                                        15. BaseThingy2
                                                                                                        16. @@ -52,12 +55,14 @@
                                                                                                          fake library
                                                                                                        17. ConstructorTester
                                                                                                        18. Cool
                                                                                                        19. DocumentWithATable
                                                                                                        20. +
                                                                                                        21. ExtendsFutureVoid
                                                                                                        22. ExtraSpecialList
                                                                                                        23. Foo2
                                                                                                        24. HasGenerics
                                                                                                        25. HasGenericWithExtends
                                                                                                        26. ImplementingThingy
                                                                                                        27. ImplementingThingy2
                                                                                                        28. +
                                                                                                        29. ImplementsFutureVoid
                                                                                                        30. ImplicitProperties
                                                                                                        31. InheritingClassOne
                                                                                                        32. InheritingClassTwo
                                                                                                        33. @@ -75,6 +80,7 @@
                                                                                                          fake library
                                                                                                        34. SpecialList
                                                                                                        35. SubForDocComments
                                                                                                        36. SuperAwesomeClass
                                                                                                        37. +
                                                                                                        38. TypedefUsingClass
                                                                                                        39. WithGetterAndSetter
                                                                                                        40. Constants
                                                                                                        41. @@ -106,6 +112,7 @@
                                                                                                          fake library
                                                                                                        42. Functions
                                                                                                        43. addCallback
                                                                                                        44. addCallback2
                                                                                                        45. +
                                                                                                        46. aVoidParameter
                                                                                                        47. functionWithFunctionParameters
                                                                                                        48. myGenericFunction
                                                                                                        49. onlyPositionalWithNoDefaultNoType
                                                                                                        50. @@ -113,6 +120,7 @@
                                                                                                          fake library
                                                                                                        51. paintImage2
                                                                                                        52. paramFromAnotherLib
                                                                                                        53. paramOfFutureOrNull
                                                                                                        54. +
                                                                                                        55. returningFutureVoid
                                                                                                        56. short
                                                                                                        57. soIntense
                                                                                                        58. thisIsAlsoAsync
                                                                                                        59. diff --git a/testing/test_package_docs/fake/incorrectDocReference-constant.html b/testing/test_package_docs/fake/incorrectDocReference-constant.html index c673318802..2e349cf813 100644 --- a/testing/test_package_docs/fake/incorrectDocReference-constant.html +++ b/testing/test_package_docs/fake/incorrectDocReference-constant.html @@ -39,11 +39,14 @@
                                                                                                          fake library
                                                                                                          1. Classes
                                                                                                          2. +
                                                                                                          3. ABaseClass
                                                                                                          4. AClassUsingASuperMixin
                                                                                                          5. AClassWithFancyProperties
                                                                                                          6. AMixinCallingSuper
                                                                                                          7. Annotation
                                                                                                          8. AnotherInterface
                                                                                                          9. +
                                                                                                          10. ATypeTakingClass
                                                                                                          11. +
                                                                                                          12. ATypeTakingClassMixedIn
                                                                                                          13. BaseForDocComments
                                                                                                          14. BaseThingy
                                                                                                          15. BaseThingy2
                                                                                                          16. @@ -52,12 +55,14 @@
                                                                                                            fake library
                                                                                                          17. ConstructorTester
                                                                                                          18. Cool
                                                                                                          19. DocumentWithATable
                                                                                                          20. +
                                                                                                          21. ExtendsFutureVoid
                                                                                                          22. ExtraSpecialList
                                                                                                          23. Foo2
                                                                                                          24. HasGenerics
                                                                                                          25. HasGenericWithExtends
                                                                                                          26. ImplementingThingy
                                                                                                          27. ImplementingThingy2
                                                                                                          28. +
                                                                                                          29. ImplementsFutureVoid
                                                                                                          30. ImplicitProperties
                                                                                                          31. InheritingClassOne
                                                                                                          32. InheritingClassTwo
                                                                                                          33. @@ -75,6 +80,7 @@
                                                                                                            fake library
                                                                                                          34. SpecialList
                                                                                                          35. SubForDocComments
                                                                                                          36. SuperAwesomeClass
                                                                                                          37. +
                                                                                                          38. TypedefUsingClass
                                                                                                          39. WithGetterAndSetter
                                                                                                          40. Constants
                                                                                                          41. @@ -106,6 +112,7 @@
                                                                                                            fake library
                                                                                                          42. Functions
                                                                                                          43. addCallback
                                                                                                          44. addCallback2
                                                                                                          45. +
                                                                                                          46. aVoidParameter
                                                                                                          47. functionWithFunctionParameters
                                                                                                          48. myGenericFunction
                                                                                                          49. onlyPositionalWithNoDefaultNoType
                                                                                                          50. @@ -113,6 +120,7 @@
                                                                                                            fake library
                                                                                                          51. paintImage2
                                                                                                          52. paramFromAnotherLib
                                                                                                          53. paramOfFutureOrNull
                                                                                                          54. +
                                                                                                          55. returningFutureVoid
                                                                                                          56. short
                                                                                                          57. soIntense
                                                                                                          58. thisIsAlsoAsync
                                                                                                          59. diff --git a/testing/test_package_docs/fake/justGetter.html b/testing/test_package_docs/fake/justGetter.html index f49369da9f..8f665240b5 100644 --- a/testing/test_package_docs/fake/justGetter.html +++ b/testing/test_package_docs/fake/justGetter.html @@ -39,11 +39,14 @@
                                                                                                            fake library
                                                                                                            1. Classes
                                                                                                            2. +
                                                                                                            3. ABaseClass
                                                                                                            4. AClassUsingASuperMixin
                                                                                                            5. AClassWithFancyProperties
                                                                                                            6. AMixinCallingSuper
                                                                                                            7. Annotation
                                                                                                            8. AnotherInterface
                                                                                                            9. +
                                                                                                            10. ATypeTakingClass
                                                                                                            11. +
                                                                                                            12. ATypeTakingClassMixedIn
                                                                                                            13. BaseForDocComments
                                                                                                            14. BaseThingy
                                                                                                            15. BaseThingy2
                                                                                                            16. @@ -52,12 +55,14 @@
                                                                                                              fake library
                                                                                                            17. ConstructorTester
                                                                                                            18. Cool
                                                                                                            19. DocumentWithATable
                                                                                                            20. +
                                                                                                            21. ExtendsFutureVoid
                                                                                                            22. ExtraSpecialList
                                                                                                            23. Foo2
                                                                                                            24. HasGenerics
                                                                                                            25. HasGenericWithExtends
                                                                                                            26. ImplementingThingy
                                                                                                            27. ImplementingThingy2
                                                                                                            28. +
                                                                                                            29. ImplementsFutureVoid
                                                                                                            30. ImplicitProperties
                                                                                                            31. InheritingClassOne
                                                                                                            32. InheritingClassTwo
                                                                                                            33. @@ -75,6 +80,7 @@
                                                                                                              fake library
                                                                                                            34. SpecialList
                                                                                                            35. SubForDocComments
                                                                                                            36. SuperAwesomeClass
                                                                                                            37. +
                                                                                                            38. TypedefUsingClass
                                                                                                            39. WithGetterAndSetter
                                                                                                            40. Constants
                                                                                                            41. @@ -106,6 +112,7 @@
                                                                                                              fake library
                                                                                                            42. Functions
                                                                                                            43. addCallback
                                                                                                            44. addCallback2
                                                                                                            45. +
                                                                                                            46. aVoidParameter
                                                                                                            47. functionWithFunctionParameters
                                                                                                            48. myGenericFunction
                                                                                                            49. onlyPositionalWithNoDefaultNoType
                                                                                                            50. @@ -113,6 +120,7 @@
                                                                                                              fake library
                                                                                                            51. paintImage2
                                                                                                            52. paramFromAnotherLib
                                                                                                            53. paramOfFutureOrNull
                                                                                                            54. +
                                                                                                            55. returningFutureVoid
                                                                                                            56. short
                                                                                                            57. soIntense
                                                                                                            58. thisIsAlsoAsync
                                                                                                            59. diff --git a/testing/test_package_docs/fake/justSetter.html b/testing/test_package_docs/fake/justSetter.html index dae30797d8..ededecc27a 100644 --- a/testing/test_package_docs/fake/justSetter.html +++ b/testing/test_package_docs/fake/justSetter.html @@ -39,11 +39,14 @@
                                                                                                              fake library
                                                                                                              1. Classes
                                                                                                              2. +
                                                                                                              3. ABaseClass
                                                                                                              4. AClassUsingASuperMixin
                                                                                                              5. AClassWithFancyProperties
                                                                                                              6. AMixinCallingSuper
                                                                                                              7. Annotation
                                                                                                              8. AnotherInterface
                                                                                                              9. +
                                                                                                              10. ATypeTakingClass
                                                                                                              11. +
                                                                                                              12. ATypeTakingClassMixedIn
                                                                                                              13. BaseForDocComments
                                                                                                              14. BaseThingy
                                                                                                              15. BaseThingy2
                                                                                                              16. @@ -52,12 +55,14 @@
                                                                                                                fake library
                                                                                                              17. ConstructorTester
                                                                                                              18. Cool
                                                                                                              19. DocumentWithATable
                                                                                                              20. +
                                                                                                              21. ExtendsFutureVoid
                                                                                                              22. ExtraSpecialList
                                                                                                              23. Foo2
                                                                                                              24. HasGenerics
                                                                                                              25. HasGenericWithExtends
                                                                                                              26. ImplementingThingy
                                                                                                              27. ImplementingThingy2
                                                                                                              28. +
                                                                                                              29. ImplementsFutureVoid
                                                                                                              30. ImplicitProperties
                                                                                                              31. InheritingClassOne
                                                                                                              32. InheritingClassTwo
                                                                                                              33. @@ -75,6 +80,7 @@
                                                                                                                fake library
                                                                                                              34. SpecialList
                                                                                                              35. SubForDocComments
                                                                                                              36. SuperAwesomeClass
                                                                                                              37. +
                                                                                                              38. TypedefUsingClass
                                                                                                              39. WithGetterAndSetter
                                                                                                              40. Constants
                                                                                                              41. @@ -106,6 +112,7 @@
                                                                                                                fake library
                                                                                                              42. Functions
                                                                                                              43. addCallback
                                                                                                              44. addCallback2
                                                                                                              45. +
                                                                                                              46. aVoidParameter
                                                                                                              47. functionWithFunctionParameters
                                                                                                              48. myGenericFunction
                                                                                                              49. onlyPositionalWithNoDefaultNoType
                                                                                                              50. @@ -113,6 +120,7 @@
                                                                                                                fake library
                                                                                                              51. paintImage2
                                                                                                              52. paramFromAnotherLib
                                                                                                              53. paramOfFutureOrNull
                                                                                                              54. +
                                                                                                              55. returningFutureVoid
                                                                                                              56. short
                                                                                                              57. soIntense
                                                                                                              58. thisIsAlsoAsync
                                                                                                              59. diff --git a/testing/test_package_docs/fake/mapWithDynamicKeys.html b/testing/test_package_docs/fake/mapWithDynamicKeys.html index 54c3c4085d..ad8147e8dc 100644 --- a/testing/test_package_docs/fake/mapWithDynamicKeys.html +++ b/testing/test_package_docs/fake/mapWithDynamicKeys.html @@ -39,11 +39,14 @@
                                                                                                                fake library
                                                                                                                1. Classes
                                                                                                                2. +
                                                                                                                3. ABaseClass
                                                                                                                4. AClassUsingASuperMixin
                                                                                                                5. AClassWithFancyProperties
                                                                                                                6. AMixinCallingSuper
                                                                                                                7. Annotation
                                                                                                                8. AnotherInterface
                                                                                                                9. +
                                                                                                                10. ATypeTakingClass
                                                                                                                11. +
                                                                                                                12. ATypeTakingClassMixedIn
                                                                                                                13. BaseForDocComments
                                                                                                                14. BaseThingy
                                                                                                                15. BaseThingy2
                                                                                                                16. @@ -52,12 +55,14 @@
                                                                                                                  fake library
                                                                                                                17. ConstructorTester
                                                                                                                18. Cool
                                                                                                                19. DocumentWithATable
                                                                                                                20. +
                                                                                                                21. ExtendsFutureVoid
                                                                                                                22. ExtraSpecialList
                                                                                                                23. Foo2
                                                                                                                24. HasGenerics
                                                                                                                25. HasGenericWithExtends
                                                                                                                26. ImplementingThingy
                                                                                                                27. ImplementingThingy2
                                                                                                                28. +
                                                                                                                29. ImplementsFutureVoid
                                                                                                                30. ImplicitProperties
                                                                                                                31. InheritingClassOne
                                                                                                                32. InheritingClassTwo
                                                                                                                33. @@ -75,6 +80,7 @@
                                                                                                                  fake library
                                                                                                                34. SpecialList
                                                                                                                35. SubForDocComments
                                                                                                                36. SuperAwesomeClass
                                                                                                                37. +
                                                                                                                38. TypedefUsingClass
                                                                                                                39. WithGetterAndSetter
                                                                                                                40. Constants
                                                                                                                41. @@ -106,6 +112,7 @@
                                                                                                                  fake library
                                                                                                                42. Functions
                                                                                                                43. addCallback
                                                                                                                44. addCallback2
                                                                                                                45. +
                                                                                                                46. aVoidParameter
                                                                                                                47. functionWithFunctionParameters
                                                                                                                48. myGenericFunction
                                                                                                                49. onlyPositionalWithNoDefaultNoType
                                                                                                                50. @@ -113,6 +120,7 @@
                                                                                                                  fake library
                                                                                                                51. paintImage2
                                                                                                                52. paramFromAnotherLib
                                                                                                                53. paramOfFutureOrNull
                                                                                                                54. +
                                                                                                                55. returningFutureVoid
                                                                                                                56. short
                                                                                                                57. soIntense
                                                                                                                58. thisIsAlsoAsync
                                                                                                                59. diff --git a/testing/test_package_docs/fake/meaningOfLife.html b/testing/test_package_docs/fake/meaningOfLife.html index eead3fc2a3..cbf22f0f6e 100644 --- a/testing/test_package_docs/fake/meaningOfLife.html +++ b/testing/test_package_docs/fake/meaningOfLife.html @@ -39,11 +39,14 @@
                                                                                                                  fake library
                                                                                                                  1. Classes
                                                                                                                  2. +
                                                                                                                  3. ABaseClass
                                                                                                                  4. AClassUsingASuperMixin
                                                                                                                  5. AClassWithFancyProperties
                                                                                                                  6. AMixinCallingSuper
                                                                                                                  7. Annotation
                                                                                                                  8. AnotherInterface
                                                                                                                  9. +
                                                                                                                  10. ATypeTakingClass
                                                                                                                  11. +
                                                                                                                  12. ATypeTakingClassMixedIn
                                                                                                                  13. BaseForDocComments
                                                                                                                  14. BaseThingy
                                                                                                                  15. BaseThingy2
                                                                                                                  16. @@ -52,12 +55,14 @@
                                                                                                                    fake library
                                                                                                                  17. ConstructorTester
                                                                                                                  18. Cool
                                                                                                                  19. DocumentWithATable
                                                                                                                  20. +
                                                                                                                  21. ExtendsFutureVoid
                                                                                                                  22. ExtraSpecialList
                                                                                                                  23. Foo2
                                                                                                                  24. HasGenerics
                                                                                                                  25. HasGenericWithExtends
                                                                                                                  26. ImplementingThingy
                                                                                                                  27. ImplementingThingy2
                                                                                                                  28. +
                                                                                                                  29. ImplementsFutureVoid
                                                                                                                  30. ImplicitProperties
                                                                                                                  31. InheritingClassOne
                                                                                                                  32. InheritingClassTwo
                                                                                                                  33. @@ -75,6 +80,7 @@
                                                                                                                    fake library
                                                                                                                  34. SpecialList
                                                                                                                  35. SubForDocComments
                                                                                                                  36. SuperAwesomeClass
                                                                                                                  37. +
                                                                                                                  38. TypedefUsingClass
                                                                                                                  39. WithGetterAndSetter
                                                                                                                  40. Constants
                                                                                                                  41. @@ -106,6 +112,7 @@
                                                                                                                    fake library
                                                                                                                  42. Functions
                                                                                                                  43. addCallback
                                                                                                                  44. addCallback2
                                                                                                                  45. +
                                                                                                                  46. aVoidParameter
                                                                                                                  47. functionWithFunctionParameters
                                                                                                                  48. myGenericFunction
                                                                                                                  49. onlyPositionalWithNoDefaultNoType
                                                                                                                  50. @@ -113,6 +120,7 @@
                                                                                                                    fake library
                                                                                                                  51. paintImage2
                                                                                                                  52. paramFromAnotherLib
                                                                                                                  53. paramOfFutureOrNull
                                                                                                                  54. +
                                                                                                                  55. returningFutureVoid
                                                                                                                  56. short
                                                                                                                  57. soIntense
                                                                                                                  58. thisIsAlsoAsync
                                                                                                                  59. diff --git a/testing/test_package_docs/fake/myCoolTypedef.html b/testing/test_package_docs/fake/myCoolTypedef.html index 9a30b5a2c0..ec69ee0edc 100644 --- a/testing/test_package_docs/fake/myCoolTypedef.html +++ b/testing/test_package_docs/fake/myCoolTypedef.html @@ -39,11 +39,14 @@
                                                                                                                    fake library
                                                                                                                    1. Classes
                                                                                                                    2. +
                                                                                                                    3. ABaseClass
                                                                                                                    4. AClassUsingASuperMixin
                                                                                                                    5. AClassWithFancyProperties
                                                                                                                    6. AMixinCallingSuper
                                                                                                                    7. Annotation
                                                                                                                    8. AnotherInterface
                                                                                                                    9. +
                                                                                                                    10. ATypeTakingClass
                                                                                                                    11. +
                                                                                                                    12. ATypeTakingClassMixedIn
                                                                                                                    13. BaseForDocComments
                                                                                                                    14. BaseThingy
                                                                                                                    15. BaseThingy2
                                                                                                                    16. @@ -52,12 +55,14 @@
                                                                                                                      fake library
                                                                                                                    17. ConstructorTester
                                                                                                                    18. Cool
                                                                                                                    19. DocumentWithATable
                                                                                                                    20. +
                                                                                                                    21. ExtendsFutureVoid
                                                                                                                    22. ExtraSpecialList
                                                                                                                    23. Foo2
                                                                                                                    24. HasGenerics
                                                                                                                    25. HasGenericWithExtends
                                                                                                                    26. ImplementingThingy
                                                                                                                    27. ImplementingThingy2
                                                                                                                    28. +
                                                                                                                    29. ImplementsFutureVoid
                                                                                                                    30. ImplicitProperties
                                                                                                                    31. InheritingClassOne
                                                                                                                    32. InheritingClassTwo
                                                                                                                    33. @@ -75,6 +80,7 @@
                                                                                                                      fake library
                                                                                                                    34. SpecialList
                                                                                                                    35. SubForDocComments
                                                                                                                    36. SuperAwesomeClass
                                                                                                                    37. +
                                                                                                                    38. TypedefUsingClass
                                                                                                                    39. WithGetterAndSetter
                                                                                                                    40. Constants
                                                                                                                    41. @@ -106,6 +112,7 @@
                                                                                                                      fake library
                                                                                                                    42. Functions
                                                                                                                    43. addCallback
                                                                                                                    44. addCallback2
                                                                                                                    45. +
                                                                                                                    46. aVoidParameter
                                                                                                                    47. functionWithFunctionParameters
                                                                                                                    48. myGenericFunction
                                                                                                                    49. onlyPositionalWithNoDefaultNoType
                                                                                                                    50. @@ -113,6 +120,7 @@
                                                                                                                      fake library
                                                                                                                    51. paintImage2
                                                                                                                    52. paramFromAnotherLib
                                                                                                                    53. paramOfFutureOrNull
                                                                                                                    54. +
                                                                                                                    55. returningFutureVoid
                                                                                                                    56. short
                                                                                                                    57. soIntense
                                                                                                                    58. thisIsAlsoAsync
                                                                                                                    59. diff --git a/testing/test_package_docs/fake/myGenericFunction.html b/testing/test_package_docs/fake/myGenericFunction.html index 06fbcb0623..4a3c5e0eee 100644 --- a/testing/test_package_docs/fake/myGenericFunction.html +++ b/testing/test_package_docs/fake/myGenericFunction.html @@ -39,11 +39,14 @@
                                                                                                                      fake library
                                                                                                                      1. Classes
                                                                                                                      2. +
                                                                                                                      3. ABaseClass
                                                                                                                      4. AClassUsingASuperMixin
                                                                                                                      5. AClassWithFancyProperties
                                                                                                                      6. AMixinCallingSuper
                                                                                                                      7. Annotation
                                                                                                                      8. AnotherInterface
                                                                                                                      9. +
                                                                                                                      10. ATypeTakingClass
                                                                                                                      11. +
                                                                                                                      12. ATypeTakingClassMixedIn
                                                                                                                      13. BaseForDocComments
                                                                                                                      14. BaseThingy
                                                                                                                      15. BaseThingy2
                                                                                                                      16. @@ -52,12 +55,14 @@
                                                                                                                        fake library
                                                                                                                      17. ConstructorTester
                                                                                                                      18. Cool
                                                                                                                      19. DocumentWithATable
                                                                                                                      20. +
                                                                                                                      21. ExtendsFutureVoid
                                                                                                                      22. ExtraSpecialList
                                                                                                                      23. Foo2
                                                                                                                      24. HasGenerics
                                                                                                                      25. HasGenericWithExtends
                                                                                                                      26. ImplementingThingy
                                                                                                                      27. ImplementingThingy2
                                                                                                                      28. +
                                                                                                                      29. ImplementsFutureVoid
                                                                                                                      30. ImplicitProperties
                                                                                                                      31. InheritingClassOne
                                                                                                                      32. InheritingClassTwo
                                                                                                                      33. @@ -75,6 +80,7 @@
                                                                                                                        fake library
                                                                                                                      34. SpecialList
                                                                                                                      35. SubForDocComments
                                                                                                                      36. SuperAwesomeClass
                                                                                                                      37. +
                                                                                                                      38. TypedefUsingClass
                                                                                                                      39. WithGetterAndSetter
                                                                                                                      40. Constants
                                                                                                                      41. @@ -106,6 +112,7 @@
                                                                                                                        fake library
                                                                                                                      42. Functions
                                                                                                                      43. addCallback
                                                                                                                      44. addCallback2
                                                                                                                      45. +
                                                                                                                      46. aVoidParameter
                                                                                                                      47. functionWithFunctionParameters
                                                                                                                      48. myGenericFunction
                                                                                                                      49. onlyPositionalWithNoDefaultNoType
                                                                                                                      50. @@ -113,6 +120,7 @@
                                                                                                                        fake library
                                                                                                                      51. paintImage2
                                                                                                                      52. paramFromAnotherLib
                                                                                                                      53. paramOfFutureOrNull
                                                                                                                      54. +
                                                                                                                      55. returningFutureVoid
                                                                                                                      56. short
                                                                                                                      57. soIntense
                                                                                                                      58. thisIsAlsoAsync
                                                                                                                      59. diff --git a/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html b/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html index b7aab84a86..1bc98a742e 100644 --- a/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html +++ b/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html @@ -39,11 +39,14 @@
                                                                                                                        fake library
                                                                                                                        1. Classes
                                                                                                                        2. +
                                                                                                                        3. ABaseClass
                                                                                                                        4. AClassUsingASuperMixin
                                                                                                                        5. AClassWithFancyProperties
                                                                                                                        6. AMixinCallingSuper
                                                                                                                        7. Annotation
                                                                                                                        8. AnotherInterface
                                                                                                                        9. +
                                                                                                                        10. ATypeTakingClass
                                                                                                                        11. +
                                                                                                                        12. ATypeTakingClassMixedIn
                                                                                                                        13. BaseForDocComments
                                                                                                                        14. BaseThingy
                                                                                                                        15. BaseThingy2
                                                                                                                        16. @@ -52,12 +55,14 @@
                                                                                                                          fake library
                                                                                                                        17. ConstructorTester
                                                                                                                        18. Cool
                                                                                                                        19. DocumentWithATable
                                                                                                                        20. +
                                                                                                                        21. ExtendsFutureVoid
                                                                                                                        22. ExtraSpecialList
                                                                                                                        23. Foo2
                                                                                                                        24. HasGenerics
                                                                                                                        25. HasGenericWithExtends
                                                                                                                        26. ImplementingThingy
                                                                                                                        27. ImplementingThingy2
                                                                                                                        28. +
                                                                                                                        29. ImplementsFutureVoid
                                                                                                                        30. ImplicitProperties
                                                                                                                        31. InheritingClassOne
                                                                                                                        32. InheritingClassTwo
                                                                                                                        33. @@ -75,6 +80,7 @@
                                                                                                                          fake library
                                                                                                                        34. SpecialList
                                                                                                                        35. SubForDocComments
                                                                                                                        36. SuperAwesomeClass
                                                                                                                        37. +
                                                                                                                        38. TypedefUsingClass
                                                                                                                        39. WithGetterAndSetter
                                                                                                                        40. Constants
                                                                                                                        41. @@ -106,6 +112,7 @@
                                                                                                                          fake library
                                                                                                                        42. Functions
                                                                                                                        43. addCallback
                                                                                                                        44. addCallback2
                                                                                                                        45. +
                                                                                                                        46. aVoidParameter
                                                                                                                        47. functionWithFunctionParameters
                                                                                                                        48. myGenericFunction
                                                                                                                        49. onlyPositionalWithNoDefaultNoType
                                                                                                                        50. @@ -113,6 +120,7 @@
                                                                                                                          fake library
                                                                                                                        51. paintImage2
                                                                                                                        52. paramFromAnotherLib
                                                                                                                        53. paramOfFutureOrNull
                                                                                                                        54. +
                                                                                                                        55. returningFutureVoid
                                                                                                                        56. short
                                                                                                                        57. soIntense
                                                                                                                        58. thisIsAlsoAsync
                                                                                                                        59. @@ -152,7 +160,7 @@

                                                                                                                          onlyPositionalWithNoDefaultNoType function

                                                                                                                          void onlyPositionalWithNoDefaultNoType -([@greatestAnnotation anything ]) +([@greatestAnnotation dynamic anything ])

                                                                                                  A single optional positional param, no type annotation, no default value.

                                                                                                  diff --git a/testing/test_package_docs/fake/paintImage1.html b/testing/test_package_docs/fake/paintImage1.html index f3c310ab7a..fcbe9cb945 100644 --- a/testing/test_package_docs/fake/paintImage1.html +++ b/testing/test_package_docs/fake/paintImage1.html @@ -39,11 +39,14 @@
                                                                                                  fake library
                                                                                                  1. Classes
                                                                                                  2. +
                                                                                                  3. ABaseClass
                                                                                                  4. AClassUsingASuperMixin
                                                                                                  5. AClassWithFancyProperties
                                                                                                  6. AMixinCallingSuper
                                                                                                  7. Annotation
                                                                                                  8. AnotherInterface
                                                                                                  9. +
                                                                                                  10. ATypeTakingClass
                                                                                                  11. +
                                                                                                  12. ATypeTakingClassMixedIn
                                                                                                  13. BaseForDocComments
                                                                                                  14. BaseThingy
                                                                                                  15. BaseThingy2
                                                                                                  16. @@ -52,12 +55,14 @@
                                                                                                    fake library
                                                                                                  17. ConstructorTester
                                                                                                  18. Cool
                                                                                                  19. DocumentWithATable
                                                                                                  20. +
                                                                                                  21. ExtendsFutureVoid
                                                                                                  22. ExtraSpecialList
                                                                                                  23. Foo2
                                                                                                  24. HasGenerics
                                                                                                  25. HasGenericWithExtends
                                                                                                  26. ImplementingThingy
                                                                                                  27. ImplementingThingy2
                                                                                                  28. +
                                                                                                  29. ImplementsFutureVoid
                                                                                                  30. ImplicitProperties
                                                                                                  31. InheritingClassOne
                                                                                                  32. InheritingClassTwo
                                                                                                  33. @@ -75,6 +80,7 @@
                                                                                                    fake library
                                                                                                  34. SpecialList
                                                                                                  35. SubForDocComments
                                                                                                  36. SuperAwesomeClass
                                                                                                  37. +
                                                                                                  38. TypedefUsingClass
                                                                                                  39. WithGetterAndSetter
                                                                                                  40. Constants
                                                                                                  41. @@ -106,6 +112,7 @@
                                                                                                    fake library
                                                                                                  42. Functions
                                                                                                  43. addCallback
                                                                                                  44. addCallback2
                                                                                                  45. +
                                                                                                  46. aVoidParameter
                                                                                                  47. functionWithFunctionParameters
                                                                                                  48. myGenericFunction
                                                                                                  49. onlyPositionalWithNoDefaultNoType
                                                                                                  50. @@ -113,6 +120,7 @@
                                                                                                    fake library
                                                                                                  51. paintImage2
                                                                                                  52. paramFromAnotherLib
                                                                                                  53. paramOfFutureOrNull
                                                                                                  54. +
                                                                                                  55. returningFutureVoid
                                                                                                  56. short
                                                                                                  57. soIntense
                                                                                                  58. thisIsAlsoAsync
                                                                                                  59. diff --git a/testing/test_package_docs/fake/paintImage2.html b/testing/test_package_docs/fake/paintImage2.html index ce3f9de096..e235d94c1e 100644 --- a/testing/test_package_docs/fake/paintImage2.html +++ b/testing/test_package_docs/fake/paintImage2.html @@ -39,11 +39,14 @@
                                                                                                    fake library
                                                                                                    1. Classes
                                                                                                    2. +
                                                                                                    3. ABaseClass
                                                                                                    4. AClassUsingASuperMixin
                                                                                                    5. AClassWithFancyProperties
                                                                                                    6. AMixinCallingSuper
                                                                                                    7. Annotation
                                                                                                    8. AnotherInterface
                                                                                                    9. +
                                                                                                    10. ATypeTakingClass
                                                                                                    11. +
                                                                                                    12. ATypeTakingClassMixedIn
                                                                                                    13. BaseForDocComments
                                                                                                    14. BaseThingy
                                                                                                    15. BaseThingy2
                                                                                                    16. @@ -52,12 +55,14 @@
                                                                                                      fake library
                                                                                                    17. ConstructorTester
                                                                                                    18. Cool
                                                                                                    19. DocumentWithATable
                                                                                                    20. +
                                                                                                    21. ExtendsFutureVoid
                                                                                                    22. ExtraSpecialList
                                                                                                    23. Foo2
                                                                                                    24. HasGenerics
                                                                                                    25. HasGenericWithExtends
                                                                                                    26. ImplementingThingy
                                                                                                    27. ImplementingThingy2
                                                                                                    28. +
                                                                                                    29. ImplementsFutureVoid
                                                                                                    30. ImplicitProperties
                                                                                                    31. InheritingClassOne
                                                                                                    32. InheritingClassTwo
                                                                                                    33. @@ -75,6 +80,7 @@
                                                                                                      fake library
                                                                                                    34. SpecialList
                                                                                                    35. SubForDocComments
                                                                                                    36. SuperAwesomeClass
                                                                                                    37. +
                                                                                                    38. TypedefUsingClass
                                                                                                    39. WithGetterAndSetter
                                                                                                    40. Constants
                                                                                                    41. @@ -106,6 +112,7 @@
                                                                                                      fake library
                                                                                                    42. Functions
                                                                                                    43. addCallback
                                                                                                    44. addCallback2
                                                                                                    45. +
                                                                                                    46. aVoidParameter
                                                                                                    47. functionWithFunctionParameters
                                                                                                    48. myGenericFunction
                                                                                                    49. onlyPositionalWithNoDefaultNoType
                                                                                                    50. @@ -113,6 +120,7 @@
                                                                                                      fake library
                                                                                                    51. paintImage2
                                                                                                    52. paramFromAnotherLib
                                                                                                    53. paramOfFutureOrNull
                                                                                                    54. +
                                                                                                    55. returningFutureVoid
                                                                                                    56. short
                                                                                                    57. soIntense
                                                                                                    58. thisIsAlsoAsync
                                                                                                    59. diff --git a/testing/test_package_docs/fake/paramFromAnotherLib.html b/testing/test_package_docs/fake/paramFromAnotherLib.html index 9f7c2dcb57..c40aa1090e 100644 --- a/testing/test_package_docs/fake/paramFromAnotherLib.html +++ b/testing/test_package_docs/fake/paramFromAnotherLib.html @@ -39,11 +39,14 @@
                                                                                                      fake library
                                                                                                      1. Classes
                                                                                                      2. +
                                                                                                      3. ABaseClass
                                                                                                      4. AClassUsingASuperMixin
                                                                                                      5. AClassWithFancyProperties
                                                                                                      6. AMixinCallingSuper
                                                                                                      7. Annotation
                                                                                                      8. AnotherInterface
                                                                                                      9. +
                                                                                                      10. ATypeTakingClass
                                                                                                      11. +
                                                                                                      12. ATypeTakingClassMixedIn
                                                                                                      13. BaseForDocComments
                                                                                                      14. BaseThingy
                                                                                                      15. BaseThingy2
                                                                                                      16. @@ -52,12 +55,14 @@
                                                                                                        fake library
                                                                                                      17. ConstructorTester
                                                                                                      18. Cool
                                                                                                      19. DocumentWithATable
                                                                                                      20. +
                                                                                                      21. ExtendsFutureVoid
                                                                                                      22. ExtraSpecialList
                                                                                                      23. Foo2
                                                                                                      24. HasGenerics
                                                                                                      25. HasGenericWithExtends
                                                                                                      26. ImplementingThingy
                                                                                                      27. ImplementingThingy2
                                                                                                      28. +
                                                                                                      29. ImplementsFutureVoid
                                                                                                      30. ImplicitProperties
                                                                                                      31. InheritingClassOne
                                                                                                      32. InheritingClassTwo
                                                                                                      33. @@ -75,6 +80,7 @@
                                                                                                        fake library
                                                                                                      34. SpecialList
                                                                                                      35. SubForDocComments
                                                                                                      36. SuperAwesomeClass
                                                                                                      37. +
                                                                                                      38. TypedefUsingClass
                                                                                                      39. WithGetterAndSetter
                                                                                                      40. Constants
                                                                                                      41. @@ -106,6 +112,7 @@
                                                                                                        fake library
                                                                                                      42. Functions
                                                                                                      43. addCallback
                                                                                                      44. addCallback2
                                                                                                      45. +
                                                                                                      46. aVoidParameter
                                                                                                      47. functionWithFunctionParameters
                                                                                                      48. myGenericFunction
                                                                                                      49. onlyPositionalWithNoDefaultNoType
                                                                                                      50. @@ -113,6 +120,7 @@
                                                                                                        fake library
                                                                                                      51. paintImage2
                                                                                                      52. paramFromAnotherLib
                                                                                                      53. paramOfFutureOrNull
                                                                                                      54. +
                                                                                                      55. returningFutureVoid
                                                                                                      56. short
                                                                                                      57. soIntense
                                                                                                      58. thisIsAlsoAsync
                                                                                                      59. diff --git a/testing/test_package_docs/fake/paramOfFutureOrNull.html b/testing/test_package_docs/fake/paramOfFutureOrNull.html index 78e652aa54..f0bd03b316 100644 --- a/testing/test_package_docs/fake/paramOfFutureOrNull.html +++ b/testing/test_package_docs/fake/paramOfFutureOrNull.html @@ -39,11 +39,14 @@
                                                                                                        fake library
                                                                                                        1. Classes
                                                                                                        2. +
                                                                                                        3. ABaseClass
                                                                                                        4. AClassUsingASuperMixin
                                                                                                        5. AClassWithFancyProperties
                                                                                                        6. AMixinCallingSuper
                                                                                                        7. Annotation
                                                                                                        8. AnotherInterface
                                                                                                        9. +
                                                                                                        10. ATypeTakingClass
                                                                                                        11. +
                                                                                                        12. ATypeTakingClassMixedIn
                                                                                                        13. BaseForDocComments
                                                                                                        14. BaseThingy
                                                                                                        15. BaseThingy2
                                                                                                        16. @@ -52,12 +55,14 @@
                                                                                                          fake library
                                                                                                        17. ConstructorTester
                                                                                                        18. Cool
                                                                                                        19. DocumentWithATable
                                                                                                        20. +
                                                                                                        21. ExtendsFutureVoid
                                                                                                        22. ExtraSpecialList
                                                                                                        23. Foo2
                                                                                                        24. HasGenerics
                                                                                                        25. HasGenericWithExtends
                                                                                                        26. ImplementingThingy
                                                                                                        27. ImplementingThingy2
                                                                                                        28. +
                                                                                                        29. ImplementsFutureVoid
                                                                                                        30. ImplicitProperties
                                                                                                        31. InheritingClassOne
                                                                                                        32. InheritingClassTwo
                                                                                                        33. @@ -75,6 +80,7 @@
                                                                                                          fake library
                                                                                                        34. SpecialList
                                                                                                        35. SubForDocComments
                                                                                                        36. SuperAwesomeClass
                                                                                                        37. +
                                                                                                        38. TypedefUsingClass
                                                                                                        39. WithGetterAndSetter
                                                                                                        40. Constants
                                                                                                        41. @@ -106,6 +112,7 @@
                                                                                                          fake library
                                                                                                        42. Functions
                                                                                                        43. addCallback
                                                                                                        44. addCallback2
                                                                                                        45. +
                                                                                                        46. aVoidParameter
                                                                                                        47. functionWithFunctionParameters
                                                                                                        48. myGenericFunction
                                                                                                        49. onlyPositionalWithNoDefaultNoType
                                                                                                        50. @@ -113,6 +120,7 @@
                                                                                                          fake library
                                                                                                        51. paintImage2
                                                                                                        52. paramFromAnotherLib
                                                                                                        53. paramOfFutureOrNull
                                                                                                        54. +
                                                                                                        55. returningFutureVoid
                                                                                                        56. short
                                                                                                        57. soIntense
                                                                                                        58. thisIsAlsoAsync
                                                                                                        59. diff --git a/testing/test_package_docs/fake/required-constant.html b/testing/test_package_docs/fake/required-constant.html index c69f1d31ff..b1737181a1 100644 --- a/testing/test_package_docs/fake/required-constant.html +++ b/testing/test_package_docs/fake/required-constant.html @@ -39,11 +39,14 @@
                                                                                                          fake library
                                                                                                          1. Classes
                                                                                                          2. +
                                                                                                          3. ABaseClass
                                                                                                          4. AClassUsingASuperMixin
                                                                                                          5. AClassWithFancyProperties
                                                                                                          6. AMixinCallingSuper
                                                                                                          7. Annotation
                                                                                                          8. AnotherInterface
                                                                                                          9. +
                                                                                                          10. ATypeTakingClass
                                                                                                          11. +
                                                                                                          12. ATypeTakingClassMixedIn
                                                                                                          13. BaseForDocComments
                                                                                                          14. BaseThingy
                                                                                                          15. BaseThingy2
                                                                                                          16. @@ -52,12 +55,14 @@
                                                                                                            fake library
                                                                                                          17. ConstructorTester
                                                                                                          18. Cool
                                                                                                          19. DocumentWithATable
                                                                                                          20. +
                                                                                                          21. ExtendsFutureVoid
                                                                                                          22. ExtraSpecialList
                                                                                                          23. Foo2
                                                                                                          24. HasGenerics
                                                                                                          25. HasGenericWithExtends
                                                                                                          26. ImplementingThingy
                                                                                                          27. ImplementingThingy2
                                                                                                          28. +
                                                                                                          29. ImplementsFutureVoid
                                                                                                          30. ImplicitProperties
                                                                                                          31. InheritingClassOne
                                                                                                          32. InheritingClassTwo
                                                                                                          33. @@ -75,6 +80,7 @@
                                                                                                            fake library
                                                                                                          34. SpecialList
                                                                                                          35. SubForDocComments
                                                                                                          36. SuperAwesomeClass
                                                                                                          37. +
                                                                                                          38. TypedefUsingClass
                                                                                                          39. WithGetterAndSetter
                                                                                                          40. Constants
                                                                                                          41. @@ -106,6 +112,7 @@
                                                                                                            fake library
                                                                                                          42. Functions
                                                                                                          43. addCallback
                                                                                                          44. addCallback2
                                                                                                          45. +
                                                                                                          46. aVoidParameter
                                                                                                          47. functionWithFunctionParameters
                                                                                                          48. myGenericFunction
                                                                                                          49. onlyPositionalWithNoDefaultNoType
                                                                                                          50. @@ -113,6 +120,7 @@
                                                                                                            fake library
                                                                                                          51. paintImage2
                                                                                                          52. paramFromAnotherLib
                                                                                                          53. paramOfFutureOrNull
                                                                                                          54. +
                                                                                                          55. returningFutureVoid
                                                                                                          56. short
                                                                                                          57. soIntense
                                                                                                          58. thisIsAlsoAsync
                                                                                                          59. diff --git a/testing/test_package_docs/fake/returningFutureVoid.html b/testing/test_package_docs/fake/returningFutureVoid.html new file mode 100644 index 0000000000..9824fe70b4 --- /dev/null +++ b/testing/test_package_docs/fake/returningFutureVoid.html @@ -0,0 +1,189 @@ + + + + + + + + returningFutureVoid function - fake library - Dart API + + + + + + + + + + + + +
                                                                                                            + +
                                                                                                            + + +
                                                                                                            returningFutureVoid
                                                                                                            + +
                                                                                                            + +
                                                                                                            + + + +
                                                                                                            +

                                                                                                            returningFutureVoid function

                                                                                                            + +
                                                                                                            + Future<void> + returningFutureVoid +() +
                                                                                                            +
                                                                                                            +

                                                                                                            This function returns Future

                                                                                                            +
                                                                                                            + + + +
                                                                                                            + + + +
                                                                                                            + +
                                                                                                            + + test_package 0.0.1 + + +
                                                                                                            + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/setAndGet.html b/testing/test_package_docs/fake/setAndGet.html index 2d7edda5c0..717da144ce 100644 --- a/testing/test_package_docs/fake/setAndGet.html +++ b/testing/test_package_docs/fake/setAndGet.html @@ -39,11 +39,14 @@
                                                                                                            fake library
                                                                                                            1. Classes
                                                                                                            2. +
                                                                                                            3. ABaseClass
                                                                                                            4. AClassUsingASuperMixin
                                                                                                            5. AClassWithFancyProperties
                                                                                                            6. AMixinCallingSuper
                                                                                                            7. Annotation
                                                                                                            8. AnotherInterface
                                                                                                            9. +
                                                                                                            10. ATypeTakingClass
                                                                                                            11. +
                                                                                                            12. ATypeTakingClassMixedIn
                                                                                                            13. BaseForDocComments
                                                                                                            14. BaseThingy
                                                                                                            15. BaseThingy2
                                                                                                            16. @@ -52,12 +55,14 @@
                                                                                                              fake library
                                                                                                            17. ConstructorTester
                                                                                                            18. Cool
                                                                                                            19. DocumentWithATable
                                                                                                            20. +
                                                                                                            21. ExtendsFutureVoid
                                                                                                            22. ExtraSpecialList
                                                                                                            23. Foo2
                                                                                                            24. HasGenerics
                                                                                                            25. HasGenericWithExtends
                                                                                                            26. ImplementingThingy
                                                                                                            27. ImplementingThingy2
                                                                                                            28. +
                                                                                                            29. ImplementsFutureVoid
                                                                                                            30. ImplicitProperties
                                                                                                            31. InheritingClassOne
                                                                                                            32. InheritingClassTwo
                                                                                                            33. @@ -75,6 +80,7 @@
                                                                                                              fake library
                                                                                                            34. SpecialList
                                                                                                            35. SubForDocComments
                                                                                                            36. SuperAwesomeClass
                                                                                                            37. +
                                                                                                            38. TypedefUsingClass
                                                                                                            39. WithGetterAndSetter
                                                                                                            40. Constants
                                                                                                            41. @@ -106,6 +112,7 @@
                                                                                                              fake library
                                                                                                            42. Functions
                                                                                                            43. addCallback
                                                                                                            44. addCallback2
                                                                                                            45. +
                                                                                                            46. aVoidParameter
                                                                                                            47. functionWithFunctionParameters
                                                                                                            48. myGenericFunction
                                                                                                            49. onlyPositionalWithNoDefaultNoType
                                                                                                            50. @@ -113,6 +120,7 @@
                                                                                                              fake library
                                                                                                            51. paintImage2
                                                                                                            52. paramFromAnotherLib
                                                                                                            53. paramOfFutureOrNull
                                                                                                            54. +
                                                                                                            55. returningFutureVoid
                                                                                                            56. short
                                                                                                            57. soIntense
                                                                                                            58. thisIsAlsoAsync
                                                                                                            59. diff --git a/testing/test_package_docs/fake/short.html b/testing/test_package_docs/fake/short.html index 481c10851b..aa0653dbf4 100644 --- a/testing/test_package_docs/fake/short.html +++ b/testing/test_package_docs/fake/short.html @@ -39,11 +39,14 @@
                                                                                                              fake library
                                                                                                              1. Classes
                                                                                                              2. +
                                                                                                              3. ABaseClass
                                                                                                              4. AClassUsingASuperMixin
                                                                                                              5. AClassWithFancyProperties
                                                                                                              6. AMixinCallingSuper
                                                                                                              7. Annotation
                                                                                                              8. AnotherInterface
                                                                                                              9. +
                                                                                                              10. ATypeTakingClass
                                                                                                              11. +
                                                                                                              12. ATypeTakingClassMixedIn
                                                                                                              13. BaseForDocComments
                                                                                                              14. BaseThingy
                                                                                                              15. BaseThingy2
                                                                                                              16. @@ -52,12 +55,14 @@
                                                                                                                fake library
                                                                                                              17. ConstructorTester
                                                                                                              18. Cool
                                                                                                              19. DocumentWithATable
                                                                                                              20. +
                                                                                                              21. ExtendsFutureVoid
                                                                                                              22. ExtraSpecialList
                                                                                                              23. Foo2
                                                                                                              24. HasGenerics
                                                                                                              25. HasGenericWithExtends
                                                                                                              26. ImplementingThingy
                                                                                                              27. ImplementingThingy2
                                                                                                              28. +
                                                                                                              29. ImplementsFutureVoid
                                                                                                              30. ImplicitProperties
                                                                                                              31. InheritingClassOne
                                                                                                              32. InheritingClassTwo
                                                                                                              33. @@ -75,6 +80,7 @@
                                                                                                                fake library
                                                                                                              34. SpecialList
                                                                                                              35. SubForDocComments
                                                                                                              36. SuperAwesomeClass
                                                                                                              37. +
                                                                                                              38. TypedefUsingClass
                                                                                                              39. WithGetterAndSetter
                                                                                                              40. Constants
                                                                                                              41. @@ -106,6 +112,7 @@
                                                                                                                fake library
                                                                                                              42. Functions
                                                                                                              43. addCallback
                                                                                                              44. addCallback2
                                                                                                              45. +
                                                                                                              46. aVoidParameter
                                                                                                              47. functionWithFunctionParameters
                                                                                                              48. myGenericFunction
                                                                                                              49. onlyPositionalWithNoDefaultNoType
                                                                                                              50. @@ -113,6 +120,7 @@
                                                                                                                fake library
                                                                                                              51. paintImage2
                                                                                                              52. paramFromAnotherLib
                                                                                                              53. paramOfFutureOrNull
                                                                                                              54. +
                                                                                                              55. returningFutureVoid
                                                                                                              56. short
                                                                                                              57. soIntense
                                                                                                              58. thisIsAlsoAsync
                                                                                                              59. diff --git a/testing/test_package_docs/fake/simpleProperty.html b/testing/test_package_docs/fake/simpleProperty.html index ab8984314b..6744a2a42c 100644 --- a/testing/test_package_docs/fake/simpleProperty.html +++ b/testing/test_package_docs/fake/simpleProperty.html @@ -39,11 +39,14 @@
                                                                                                                fake library
                                                                                                                1. Classes
                                                                                                                2. +
                                                                                                                3. ABaseClass
                                                                                                                4. AClassUsingASuperMixin
                                                                                                                5. AClassWithFancyProperties
                                                                                                                6. AMixinCallingSuper
                                                                                                                7. Annotation
                                                                                                                8. AnotherInterface
                                                                                                                9. +
                                                                                                                10. ATypeTakingClass
                                                                                                                11. +
                                                                                                                12. ATypeTakingClassMixedIn
                                                                                                                13. BaseForDocComments
                                                                                                                14. BaseThingy
                                                                                                                15. BaseThingy2
                                                                                                                16. @@ -52,12 +55,14 @@
                                                                                                                  fake library
                                                                                                                17. ConstructorTester
                                                                                                                18. Cool
                                                                                                                19. DocumentWithATable
                                                                                                                20. +
                                                                                                                21. ExtendsFutureVoid
                                                                                                                22. ExtraSpecialList
                                                                                                                23. Foo2
                                                                                                                24. HasGenerics
                                                                                                                25. HasGenericWithExtends
                                                                                                                26. ImplementingThingy
                                                                                                                27. ImplementingThingy2
                                                                                                                28. +
                                                                                                                29. ImplementsFutureVoid
                                                                                                                30. ImplicitProperties
                                                                                                                31. InheritingClassOne
                                                                                                                32. InheritingClassTwo
                                                                                                                33. @@ -75,6 +80,7 @@
                                                                                                                  fake library
                                                                                                                34. SpecialList
                                                                                                                35. SubForDocComments
                                                                                                                36. SuperAwesomeClass
                                                                                                                37. +
                                                                                                                38. TypedefUsingClass
                                                                                                                39. WithGetterAndSetter
                                                                                                                40. Constants
                                                                                                                41. @@ -106,6 +112,7 @@
                                                                                                                  fake library
                                                                                                                42. Functions
                                                                                                                43. addCallback
                                                                                                                44. addCallback2
                                                                                                                45. +
                                                                                                                46. aVoidParameter
                                                                                                                47. functionWithFunctionParameters
                                                                                                                48. myGenericFunction
                                                                                                                49. onlyPositionalWithNoDefaultNoType
                                                                                                                50. @@ -113,6 +120,7 @@
                                                                                                                  fake library
                                                                                                                51. paintImage2
                                                                                                                52. paramFromAnotherLib
                                                                                                                53. paramOfFutureOrNull
                                                                                                                54. +
                                                                                                                55. returningFutureVoid
                                                                                                                56. short
                                                                                                                57. soIntense
                                                                                                                58. thisIsAlsoAsync
                                                                                                                59. diff --git a/testing/test_package_docs/fake/soIntense.html b/testing/test_package_docs/fake/soIntense.html index 8dd79e296d..17c91f986a 100644 --- a/testing/test_package_docs/fake/soIntense.html +++ b/testing/test_package_docs/fake/soIntense.html @@ -39,11 +39,14 @@
                                                                                                                  fake library
                                                                                                                  1. Classes
                                                                                                                  2. +
                                                                                                                  3. ABaseClass
                                                                                                                  4. AClassUsingASuperMixin
                                                                                                                  5. AClassWithFancyProperties
                                                                                                                  6. AMixinCallingSuper
                                                                                                                  7. Annotation
                                                                                                                  8. AnotherInterface
                                                                                                                  9. +
                                                                                                                  10. ATypeTakingClass
                                                                                                                  11. +
                                                                                                                  12. ATypeTakingClassMixedIn
                                                                                                                  13. BaseForDocComments
                                                                                                                  14. BaseThingy
                                                                                                                  15. BaseThingy2
                                                                                                                  16. @@ -52,12 +55,14 @@
                                                                                                                    fake library
                                                                                                                  17. ConstructorTester
                                                                                                                  18. Cool
                                                                                                                  19. DocumentWithATable
                                                                                                                  20. +
                                                                                                                  21. ExtendsFutureVoid
                                                                                                                  22. ExtraSpecialList
                                                                                                                  23. Foo2
                                                                                                                  24. HasGenerics
                                                                                                                  25. HasGenericWithExtends
                                                                                                                  26. ImplementingThingy
                                                                                                                  27. ImplementingThingy2
                                                                                                                  28. +
                                                                                                                  29. ImplementsFutureVoid
                                                                                                                  30. ImplicitProperties
                                                                                                                  31. InheritingClassOne
                                                                                                                  32. InheritingClassTwo
                                                                                                                  33. @@ -75,6 +80,7 @@
                                                                                                                    fake library
                                                                                                                  34. SpecialList
                                                                                                                  35. SubForDocComments
                                                                                                                  36. SuperAwesomeClass
                                                                                                                  37. +
                                                                                                                  38. TypedefUsingClass
                                                                                                                  39. WithGetterAndSetter
                                                                                                                  40. Constants
                                                                                                                  41. @@ -106,6 +112,7 @@
                                                                                                                    fake library
                                                                                                                  42. Functions
                                                                                                                  43. addCallback
                                                                                                                  44. addCallback2
                                                                                                                  45. +
                                                                                                                  46. aVoidParameter
                                                                                                                  47. functionWithFunctionParameters
                                                                                                                  48. myGenericFunction
                                                                                                                  49. onlyPositionalWithNoDefaultNoType
                                                                                                                  50. @@ -113,6 +120,7 @@
                                                                                                                    fake library
                                                                                                                  51. paintImage2
                                                                                                                  52. paramFromAnotherLib
                                                                                                                  53. paramOfFutureOrNull
                                                                                                                  54. +
                                                                                                                  55. returningFutureVoid
                                                                                                                  56. short
                                                                                                                  57. soIntense
                                                                                                                  58. thisIsAlsoAsync
                                                                                                                  59. @@ -147,7 +155,7 @@

                                                                                                                    soIntense function

                                                                                                                    void soIntense -(anything, { bool flag: true, int value }) +(dynamic anything, { bool flag: true, int value })

                                                                                                                    Top-level function with 1 param and 2 optional named params, 1 with a diff --git a/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html b/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html index 055e371dec..2dc399907f 100644 --- a/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html +++ b/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html @@ -39,11 +39,14 @@

                                                                                                                    fake library
                                                                                                                    1. Classes
                                                                                                                    2. +
                                                                                                                    3. ABaseClass
                                                                                                                    4. AClassUsingASuperMixin
                                                                                                                    5. AClassWithFancyProperties
                                                                                                                    6. AMixinCallingSuper
                                                                                                                    7. Annotation
                                                                                                                    8. AnotherInterface
                                                                                                                    9. +
                                                                                                                    10. ATypeTakingClass
                                                                                                                    11. +
                                                                                                                    12. ATypeTakingClassMixedIn
                                                                                                                    13. BaseForDocComments
                                                                                                                    14. BaseThingy
                                                                                                                    15. BaseThingy2
                                                                                                                    16. @@ -52,12 +55,14 @@
                                                                                                                      fake library
                                                                                                                    17. ConstructorTester
                                                                                                                    18. Cool
                                                                                                                    19. DocumentWithATable
                                                                                                                    20. +
                                                                                                                    21. ExtendsFutureVoid
                                                                                                                    22. ExtraSpecialList
                                                                                                                    23. Foo2
                                                                                                                    24. HasGenerics
                                                                                                                    25. HasGenericWithExtends
                                                                                                                    26. ImplementingThingy
                                                                                                                    27. ImplementingThingy2
                                                                                                                    28. +
                                                                                                                    29. ImplementsFutureVoid
                                                                                                                    30. ImplicitProperties
                                                                                                                    31. InheritingClassOne
                                                                                                                    32. InheritingClassTwo
                                                                                                                    33. @@ -75,6 +80,7 @@
                                                                                                                      fake library
                                                                                                                    34. SpecialList
                                                                                                                    35. SubForDocComments
                                                                                                                    36. SuperAwesomeClass
                                                                                                                    37. +
                                                                                                                    38. TypedefUsingClass
                                                                                                                    39. WithGetterAndSetter
                                                                                                                    40. Constants
                                                                                                                    41. @@ -106,6 +112,7 @@
                                                                                                                      fake library
                                                                                                                    42. Functions
                                                                                                                    43. addCallback
                                                                                                                    44. addCallback2
                                                                                                                    45. +
                                                                                                                    46. aVoidParameter
                                                                                                                    47. functionWithFunctionParameters
                                                                                                                    48. myGenericFunction
                                                                                                                    49. onlyPositionalWithNoDefaultNoType
                                                                                                                    50. @@ -113,6 +120,7 @@
                                                                                                                      fake library
                                                                                                                    51. paintImage2
                                                                                                                    52. paramFromAnotherLib
                                                                                                                    53. paramOfFutureOrNull
                                                                                                                    54. +
                                                                                                                    55. returningFutureVoid
                                                                                                                    56. short
                                                                                                                    57. soIntense
                                                                                                                    58. thisIsAlsoAsync
                                                                                                                    59. diff --git a/testing/test_package_docs/fake/thisIsAlsoAsync.html b/testing/test_package_docs/fake/thisIsAlsoAsync.html index bde1a543f7..762a31f263 100644 --- a/testing/test_package_docs/fake/thisIsAlsoAsync.html +++ b/testing/test_package_docs/fake/thisIsAlsoAsync.html @@ -39,11 +39,14 @@
                                                                                                                      fake library
                                                                                                                      1. Classes
                                                                                                                      2. +
                                                                                                                      3. ABaseClass
                                                                                                                      4. AClassUsingASuperMixin
                                                                                                                      5. AClassWithFancyProperties
                                                                                                                      6. AMixinCallingSuper
                                                                                                                      7. Annotation
                                                                                                                      8. AnotherInterface
                                                                                                                      9. +
                                                                                                                      10. ATypeTakingClass
                                                                                                                      11. +
                                                                                                                      12. ATypeTakingClassMixedIn
                                                                                                                      13. BaseForDocComments
                                                                                                                      14. BaseThingy
                                                                                                                      15. BaseThingy2
                                                                                                                      16. @@ -52,12 +55,14 @@
                                                                                                                        fake library
                                                                                                                      17. ConstructorTester
                                                                                                                      18. Cool
                                                                                                                      19. DocumentWithATable
                                                                                                                      20. +
                                                                                                                      21. ExtendsFutureVoid
                                                                                                                      22. ExtraSpecialList
                                                                                                                      23. Foo2
                                                                                                                      24. HasGenerics
                                                                                                                      25. HasGenericWithExtends
                                                                                                                      26. ImplementingThingy
                                                                                                                      27. ImplementingThingy2
                                                                                                                      28. +
                                                                                                                      29. ImplementsFutureVoid
                                                                                                                      30. ImplicitProperties
                                                                                                                      31. InheritingClassOne
                                                                                                                      32. InheritingClassTwo
                                                                                                                      33. @@ -75,6 +80,7 @@
                                                                                                                        fake library
                                                                                                                      34. SpecialList
                                                                                                                      35. SubForDocComments
                                                                                                                      36. SuperAwesomeClass
                                                                                                                      37. +
                                                                                                                      38. TypedefUsingClass
                                                                                                                      39. WithGetterAndSetter
                                                                                                                      40. Constants
                                                                                                                      41. @@ -106,6 +112,7 @@
                                                                                                                        fake library
                                                                                                                      42. Functions
                                                                                                                      43. addCallback
                                                                                                                      44. addCallback2
                                                                                                                      45. +
                                                                                                                      46. aVoidParameter
                                                                                                                      47. functionWithFunctionParameters
                                                                                                                      48. myGenericFunction
                                                                                                                      49. onlyPositionalWithNoDefaultNoType
                                                                                                                      50. @@ -113,6 +120,7 @@
                                                                                                                        fake library
                                                                                                                      51. paintImage2
                                                                                                                      52. paramFromAnotherLib
                                                                                                                      53. paramOfFutureOrNull
                                                                                                                      54. +
                                                                                                                      55. returningFutureVoid
                                                                                                                      56. short
                                                                                                                      57. soIntense
                                                                                                                      58. thisIsAlsoAsync
                                                                                                                      59. diff --git a/testing/test_package_docs/fake/thisIsAsync.html b/testing/test_package_docs/fake/thisIsAsync.html index 9ebaf21901..f94ffe442d 100644 --- a/testing/test_package_docs/fake/thisIsAsync.html +++ b/testing/test_package_docs/fake/thisIsAsync.html @@ -39,11 +39,14 @@
                                                                                                                        fake library
                                                                                                                        1. Classes
                                                                                                                        2. +
                                                                                                                        3. ABaseClass
                                                                                                                        4. AClassUsingASuperMixin
                                                                                                                        5. AClassWithFancyProperties
                                                                                                                        6. AMixinCallingSuper
                                                                                                                        7. Annotation
                                                                                                                        8. AnotherInterface
                                                                                                                        9. +
                                                                                                                        10. ATypeTakingClass
                                                                                                                        11. +
                                                                                                                        12. ATypeTakingClassMixedIn
                                                                                                                        13. BaseForDocComments
                                                                                                                        14. BaseThingy
                                                                                                                        15. BaseThingy2
                                                                                                                        16. @@ -52,12 +55,14 @@
                                                                                                                          fake library
                                                                                                                        17. ConstructorTester
                                                                                                                        18. Cool
                                                                                                                        19. DocumentWithATable
                                                                                                                        20. +
                                                                                                                        21. ExtendsFutureVoid
                                                                                                                        22. ExtraSpecialList
                                                                                                                        23. Foo2
                                                                                                                        24. HasGenerics
                                                                                                                        25. HasGenericWithExtends
                                                                                                                        26. ImplementingThingy
                                                                                                                        27. ImplementingThingy2
                                                                                                                        28. +
                                                                                                                        29. ImplementsFutureVoid
                                                                                                                        30. ImplicitProperties
                                                                                                                        31. InheritingClassOne
                                                                                                                        32. InheritingClassTwo
                                                                                                                        33. @@ -75,6 +80,7 @@
                                                                                                                          fake library
                                                                                                                        34. SpecialList
                                                                                                                        35. SubForDocComments
                                                                                                                        36. SuperAwesomeClass
                                                                                                                        37. +
                                                                                                                        38. TypedefUsingClass
                                                                                                                        39. WithGetterAndSetter
                                                                                                                        40. Constants
                                                                                                                        41. @@ -106,6 +112,7 @@
                                                                                                                          fake library
                                                                                                                        42. Functions
                                                                                                                        43. addCallback
                                                                                                                        44. addCallback2
                                                                                                                        45. +
                                                                                                                        46. aVoidParameter
                                                                                                                        47. functionWithFunctionParameters
                                                                                                                        48. myGenericFunction
                                                                                                                        49. onlyPositionalWithNoDefaultNoType
                                                                                                                        50. @@ -113,6 +120,7 @@
                                                                                                                          fake library
                                                                                                                        51. paintImage2
                                                                                                                        52. paramFromAnotherLib
                                                                                                                        53. paramOfFutureOrNull
                                                                                                                        54. +
                                                                                                                        55. returningFutureVoid
                                                                                                                        56. short
                                                                                                                        57. soIntense
                                                                                                                        58. thisIsAlsoAsync
                                                                                                                        59. diff --git a/testing/test_package_docs/fake/thisIsFutureOr.html b/testing/test_package_docs/fake/thisIsFutureOr.html index c87af59112..8312ae420e 100644 --- a/testing/test_package_docs/fake/thisIsFutureOr.html +++ b/testing/test_package_docs/fake/thisIsFutureOr.html @@ -39,11 +39,14 @@
                                                                                                                          fake library
                                                                                                                          1. Classes
                                                                                                                          2. +
                                                                                                                          3. ABaseClass
                                                                                                                          4. AClassUsingASuperMixin
                                                                                                                          5. AClassWithFancyProperties
                                                                                                                          6. AMixinCallingSuper
                                                                                                                          7. Annotation
                                                                                                                          8. AnotherInterface
                                                                                                                          9. +
                                                                                                                          10. ATypeTakingClass
                                                                                                                          11. +
                                                                                                                          12. ATypeTakingClassMixedIn
                                                                                                                          13. BaseForDocComments
                                                                                                                          14. BaseThingy
                                                                                                                          15. BaseThingy2
                                                                                                                          16. @@ -52,12 +55,14 @@
                                                                                                                            fake library
                                                                                                                          17. ConstructorTester
                                                                                                                          18. Cool
                                                                                                                          19. DocumentWithATable
                                                                                                                          20. +
                                                                                                                          21. ExtendsFutureVoid
                                                                                                                          22. ExtraSpecialList
                                                                                                                          23. Foo2
                                                                                                                          24. HasGenerics
                                                                                                                          25. HasGenericWithExtends
                                                                                                                          26. ImplementingThingy
                                                                                                                          27. ImplementingThingy2
                                                                                                                          28. +
                                                                                                                          29. ImplementsFutureVoid
                                                                                                                          30. ImplicitProperties
                                                                                                                          31. InheritingClassOne
                                                                                                                          32. InheritingClassTwo
                                                                                                                          33. @@ -75,6 +80,7 @@
                                                                                                                            fake library
                                                                                                                          34. SpecialList
                                                                                                                          35. SubForDocComments
                                                                                                                          36. SuperAwesomeClass
                                                                                                                          37. +
                                                                                                                          38. TypedefUsingClass
                                                                                                                          39. WithGetterAndSetter
                                                                                                                          40. Constants
                                                                                                                          41. @@ -106,6 +112,7 @@
                                                                                                                            fake library
                                                                                                                          42. Functions
                                                                                                                          43. addCallback
                                                                                                                          44. addCallback2
                                                                                                                          45. +
                                                                                                                          46. aVoidParameter
                                                                                                                          47. functionWithFunctionParameters
                                                                                                                          48. myGenericFunction
                                                                                                                          49. onlyPositionalWithNoDefaultNoType
                                                                                                                          50. @@ -113,6 +120,7 @@
                                                                                                                            fake library
                                                                                                                          51. paintImage2
                                                                                                                          52. paramFromAnotherLib
                                                                                                                          53. paramOfFutureOrNull
                                                                                                                          54. +
                                                                                                                          55. returningFutureVoid
                                                                                                                          56. short
                                                                                                                          57. soIntense
                                                                                                                          58. thisIsAlsoAsync
                                                                                                                          59. diff --git a/testing/test_package_docs/fake/thisIsFutureOrNull.html b/testing/test_package_docs/fake/thisIsFutureOrNull.html index cc9aea15aa..f4bf9ba364 100644 --- a/testing/test_package_docs/fake/thisIsFutureOrNull.html +++ b/testing/test_package_docs/fake/thisIsFutureOrNull.html @@ -39,11 +39,14 @@
                                                                                                                            fake library
                                                                                                                            1. Classes
                                                                                                                            2. +
                                                                                                                            3. ABaseClass
                                                                                                                            4. AClassUsingASuperMixin
                                                                                                                            5. AClassWithFancyProperties
                                                                                                                            6. AMixinCallingSuper
                                                                                                                            7. Annotation
                                                                                                                            8. AnotherInterface
                                                                                                                            9. +
                                                                                                                            10. ATypeTakingClass
                                                                                                                            11. +
                                                                                                                            12. ATypeTakingClassMixedIn
                                                                                                                            13. BaseForDocComments
                                                                                                                            14. BaseThingy
                                                                                                                            15. BaseThingy2
                                                                                                                            16. @@ -52,12 +55,14 @@
                                                                                                                              fake library
                                                                                                                            17. ConstructorTester
                                                                                                                            18. Cool
                                                                                                                            19. DocumentWithATable
                                                                                                                            20. +
                                                                                                                            21. ExtendsFutureVoid
                                                                                                                            22. ExtraSpecialList
                                                                                                                            23. Foo2
                                                                                                                            24. HasGenerics
                                                                                                                            25. HasGenericWithExtends
                                                                                                                            26. ImplementingThingy
                                                                                                                            27. ImplementingThingy2
                                                                                                                            28. +
                                                                                                                            29. ImplementsFutureVoid
                                                                                                                            30. ImplicitProperties
                                                                                                                            31. InheritingClassOne
                                                                                                                            32. InheritingClassTwo
                                                                                                                            33. @@ -75,6 +80,7 @@
                                                                                                                              fake library
                                                                                                                            34. SpecialList
                                                                                                                            35. SubForDocComments
                                                                                                                            36. SuperAwesomeClass
                                                                                                                            37. +
                                                                                                                            38. TypedefUsingClass
                                                                                                                            39. WithGetterAndSetter
                                                                                                                            40. Constants
                                                                                                                            41. @@ -106,6 +112,7 @@
                                                                                                                              fake library
                                                                                                                            42. Functions
                                                                                                                            43. addCallback
                                                                                                                            44. addCallback2
                                                                                                                            45. +
                                                                                                                            46. aVoidParameter
                                                                                                                            47. functionWithFunctionParameters
                                                                                                                            48. myGenericFunction
                                                                                                                            49. onlyPositionalWithNoDefaultNoType
                                                                                                                            50. @@ -113,6 +120,7 @@
                                                                                                                              fake library
                                                                                                                            51. paintImage2
                                                                                                                            52. paramFromAnotherLib
                                                                                                                            53. paramOfFutureOrNull
                                                                                                                            54. +
                                                                                                                            55. returningFutureVoid
                                                                                                                            56. short
                                                                                                                            57. soIntense
                                                                                                                            58. thisIsAlsoAsync
                                                                                                                            59. diff --git a/testing/test_package_docs/fake/thisIsFutureOrT.html b/testing/test_package_docs/fake/thisIsFutureOrT.html index 6ade3b2633..e59496f2f5 100644 --- a/testing/test_package_docs/fake/thisIsFutureOrT.html +++ b/testing/test_package_docs/fake/thisIsFutureOrT.html @@ -39,11 +39,14 @@
                                                                                                                              fake library
                                                                                                                              1. Classes
                                                                                                                              2. +
                                                                                                                              3. ABaseClass
                                                                                                                              4. AClassUsingASuperMixin
                                                                                                                              5. AClassWithFancyProperties
                                                                                                                              6. AMixinCallingSuper
                                                                                                                              7. Annotation
                                                                                                                              8. AnotherInterface
                                                                                                                              9. +
                                                                                                                              10. ATypeTakingClass
                                                                                                                              11. +
                                                                                                                              12. ATypeTakingClassMixedIn
                                                                                                                              13. BaseForDocComments
                                                                                                                              14. BaseThingy
                                                                                                                              15. BaseThingy2
                                                                                                                              16. @@ -52,12 +55,14 @@
                                                                                                                                fake library
                                                                                                                              17. ConstructorTester
                                                                                                                              18. Cool
                                                                                                                              19. DocumentWithATable
                                                                                                                              20. +
                                                                                                                              21. ExtendsFutureVoid
                                                                                                                              22. ExtraSpecialList
                                                                                                                              23. Foo2
                                                                                                                              24. HasGenerics
                                                                                                                              25. HasGenericWithExtends
                                                                                                                              26. ImplementingThingy
                                                                                                                              27. ImplementingThingy2
                                                                                                                              28. +
                                                                                                                              29. ImplementsFutureVoid
                                                                                                                              30. ImplicitProperties
                                                                                                                              31. InheritingClassOne
                                                                                                                              32. InheritingClassTwo
                                                                                                                              33. @@ -75,6 +80,7 @@
                                                                                                                                fake library
                                                                                                                              34. SpecialList
                                                                                                                              35. SubForDocComments
                                                                                                                              36. SuperAwesomeClass
                                                                                                                              37. +
                                                                                                                              38. TypedefUsingClass
                                                                                                                              39. WithGetterAndSetter
                                                                                                                              40. Constants
                                                                                                                              41. @@ -106,6 +112,7 @@
                                                                                                                                fake library
                                                                                                                              42. Functions
                                                                                                                              43. addCallback
                                                                                                                              44. addCallback2
                                                                                                                              45. +
                                                                                                                              46. aVoidParameter
                                                                                                                              47. functionWithFunctionParameters
                                                                                                                              48. myGenericFunction
                                                                                                                              49. onlyPositionalWithNoDefaultNoType
                                                                                                                              50. @@ -113,6 +120,7 @@
                                                                                                                                fake library
                                                                                                                              51. paintImage2
                                                                                                                              52. paramFromAnotherLib
                                                                                                                              53. paramOfFutureOrNull
                                                                                                                              54. +
                                                                                                                              55. returningFutureVoid
                                                                                                                              56. short
                                                                                                                              57. soIntense
                                                                                                                              58. thisIsAlsoAsync
                                                                                                                              59. diff --git a/testing/test_package_docs/fake/topLevelFunction.html b/testing/test_package_docs/fake/topLevelFunction.html index bf2f9276d6..50b4a8e80f 100644 --- a/testing/test_package_docs/fake/topLevelFunction.html +++ b/testing/test_package_docs/fake/topLevelFunction.html @@ -39,11 +39,14 @@
                                                                                                                                fake library
                                                                                                                                1. Classes
                                                                                                                                2. +
                                                                                                                                3. ABaseClass
                                                                                                                                4. AClassUsingASuperMixin
                                                                                                                                5. AClassWithFancyProperties
                                                                                                                                6. AMixinCallingSuper
                                                                                                                                7. Annotation
                                                                                                                                8. AnotherInterface
                                                                                                                                9. +
                                                                                                                                10. ATypeTakingClass
                                                                                                                                11. +
                                                                                                                                12. ATypeTakingClassMixedIn
                                                                                                                                13. BaseForDocComments
                                                                                                                                14. BaseThingy
                                                                                                                                15. BaseThingy2
                                                                                                                                16. @@ -52,12 +55,14 @@
                                                                                                                                  fake library
                                                                                                                                17. ConstructorTester
                                                                                                                                18. Cool
                                                                                                                                19. DocumentWithATable
                                                                                                                                20. +
                                                                                                                                21. ExtendsFutureVoid
                                                                                                                                22. ExtraSpecialList
                                                                                                                                23. Foo2
                                                                                                                                24. HasGenerics
                                                                                                                                25. HasGenericWithExtends
                                                                                                                                26. ImplementingThingy
                                                                                                                                27. ImplementingThingy2
                                                                                                                                28. +
                                                                                                                                29. ImplementsFutureVoid
                                                                                                                                30. ImplicitProperties
                                                                                                                                31. InheritingClassOne
                                                                                                                                32. InheritingClassTwo
                                                                                                                                33. @@ -75,6 +80,7 @@
                                                                                                                                  fake library
                                                                                                                                34. SpecialList
                                                                                                                                35. SubForDocComments
                                                                                                                                36. SuperAwesomeClass
                                                                                                                                37. +
                                                                                                                                38. TypedefUsingClass
                                                                                                                                39. WithGetterAndSetter
                                                                                                                                40. Constants
                                                                                                                                41. @@ -106,6 +112,7 @@
                                                                                                                                  fake library
                                                                                                                                42. Functions
                                                                                                                                43. addCallback
                                                                                                                                44. addCallback2
                                                                                                                                45. +
                                                                                                                                46. aVoidParameter
                                                                                                                                47. functionWithFunctionParameters
                                                                                                                                48. myGenericFunction
                                                                                                                                49. onlyPositionalWithNoDefaultNoType
                                                                                                                                50. @@ -113,6 +120,7 @@
                                                                                                                                  fake library
                                                                                                                                51. paintImage2
                                                                                                                                52. paramFromAnotherLib
                                                                                                                                53. paramOfFutureOrNull
                                                                                                                                54. +
                                                                                                                                55. returningFutureVoid
                                                                                                                                56. short
                                                                                                                                57. soIntense
                                                                                                                                58. thisIsAlsoAsync
                                                                                                                                59. diff --git a/testing/test_package_docs/fake/typeParamOfFutureOr.html b/testing/test_package_docs/fake/typeParamOfFutureOr.html index 4f2474dde2..f00c4f7a72 100644 --- a/testing/test_package_docs/fake/typeParamOfFutureOr.html +++ b/testing/test_package_docs/fake/typeParamOfFutureOr.html @@ -39,11 +39,14 @@
                                                                                                                                  fake library
                                                                                                                                  1. Classes
                                                                                                                                  2. +
                                                                                                                                  3. ABaseClass
                                                                                                                                  4. AClassUsingASuperMixin
                                                                                                                                  5. AClassWithFancyProperties
                                                                                                                                  6. AMixinCallingSuper
                                                                                                                                  7. Annotation
                                                                                                                                  8. AnotherInterface
                                                                                                                                  9. +
                                                                                                                                  10. ATypeTakingClass
                                                                                                                                  11. +
                                                                                                                                  12. ATypeTakingClassMixedIn
                                                                                                                                  13. BaseForDocComments
                                                                                                                                  14. BaseThingy
                                                                                                                                  15. BaseThingy2
                                                                                                                                  16. @@ -52,12 +55,14 @@
                                                                                                                                    fake library
                                                                                                                                  17. ConstructorTester
                                                                                                                                  18. Cool
                                                                                                                                  19. DocumentWithATable
                                                                                                                                  20. +
                                                                                                                                  21. ExtendsFutureVoid
                                                                                                                                  22. ExtraSpecialList
                                                                                                                                  23. Foo2
                                                                                                                                  24. HasGenerics
                                                                                                                                  25. HasGenericWithExtends
                                                                                                                                  26. ImplementingThingy
                                                                                                                                  27. ImplementingThingy2
                                                                                                                                  28. +
                                                                                                                                  29. ImplementsFutureVoid
                                                                                                                                  30. ImplicitProperties
                                                                                                                                  31. InheritingClassOne
                                                                                                                                  32. InheritingClassTwo
                                                                                                                                  33. @@ -75,6 +80,7 @@
                                                                                                                                    fake library
                                                                                                                                  34. SpecialList
                                                                                                                                  35. SubForDocComments
                                                                                                                                  36. SuperAwesomeClass
                                                                                                                                  37. +
                                                                                                                                  38. TypedefUsingClass
                                                                                                                                  39. WithGetterAndSetter
                                                                                                                                  40. Constants
                                                                                                                                  41. @@ -106,6 +112,7 @@
                                                                                                                                    fake library
                                                                                                                                  42. Functions
                                                                                                                                  43. addCallback
                                                                                                                                  44. addCallback2
                                                                                                                                  45. +
                                                                                                                                  46. aVoidParameter
                                                                                                                                  47. functionWithFunctionParameters
                                                                                                                                  48. myGenericFunction
                                                                                                                                  49. onlyPositionalWithNoDefaultNoType
                                                                                                                                  50. @@ -113,6 +120,7 @@
                                                                                                                                    fake library
                                                                                                                                  51. paintImage2
                                                                                                                                  52. paramFromAnotherLib
                                                                                                                                  53. paramOfFutureOrNull
                                                                                                                                  54. +
                                                                                                                                  55. returningFutureVoid
                                                                                                                                  56. short
                                                                                                                                  57. soIntense
                                                                                                                                  58. thisIsAlsoAsync
                                                                                                                                  59. diff --git a/testing/test_package_docs/index.json b/testing/test_package_docs/index.json index 1a9455a6dd..b3adcfbe1f 100644 --- a/testing/test_package_docs/index.json +++ b/testing/test_package_docs/index.json @@ -3594,6 +3594,83 @@ "type": "library", "overriddenDepth": 0 }, + { + "name": "ABaseClass", + "qualifiedName": "fake.ABaseClass", + "href": "fake/ABaseClass-class.html", + "type": "class", + "overriddenDepth": 0, + "enclosedBy": { + "name": "fake", + "type": "library" + } + }, + { + "name": "ABaseClass", + "qualifiedName": "fake.ABaseClass", + "href": "fake/ABaseClass/ABaseClass.html", + "type": "constructor", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ABaseClass", + "type": "class" + } + }, + { + "name": "operator ==", + "qualifiedName": "fake.ABaseClass.==", + "href": "fake/ABaseClass/operator_equals.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ABaseClass", + "type": "class" + } + }, + { + "name": "hashCode", + "qualifiedName": "fake.ABaseClass.hashCode", + "href": "fake/ABaseClass/hashCode.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ABaseClass", + "type": "class" + } + }, + { + "name": "noSuchMethod", + "qualifiedName": "fake.ABaseClass.noSuchMethod", + "href": "fake/ABaseClass/noSuchMethod.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ABaseClass", + "type": "class" + } + }, + { + "name": "runtimeType", + "qualifiedName": "fake.ABaseClass.runtimeType", + "href": "fake/ABaseClass/runtimeType.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ABaseClass", + "type": "class" + } + }, + { + "name": "toString", + "qualifiedName": "fake.ABaseClass.toString", + "href": "fake/ABaseClass/toString.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ABaseClass", + "type": "class" + } + }, { "name": "AClassUsingASuperMixin", "qualifiedName": "fake.AClassUsingASuperMixin", @@ -3737,6 +3814,116 @@ "type": "class" } }, + { + "name": "ATypeTakingClass", + "qualifiedName": "fake.ATypeTakingClass", + "href": "fake/ATypeTakingClass-class.html", + "type": "class", + "overriddenDepth": 0, + "enclosedBy": { + "name": "fake", + "type": "library" + } + }, + { + "name": "ATypeTakingClass", + "qualifiedName": "fake.ATypeTakingClass", + "href": "fake/ATypeTakingClass/ATypeTakingClass.html", + "type": "constructor", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ATypeTakingClass", + "type": "class" + } + }, + { + "name": "operator ==", + "qualifiedName": "fake.ATypeTakingClass.==", + "href": "fake/ATypeTakingClass/operator_equals.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ATypeTakingClass", + "type": "class" + } + }, + { + "name": "aMethodMaybeReturningVoid", + "qualifiedName": "fake.ATypeTakingClass.aMethodMaybeReturningVoid", + "href": "fake/ATypeTakingClass/aMethodMaybeReturningVoid.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ATypeTakingClass", + "type": "class" + } + }, + { + "name": "hashCode", + "qualifiedName": "fake.ATypeTakingClass.hashCode", + "href": "fake/ATypeTakingClass/hashCode.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ATypeTakingClass", + "type": "class" + } + }, + { + "name": "noSuchMethod", + "qualifiedName": "fake.ATypeTakingClass.noSuchMethod", + "href": "fake/ATypeTakingClass/noSuchMethod.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ATypeTakingClass", + "type": "class" + } + }, + { + "name": "runtimeType", + "qualifiedName": "fake.ATypeTakingClass.runtimeType", + "href": "fake/ATypeTakingClass/runtimeType.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ATypeTakingClass", + "type": "class" + } + }, + { + "name": "toString", + "qualifiedName": "fake.ATypeTakingClass.toString", + "href": "fake/ATypeTakingClass/toString.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ATypeTakingClass", + "type": "class" + } + }, + { + "name": "ATypeTakingClassMixedIn", + "qualifiedName": "fake.ATypeTakingClassMixedIn", + "href": "fake/ATypeTakingClassMixedIn-class.html", + "type": "class", + "overriddenDepth": 0, + "enclosedBy": { + "name": "fake", + "type": "library" + } + }, + { + "name": "ATypeTakingClassMixedIn", + "qualifiedName": "fake.ATypeTakingClassMixedIn", + "href": "fake/ATypeTakingClassMixedIn/ATypeTakingClassMixedIn.html", + "type": "constructor", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ATypeTakingClassMixedIn", + "type": "class" + } + }, { "name": "Annotation", "qualifiedName": "fake.Annotation", @@ -4870,6 +5057,138 @@ "type": "class" } }, + { + "name": "ExtendsFutureVoid", + "qualifiedName": "fake.ExtendsFutureVoid", + "href": "fake/ExtendsFutureVoid-class.html", + "type": "class", + "overriddenDepth": 0, + "enclosedBy": { + "name": "fake", + "type": "library" + } + }, + { + "name": "ExtendsFutureVoid", + "qualifiedName": "fake.ExtendsFutureVoid", + "href": "fake/ExtendsFutureVoid/ExtendsFutureVoid.html", + "type": "constructor", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ExtendsFutureVoid", + "type": "class" + } + }, + { + "name": "operator ==", + "qualifiedName": "fake.ExtendsFutureVoid.==", + "href": "fake/ExtendsFutureVoid/operator_equals.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ExtendsFutureVoid", + "type": "class" + } + }, + { + "name": "asStream", + "qualifiedName": "fake.ExtendsFutureVoid.asStream", + "href": "fake/ExtendsFutureVoid/asStream.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ExtendsFutureVoid", + "type": "class" + } + }, + { + "name": "catchError", + "qualifiedName": "fake.ExtendsFutureVoid.catchError", + "href": "fake/ExtendsFutureVoid/catchError.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ExtendsFutureVoid", + "type": "class" + } + }, + { + "name": "hashCode", + "qualifiedName": "fake.ExtendsFutureVoid.hashCode", + "href": "fake/ExtendsFutureVoid/hashCode.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ExtendsFutureVoid", + "type": "class" + } + }, + { + "name": "noSuchMethod", + "qualifiedName": "fake.ExtendsFutureVoid.noSuchMethod", + "href": "fake/ExtendsFutureVoid/noSuchMethod.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ExtendsFutureVoid", + "type": "class" + } + }, + { + "name": "runtimeType", + "qualifiedName": "fake.ExtendsFutureVoid.runtimeType", + "href": "fake/ExtendsFutureVoid/runtimeType.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ExtendsFutureVoid", + "type": "class" + } + }, + { + "name": "then", + "qualifiedName": "fake.ExtendsFutureVoid.then", + "href": "fake/ExtendsFutureVoid/then.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ExtendsFutureVoid", + "type": "class" + } + }, + { + "name": "timeout", + "qualifiedName": "fake.ExtendsFutureVoid.timeout", + "href": "fake/ExtendsFutureVoid/timeout.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ExtendsFutureVoid", + "type": "class" + } + }, + { + "name": "toString", + "qualifiedName": "fake.ExtendsFutureVoid.toString", + "href": "fake/ExtendsFutureVoid/toString.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ExtendsFutureVoid", + "type": "class" + } + }, + { + "name": "whenComplete", + "qualifiedName": "fake.ExtendsFutureVoid.whenComplete", + "href": "fake/ExtendsFutureVoid/whenComplete.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ExtendsFutureVoid", + "type": "class" + } + }, { "name": "ExtraSpecialList", "qualifiedName": "fake.ExtraSpecialList", @@ -5266,6 +5585,138 @@ "type": "class" } }, + { + "name": "ImplementsFutureVoid", + "qualifiedName": "fake.ImplementsFutureVoid", + "href": "fake/ImplementsFutureVoid-class.html", + "type": "class", + "overriddenDepth": 0, + "enclosedBy": { + "name": "fake", + "type": "library" + } + }, + { + "name": "ImplementsFutureVoid", + "qualifiedName": "fake.ImplementsFutureVoid", + "href": "fake/ImplementsFutureVoid/ImplementsFutureVoid.html", + "type": "constructor", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ImplementsFutureVoid", + "type": "class" + } + }, + { + "name": "operator ==", + "qualifiedName": "fake.ImplementsFutureVoid.==", + "href": "fake/ImplementsFutureVoid/operator_equals.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ImplementsFutureVoid", + "type": "class" + } + }, + { + "name": "asStream", + "qualifiedName": "fake.ImplementsFutureVoid.asStream", + "href": "fake/ImplementsFutureVoid/asStream.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ImplementsFutureVoid", + "type": "class" + } + }, + { + "name": "catchError", + "qualifiedName": "fake.ImplementsFutureVoid.catchError", + "href": "fake/ImplementsFutureVoid/catchError.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ImplementsFutureVoid", + "type": "class" + } + }, + { + "name": "hashCode", + "qualifiedName": "fake.ImplementsFutureVoid.hashCode", + "href": "fake/ImplementsFutureVoid/hashCode.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ImplementsFutureVoid", + "type": "class" + } + }, + { + "name": "noSuchMethod", + "qualifiedName": "fake.ImplementsFutureVoid.noSuchMethod", + "href": "fake/ImplementsFutureVoid/noSuchMethod.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ImplementsFutureVoid", + "type": "class" + } + }, + { + "name": "runtimeType", + "qualifiedName": "fake.ImplementsFutureVoid.runtimeType", + "href": "fake/ImplementsFutureVoid/runtimeType.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ImplementsFutureVoid", + "type": "class" + } + }, + { + "name": "then", + "qualifiedName": "fake.ImplementsFutureVoid.then", + "href": "fake/ImplementsFutureVoid/then.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ImplementsFutureVoid", + "type": "class" + } + }, + { + "name": "timeout", + "qualifiedName": "fake.ImplementsFutureVoid.timeout", + "href": "fake/ImplementsFutureVoid/timeout.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ImplementsFutureVoid", + "type": "class" + } + }, + { + "name": "toString", + "qualifiedName": "fake.ImplementsFutureVoid.toString", + "href": "fake/ImplementsFutureVoid/toString.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ImplementsFutureVoid", + "type": "class" + } + }, + { + "name": "whenComplete", + "qualifiedName": "fake.ImplementsFutureVoid.whenComplete", + "href": "fake/ImplementsFutureVoid/whenComplete.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ImplementsFutureVoid", + "type": "class" + } + }, { "name": "ImplicitProperties", "qualifiedName": "fake.ImplicitProperties", @@ -7477,6 +7928,94 @@ "type": "class" } }, + { + "name": "TypedefUsingClass", + "qualifiedName": "fake.TypedefUsingClass", + "href": "fake/TypedefUsingClass-class.html", + "type": "class", + "overriddenDepth": 0, + "enclosedBy": { + "name": "fake", + "type": "library" + } + }, + { + "name": "TypedefUsingClass", + "qualifiedName": "fake.TypedefUsingClass", + "href": "fake/TypedefUsingClass/TypedefUsingClass.html", + "type": "constructor", + "overriddenDepth": 0, + "enclosedBy": { + "name": "TypedefUsingClass", + "type": "class" + } + }, + { + "name": "operator ==", + "qualifiedName": "fake.TypedefUsingClass.==", + "href": "fake/TypedefUsingClass/operator_equals.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "TypedefUsingClass", + "type": "class" + } + }, + { + "name": "hashCode", + "qualifiedName": "fake.TypedefUsingClass.hashCode", + "href": "fake/TypedefUsingClass/hashCode.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "TypedefUsingClass", + "type": "class" + } + }, + { + "name": "noSuchMethod", + "qualifiedName": "fake.TypedefUsingClass.noSuchMethod", + "href": "fake/TypedefUsingClass/noSuchMethod.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "TypedefUsingClass", + "type": "class" + } + }, + { + "name": "runtimeType", + "qualifiedName": "fake.TypedefUsingClass.runtimeType", + "href": "fake/TypedefUsingClass/runtimeType.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "TypedefUsingClass", + "type": "class" + } + }, + { + "name": "toString", + "qualifiedName": "fake.TypedefUsingClass.toString", + "href": "fake/TypedefUsingClass/toString.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "TypedefUsingClass", + "type": "class" + } + }, + { + "name": "x", + "qualifiedName": "fake.TypedefUsingClass.x", + "href": "fake/TypedefUsingClass/x.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "TypedefUsingClass", + "type": "class" + } + }, { "name": "UP", "qualifiedName": "fake.UP", @@ -7598,6 +8137,17 @@ "type": "library" } }, + { + "name": "aVoidParameter", + "qualifiedName": "fake.aVoidParameter", + "href": "fake/aVoidParameter.html", + "type": "function", + "overriddenDepth": 0, + "enclosedBy": { + "name": "fake", + "type": "library" + } + }, { "name": "addCallback", "qualifiedName": "fake.addCallback", @@ -7829,6 +8379,17 @@ "type": "library" } }, + { + "name": "returningFutureVoid", + "qualifiedName": "fake.returningFutureVoid", + "href": "fake/returningFutureVoid.html", + "type": "function", + "overriddenDepth": 0, + "enclosedBy": { + "name": "fake", + "type": "library" + } + }, { "name": "setAndGet", "qualifiedName": "fake.setAndGet", diff --git a/testing/test_package_docs/reexport_one/SomeOtherClass-class.html b/testing/test_package_docs/reexport_one/SomeOtherClass-class.html index 9b1cc3ae98..511bba203f 100644 --- a/testing/test_package_docs/reexport_one/SomeOtherClass-class.html +++ b/testing/test_package_docs/reexport_one/SomeOtherClass-class.html @@ -121,7 +121,7 @@

                                                                                                                                    Methods

                                                                                                                                    Operators

                                                                                                                                    - operator ==(other) + operator ==(dynamic other) → bool
                                                                                                                                    diff --git a/testing/test_package_docs/reexport_one/SomeOtherClass/operator_equals.html b/testing/test_package_docs/reexport_one/SomeOtherClass/operator_equals.html index 2b9cdd707f..f13ffb7a3e 100644 --- a/testing/test_package_docs/reexport_one/SomeOtherClass/operator_equals.html +++ b/testing/test_package_docs/reexport_one/SomeOtherClass/operator_equals.html @@ -66,7 +66,7 @@

                                                                                                                                    operator == method

                                                                                                                                    bool operator == -(other) +(dynamic other)
                                                                                                                                    diff --git a/testing/test_package_docs/reexport_two/AUnicornClass-class.html b/testing/test_package_docs/reexport_two/AUnicornClass-class.html index d72aae14a8..d33550d45c 100644 --- a/testing/test_package_docs/reexport_two/AUnicornClass-class.html +++ b/testing/test_package_docs/reexport_two/AUnicornClass-class.html @@ -121,7 +121,7 @@

                                                                                                                                    Methods

                                                                                                                                    Operators

                                                                                                                                    - operator ==(other) + operator ==(dynamic other) → bool
                                                                                                                                    diff --git a/testing/test_package_docs/reexport_two/AUnicornClass/operator_equals.html b/testing/test_package_docs/reexport_two/AUnicornClass/operator_equals.html index 05e36e0d50..27ed9b4ee4 100644 --- a/testing/test_package_docs/reexport_two/AUnicornClass/operator_equals.html +++ b/testing/test_package_docs/reexport_two/AUnicornClass/operator_equals.html @@ -66,7 +66,7 @@

                                                                                                                                    operator == method

                                                                                                                                    bool operator == -(other) +(dynamic other)
                                                                                                                                    diff --git a/testing/test_package_docs/reexport_two/SomeClass-class.html b/testing/test_package_docs/reexport_two/SomeClass-class.html index 79339e5f9e..b7b95c6f55 100644 --- a/testing/test_package_docs/reexport_two/SomeClass-class.html +++ b/testing/test_package_docs/reexport_two/SomeClass-class.html @@ -121,7 +121,7 @@

                                                                                                                                    Methods

                                                                                                                                    Operators

                                                                                                                                    - operator ==(other) + operator ==(dynamic other) → bool
                                                                                                                                    diff --git a/testing/test_package_docs/reexport_two/SomeClass/operator_equals.html b/testing/test_package_docs/reexport_two/SomeClass/operator_equals.html index 6e43f5f669..e39da4efe7 100644 --- a/testing/test_package_docs/reexport_two/SomeClass/operator_equals.html +++ b/testing/test_package_docs/reexport_two/SomeClass/operator_equals.html @@ -66,7 +66,7 @@

                                                                                                                                    operator == method

                                                                                                                                    bool operator == -(other) +(dynamic other)
                                                                                                                                    diff --git a/testing/test_package_docs/reexport_two/YetAnotherClass-class.html b/testing/test_package_docs/reexport_two/YetAnotherClass-class.html index f2c9c8a95c..b4502d3a6d 100644 --- a/testing/test_package_docs/reexport_two/YetAnotherClass-class.html +++ b/testing/test_package_docs/reexport_two/YetAnotherClass-class.html @@ -121,7 +121,7 @@

                                                                                                                                    Methods

                                                                                                                                    Operators

                                                                                                                                    - operator ==(other) + operator ==(dynamic other) → bool
                                                                                                                                    diff --git a/testing/test_package_docs/reexport_two/YetAnotherClass/operator_equals.html b/testing/test_package_docs/reexport_two/YetAnotherClass/operator_equals.html index cc9f917716..4813ffc46f 100644 --- a/testing/test_package_docs/reexport_two/YetAnotherClass/operator_equals.html +++ b/testing/test_package_docs/reexport_two/YetAnotherClass/operator_equals.html @@ -66,7 +66,7 @@

                                                                                                                                    operator == method

                                                                                                                                    bool operator == -(other) +(dynamic other)
                                                                                                                                    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 134f2506dd..b6f97180e5 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 @@ -122,7 +122,7 @@

                                                                                                                                    Methods

                                                                                                                                    Operators

                                                                                                                                    - operator ==(other) + operator ==(dynamic other) → bool
                                                                                                                                    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 cca01a7aa6..5c833c7d52 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 @@ -66,7 +66,7 @@

                                                                                                                                    operator == method

                                                                                                                                    bool operator == -(other) +(dynamic other)
                                                                                                                                    diff --git a/testing/test_package_docs/test_package_imported.main/Whataclass2-class.html b/testing/test_package_docs/test_package_imported.main/Whataclass2-class.html index e33f9c70f0..fcbfbb9d47 100644 --- a/testing/test_package_docs/test_package_imported.main/Whataclass2-class.html +++ b/testing/test_package_docs/test_package_imported.main/Whataclass2-class.html @@ -122,7 +122,7 @@

                                                                                                                                    Methods

                                                                                                                                    Operators

                                                                                                                                    - operator ==(other) + operator ==(dynamic other) → bool
                                                                                                                                    diff --git a/testing/test_package_docs/test_package_imported.main/Whataclass2/operator_equals.html b/testing/test_package_docs/test_package_imported.main/Whataclass2/operator_equals.html index a162b4c27f..df41ab38b6 100644 --- a/testing/test_package_docs/test_package_imported.main/Whataclass2/operator_equals.html +++ b/testing/test_package_docs/test_package_imported.main/Whataclass2/operator_equals.html @@ -66,7 +66,7 @@

                                                                                                                                    operator == method

                                                                                                                                    bool operator == -(other) +(dynamic other)
                                                                                                                                    diff --git a/testing/test_package_docs/two_exports/BaseClass-class.html b/testing/test_package_docs/two_exports/BaseClass-class.html index 4a36035c9d..d859b85101 100644 --- a/testing/test_package_docs/two_exports/BaseClass-class.html +++ b/testing/test_package_docs/two_exports/BaseClass-class.html @@ -147,7 +147,7 @@

                                                                                                                                    Methods

                                                                                                                                    Operators

                                                                                                                                    - operator ==(other) + operator ==(dynamic other) → bool
                                                                                                                                    diff --git a/testing/test_package_docs/two_exports/ExtendingClass-class.html b/testing/test_package_docs/two_exports/ExtendingClass-class.html index 53c29c499a..a8f23ccbee 100644 --- a/testing/test_package_docs/two_exports/ExtendingClass-class.html +++ b/testing/test_package_docs/two_exports/ExtendingClass-class.html @@ -149,7 +149,7 @@

                                                                                                                                    Methods

                                                                                                                                    Operators

                                                                                                                                    - operator ==(other) + operator ==(dynamic other) → bool
                                                                                                                                    diff --git a/testing/test_package_embedder_yaml/pubspec.lock b/testing/test_package_embedder_yaml/pubspec.lock index c427295339..802445c793 100644 --- a/testing/test_package_embedder_yaml/pubspec.lock +++ b/testing/test_package_embedder_yaml/pubspec.lock @@ -1,5 +1,5 @@ # Generated by pub -# See http://pub.dartlang.org/doc/glossary.html#lockfile +# See https://www.dartlang.org/tools/pub/glossary#lockfile packages: {} sdks: dart: any