diff --git a/lib/src/markdown_processor.dart b/lib/src/markdown_processor.dart index 23fb02f253..ca97a0c1d8 100644 --- a/lib/src/markdown_processor.dart +++ b/lib/src/markdown_processor.dart @@ -127,8 +127,8 @@ final RegExp trailingIgnoreStuff = new RegExp(r'(<.*>|\(.*\))$'); final RegExp leadingIgnoreStuff = new RegExp(r'^(const|final|var)[\s]+', multiLine: true); -// This is explicitly intended as a reference to a constructor. -final RegExp isConstructor = new RegExp(r'^new[\s]+', multiLine: true); +// If found, this may be intended as a reference to a constructor. +final RegExp isConstructor = new RegExp(r'(^new[\s]+|\(\)$)', multiLine: true); // This is probably not really intended as a doc reference, so don't try or // warn about them. @@ -299,12 +299,45 @@ class _MarkdownCommentReference { assert(element != null); assert(element.packageGraph.allLibrariesAdded); - codeRefChomped = codeRef.replaceFirst(isConstructor, ''); + codeRefChomped = codeRef.replaceAll(isConstructor, ''); library = element is ModelElement ? (element as ModelElement).library : null; packageGraph = library.packageGraph; } + String __impliedDefaultConstructor; + bool __impliedDefaultConstructorIsSet = false; + + /// Returns the name of the implied default constructor if there is one, or + /// null if not. + /// + /// Default constructors are a special case in dartdoc. If we look up a name + /// within a class of that class itself, the first thing we find is the + /// default constructor. But we determine whether that's what they actually + /// intended (vs. the enclosing class) by context -- whether they seem + /// to be calling it with () or have a 'new' in front of it, or + /// whether the name is repeated. + /// + /// Similarly, referencing a class by itself might actually refer to its + /// constructor based on these same heuristics. + /// + /// With the name of the implied default constructor, other methods can + /// determine whether or not the constructor and/or class we resolved to + /// is actually matching the user's intent. + String get _impliedDefaultConstructor { + if (!__impliedDefaultConstructorIsSet) { + __impliedDefaultConstructorIsSet = true; + if (codeRef.contains(isConstructor) || + (codeRefChompedParts.length >= 2 && + codeRefChompedParts[codeRefChompedParts.length - 1] == + codeRefChompedParts[codeRefChompedParts.length - 2])) { + // If the last two parts of the code reference are equal, this is probably a default constructor. + __impliedDefaultConstructor = codeRefChompedParts.last; + } + } + return __impliedDefaultConstructor; + } + /// Calculate reference to a ModelElement. /// /// Uses a series of calls to the _find* methods in this class to get one @@ -318,8 +351,6 @@ class _MarkdownCommentReference { for (void Function() findMethod in [ // This might be an operator. Strip the operator prefix and try again. _findWithoutOperatorPrefix, - // Oh, and someone might have some type parameters or other garbage. - _findWithoutTrailingIgnoreStuff, // Oh, and someone might have thrown on a 'const' or 'final' in front. _findWithoutLeadingIgnoreStuff, // Maybe this ModelElement has parameters, and this is one of them. @@ -330,6 +361,8 @@ class _MarkdownCommentReference { _findTypeParameters, // This could be local to the class, look there first. _findWithinTryClasses, + // This could be a reference to a renamed library. + _findReferenceFromPrefixes, // We now need the ref element cache to keep from repeatedly searching [Package.allModelElements]. // But if not, look for a fully qualified match. (That only makes sense // if the codeRef might be qualified, and contains periods.) @@ -340,8 +373,12 @@ class _MarkdownCommentReference { _findGlobalWithinRefElementCache, // This could conceivably be a reference to an enum member. They don't show up in allModelElements. _findEnumReferences, + // Oh, and someone might have some type parameters or other garbage. + // After finding within classes because sometimes parentheses are used + // to imply constructors. + _findWithoutTrailingIgnoreStuff, // Use the analyzer to resolve a comment reference. - _findAnalyzerReferences + _findAnalyzerReferences, ]) { findMethod(); // Remove any "null" objects after each step of trying to add to results. @@ -355,8 +392,6 @@ class _MarkdownCommentReference { // This isn't C++. References to class methods are slightly expensive // in Dart so don't build that list unless you need to. for (void Function() reduceMethod in [ - // If this name could refer to a class or a constructor, prefer the class. - _reducePreferClass, // If a result is actually in this library, prefer that. _reducePreferResultsInSameLibrary, // If a result is accessible in this library, prefer that. @@ -404,30 +439,6 @@ class _MarkdownCommentReference { List get codeRefChompedParts => _codeRefChompedParts ??= codeRefChomped.split('.'); - /// Returns true if this is a constructor we should consider due to its - /// name and the code reference, or if this isn't a constructor. False - /// otherwise. - bool _ConsiderIfConstructor(ModelElement modelElement) { - // TODO(jcollins-g): Rewrite this to handle constructors in a less hacky way - if (modelElement is! Constructor) return true; - if (codeRef.contains(isConstructor)) return true; - Constructor aConstructor = modelElement; - if (codeRefParts.length > 1) { - // Pick the last two parts, in case a specific library was part of the - // codeRef. - if (codeRefParts[codeRefParts.length - 1] == - codeRefParts[codeRefParts.length - 2]) { - // Foobar.Foobar -- assume they really do mean the constructor for this class. - return true; - } - } - if (aConstructor.name != aConstructor.enclosingElement.name) { - // This isn't a default constructor so treat it like any other member. - return true; - } - return false; - } - void _reducePreferAnalyzerResolution() { Element refElement = _getRefElementFromCommentRefs(commentRefs, codeRef); if (results.any((me) => me.element == refElement)) { @@ -471,12 +482,6 @@ class _MarkdownCommentReference { } } - void _reducePreferClass() { - if (results.any((r) => r is Class)) { - results.removeWhere((r) => r is Constructor); - } - } - void _findTypeParameters() { if (element is TypeParameters) { results.addAll((element as TypeParameters).typeParameters.where((p) => @@ -540,6 +545,42 @@ class _MarkdownCommentReference { } } + /// Transform members of [toConvert] that are classes to their default constructor, + /// if a constructor is implied. If not, do the reverse conversion for default + /// constructors. + ModelElement _convertConstructors(ModelElement toConvert) { + if (_impliedDefaultConstructor != null) { + if (toConvert is Class && toConvert.name == _impliedDefaultConstructor) { + return toConvert.defaultConstructor; + } + return toConvert; + } else { + if (toConvert is Constructor && + (toConvert.enclosingElement as Class).defaultConstructor == + toConvert) { + return toConvert.enclosingElement; + } + return toConvert; + } + } + + void _findReferenceFromPrefixes() { + if (element is! ModelElement) return; + Map> prefixToLibrary = + (element as ModelElement).definingLibrary.prefixToLibrary; + if (prefixToLibrary.containsKey(codeRefChompedParts.first)) { + if (codeRefChompedParts.length == 1) { + results.addAll(prefixToLibrary[codeRefChompedParts.first]); + } else { + String lookup = codeRefChompedParts.sublist(1).join('.'); + prefixToLibrary[codeRefChompedParts.first]?.forEach((l) => l + .modelElementsNameMap[lookup] + ?.map(_convertConstructors) + ?.forEach((m) => _addCanonicalResult(m, _getPreferredClass(m)))); + } + } + } + void _findGlobalWithinRefElementCache() { if (packageGraph.findRefElementCache.containsKey(codeRefChomped)) { for (final modelElement @@ -547,7 +588,8 @@ class _MarkdownCommentReference { if (codeRefChomped == modelElement.fullyQualifiedNameWithoutLibrary || (modelElement is Library && codeRefChomped == modelElement.fullyQualifiedName)) { - _addCanonicalResult(modelElement, null); + _addCanonicalResult( + _convertConstructors(modelElement), preferredClass); } } } @@ -557,8 +599,7 @@ class _MarkdownCommentReference { // Only look for partially qualified matches if we didn't find a fully qualified one. if (library.modelElementsNameMap.containsKey(codeRefChomped)) { for (final modelElement in library.modelElementsNameMap[codeRefChomped]) { - if (!_ConsiderIfConstructor(modelElement)) continue; - _addCanonicalResult(modelElement, preferredClass); + _addCanonicalResult(_convertConstructors(modelElement), preferredClass); } } } @@ -571,13 +612,12 @@ class _MarkdownCommentReference { packageGraph.findRefElementCache.containsKey(codeRefChomped)) { for (final ModelElement modelElement in packageGraph.findRefElementCache[codeRefChomped]) { - if (!_ConsiderIfConstructor(modelElement)) continue; // For fully qualified matches, the original preferredClass passed // might make no sense. Instead, use the enclosing class from the // element in [packageGraph.findRefElementCache], because that element's // enclosing class will be preferred from [codeRefChomped]'s perspective. _addCanonicalResult( - modelElement, + _convertConstructors(modelElement), modelElement.enclosingElement is Class ? modelElement.enclosingElement : null); @@ -678,26 +718,17 @@ class _MarkdownCommentReference { /// Get any possible results for this class in the superChain. Returns /// true if we found something. void _getResultsForSuperChainElement(Class c, Class tryClass) { - Iterable membersToCheck; - membersToCheck = (c.allModelElementsByNamePart[codeRefChomped] ?? []) - .where((m) => _ConsiderIfConstructor(m)); + Iterable membersToCheck = + (c.allModelElementsByNamePart[codeRefChomped] ?? []) + .map(_convertConstructors); for (final ModelElement modelElement in membersToCheck) { // [thing], a member of this class _addCanonicalResult(modelElement, tryClass); } membersToCheck = (c.allModelElementsByNamePart[codeRefChompedParts.last] ?? []) - .where((m) => _ConsiderIfConstructor(m)); - if (codeRefChompedParts.first == c.name) { - // [Foo...thing], a member of this class (possibly a parameter). - membersToCheck.forEach((m) => _addCanonicalResult(m, tryClass)); - } else if (codeRefChompedParts.length > 1 && - codeRefChompedParts[codeRefChompedParts.length - 2] == c.name) { - // [....Foo.thing], a member of this class partially specified. - membersToCheck - .whereType() - .forEach((m) => _addCanonicalResult(m, tryClass)); - } + .map(_convertConstructors); + membersToCheck.forEach((m) => _addCanonicalResult(m, tryClass)); results.remove(null); if (results.isNotEmpty) return; if (c.fullyQualifiedNameWithoutLibrary == codeRefChomped) { diff --git a/lib/src/model.dart b/lib/src/model.dart index 8c8cf4d2b4..4659bafc21 100644 --- a/lib/src/model.dart +++ b/lib/src/model.dart @@ -631,6 +631,15 @@ class Class extends ModelElement .toList(growable: false); } + Constructor _defaultConstructor; + Constructor get defaultConstructor { + if (_defaultConstructor == null) { + _defaultConstructor = constructors + .firstWhere((c) => c.isDefaultConstructor, orElse: () => null); + } + return _defaultConstructor; + } + Iterable get allInstanceMethods => quiverIterables.concat([instanceMethods, inheritedMethods]); @@ -1227,7 +1236,10 @@ class Constructor extends ModelElement } @override - String get fullyQualifiedName => '${library.name}.$name'; + String get fullyQualifiedName { + if (isDefaultConstructor) return super.fullyQualifiedName; + return '${library.name}.$name'; + } @override String get href { @@ -1241,6 +1253,8 @@ class Constructor extends ModelElement @override bool get isConst => _constructor.isConst; + bool get isDefaultConstructor => name == enclosingElement.name; + bool get isFactory => _constructor.isFactory; @override @@ -2245,6 +2259,24 @@ class Library extends ModelElement with Categorization, TopLevelContainer { return _importedExportedLibraries; } + Map> _prefixToLibrary; + + /// Map of import prefixes ('import "foo" as prefix;') to [Library]. + Map> get prefixToLibrary { + if (_prefixToLibrary == null) { + _prefixToLibrary = {}; + // It is possible to have overlapping prefixes. + for (ImportElement i in (element as LibraryElement).imports) { + if (i.prefix?.name != null) { + _prefixToLibrary.putIfAbsent(i.prefix?.name, () => new Set()); + _prefixToLibrary[i.prefix?.name].add( + new ModelElement.from(i.importedLibrary, library, packageGraph)); + } + } + } + return _prefixToLibrary; + } + String _dirName; String get dirName { if (_dirName == null) { diff --git a/test/dartdoc_test.dart b/test/dartdoc_test.dart index 8c6d8881f2..d0caa6794e 100644 --- a/test/dartdoc_test.dart +++ b/test/dartdoc_test.dart @@ -252,7 +252,8 @@ void main() { Package p = packageGraph.defaultPackage; expect(p.name, 'test_package'); expect(p.hasDocumentationFile, isTrue); - expect(packageGraph.defaultPackage.publicLibraries, hasLength(10)); + // Total number of public libraries in test_package. + expect(packageGraph.defaultPackage.publicLibraries, hasLength(12)); expect(packageGraph.localPackages.length, equals(1)); }); @@ -307,7 +308,7 @@ void main() { PackageGraph p = results.packageGraph; expect(p.defaultPackage.name, 'test_package'); expect(p.defaultPackage.hasDocumentationFile, isTrue); - expect(p.localPublicLibraries, hasLength(9)); + expect(p.localPublicLibraries, hasLength(11)); expect(p.localPublicLibraries.map((lib) => lib.name).contains('fake'), isFalse); }); diff --git a/test/model_test.dart b/test/model_test.dart index be4ba4064c..70268ff212 100644 --- a/test/model_test.dart +++ b/test/model_test.dart @@ -367,7 +367,7 @@ void main() { expect( packageGraph .localPackages.first.defaultCategory.publicLibraries.length, - equals(3)); + equals(5)); }); test('Verify libraries with multiple categories show up in multiple places', @@ -391,7 +391,7 @@ void main() { expect( packageGraph .localPackages.first.defaultCategory.publicLibraries.length, - equals(3)); + equals(5)); }); }); @@ -461,7 +461,7 @@ void main() { }); test('libraries', () { - expect(packageGraph.localPublicLibraries, hasLength(8)); + expect(packageGraph.localPublicLibraries, hasLength(10)); expect(interceptorsLib.isPublic, isFalse); }); @@ -476,7 +476,7 @@ void main() { Package package = packageGraph.localPackages.first; expect(package.name, 'test_package'); - expect(package.publicLibraries, hasLength(8)); + expect(package.publicLibraries, hasLength(10)); }); test('multiple packages, sorted default', () { @@ -1089,6 +1089,43 @@ void main() { docsAsHtml = doAwesomeStuff.documentationAsHtml; }); + test('can handle renamed imports', () { + ModelFunction aFunctionUsingRenamedLib = fakeLibrary.functions + .firstWhere((f) => f.name == 'aFunctionUsingRenamedLib'); + expect( + aFunctionUsingRenamedLib.documentationAsHtml, + contains( + 'Link to library: renamedLib')); + expect( + aFunctionUsingRenamedLib.documentationAsHtml, + contains( + 'Link to constructor (implied): new renamedLib.YetAnotherHelper()')); + expect( + aFunctionUsingRenamedLib.documentationAsHtml, + contains( + 'Link to constructor (implied, no new): renamedLib.YetAnotherHelper()')); + expect( + aFunctionUsingRenamedLib.documentationAsHtml, + contains( + 'Link to class: renamedLib.YetAnotherHelper')); + expect( + aFunctionUsingRenamedLib.documentationAsHtml, + contains( + 'Link to constructor (direct): renamedLib.YetAnotherHelper.YetAnotherHelper')); + expect( + aFunctionUsingRenamedLib.documentationAsHtml, + contains( + 'Link to class member: renamedLib.YetAnotherHelper.getMoreContents')); + expect( + aFunctionUsingRenamedLib.documentationAsHtml, + contains( + 'Link to function: renamedLib.helperFunction')); + expect( + aFunctionUsingRenamedLib.documentationAsHtml, + contains( + 'Link to overlapping prefix: renamedLib2.theOnlyThingInTheLibrary')); + }); + test('operator [] reference within a class works', () { expect( docsAsHtml, @@ -1197,15 +1234,10 @@ void main() { test('links to a top-level variable with a prefix from an imported lib', () { - expect(docsAsHtml, - contains('css.theOnlyThingInTheLibrary')); - }, skip: 'https://github.com/dart-lang/dartdoc/issues/1402'); - - // remove this test when the above test is fixed. just here to - // track when the behavior changes - test('codeifies a prefixed top-level variable an imported lib', () { expect( - docsAsHtml, contains('css.theOnlyThingInTheLibrary')); + docsAsHtml, + contains( + 'css.theOnlyThingInTheLibrary')); }); test('links to a name with a single underscore', () { diff --git a/testing/test_package/lib/csspub.dart b/testing/test_package/lib/csspub.dart new file mode 100644 index 0000000000..ce018e93a3 --- /dev/null +++ b/testing/test_package/lib/csspub.dart @@ -0,0 +1,3 @@ +library csspub; + +String theOnlyThingInTheLibrary = 'hello'; diff --git a/testing/test_package/lib/fake.dart b/testing/test_package/lib/fake.dart index e65d17f880..da134b13c6 100644 --- a/testing/test_package/lib/fake.dart +++ b/testing/test_package/lib/fake.dart @@ -49,8 +49,11 @@ library fake; import 'dart:async'; import 'dart:collection'; import 'package:meta/meta.dart' show Required; -import 'css.dart' as css; +import 'csspub.dart' as css; +import 'csspub.dart' as renamedLib2; import 'example.dart'; +import 'mylibpub.dart' as renamedLib; +import 'mylibpub.dart' as renamedLib2; import 'two_exports.dart' show BaseClass; // ignore: uri_does_not_exist @@ -79,6 +82,20 @@ abstract class BaseThingy2 implements BaseThingy { ImplementingThingy2 get aImplementingThingy; } +/// This function has a link to a renamed library class member. +/// +/// Link to library: [renamedLib] +/// Link to constructor (implied): [new renamedLib.YetAnotherHelper()] +/// Link to constructor (implied, no new): [renamedLib.YetAnotherHelper()] +/// Link to class: [renamedLib.YetAnotherHelper] +/// Link to constructor (direct): [renamedLib.YetAnotherHelper.YetAnotherHelper] +/// Link to class member: [renamedLib.YetAnotherHelper.getMoreContents] +/// Link to function: [renamedLib.helperFunction] +/// Link to overlapping prefix: [renamedLib2.theOnlyThingInTheLibrary] +void aFunctionUsingRenamedLib() { + renamedLib.helperFunction('hello', 3); +} + class ConstructorTester { ConstructorTester(String param1) {} ConstructorTester.fromSomething(A foo) {} diff --git a/testing/test_package/lib/mylibpub.dart b/testing/test_package/lib/mylibpub.dart new file mode 100644 index 0000000000..e4d9af04fb --- /dev/null +++ b/testing/test_package/lib/mylibpub.dart @@ -0,0 +1,12 @@ +library mylibpub; + +void helperFunction(String message, int i) => print(message); + +/// Even unresolved references in the same library should be resolved +/// [Apple] +/// [ex.B] +class YetAnotherHelper { + YetAnotherHelper(); + + String getMoreContents() => ''; +} diff --git a/testing/test_package_docs/__404error.html b/testing/test_package_docs/__404error.html index 4eb7efd5e1..83e9b78ba2 100644 --- a/testing/test_package_docs/__404error.html +++ b/testing/test_package_docs/__404error.html @@ -52,7 +52,9 @@
test_package pa
  • anonymous_library
  • another_anonymous_lib
  • code_in_comments
  • +
  • csspub
  • is_deprecated
  • +
  • mylibpub
  • Unreal
  • reexport_one
  • reexport_two
  • diff --git a/testing/test_package_docs/anonymous_library/anonymous_library-library.html b/testing/test_package_docs/anonymous_library/anonymous_library-library.html index 43b1409497..2c5bea722b 100644 --- a/testing/test_package_docs/anonymous_library/anonymous_library-library.html +++ b/testing/test_package_docs/anonymous_library/anonymous_library-library.html @@ -55,7 +55,9 @@
    test_package pa
  • anonymous_library
  • another_anonymous_lib
  • code_in_comments
  • +
  • csspub
  • is_deprecated
  • +
  • mylibpub
  • Unreal
  • reexport_one
  • reexport_two
  • diff --git a/testing/test_package_docs/another_anonymous_lib/another_anonymous_lib-library.html b/testing/test_package_docs/another_anonymous_lib/another_anonymous_lib-library.html index f01b729502..b3a9a126c5 100644 --- a/testing/test_package_docs/another_anonymous_lib/another_anonymous_lib-library.html +++ b/testing/test_package_docs/another_anonymous_lib/another_anonymous_lib-library.html @@ -55,7 +55,9 @@
    test_package pa
  • anonymous_library
  • another_anonymous_lib
  • code_in_comments
  • +
  • csspub
  • is_deprecated
  • +
  • mylibpub
  • Unreal
  • reexport_one
  • reexport_two
  • diff --git a/testing/test_package_docs/categoriesExported/categoriesExported-library.html b/testing/test_package_docs/categoriesExported/categoriesExported-library.html index 8a74dba988..1f80856726 100644 --- a/testing/test_package_docs/categoriesExported/categoriesExported-library.html +++ b/testing/test_package_docs/categoriesExported/categoriesExported-library.html @@ -55,7 +55,9 @@
    test_package pa
  • anonymous_library
  • another_anonymous_lib
  • code_in_comments
  • +
  • csspub
  • is_deprecated
  • +
  • mylibpub
  • Unreal
  • reexport_one
  • reexport_two
  • diff --git a/testing/test_package_docs/code_in_comments/code_in_comments-library.html b/testing/test_package_docs/code_in_comments/code_in_comments-library.html index 2fb09b19fe..51d02625dd 100644 --- a/testing/test_package_docs/code_in_comments/code_in_comments-library.html +++ b/testing/test_package_docs/code_in_comments/code_in_comments-library.html @@ -55,7 +55,9 @@
    test_package pa
  • anonymous_library
  • another_anonymous_lib
  • code_in_comments
  • +
  • csspub
  • is_deprecated
  • +
  • mylibpub
  • Unreal
  • reexport_one
  • reexport_two
  • diff --git a/testing/test_package_docs/css/css-library.html b/testing/test_package_docs/css/css-library.html index 94bcc3bf0d..618d65d5e2 100644 --- a/testing/test_package_docs/css/css-library.html +++ b/testing/test_package_docs/css/css-library.html @@ -55,7 +55,9 @@
    test_package pa
  • anonymous_library
  • another_anonymous_lib
  • code_in_comments
  • +
  • csspub
  • is_deprecated
  • +
  • mylibpub
  • Unreal
  • reexport_one
  • reexport_two
  • diff --git a/testing/test_package_docs/csspub/csspub-library.html b/testing/test_package_docs/csspub/csspub-library.html new file mode 100644 index 0000000000..257b672f23 --- /dev/null +++ b/testing/test_package_docs/csspub/csspub-library.html @@ -0,0 +1,139 @@ + + + + + + + + csspub library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    csspub
    + +
    + +
    + + + +
    +

    csspub library

    + + + + + +
    +

    Properties

    + +
    +
    + theOnlyThingInTheLibrary + ↔ String +
    +
    + +
    read / write
    +
    +
    +
    + + + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/csspub/theOnlyThingInTheLibrary.html b/testing/test_package_docs/csspub/theOnlyThingInTheLibrary.html new file mode 100644 index 0000000000..da6dfce767 --- /dev/null +++ b/testing/test_package_docs/csspub/theOnlyThingInTheLibrary.html @@ -0,0 +1,99 @@ + + + + + + + + theOnlyThingInTheLibrary property - csspub library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    theOnlyThingInTheLibrary
    + +
    + +
    + + + +
    +

    theOnlyThingInTheLibrary top-level property

    + +
    + String + theOnlyThingInTheLibrary +
    read / write
    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/ex/ex-library.html b/testing/test_package_docs/ex/ex-library.html index 4ce74c59d0..c88a3eccda 100644 --- a/testing/test_package_docs/ex/ex-library.html +++ b/testing/test_package_docs/ex/ex-library.html @@ -55,7 +55,9 @@
    test_package pa
  • anonymous_library
  • another_anonymous_lib
  • code_in_comments
  • +
  • csspub
  • is_deprecated
  • +
  • mylibpub
  • Unreal
  • reexport_one
  • reexport_two
  • diff --git a/testing/test_package_docs/fake/ABaseClass-class.html b/testing/test_package_docs/fake/ABaseClass-class.html index 334a9ca94a..21968c62ef 100644 --- a/testing/test_package_docs/fake/ABaseClass-class.html +++ b/testing/test_package_docs/fake/ABaseClass-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html b/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html index 76251289e1..1dba0924a4 100644 --- a/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html +++ b/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/AClassUsingNewStyleMixin-class.html b/testing/test_package_docs/fake/AClassUsingNewStyleMixin-class.html index b9ddae3b3c..8d5a124e14 100644 --- a/testing/test_package_docs/fake/AClassUsingNewStyleMixin-class.html +++ b/testing/test_package_docs/fake/AClassUsingNewStyleMixin-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • @@ -252,7 +253,7 @@

    Properties

    I have documentation for an overridden method named superString, -different from NotAMixin.superString. +different from NotAMixin.superString.
    read-only, inherited
    diff --git a/testing/test_package_docs/fake/AClassWithFancyProperties-class.html b/testing/test_package_docs/fake/AClassWithFancyProperties-class.html index c9c7dbf351..452161a9ae 100644 --- a/testing/test_package_docs/fake/AClassWithFancyProperties-class.html +++ b/testing/test_package_docs/fake/AClassWithFancyProperties-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/AMixinCallingSuper-class.html b/testing/test_package_docs/fake/AMixinCallingSuper-class.html index 114a6051d9..709842b9b6 100644 --- a/testing/test_package_docs/fake/AMixinCallingSuper-class.html +++ b/testing/test_package_docs/fake/AMixinCallingSuper-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/ATypeTakingClass-class.html b/testing/test_package_docs/fake/ATypeTakingClass-class.html index f764dd13fb..057602683d 100644 --- a/testing/test_package_docs/fake/ATypeTakingClass-class.html +++ b/testing/test_package_docs/fake/ATypeTakingClass-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/ATypeTakingClassMixedIn-class.html b/testing/test_package_docs/fake/ATypeTakingClassMixedIn-class.html index d6ad4a7a86..52a4525f01 100644 --- a/testing/test_package_docs/fake/ATypeTakingClassMixedIn-class.html +++ b/testing/test_package_docs/fake/ATypeTakingClassMixedIn-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/Annotation-class.html b/testing/test_package_docs/fake/Annotation-class.html index 1ab7cb2694..991014892a 100644 --- a/testing/test_package_docs/fake/Annotation-class.html +++ b/testing/test_package_docs/fake/Annotation-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/AnotherInterface-class.html b/testing/test_package_docs/fake/AnotherInterface-class.html index a00bf96391..439e254dd2 100644 --- a/testing/test_package_docs/fake/AnotherInterface-class.html +++ b/testing/test_package_docs/fake/AnotherInterface-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/BaseForDocComments-class.html b/testing/test_package_docs/fake/BaseForDocComments-class.html index c26f290070..2a7d8a6159 100644 --- a/testing/test_package_docs/fake/BaseForDocComments-class.html +++ b/testing/test_package_docs/fake/BaseForDocComments-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/BaseForDocComments/doAwesomeStuff.html b/testing/test_package_docs/fake/BaseForDocComments/doAwesomeStuff.html index 847f7fe5a5..df201c28e2 100644 --- a/testing/test_package_docs/fake/BaseForDocComments/doAwesomeStuff.html +++ b/testing/test_package_docs/fake/BaseForDocComments/doAwesomeStuff.html @@ -99,7 +99,7 @@

    doAwesomeStuff method

    Reference to a top-level const in this library that shares the same name as a top-level name in another library incorrectDocReference xx

    Reference to a top-level const in another library incorrectDocReferenceFromEx

    -

    Reference to prefixed-name from another lib css.theOnlyThingInTheLibrary xx

    +

    Reference to prefixed-name from another lib css.theOnlyThingInTheLibrary xx

    Reference to a name that exists in this package, but is not imported in this library doesStuff xx

    Reference to a name of a class from an import of a library that exported diff --git a/testing/test_package_docs/fake/BaseThingy-class.html b/testing/test_package_docs/fake/BaseThingy-class.html index 50f4002d57..c03455409a 100644 --- a/testing/test_package_docs/fake/BaseThingy-class.html +++ b/testing/test_package_docs/fake/BaseThingy-class.html @@ -146,6 +146,7 @@

    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/BaseThingy2-class.html b/testing/test_package_docs/fake/BaseThingy2-class.html index a526da4c7a..ba50daec68 100644 --- a/testing/test_package_docs/fake/BaseThingy2-class.html +++ b/testing/test_package_docs/fake/BaseThingy2-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html b/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html index de0ac2278c..46e0878c09 100644 --- a/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html +++ b/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • 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 04dbda746e..1c11660155 100644 --- a/testing/test_package_docs/fake/CUSTOM_CLASS_PRIVATE-constant.html +++ b/testing/test_package_docs/fake/CUSTOM_CLASS_PRIVATE-constant.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/Callback2.html b/testing/test_package_docs/fake/Callback2.html index b9dc5a8114..8a1a02926b 100644 --- a/testing/test_package_docs/fake/Callback2.html +++ b/testing/test_package_docs/fake/Callback2.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html b/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html index 5e809e9971..b25de8fb20 100644 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html +++ b/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/Color-class.html b/testing/test_package_docs/fake/Color-class.html index dbc605031b..1e2f17963c 100644 --- a/testing/test_package_docs/fake/Color-class.html +++ b/testing/test_package_docs/fake/Color-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/ConstantClass-class.html b/testing/test_package_docs/fake/ConstantClass-class.html index 3ebf8d0d38..d75acff706 100644 --- a/testing/test_package_docs/fake/ConstantClass-class.html +++ b/testing/test_package_docs/fake/ConstantClass-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/ConstructorTester-class.html b/testing/test_package_docs/fake/ConstructorTester-class.html index 8bd1c590d6..d66288444b 100644 --- a/testing/test_package_docs/fake/ConstructorTester-class.html +++ b/testing/test_package_docs/fake/ConstructorTester-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/Cool-class.html b/testing/test_package_docs/fake/Cool-class.html index 3bfd3d4527..346180706f 100644 --- a/testing/test_package_docs/fake/Cool-class.html +++ b/testing/test_package_docs/fake/Cool-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/CovariantMemberParams-class.html b/testing/test_package_docs/fake/CovariantMemberParams-class.html index 3177c643f4..6dc298b505 100644 --- a/testing/test_package_docs/fake/CovariantMemberParams-class.html +++ b/testing/test_package_docs/fake/CovariantMemberParams-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/DOWN-constant.html b/testing/test_package_docs/fake/DOWN-constant.html index 551a047d6a..523cadd96a 100644 --- a/testing/test_package_docs/fake/DOWN-constant.html +++ b/testing/test_package_docs/fake/DOWN-constant.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/DocumentWithATable-class.html b/testing/test_package_docs/fake/DocumentWithATable-class.html index 4fa72aac41..2b18a33d19 100644 --- a/testing/test_package_docs/fake/DocumentWithATable-class.html +++ b/testing/test_package_docs/fake/DocumentWithATable-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/Doh-class.html b/testing/test_package_docs/fake/Doh-class.html index cbe4212f76..3a5f357a16 100644 --- a/testing/test_package_docs/fake/Doh-class.html +++ b/testing/test_package_docs/fake/Doh-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/ExtendsFutureVoid-class.html b/testing/test_package_docs/fake/ExtendsFutureVoid-class.html index bd5527b344..d0ad90c91d 100644 --- a/testing/test_package_docs/fake/ExtendsFutureVoid-class.html +++ b/testing/test_package_docs/fake/ExtendsFutureVoid-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/ExtraSpecialList-class.html b/testing/test_package_docs/fake/ExtraSpecialList-class.html index 924da5d38e..2a1d2cb7ca 100644 --- a/testing/test_package_docs/fake/ExtraSpecialList-class.html +++ b/testing/test_package_docs/fake/ExtraSpecialList-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/FakeProcesses.html b/testing/test_package_docs/fake/FakeProcesses.html index d1bc6622bf..6b5ed3e9c7 100644 --- a/testing/test_package_docs/fake/FakeProcesses.html +++ b/testing/test_package_docs/fake/FakeProcesses.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/Foo2-class.html b/testing/test_package_docs/fake/Foo2-class.html index 4dd356dc58..3d42180c46 100644 --- a/testing/test_package_docs/fake/Foo2-class.html +++ b/testing/test_package_docs/fake/Foo2-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/GenericClass-class.html b/testing/test_package_docs/fake/GenericClass-class.html index 6b1ee7c9e8..b5ec5212b8 100644 --- a/testing/test_package_docs/fake/GenericClass-class.html +++ b/testing/test_package_docs/fake/GenericClass-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/GenericMixin-mixin.html b/testing/test_package_docs/fake/GenericMixin-mixin.html index 1fb0c3f74b..28f296f815 100644 --- a/testing/test_package_docs/fake/GenericMixin-mixin.html +++ b/testing/test_package_docs/fake/GenericMixin-mixin.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/GenericTypedef.html b/testing/test_package_docs/fake/GenericTypedef.html index b24caa9d44..72974971bd 100644 --- a/testing/test_package_docs/fake/GenericTypedef.html +++ b/testing/test_package_docs/fake/GenericTypedef.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/HasDynamicAnnotation-class.html b/testing/test_package_docs/fake/HasDynamicAnnotation-class.html index fce5e080b4..4b8691dbc2 100644 --- a/testing/test_package_docs/fake/HasDynamicAnnotation-class.html +++ b/testing/test_package_docs/fake/HasDynamicAnnotation-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/HasGenericWithExtends-class.html b/testing/test_package_docs/fake/HasGenericWithExtends-class.html index ff69bab1d0..79a5ff705a 100644 --- a/testing/test_package_docs/fake/HasGenericWithExtends-class.html +++ b/testing/test_package_docs/fake/HasGenericWithExtends-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/HasGenerics-class.html b/testing/test_package_docs/fake/HasGenerics-class.html index fc6fb0a189..2c182f164d 100644 --- a/testing/test_package_docs/fake/HasGenerics-class.html +++ b/testing/test_package_docs/fake/HasGenerics-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/HasPragma-class.html b/testing/test_package_docs/fake/HasPragma-class.html index 1ba0b05e41..8edc6082ca 100644 --- a/testing/test_package_docs/fake/HasPragma-class.html +++ b/testing/test_package_docs/fake/HasPragma-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/ImplementingThingy-class.html b/testing/test_package_docs/fake/ImplementingThingy-class.html index 1c19fdef78..8261684c68 100644 --- a/testing/test_package_docs/fake/ImplementingThingy-class.html +++ b/testing/test_package_docs/fake/ImplementingThingy-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/ImplementingThingy2-class.html b/testing/test_package_docs/fake/ImplementingThingy2-class.html index 115dcd971b..3bfb58fbb3 100644 --- a/testing/test_package_docs/fake/ImplementingThingy2-class.html +++ b/testing/test_package_docs/fake/ImplementingThingy2-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/ImplementsFutureVoid-class.html b/testing/test_package_docs/fake/ImplementsFutureVoid-class.html index e6357dc03b..6d7c796fe9 100644 --- a/testing/test_package_docs/fake/ImplementsFutureVoid-class.html +++ b/testing/test_package_docs/fake/ImplementsFutureVoid-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/ImplicitProperties-class.html b/testing/test_package_docs/fake/ImplicitProperties-class.html index 064a2f0d68..91628926f7 100644 --- a/testing/test_package_docs/fake/ImplicitProperties-class.html +++ b/testing/test_package_docs/fake/ImplicitProperties-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/InheritingClassOne-class.html b/testing/test_package_docs/fake/InheritingClassOne-class.html index c557fed7d5..cfe0f29543 100644 --- a/testing/test_package_docs/fake/InheritingClassOne-class.html +++ b/testing/test_package_docs/fake/InheritingClassOne-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/InheritingClassTwo-class.html b/testing/test_package_docs/fake/InheritingClassTwo-class.html index 06bf263102..129cc87bec 100644 --- a/testing/test_package_docs/fake/InheritingClassTwo-class.html +++ b/testing/test_package_docs/fake/InheritingClassTwo-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/Interface-class.html b/testing/test_package_docs/fake/Interface-class.html index e734130128..a5ed33517c 100644 --- a/testing/test_package_docs/fake/Interface-class.html +++ b/testing/test_package_docs/fake/Interface-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/LongFirstLine-class.html b/testing/test_package_docs/fake/LongFirstLine-class.html index c1dfe06c14..d50ba2a3cf 100644 --- a/testing/test_package_docs/fake/LongFirstLine-class.html +++ b/testing/test_package_docs/fake/LongFirstLine-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/LotsAndLotsOfParameters.html b/testing/test_package_docs/fake/LotsAndLotsOfParameters.html index 628f279215..0e77fdb8b9 100644 --- a/testing/test_package_docs/fake/LotsAndLotsOfParameters.html +++ b/testing/test_package_docs/fake/LotsAndLotsOfParameters.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/MIEEBase-class.html b/testing/test_package_docs/fake/MIEEBase-class.html index 823b093998..a62dc27402 100644 --- a/testing/test_package_docs/fake/MIEEBase-class.html +++ b/testing/test_package_docs/fake/MIEEBase-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/MIEEMixin-class.html b/testing/test_package_docs/fake/MIEEMixin-class.html index 1b0675b5d8..41183bb72a 100644 --- a/testing/test_package_docs/fake/MIEEMixin-class.html +++ b/testing/test_package_docs/fake/MIEEMixin-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/MIEEMixinWithOverride-class.html b/testing/test_package_docs/fake/MIEEMixinWithOverride-class.html index a8c3341fa1..7f6d3f423d 100644 --- a/testing/test_package_docs/fake/MIEEMixinWithOverride-class.html +++ b/testing/test_package_docs/fake/MIEEMixinWithOverride-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/MIEEThing-class.html b/testing/test_package_docs/fake/MIEEThing-class.html index a39d6ebce6..638249c695 100644 --- a/testing/test_package_docs/fake/MIEEThing-class.html +++ b/testing/test_package_docs/fake/MIEEThing-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/MacrosFromAccessors-class.html b/testing/test_package_docs/fake/MacrosFromAccessors-class.html index d59ba1b22f..0654fe7c04 100644 --- a/testing/test_package_docs/fake/MacrosFromAccessors-class.html +++ b/testing/test_package_docs/fake/MacrosFromAccessors-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/MixMeIn-class.html b/testing/test_package_docs/fake/MixMeIn-class.html index 51c8d87afc..1fb15ae30b 100644 --- a/testing/test_package_docs/fake/MixMeIn-class.html +++ b/testing/test_package_docs/fake/MixMeIn-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/ModifierClass-class.html b/testing/test_package_docs/fake/ModifierClass-class.html index b5afb3032d..e9d40b47de 100644 --- a/testing/test_package_docs/fake/ModifierClass-class.html +++ b/testing/test_package_docs/fake/ModifierClass-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html b/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html index 4e835ef87b..4a840f3f1d 100644 --- a/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html +++ b/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • 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 c186f3d4dc..a1afa41b63 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 @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/NewGenericTypedef.html b/testing/test_package_docs/fake/NewGenericTypedef.html index c8c8270feb..f06334be5b 100644 --- a/testing/test_package_docs/fake/NewGenericTypedef.html +++ b/testing/test_package_docs/fake/NewGenericTypedef.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/NewStyleMixinCallingSuper-mixin.html b/testing/test_package_docs/fake/NewStyleMixinCallingSuper-mixin.html index de29dc58fe..f66bd95b54 100644 --- a/testing/test_package_docs/fake/NewStyleMixinCallingSuper-mixin.html +++ b/testing/test_package_docs/fake/NewStyleMixinCallingSuper-mixin.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • @@ -235,7 +236,7 @@

    Properties

    I have documentation for an overridden method named superString, -different from NotAMixin.superString. +different from NotAMixin.superString.
    read-only, override
    diff --git a/testing/test_package_docs/fake/NewStyleMixinCallingSuper/superString.html b/testing/test_package_docs/fake/NewStyleMixinCallingSuper/superString.html index 95a03628f3..c59e38ec29 100644 --- a/testing/test_package_docs/fake/NewStyleMixinCallingSuper/superString.html +++ b/testing/test_package_docs/fake/NewStyleMixinCallingSuper/superString.html @@ -88,7 +88,7 @@

    superString property

    I have documentation for an overridden method named superString, -different from NotAMixin.superString.

    +different from NotAMixin.superString.

    diff --git a/testing/test_package_docs/fake/NotAMixin-class.html b/testing/test_package_docs/fake/NotAMixin-class.html index cd785899ee..2b746aa062 100644 --- a/testing/test_package_docs/fake/NotAMixin-class.html +++ b/testing/test_package_docs/fake/NotAMixin-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/Oops-class.html b/testing/test_package_docs/fake/Oops-class.html index 77c94f14b7..5b6917cbd7 100644 --- a/testing/test_package_docs/fake/Oops-class.html +++ b/testing/test_package_docs/fake/Oops-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/OperatorReferenceClass-class.html b/testing/test_package_docs/fake/OperatorReferenceClass-class.html index 542a9d86dd..d00735b277 100644 --- a/testing/test_package_docs/fake/OperatorReferenceClass-class.html +++ b/testing/test_package_docs/fake/OperatorReferenceClass-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/OtherGenericsThing-class.html b/testing/test_package_docs/fake/OtherGenericsThing-class.html index b15765187f..267e295303 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing-class.html +++ b/testing/test_package_docs/fake/OtherGenericsThing-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/PI-constant.html b/testing/test_package_docs/fake/PI-constant.html index 9407564e5b..62d684fe44 100644 --- a/testing/test_package_docs/fake/PI-constant.html +++ b/testing/test_package_docs/fake/PI-constant.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/ReferToADefaultConstructor-class.html b/testing/test_package_docs/fake/ReferToADefaultConstructor-class.html index 587e60bf5f..8137601a0d 100644 --- a/testing/test_package_docs/fake/ReferToADefaultConstructor-class.html +++ b/testing/test_package_docs/fake/ReferToADefaultConstructor-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/ReferringClass-class.html b/testing/test_package_docs/fake/ReferringClass-class.html index 6e5f2aaf15..14af9fc5dc 100644 --- a/testing/test_package_docs/fake/ReferringClass-class.html +++ b/testing/test_package_docs/fake/ReferringClass-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/SpecialList-class.html b/testing/test_package_docs/fake/SpecialList-class.html index a050407b98..81121f5855 100644 --- a/testing/test_package_docs/fake/SpecialList-class.html +++ b/testing/test_package_docs/fake/SpecialList-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/SubForDocComments-class.html b/testing/test_package_docs/fake/SubForDocComments-class.html index 6182067ba1..d9fd0c184a 100644 --- a/testing/test_package_docs/fake/SubForDocComments-class.html +++ b/testing/test_package_docs/fake/SubForDocComments-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/SuperAwesomeClass-class.html b/testing/test_package_docs/fake/SuperAwesomeClass-class.html index a6cf121aba..14112ab1b5 100644 --- a/testing/test_package_docs/fake/SuperAwesomeClass-class.html +++ b/testing/test_package_docs/fake/SuperAwesomeClass-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/TypeInferenceMixedIn-class.html b/testing/test_package_docs/fake/TypeInferenceMixedIn-class.html index 2a0203a51f..474c1ef1f2 100644 --- a/testing/test_package_docs/fake/TypeInferenceMixedIn-class.html +++ b/testing/test_package_docs/fake/TypeInferenceMixedIn-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/TypedefUsingClass-class.html b/testing/test_package_docs/fake/TypedefUsingClass-class.html index f636c3eed1..e64f902616 100644 --- a/testing/test_package_docs/fake/TypedefUsingClass-class.html +++ b/testing/test_package_docs/fake/TypedefUsingClass-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/UP-constant.html b/testing/test_package_docs/fake/UP-constant.html index 859c9313ee..a803a795a8 100644 --- a/testing/test_package_docs/fake/UP-constant.html +++ b/testing/test_package_docs/fake/UP-constant.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/VoidCallback.html b/testing/test_package_docs/fake/VoidCallback.html index 1e6bbe46d3..3464985ff5 100644 --- a/testing/test_package_docs/fake/VoidCallback.html +++ b/testing/test_package_docs/fake/VoidCallback.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/WithGetterAndSetter-class.html b/testing/test_package_docs/fake/WithGetterAndSetter-class.html index de1aa8576b..2e64a3ae27 100644 --- a/testing/test_package_docs/fake/WithGetterAndSetter-class.html +++ b/testing/test_package_docs/fake/WithGetterAndSetter-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/ZERO-constant.html b/testing/test_package_docs/fake/ZERO-constant.html index 4aa97f8d80..d961861422 100644 --- a/testing/test_package_docs/fake/ZERO-constant.html +++ b/testing/test_package_docs/fake/ZERO-constant.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/aCoolVariable.html b/testing/test_package_docs/fake/aCoolVariable.html index 43b05aabcd..112840a547 100644 --- a/testing/test_package_docs/fake/aCoolVariable.html +++ b/testing/test_package_docs/fake/aCoolVariable.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/aDynamicAnnotation-constant.html b/testing/test_package_docs/fake/aDynamicAnnotation-constant.html index 1185caf3b8..c036c4ec3a 100644 --- a/testing/test_package_docs/fake/aDynamicAnnotation-constant.html +++ b/testing/test_package_docs/fake/aDynamicAnnotation-constant.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/aFunctionUsingRenamedLib.html b/testing/test_package_docs/fake/aFunctionUsingRenamedLib.html new file mode 100644 index 0000000000..afd8dc206e --- /dev/null +++ b/testing/test_package_docs/fake/aFunctionUsingRenamedLib.html @@ -0,0 +1,236 @@ + + + + + + + + aFunctionUsingRenamedLib function - fake library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    aFunctionUsingRenamedLib
    + +
    + +
    + + + +
    +

    aFunctionUsingRenamedLib function

    + +
    + void + aFunctionUsingRenamedLib +() +
    +
    +

    This function has a link to a renamed library class member.

    +

    Link to library: renamedLib +Link to constructor (implied): new renamedLib.YetAnotherHelper() +Link to constructor (implied, no new): renamedLib.YetAnotherHelper() +Link to class: renamedLib.YetAnotherHelper +Link to constructor (direct): renamedLib.YetAnotherHelper.YetAnotherHelper +Link to class member: renamedLib.YetAnotherHelper.getMoreContents +Link to function: renamedLib.helperFunction +Link to overlapping prefix: renamedLib2.theOnlyThingInTheLibrary

    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/aMixinReturningFunction.html b/testing/test_package_docs/fake/aMixinReturningFunction.html index 293bb52ef8..ef03f3cb2c 100644 --- a/testing/test_package_docs/fake/aMixinReturningFunction.html +++ b/testing/test_package_docs/fake/aMixinReturningFunction.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/aVoidParameter.html b/testing/test_package_docs/fake/aVoidParameter.html index 4bb7c30b9f..820a132799 100644 --- a/testing/test_package_docs/fake/aVoidParameter.html +++ b/testing/test_package_docs/fake/aVoidParameter.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/addCallback.html b/testing/test_package_docs/fake/addCallback.html index 5b48815b5b..441db3e7a5 100644 --- a/testing/test_package_docs/fake/addCallback.html +++ b/testing/test_package_docs/fake/addCallback.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/addCallback2.html b/testing/test_package_docs/fake/addCallback2.html index e0148d87c9..048e274201 100644 --- a/testing/test_package_docs/fake/addCallback2.html +++ b/testing/test_package_docs/fake/addCallback2.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/bulletDoced-constant.html b/testing/test_package_docs/fake/bulletDoced-constant.html index dda92713f2..238381005b 100644 --- a/testing/test_package_docs/fake/bulletDoced-constant.html +++ b/testing/test_package_docs/fake/bulletDoced-constant.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/complicatedReturn.html b/testing/test_package_docs/fake/complicatedReturn.html index f364f5b489..3535ad71c1 100644 --- a/testing/test_package_docs/fake/complicatedReturn.html +++ b/testing/test_package_docs/fake/complicatedReturn.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/doAComplicatedThing.html b/testing/test_package_docs/fake/doAComplicatedThing.html index 5c5543de9b..13f1f05ee3 100644 --- a/testing/test_package_docs/fake/doAComplicatedThing.html +++ b/testing/test_package_docs/fake/doAComplicatedThing.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/dynamicGetter.html b/testing/test_package_docs/fake/dynamicGetter.html index 333c87ad04..bab4b66a49 100644 --- a/testing/test_package_docs/fake/dynamicGetter.html +++ b/testing/test_package_docs/fake/dynamicGetter.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/fake-library.html b/testing/test_package_docs/fake/fake-library.html index 5ca1b06808..28dde33fd5 100644 --- a/testing/test_package_docs/fake/fake-library.html +++ b/testing/test_package_docs/fake/fake-library.html @@ -55,7 +55,9 @@
    test_package pa
  • anonymous_library
  • another_anonymous_lib
  • code_in_comments
  • +
  • csspub
  • is_deprecated
  • +
  • mylibpub
  • Unreal
  • reexport_one
  • reexport_two
  • @@ -776,6 +778,15 @@

    Functions

    Adds another callback. +
    +
    + aFunctionUsingRenamedLib() + → void + +
    +
    + This function has a link to a renamed library class member. [...] +
    aMixinReturningFunction<T>() @@ -1180,6 +1191,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/functionUsingMixinReturningFunction.html b/testing/test_package_docs/fake/functionUsingMixinReturningFunction.html index 3ae32677ba..0611bd6674 100644 --- a/testing/test_package_docs/fake/functionUsingMixinReturningFunction.html +++ b/testing/test_package_docs/fake/functionUsingMixinReturningFunction.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/functionWithFunctionParameters.html b/testing/test_package_docs/fake/functionWithFunctionParameters.html index 0512352204..730c09fd59 100644 --- a/testing/test_package_docs/fake/functionWithFunctionParameters.html +++ b/testing/test_package_docs/fake/functionWithFunctionParameters.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/getterSetterNodocGetter.html b/testing/test_package_docs/fake/getterSetterNodocGetter.html index bdd4461109..72eb462518 100644 --- a/testing/test_package_docs/fake/getterSetterNodocGetter.html +++ b/testing/test_package_docs/fake/getterSetterNodocGetter.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/getterSetterNodocSetter.html b/testing/test_package_docs/fake/getterSetterNodocSetter.html index 0e0a12f2c4..b817e0399f 100644 --- a/testing/test_package_docs/fake/getterSetterNodocSetter.html +++ b/testing/test_package_docs/fake/getterSetterNodocSetter.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/greatAnnotation-constant.html b/testing/test_package_docs/fake/greatAnnotation-constant.html index f716c80af8..16bdb10e30 100644 --- a/testing/test_package_docs/fake/greatAnnotation-constant.html +++ b/testing/test_package_docs/fake/greatAnnotation-constant.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/greatestAnnotation-constant.html b/testing/test_package_docs/fake/greatestAnnotation-constant.html index a6749b5650..1b65527036 100644 --- a/testing/test_package_docs/fake/greatestAnnotation-constant.html +++ b/testing/test_package_docs/fake/greatestAnnotation-constant.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/importantComputations.html b/testing/test_package_docs/fake/importantComputations.html index 463cd3b6e7..ed99d28295 100644 --- a/testing/test_package_docs/fake/importantComputations.html +++ b/testing/test_package_docs/fake/importantComputations.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/incorrectDocReference-constant.html b/testing/test_package_docs/fake/incorrectDocReference-constant.html index 94b0ad9b22..131e99eea0 100644 --- a/testing/test_package_docs/fake/incorrectDocReference-constant.html +++ b/testing/test_package_docs/fake/incorrectDocReference-constant.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/justGetter.html b/testing/test_package_docs/fake/justGetter.html index 324831879b..947eb7558a 100644 --- a/testing/test_package_docs/fake/justGetter.html +++ b/testing/test_package_docs/fake/justGetter.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/justSetter.html b/testing/test_package_docs/fake/justSetter.html index 1743dd14d6..e351ff7d18 100644 --- a/testing/test_package_docs/fake/justSetter.html +++ b/testing/test_package_docs/fake/justSetter.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/mapWithDynamicKeys.html b/testing/test_package_docs/fake/mapWithDynamicKeys.html index f5ad0e513a..2c74605be9 100644 --- a/testing/test_package_docs/fake/mapWithDynamicKeys.html +++ b/testing/test_package_docs/fake/mapWithDynamicKeys.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/meaningOfLife.html b/testing/test_package_docs/fake/meaningOfLife.html index 614fda6ed7..86c4f73565 100644 --- a/testing/test_package_docs/fake/meaningOfLife.html +++ b/testing/test_package_docs/fake/meaningOfLife.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/mustGetThis.html b/testing/test_package_docs/fake/mustGetThis.html index 7069c4a6a0..4459b61526 100644 --- a/testing/test_package_docs/fake/mustGetThis.html +++ b/testing/test_package_docs/fake/mustGetThis.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/myCoolTypedef.html b/testing/test_package_docs/fake/myCoolTypedef.html index 24d30dbea9..38a75c3695 100644 --- a/testing/test_package_docs/fake/myCoolTypedef.html +++ b/testing/test_package_docs/fake/myCoolTypedef.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/myGenericFunction.html b/testing/test_package_docs/fake/myGenericFunction.html index 4ab988b0f6..df2a85dda5 100644 --- a/testing/test_package_docs/fake/myGenericFunction.html +++ b/testing/test_package_docs/fake/myGenericFunction.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/myMap-constant.html b/testing/test_package_docs/fake/myMap-constant.html index 5967639fda..e3d1cafe61 100644 --- a/testing/test_package_docs/fake/myMap-constant.html +++ b/testing/test_package_docs/fake/myMap-constant.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html b/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html index fdd14785cc..8a443d659b 100644 --- a/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html +++ b/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/paintImage1.html b/testing/test_package_docs/fake/paintImage1.html index 5a93b4e81d..4e253fb2a1 100644 --- a/testing/test_package_docs/fake/paintImage1.html +++ b/testing/test_package_docs/fake/paintImage1.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/paintImage2.html b/testing/test_package_docs/fake/paintImage2.html index cd8a5165a4..d0c4cb1b30 100644 --- a/testing/test_package_docs/fake/paintImage2.html +++ b/testing/test_package_docs/fake/paintImage2.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/paramFromAnotherLib.html b/testing/test_package_docs/fake/paramFromAnotherLib.html index bca7c2523d..eb33f3097b 100644 --- a/testing/test_package_docs/fake/paramFromAnotherLib.html +++ b/testing/test_package_docs/fake/paramFromAnotherLib.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/paramOfFutureOrNull.html b/testing/test_package_docs/fake/paramOfFutureOrNull.html index fcdba3acd6..0074aae67b 100644 --- a/testing/test_package_docs/fake/paramOfFutureOrNull.html +++ b/testing/test_package_docs/fake/paramOfFutureOrNull.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/required-constant.html b/testing/test_package_docs/fake/required-constant.html index be27d37228..466bd839ab 100644 --- a/testing/test_package_docs/fake/required-constant.html +++ b/testing/test_package_docs/fake/required-constant.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/returningFutureVoid.html b/testing/test_package_docs/fake/returningFutureVoid.html index 1eb98eff44..eb4bd44431 100644 --- a/testing/test_package_docs/fake/returningFutureVoid.html +++ b/testing/test_package_docs/fake/returningFutureVoid.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/setAndGet.html b/testing/test_package_docs/fake/setAndGet.html index 5e3b0b59cc..aa17f0a03f 100644 --- a/testing/test_package_docs/fake/setAndGet.html +++ b/testing/test_package_docs/fake/setAndGet.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/short.html b/testing/test_package_docs/fake/short.html index 32c6ce0d48..3917b7f761 100644 --- a/testing/test_package_docs/fake/short.html +++ b/testing/test_package_docs/fake/short.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/simpleProperty.html b/testing/test_package_docs/fake/simpleProperty.html index 5c8bf511fb..49bc0f60d0 100644 --- a/testing/test_package_docs/fake/simpleProperty.html +++ b/testing/test_package_docs/fake/simpleProperty.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/soIntense.html b/testing/test_package_docs/fake/soIntense.html index 58c3dacbdd..6dba8c252b 100644 --- a/testing/test_package_docs/fake/soIntense.html +++ b/testing/test_package_docs/fake/soIntense.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html b/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html index 2ffd6247fd..b5026b6ba6 100644 --- a/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html +++ b/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/thisIsAlsoAsync.html b/testing/test_package_docs/fake/thisIsAlsoAsync.html index 217fc4bd71..00be8dc2fe 100644 --- a/testing/test_package_docs/fake/thisIsAlsoAsync.html +++ b/testing/test_package_docs/fake/thisIsAlsoAsync.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/thisIsAsync.html b/testing/test_package_docs/fake/thisIsAsync.html index 38ec5d5dfd..c14614ea2c 100644 --- a/testing/test_package_docs/fake/thisIsAsync.html +++ b/testing/test_package_docs/fake/thisIsAsync.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/thisIsFutureOr.html b/testing/test_package_docs/fake/thisIsFutureOr.html index 70a6856261..5886a4f254 100644 --- a/testing/test_package_docs/fake/thisIsFutureOr.html +++ b/testing/test_package_docs/fake/thisIsFutureOr.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/thisIsFutureOrNull.html b/testing/test_package_docs/fake/thisIsFutureOrNull.html index efdf5e9ea1..a142f5d4e4 100644 --- a/testing/test_package_docs/fake/thisIsFutureOrNull.html +++ b/testing/test_package_docs/fake/thisIsFutureOrNull.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/thisIsFutureOrT.html b/testing/test_package_docs/fake/thisIsFutureOrT.html index a88e94857e..be0e89109a 100644 --- a/testing/test_package_docs/fake/thisIsFutureOrT.html +++ b/testing/test_package_docs/fake/thisIsFutureOrT.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/topLevelFunction.html b/testing/test_package_docs/fake/topLevelFunction.html index b91c59f6a9..d5b3eef1aa 100644 --- a/testing/test_package_docs/fake/topLevelFunction.html +++ b/testing/test_package_docs/fake/topLevelFunction.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/typeParamOfFutureOr.html b/testing/test_package_docs/fake/typeParamOfFutureOr.html index b3e930f563..69c4255b0f 100644 --- a/testing/test_package_docs/fake/typeParamOfFutureOr.html +++ b/testing/test_package_docs/fake/typeParamOfFutureOr.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/useSomethingInAnotherPackage.html b/testing/test_package_docs/fake/useSomethingInAnotherPackage.html index 4ed7b74003..bbc39f9a14 100644 --- a/testing/test_package_docs/fake/useSomethingInAnotherPackage.html +++ b/testing/test_package_docs/fake/useSomethingInAnotherPackage.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/fake/useSomethingInTheSdk.html b/testing/test_package_docs/fake/useSomethingInTheSdk.html index 1a8a64305b..8ce621b06a 100644 --- a/testing/test_package_docs/fake/useSomethingInTheSdk.html +++ b/testing/test_package_docs/fake/useSomethingInTheSdk.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs/index.html b/testing/test_package_docs/index.html index b4d045cf1d..bcb5a561b5 100644 --- a/testing/test_package_docs/index.html +++ b/testing/test_package_docs/index.html @@ -52,7 +52,9 @@
    I have documentation for an overridden method named superString, -different from NotAMixin.superString. +different from NotAMixin.superString.
    read-only, override
    diff --git a/testing/test_package_docs_dev/fake/NewStyleMixinCallingSuper/superString.html b/testing/test_package_docs_dev/fake/NewStyleMixinCallingSuper/superString.html index 95a03628f3..c59e38ec29 100644 --- a/testing/test_package_docs_dev/fake/NewStyleMixinCallingSuper/superString.html +++ b/testing/test_package_docs_dev/fake/NewStyleMixinCallingSuper/superString.html @@ -88,7 +88,7 @@

    superString property

    I have documentation for an overridden method named superString, -different from NotAMixin.superString.

    +different from NotAMixin.superString.

    diff --git a/testing/test_package_docs_dev/fake/NotAMixin-class.html b/testing/test_package_docs_dev/fake/NotAMixin-class.html index cd785899ee..2b746aa062 100644 --- a/testing/test_package_docs_dev/fake/NotAMixin-class.html +++ b/testing/test_package_docs_dev/fake/NotAMixin-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/Oops-class.html b/testing/test_package_docs_dev/fake/Oops-class.html index 77c94f14b7..5b6917cbd7 100644 --- a/testing/test_package_docs_dev/fake/Oops-class.html +++ b/testing/test_package_docs_dev/fake/Oops-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/OperatorReferenceClass-class.html b/testing/test_package_docs_dev/fake/OperatorReferenceClass-class.html index 542a9d86dd..d00735b277 100644 --- a/testing/test_package_docs_dev/fake/OperatorReferenceClass-class.html +++ b/testing/test_package_docs_dev/fake/OperatorReferenceClass-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/OtherGenericsThing-class.html b/testing/test_package_docs_dev/fake/OtherGenericsThing-class.html index b15765187f..267e295303 100644 --- a/testing/test_package_docs_dev/fake/OtherGenericsThing-class.html +++ b/testing/test_package_docs_dev/fake/OtherGenericsThing-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/PI-constant.html b/testing/test_package_docs_dev/fake/PI-constant.html index 9407564e5b..62d684fe44 100644 --- a/testing/test_package_docs_dev/fake/PI-constant.html +++ b/testing/test_package_docs_dev/fake/PI-constant.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/ReferToADefaultConstructor-class.html b/testing/test_package_docs_dev/fake/ReferToADefaultConstructor-class.html index 587e60bf5f..8137601a0d 100644 --- a/testing/test_package_docs_dev/fake/ReferToADefaultConstructor-class.html +++ b/testing/test_package_docs_dev/fake/ReferToADefaultConstructor-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/ReferringClass-class.html b/testing/test_package_docs_dev/fake/ReferringClass-class.html index 6e5f2aaf15..14af9fc5dc 100644 --- a/testing/test_package_docs_dev/fake/ReferringClass-class.html +++ b/testing/test_package_docs_dev/fake/ReferringClass-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/SpecialList-class.html b/testing/test_package_docs_dev/fake/SpecialList-class.html index a050407b98..81121f5855 100644 --- a/testing/test_package_docs_dev/fake/SpecialList-class.html +++ b/testing/test_package_docs_dev/fake/SpecialList-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/SubForDocComments-class.html b/testing/test_package_docs_dev/fake/SubForDocComments-class.html index 6182067ba1..d9fd0c184a 100644 --- a/testing/test_package_docs_dev/fake/SubForDocComments-class.html +++ b/testing/test_package_docs_dev/fake/SubForDocComments-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/SuperAwesomeClass-class.html b/testing/test_package_docs_dev/fake/SuperAwesomeClass-class.html index a6cf121aba..14112ab1b5 100644 --- a/testing/test_package_docs_dev/fake/SuperAwesomeClass-class.html +++ b/testing/test_package_docs_dev/fake/SuperAwesomeClass-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/TypeInferenceMixedIn-class.html b/testing/test_package_docs_dev/fake/TypeInferenceMixedIn-class.html index 2a0203a51f..474c1ef1f2 100644 --- a/testing/test_package_docs_dev/fake/TypeInferenceMixedIn-class.html +++ b/testing/test_package_docs_dev/fake/TypeInferenceMixedIn-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/TypedefUsingClass-class.html b/testing/test_package_docs_dev/fake/TypedefUsingClass-class.html index f636c3eed1..e64f902616 100644 --- a/testing/test_package_docs_dev/fake/TypedefUsingClass-class.html +++ b/testing/test_package_docs_dev/fake/TypedefUsingClass-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/UP-constant.html b/testing/test_package_docs_dev/fake/UP-constant.html index 859c9313ee..a803a795a8 100644 --- a/testing/test_package_docs_dev/fake/UP-constant.html +++ b/testing/test_package_docs_dev/fake/UP-constant.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/VoidCallback.html b/testing/test_package_docs_dev/fake/VoidCallback.html index 1e6bbe46d3..3464985ff5 100644 --- a/testing/test_package_docs_dev/fake/VoidCallback.html +++ b/testing/test_package_docs_dev/fake/VoidCallback.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/WithGetterAndSetter-class.html b/testing/test_package_docs_dev/fake/WithGetterAndSetter-class.html index de1aa8576b..2e64a3ae27 100644 --- a/testing/test_package_docs_dev/fake/WithGetterAndSetter-class.html +++ b/testing/test_package_docs_dev/fake/WithGetterAndSetter-class.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/ZERO-constant.html b/testing/test_package_docs_dev/fake/ZERO-constant.html index 4aa97f8d80..d961861422 100644 --- a/testing/test_package_docs_dev/fake/ZERO-constant.html +++ b/testing/test_package_docs_dev/fake/ZERO-constant.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/aCoolVariable.html b/testing/test_package_docs_dev/fake/aCoolVariable.html index 43b05aabcd..112840a547 100644 --- a/testing/test_package_docs_dev/fake/aCoolVariable.html +++ b/testing/test_package_docs_dev/fake/aCoolVariable.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/aDynamicAnnotation-constant.html b/testing/test_package_docs_dev/fake/aDynamicAnnotation-constant.html index 1185caf3b8..c036c4ec3a 100644 --- a/testing/test_package_docs_dev/fake/aDynamicAnnotation-constant.html +++ b/testing/test_package_docs_dev/fake/aDynamicAnnotation-constant.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/aFunctionUsingRenamedLib.html b/testing/test_package_docs_dev/fake/aFunctionUsingRenamedLib.html new file mode 100644 index 0000000000..afd8dc206e --- /dev/null +++ b/testing/test_package_docs_dev/fake/aFunctionUsingRenamedLib.html @@ -0,0 +1,236 @@ + + + + + + + + aFunctionUsingRenamedLib function - fake library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    aFunctionUsingRenamedLib
    + +
    + +
    + + + +
    +

    aFunctionUsingRenamedLib function

    + +
    + void + aFunctionUsingRenamedLib +() +
    +
    +

    This function has a link to a renamed library class member.

    +

    Link to library: renamedLib +Link to constructor (implied): new renamedLib.YetAnotherHelper() +Link to constructor (implied, no new): renamedLib.YetAnotherHelper() +Link to class: renamedLib.YetAnotherHelper +Link to constructor (direct): renamedLib.YetAnotherHelper.YetAnotherHelper +Link to class member: renamedLib.YetAnotherHelper.getMoreContents +Link to function: renamedLib.helperFunction +Link to overlapping prefix: renamedLib2.theOnlyThingInTheLibrary

    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs_dev/fake/aMixinReturningFunction.html b/testing/test_package_docs_dev/fake/aMixinReturningFunction.html index 293bb52ef8..ef03f3cb2c 100644 --- a/testing/test_package_docs_dev/fake/aMixinReturningFunction.html +++ b/testing/test_package_docs_dev/fake/aMixinReturningFunction.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/aVoidParameter.html b/testing/test_package_docs_dev/fake/aVoidParameter.html index 4bb7c30b9f..820a132799 100644 --- a/testing/test_package_docs_dev/fake/aVoidParameter.html +++ b/testing/test_package_docs_dev/fake/aVoidParameter.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/addCallback.html b/testing/test_package_docs_dev/fake/addCallback.html index 5b48815b5b..441db3e7a5 100644 --- a/testing/test_package_docs_dev/fake/addCallback.html +++ b/testing/test_package_docs_dev/fake/addCallback.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/addCallback2.html b/testing/test_package_docs_dev/fake/addCallback2.html index e0148d87c9..048e274201 100644 --- a/testing/test_package_docs_dev/fake/addCallback2.html +++ b/testing/test_package_docs_dev/fake/addCallback2.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/bulletDoced-constant.html b/testing/test_package_docs_dev/fake/bulletDoced-constant.html index dda92713f2..238381005b 100644 --- a/testing/test_package_docs_dev/fake/bulletDoced-constant.html +++ b/testing/test_package_docs_dev/fake/bulletDoced-constant.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/complicatedReturn.html b/testing/test_package_docs_dev/fake/complicatedReturn.html index f364f5b489..3535ad71c1 100644 --- a/testing/test_package_docs_dev/fake/complicatedReturn.html +++ b/testing/test_package_docs_dev/fake/complicatedReturn.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/doAComplicatedThing.html b/testing/test_package_docs_dev/fake/doAComplicatedThing.html index 5c5543de9b..13f1f05ee3 100644 --- a/testing/test_package_docs_dev/fake/doAComplicatedThing.html +++ b/testing/test_package_docs_dev/fake/doAComplicatedThing.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/dynamicGetter.html b/testing/test_package_docs_dev/fake/dynamicGetter.html index 333c87ad04..bab4b66a49 100644 --- a/testing/test_package_docs_dev/fake/dynamicGetter.html +++ b/testing/test_package_docs_dev/fake/dynamicGetter.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/fake-library.html b/testing/test_package_docs_dev/fake/fake-library.html index 5ca1b06808..28dde33fd5 100644 --- a/testing/test_package_docs_dev/fake/fake-library.html +++ b/testing/test_package_docs_dev/fake/fake-library.html @@ -55,7 +55,9 @@
    test_package pa
  • anonymous_library
  • another_anonymous_lib
  • code_in_comments
  • +
  • csspub
  • is_deprecated
  • +
  • mylibpub
  • Unreal
  • reexport_one
  • reexport_two
  • @@ -776,6 +778,15 @@

    Functions

    Adds another callback. +
    +
    + aFunctionUsingRenamedLib() + → void + +
    +
    + This function has a link to a renamed library class member. [...] +
    aMixinReturningFunction<T>() @@ -1180,6 +1191,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/functionUsingMixinReturningFunction.html b/testing/test_package_docs_dev/fake/functionUsingMixinReturningFunction.html index 3ae32677ba..0611bd6674 100644 --- a/testing/test_package_docs_dev/fake/functionUsingMixinReturningFunction.html +++ b/testing/test_package_docs_dev/fake/functionUsingMixinReturningFunction.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/functionWithFunctionParameters.html b/testing/test_package_docs_dev/fake/functionWithFunctionParameters.html index 0512352204..730c09fd59 100644 --- a/testing/test_package_docs_dev/fake/functionWithFunctionParameters.html +++ b/testing/test_package_docs_dev/fake/functionWithFunctionParameters.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/getterSetterNodocGetter.html b/testing/test_package_docs_dev/fake/getterSetterNodocGetter.html index bdd4461109..72eb462518 100644 --- a/testing/test_package_docs_dev/fake/getterSetterNodocGetter.html +++ b/testing/test_package_docs_dev/fake/getterSetterNodocGetter.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/getterSetterNodocSetter.html b/testing/test_package_docs_dev/fake/getterSetterNodocSetter.html index 0e0a12f2c4..b817e0399f 100644 --- a/testing/test_package_docs_dev/fake/getterSetterNodocSetter.html +++ b/testing/test_package_docs_dev/fake/getterSetterNodocSetter.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/greatAnnotation-constant.html b/testing/test_package_docs_dev/fake/greatAnnotation-constant.html index f716c80af8..16bdb10e30 100644 --- a/testing/test_package_docs_dev/fake/greatAnnotation-constant.html +++ b/testing/test_package_docs_dev/fake/greatAnnotation-constant.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/greatestAnnotation-constant.html b/testing/test_package_docs_dev/fake/greatestAnnotation-constant.html index a6749b5650..1b65527036 100644 --- a/testing/test_package_docs_dev/fake/greatestAnnotation-constant.html +++ b/testing/test_package_docs_dev/fake/greatestAnnotation-constant.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/importantComputations.html b/testing/test_package_docs_dev/fake/importantComputations.html index 463cd3b6e7..ed99d28295 100644 --- a/testing/test_package_docs_dev/fake/importantComputations.html +++ b/testing/test_package_docs_dev/fake/importantComputations.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/incorrectDocReference-constant.html b/testing/test_package_docs_dev/fake/incorrectDocReference-constant.html index 94b0ad9b22..131e99eea0 100644 --- a/testing/test_package_docs_dev/fake/incorrectDocReference-constant.html +++ b/testing/test_package_docs_dev/fake/incorrectDocReference-constant.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/justGetter.html b/testing/test_package_docs_dev/fake/justGetter.html index 324831879b..947eb7558a 100644 --- a/testing/test_package_docs_dev/fake/justGetter.html +++ b/testing/test_package_docs_dev/fake/justGetter.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/justSetter.html b/testing/test_package_docs_dev/fake/justSetter.html index 1743dd14d6..e351ff7d18 100644 --- a/testing/test_package_docs_dev/fake/justSetter.html +++ b/testing/test_package_docs_dev/fake/justSetter.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/mapWithDynamicKeys.html b/testing/test_package_docs_dev/fake/mapWithDynamicKeys.html index f5ad0e513a..2c74605be9 100644 --- a/testing/test_package_docs_dev/fake/mapWithDynamicKeys.html +++ b/testing/test_package_docs_dev/fake/mapWithDynamicKeys.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/meaningOfLife.html b/testing/test_package_docs_dev/fake/meaningOfLife.html index 614fda6ed7..86c4f73565 100644 --- a/testing/test_package_docs_dev/fake/meaningOfLife.html +++ b/testing/test_package_docs_dev/fake/meaningOfLife.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/mustGetThis.html b/testing/test_package_docs_dev/fake/mustGetThis.html index 7069c4a6a0..4459b61526 100644 --- a/testing/test_package_docs_dev/fake/mustGetThis.html +++ b/testing/test_package_docs_dev/fake/mustGetThis.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/myCoolTypedef.html b/testing/test_package_docs_dev/fake/myCoolTypedef.html index 24d30dbea9..38a75c3695 100644 --- a/testing/test_package_docs_dev/fake/myCoolTypedef.html +++ b/testing/test_package_docs_dev/fake/myCoolTypedef.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/myGenericFunction.html b/testing/test_package_docs_dev/fake/myGenericFunction.html index 4ab988b0f6..df2a85dda5 100644 --- a/testing/test_package_docs_dev/fake/myGenericFunction.html +++ b/testing/test_package_docs_dev/fake/myGenericFunction.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/myMap-constant.html b/testing/test_package_docs_dev/fake/myMap-constant.html index 5967639fda..e3d1cafe61 100644 --- a/testing/test_package_docs_dev/fake/myMap-constant.html +++ b/testing/test_package_docs_dev/fake/myMap-constant.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/onlyPositionalWithNoDefaultNoType.html b/testing/test_package_docs_dev/fake/onlyPositionalWithNoDefaultNoType.html index fdd14785cc..8a443d659b 100644 --- a/testing/test_package_docs_dev/fake/onlyPositionalWithNoDefaultNoType.html +++ b/testing/test_package_docs_dev/fake/onlyPositionalWithNoDefaultNoType.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/paintImage1.html b/testing/test_package_docs_dev/fake/paintImage1.html index 5a93b4e81d..4e253fb2a1 100644 --- a/testing/test_package_docs_dev/fake/paintImage1.html +++ b/testing/test_package_docs_dev/fake/paintImage1.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/paintImage2.html b/testing/test_package_docs_dev/fake/paintImage2.html index cd8a5165a4..d0c4cb1b30 100644 --- a/testing/test_package_docs_dev/fake/paintImage2.html +++ b/testing/test_package_docs_dev/fake/paintImage2.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/paramFromAnotherLib.html b/testing/test_package_docs_dev/fake/paramFromAnotherLib.html index bca7c2523d..eb33f3097b 100644 --- a/testing/test_package_docs_dev/fake/paramFromAnotherLib.html +++ b/testing/test_package_docs_dev/fake/paramFromAnotherLib.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/paramOfFutureOrNull.html b/testing/test_package_docs_dev/fake/paramOfFutureOrNull.html index fcdba3acd6..0074aae67b 100644 --- a/testing/test_package_docs_dev/fake/paramOfFutureOrNull.html +++ b/testing/test_package_docs_dev/fake/paramOfFutureOrNull.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/required-constant.html b/testing/test_package_docs_dev/fake/required-constant.html index be27d37228..466bd839ab 100644 --- a/testing/test_package_docs_dev/fake/required-constant.html +++ b/testing/test_package_docs_dev/fake/required-constant.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/returningFutureVoid.html b/testing/test_package_docs_dev/fake/returningFutureVoid.html index 1eb98eff44..eb4bd44431 100644 --- a/testing/test_package_docs_dev/fake/returningFutureVoid.html +++ b/testing/test_package_docs_dev/fake/returningFutureVoid.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/setAndGet.html b/testing/test_package_docs_dev/fake/setAndGet.html index 5e3b0b59cc..aa17f0a03f 100644 --- a/testing/test_package_docs_dev/fake/setAndGet.html +++ b/testing/test_package_docs_dev/fake/setAndGet.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/short.html b/testing/test_package_docs_dev/fake/short.html index 32c6ce0d48..3917b7f761 100644 --- a/testing/test_package_docs_dev/fake/short.html +++ b/testing/test_package_docs_dev/fake/short.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/simpleProperty.html b/testing/test_package_docs_dev/fake/simpleProperty.html index 5c8bf511fb..49bc0f60d0 100644 --- a/testing/test_package_docs_dev/fake/simpleProperty.html +++ b/testing/test_package_docs_dev/fake/simpleProperty.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/soIntense.html b/testing/test_package_docs_dev/fake/soIntense.html index 58c3dacbdd..6dba8c252b 100644 --- a/testing/test_package_docs_dev/fake/soIntense.html +++ b/testing/test_package_docs_dev/fake/soIntense.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/testingCodeSyntaxInOneLiners-constant.html b/testing/test_package_docs_dev/fake/testingCodeSyntaxInOneLiners-constant.html index 2ffd6247fd..b5026b6ba6 100644 --- a/testing/test_package_docs_dev/fake/testingCodeSyntaxInOneLiners-constant.html +++ b/testing/test_package_docs_dev/fake/testingCodeSyntaxInOneLiners-constant.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/thisIsAlsoAsync.html b/testing/test_package_docs_dev/fake/thisIsAlsoAsync.html index 217fc4bd71..00be8dc2fe 100644 --- a/testing/test_package_docs_dev/fake/thisIsAlsoAsync.html +++ b/testing/test_package_docs_dev/fake/thisIsAlsoAsync.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/thisIsAsync.html b/testing/test_package_docs_dev/fake/thisIsAsync.html index 38ec5d5dfd..c14614ea2c 100644 --- a/testing/test_package_docs_dev/fake/thisIsAsync.html +++ b/testing/test_package_docs_dev/fake/thisIsAsync.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/thisIsFutureOr.html b/testing/test_package_docs_dev/fake/thisIsFutureOr.html index 70a6856261..5886a4f254 100644 --- a/testing/test_package_docs_dev/fake/thisIsFutureOr.html +++ b/testing/test_package_docs_dev/fake/thisIsFutureOr.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/thisIsFutureOrNull.html b/testing/test_package_docs_dev/fake/thisIsFutureOrNull.html index efdf5e9ea1..a142f5d4e4 100644 --- a/testing/test_package_docs_dev/fake/thisIsFutureOrNull.html +++ b/testing/test_package_docs_dev/fake/thisIsFutureOrNull.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/thisIsFutureOrT.html b/testing/test_package_docs_dev/fake/thisIsFutureOrT.html index a88e94857e..be0e89109a 100644 --- a/testing/test_package_docs_dev/fake/thisIsFutureOrT.html +++ b/testing/test_package_docs_dev/fake/thisIsFutureOrT.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/topLevelFunction.html b/testing/test_package_docs_dev/fake/topLevelFunction.html index b91c59f6a9..d5b3eef1aa 100644 --- a/testing/test_package_docs_dev/fake/topLevelFunction.html +++ b/testing/test_package_docs_dev/fake/topLevelFunction.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/typeParamOfFutureOr.html b/testing/test_package_docs_dev/fake/typeParamOfFutureOr.html index b3e930f563..69c4255b0f 100644 --- a/testing/test_package_docs_dev/fake/typeParamOfFutureOr.html +++ b/testing/test_package_docs_dev/fake/typeParamOfFutureOr.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/useSomethingInAnotherPackage.html b/testing/test_package_docs_dev/fake/useSomethingInAnotherPackage.html index 4ed7b74003..bbc39f9a14 100644 --- a/testing/test_package_docs_dev/fake/useSomethingInAnotherPackage.html +++ b/testing/test_package_docs_dev/fake/useSomethingInAnotherPackage.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/fake/useSomethingInTheSdk.html b/testing/test_package_docs_dev/fake/useSomethingInTheSdk.html index 1a8a64305b..8ce621b06a 100644 --- a/testing/test_package_docs_dev/fake/useSomethingInTheSdk.html +++ b/testing/test_package_docs_dev/fake/useSomethingInTheSdk.html @@ -146,6 +146,7 @@
    fake library
  • Functions
  • addCallback
  • addCallback2
  • +
  • aFunctionUsingRenamedLib
  • aMixinReturningFunction
  • aVoidParameter
  • doAComplicatedThing
  • diff --git a/testing/test_package_docs_dev/index.html b/testing/test_package_docs_dev/index.html index b4d045cf1d..bcb5a561b5 100644 --- a/testing/test_package_docs_dev/index.html +++ b/testing/test_package_docs_dev/index.html @@ -52,7 +52,9 @@