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 library
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 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
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ test_package
+ csspub
+ theOnlyThingInTheLibrary property
+
+ 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
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
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ test_package
+ fake
+ aFunctionUsingRenamedLib function
+
+ aFunctionUsingRenamedLib
+
+
+
+
+
+
+
+
+
aFunctionUsingRenamedLib function
+
+
+ void
+ aFunctionUsingRenamedLib
+()
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 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 @@ test_package anonymous_library
another_anonymous_lib
code_in_comments
+ csspub
is_deprecated
+ mylibpub
Unreal
reexport_one
reexport_two
@@ -139,11 +141,21 @@ Libraries
// in Dart!
}
[...]
+
+ csspub
+
+
+
is_deprecated
This lib is deprecated. It never had a chance
+
+ mylibpub
+
+
+
Unreal
reexport_one Unreal
diff --git a/testing/test_package_docs/index.json b/testing/test_package_docs/index.json
index cd54dbc793..577554a929 100644
--- a/testing/test_package_docs/index.json
+++ b/testing/test_package_docs/index.json
@@ -68,10 +68,10 @@
}
},
{
- "name": "IAmAClassWithCategories",
- "qualifiedName": "categoriesExported.IAmAClassWithCategories",
- "href": "categoriesExported/IAmAClassWithCategories/IAmAClassWithCategories.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "categoriesExported.IAmAClassWithCategories.==",
+ "href": "categoriesExported/IAmAClassWithCategories/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "IAmAClassWithCategories",
@@ -79,10 +79,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "categoriesExported.IAmAClassWithCategories.==",
- "href": "categoriesExported/IAmAClassWithCategories/operator_equals.html",
- "type": "method",
+ "name": "IAmAClassWithCategories",
+ "qualifiedName": "categoriesExported.IAmAClassWithCategories.IAmAClassWithCategories",
+ "href": "categoriesExported/IAmAClassWithCategories/IAmAClassWithCategories.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "IAmAClassWithCategories",
@@ -158,6 +158,24 @@
"type": "library"
}
},
+ {
+ "name": "csspub",
+ "qualifiedName": "csspub",
+ "href": "csspub/csspub-library.html",
+ "type": "library",
+ "overriddenDepth": 0
+ },
+ {
+ "name": "theOnlyThingInTheLibrary",
+ "qualifiedName": "csspub.theOnlyThingInTheLibrary",
+ "href": "csspub/theOnlyThingInTheLibrary.html",
+ "type": "top-level property",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "csspub",
+ "type": "library"
+ }
+ },
{
"name": "ex",
"qualifiedName": "ex",
@@ -243,10 +261,10 @@
}
},
{
- "name": "AnotherParameterizedClass",
- "qualifiedName": "ex.AnotherParameterizedClass",
- "href": "ex/AnotherParameterizedClass/AnotherParameterizedClass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.AnotherParameterizedClass.==",
+ "href": "ex/AnotherParameterizedClass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "AnotherParameterizedClass",
@@ -254,10 +272,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.AnotherParameterizedClass.==",
- "href": "ex/AnotherParameterizedClass/operator_equals.html",
- "type": "method",
+ "name": "AnotherParameterizedClass",
+ "qualifiedName": "ex.AnotherParameterizedClass.AnotherParameterizedClass",
+ "href": "ex/AnotherParameterizedClass/AnotherParameterizedClass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "AnotherParameterizedClass",
@@ -319,17 +337,6 @@
"type": "library"
}
},
- {
- "name": "Apple",
- "qualifiedName": "ex.Apple",
- "href": "ex/Apple/Apple.html",
- "type": "constructor",
- "overriddenDepth": 0,
- "enclosedBy": {
- "name": "Apple",
- "type": "class"
- }
- },
{
"name": "operator *",
"qualifiedName": "ex.Apple.*",
@@ -352,6 +359,17 @@
"type": "class"
}
},
+ {
+ "name": "Apple",
+ "qualifiedName": "ex.Apple.Apple",
+ "href": "ex/Apple/Apple.html",
+ "type": "constructor",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "Apple",
+ "type": "class"
+ }
+ },
{
"name": "fieldWithTypedef",
"qualifiedName": "ex.Apple.fieldWithTypedef",
@@ -541,7 +559,7 @@
},
{
"name": "B",
- "qualifiedName": "ex.B",
+ "qualifiedName": "ex.B.B",
"href": "ex/B/B.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -694,10 +712,10 @@
}
},
{
- "name": "Cat",
- "qualifiedName": "ex.Cat",
- "href": "ex/Cat/Cat.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.Cat.==",
+ "href": "ex/Cat/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Cat",
@@ -705,10 +723,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.Cat.==",
- "href": "ex/Cat/operator_equals.html",
- "type": "method",
+ "name": "Cat",
+ "qualifiedName": "ex.Cat.Cat",
+ "href": "ex/Cat/Cat.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Cat",
@@ -793,10 +811,10 @@
}
},
{
- "name": "CatString",
- "qualifiedName": "ex.CatString",
- "href": "ex/CatString/CatString.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.CatString.==",
+ "href": "ex/CatString/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "CatString",
@@ -804,10 +822,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.CatString.==",
- "href": "ex/CatString/operator_equals.html",
- "type": "method",
+ "name": "CatString",
+ "qualifiedName": "ex.CatString.CatString",
+ "href": "ex/CatString/CatString.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "CatString",
@@ -959,7 +977,7 @@
},
{
"name": "ConstantCat",
- "qualifiedName": "ex.ConstantCat",
+ "qualifiedName": "ex.ConstantCat.ConstantCat",
"href": "ex/ConstantCat/ConstantCat.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -1013,10 +1031,10 @@
}
},
{
- "name": "Deprecated",
- "qualifiedName": "ex.Deprecated",
- "href": "ex/Deprecated/Deprecated.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.Deprecated.==",
+ "href": "ex/Deprecated/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Deprecated",
@@ -1024,10 +1042,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.Deprecated.==",
- "href": "ex/Deprecated/operator_equals.html",
- "type": "method",
+ "name": "Deprecated",
+ "qualifiedName": "ex.Deprecated.Deprecated",
+ "href": "ex/Deprecated/Deprecated.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Deprecated",
@@ -1112,22 +1130,22 @@
}
},
{
- "name": "Dog",
- "qualifiedName": "ex.Dog",
- "href": "ex/Dog/Dog.html",
- "type": "constructor",
- "overriddenDepth": 0,
+ "name": "operator ==",
+ "qualifiedName": "ex.Dog.==",
+ "href": "ex/Dog/operator_equals.html",
+ "type": "method",
+ "overriddenDepth": 1,
"enclosedBy": {
"name": "Dog",
"type": "class"
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.Dog.==",
- "href": "ex/Dog/operator_equals.html",
- "type": "method",
- "overriddenDepth": 1,
+ "name": "Dog",
+ "qualifiedName": "ex.Dog.Dog",
+ "href": "ex/Dog/Dog.html",
+ "type": "constructor",
+ "overriddenDepth": 0,
"enclosedBy": {
"name": "Dog",
"type": "class"
@@ -1497,10 +1515,10 @@
}
},
{
- "name": "E",
- "qualifiedName": "ex.E",
- "href": "ex/E/E.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.E.==",
+ "href": "ex/E/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "E",
@@ -1508,10 +1526,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.E.==",
- "href": "ex/E/operator_equals.html",
- "type": "method",
+ "name": "E",
+ "qualifiedName": "ex.E.E",
+ "href": "ex/E/E.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "E",
@@ -1575,7 +1593,7 @@
},
{
"name": "ExtendedShortName",
- "qualifiedName": "ex.ExtendedShortName",
+ "qualifiedName": "ex.ExtendedShortName.ExtendedShortName",
"href": "ex/ExtendedShortName/ExtendedShortName.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -1597,7 +1615,7 @@
},
{
"name": "F",
- "qualifiedName": "ex.F",
+ "qualifiedName": "ex.F.F",
"href": "ex/F/F.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -1640,10 +1658,10 @@
}
},
{
- "name": "ForAnnotation",
- "qualifiedName": "ex.ForAnnotation",
- "href": "ex/ForAnnotation/ForAnnotation.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.ForAnnotation.==",
+ "href": "ex/ForAnnotation/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ForAnnotation",
@@ -1651,10 +1669,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.ForAnnotation.==",
- "href": "ex/ForAnnotation/operator_equals.html",
- "type": "method",
+ "name": "ForAnnotation",
+ "qualifiedName": "ex.ForAnnotation.ForAnnotation",
+ "href": "ex/ForAnnotation/ForAnnotation.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ForAnnotation",
@@ -1728,10 +1746,10 @@
}
},
{
- "name": "HasAnnotation",
- "qualifiedName": "ex.HasAnnotation",
- "href": "ex/HasAnnotation/HasAnnotation.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.HasAnnotation.==",
+ "href": "ex/HasAnnotation/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "HasAnnotation",
@@ -1739,10 +1757,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.HasAnnotation.==",
- "href": "ex/HasAnnotation/operator_equals.html",
- "type": "method",
+ "name": "HasAnnotation",
+ "qualifiedName": "ex.HasAnnotation.HasAnnotation",
+ "href": "ex/HasAnnotation/HasAnnotation.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "HasAnnotation",
@@ -1805,10 +1823,10 @@
}
},
{
- "name": "Helper",
- "qualifiedName": "ex.Helper",
- "href": "ex/Helper/Helper.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.Helper.==",
+ "href": "ex/Helper/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Helper",
@@ -1816,10 +1834,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.Helper.==",
- "href": "ex/Helper/operator_equals.html",
- "type": "method",
+ "name": "Helper",
+ "qualifiedName": "ex.Helper.Helper",
+ "href": "ex/Helper/Helper.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Helper",
@@ -1893,10 +1911,10 @@
}
},
{
- "name": "HtmlInjection",
- "qualifiedName": "ex.HtmlInjection",
- "href": "ex/HtmlInjection/HtmlInjection.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.HtmlInjection.==",
+ "href": "ex/HtmlInjection/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "HtmlInjection",
@@ -1904,10 +1922,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.HtmlInjection.==",
- "href": "ex/HtmlInjection/operator_equals.html",
- "type": "method",
+ "name": "HtmlInjection",
+ "qualifiedName": "ex.HtmlInjection.HtmlInjection",
+ "href": "ex/HtmlInjection/HtmlInjection.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "HtmlInjection",
@@ -1992,10 +2010,10 @@
}
},
{
- "name": "Klass",
- "qualifiedName": "ex.Klass",
- "href": "ex/Klass/Klass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.Klass.==",
+ "href": "ex/Klass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Klass",
@@ -2003,10 +2021,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.Klass.==",
- "href": "ex/Klass/operator_equals.html",
- "type": "method",
+ "name": "Klass",
+ "qualifiedName": "ex.Klass.Klass",
+ "href": "ex/Klass/Klass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Klass",
@@ -2135,10 +2153,10 @@
}
},
{
- "name": "MyError",
- "qualifiedName": "ex.MyError",
- "href": "ex/MyError/MyError.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.MyError.==",
+ "href": "ex/MyError/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "MyError",
@@ -2146,10 +2164,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.MyError.==",
- "href": "ex/MyError/operator_equals.html",
- "type": "method",
+ "name": "MyError",
+ "qualifiedName": "ex.MyError.MyError",
+ "href": "ex/MyError/MyError.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "MyError",
@@ -2223,10 +2241,10 @@
}
},
{
- "name": "MyErrorImplements",
- "qualifiedName": "ex.MyErrorImplements",
- "href": "ex/MyErrorImplements/MyErrorImplements.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.MyErrorImplements.==",
+ "href": "ex/MyErrorImplements/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "MyErrorImplements",
@@ -2234,10 +2252,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.MyErrorImplements.==",
- "href": "ex/MyErrorImplements/operator_equals.html",
- "type": "method",
+ "name": "MyErrorImplements",
+ "qualifiedName": "ex.MyErrorImplements.MyErrorImplements",
+ "href": "ex/MyErrorImplements/MyErrorImplements.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "MyErrorImplements",
@@ -2311,21 +2329,21 @@
}
},
{
- "name": "MyException",
- "qualifiedName": "ex.MyException",
- "href": "ex/MyException/MyException.html",
- "type": "constructor",
- "overriddenDepth": 0,
+ "name": "operator ==",
+ "qualifiedName": "ex.MyException.==",
+ "href": "ex/MyException/operator_equals.html",
+ "type": "method",
+ "overriddenDepth": 0,
"enclosedBy": {
"name": "MyException",
"type": "class"
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.MyException.==",
- "href": "ex/MyException/operator_equals.html",
- "type": "method",
+ "name": "MyException",
+ "qualifiedName": "ex.MyException.MyException",
+ "href": "ex/MyException/MyException.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "MyException",
@@ -2388,10 +2406,10 @@
}
},
{
- "name": "MyExceptionImplements",
- "qualifiedName": "ex.MyExceptionImplements",
- "href": "ex/MyExceptionImplements/MyExceptionImplements.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.MyExceptionImplements.==",
+ "href": "ex/MyExceptionImplements/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "MyExceptionImplements",
@@ -2399,10 +2417,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.MyExceptionImplements.==",
- "href": "ex/MyExceptionImplements/operator_equals.html",
- "type": "method",
+ "name": "MyExceptionImplements",
+ "qualifiedName": "ex.MyExceptionImplements.MyExceptionImplements",
+ "href": "ex/MyExceptionImplements/MyExceptionImplements.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "MyExceptionImplements",
@@ -2475,17 +2493,6 @@
"type": "library"
}
},
- {
- "name": "ParameterizedClass",
- "qualifiedName": "ex.ParameterizedClass",
- "href": "ex/ParameterizedClass/ParameterizedClass.html",
- "type": "constructor",
- "overriddenDepth": 0,
- "enclosedBy": {
- "name": "ParameterizedClass",
- "type": "class"
- }
- },
{
"name": "operator +",
"qualifiedName": "ex.ParameterizedClass.+",
@@ -2508,6 +2515,17 @@
"type": "class"
}
},
+ {
+ "name": "ParameterizedClass",
+ "qualifiedName": "ex.ParameterizedClass.ParameterizedClass",
+ "href": "ex/ParameterizedClass/ParameterizedClass.html",
+ "type": "constructor",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "ParameterizedClass",
+ "type": "class"
+ }
+ },
{
"name": "aInheritedField",
"qualifiedName": "ex.ParameterizedClass.aInheritedField",
@@ -2630,10 +2648,10 @@
}
},
{
- "name": "PublicClassExtendsPrivateClass",
- "qualifiedName": "ex.PublicClassExtendsPrivateClass",
- "href": "ex/PublicClassExtendsPrivateClass/PublicClassExtendsPrivateClass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.PublicClassExtendsPrivateClass.==",
+ "href": "ex/PublicClassExtendsPrivateClass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "PublicClassExtendsPrivateClass",
@@ -2641,10 +2659,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.PublicClassExtendsPrivateClass.==",
- "href": "ex/PublicClassExtendsPrivateClass/operator_equals.html",
- "type": "method",
+ "name": "PublicClassExtendsPrivateClass",
+ "qualifiedName": "ex.PublicClassExtendsPrivateClass.PublicClassExtendsPrivateClass",
+ "href": "ex/PublicClassExtendsPrivateClass/PublicClassExtendsPrivateClass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "PublicClassExtendsPrivateClass",
@@ -2718,10 +2736,10 @@
}
},
{
- "name": "PublicClassImplementsPrivateInterface",
- "qualifiedName": "ex.PublicClassImplementsPrivateInterface",
- "href": "ex/PublicClassImplementsPrivateInterface/PublicClassImplementsPrivateInterface.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.PublicClassImplementsPrivateInterface.==",
+ "href": "ex/PublicClassImplementsPrivateInterface/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "PublicClassImplementsPrivateInterface",
@@ -2729,10 +2747,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.PublicClassImplementsPrivateInterface.==",
- "href": "ex/PublicClassImplementsPrivateInterface/operator_equals.html",
- "type": "method",
+ "name": "PublicClassImplementsPrivateInterface",
+ "qualifiedName": "ex.PublicClassImplementsPrivateInterface.PublicClassImplementsPrivateInterface",
+ "href": "ex/PublicClassImplementsPrivateInterface/PublicClassImplementsPrivateInterface.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "PublicClassImplementsPrivateInterface",
@@ -2905,10 +2923,10 @@
}
},
{
- "name": "ShortName",
- "qualifiedName": "ex.ShortName",
- "href": "ex/ShortName/ShortName.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.ShortName.==",
+ "href": "ex/ShortName/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ShortName",
@@ -2916,10 +2934,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.ShortName.==",
- "href": "ex/ShortName/operator_equals.html",
- "type": "method",
+ "name": "ShortName",
+ "qualifiedName": "ex.ShortName.ShortName",
+ "href": "ex/ShortName/ShortName.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ShortName",
@@ -2992,17 +3010,6 @@
"type": "library"
}
},
- {
- "name": "SpecializedDuration",
- "qualifiedName": "ex.SpecializedDuration",
- "href": "ex/SpecializedDuration/SpecializedDuration.html",
- "type": "constructor",
- "overriddenDepth": 0,
- "enclosedBy": {
- "name": "SpecializedDuration",
- "type": "class"
- }
- },
{
"name": "operator *",
"qualifiedName": "ex.SpecializedDuration.*",
@@ -3091,6 +3098,17 @@
"type": "class"
}
},
+ {
+ "name": "SpecializedDuration",
+ "qualifiedName": "ex.SpecializedDuration.SpecializedDuration",
+ "href": "ex/SpecializedDuration/SpecializedDuration.html",
+ "type": "constructor",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "SpecializedDuration",
+ "type": "class"
+ }
+ },
{
"name": "abs",
"qualifiedName": "ex.SpecializedDuration.abs",
@@ -3268,10 +3286,10 @@
}
},
{
- "name": "TemplatedClass",
- "qualifiedName": "ex.TemplatedClass",
- "href": "ex/TemplatedClass/TemplatedClass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.TemplatedClass.==",
+ "href": "ex/TemplatedClass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "TemplatedClass",
@@ -3279,10 +3297,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.TemplatedClass.==",
- "href": "ex/TemplatedClass/operator_equals.html",
- "type": "method",
+ "name": "TemplatedClass",
+ "qualifiedName": "ex.TemplatedClass.TemplatedClass",
+ "href": "ex/TemplatedClass/TemplatedClass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "TemplatedClass",
@@ -3357,7 +3375,7 @@
},
{
"name": "TemplatedInterface",
- "qualifiedName": "ex.TemplatedInterface",
+ "qualifiedName": "ex.TemplatedInterface.TemplatedInterface",
"href": "ex/TemplatedInterface/TemplatedInterface.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -3433,10 +3451,10 @@
}
},
{
- "name": "ToolUser",
- "qualifiedName": "ex.ToolUser",
- "href": "ex/ToolUser/ToolUser.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.ToolUser.==",
+ "href": "ex/ToolUser/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ToolUser",
@@ -3444,10 +3462,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.ToolUser.==",
- "href": "ex/ToolUser/operator_equals.html",
- "type": "method",
+ "name": "ToolUser",
+ "qualifiedName": "ex.ToolUser.ToolUser",
+ "href": "ex/ToolUser/ToolUser.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ToolUser",
@@ -3543,10 +3561,10 @@
}
},
{
- "name": "TypedFunctionsWithoutTypedefs",
- "qualifiedName": "ex.TypedFunctionsWithoutTypedefs",
- "href": "ex/TypedFunctionsWithoutTypedefs/TypedFunctionsWithoutTypedefs.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.TypedFunctionsWithoutTypedefs.==",
+ "href": "ex/TypedFunctionsWithoutTypedefs/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "TypedFunctionsWithoutTypedefs",
@@ -3554,10 +3572,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.TypedFunctionsWithoutTypedefs.==",
- "href": "ex/TypedFunctionsWithoutTypedefs/operator_equals.html",
- "type": "method",
+ "name": "TypedFunctionsWithoutTypedefs",
+ "qualifiedName": "ex.TypedFunctionsWithoutTypedefs.TypedFunctionsWithoutTypedefs",
+ "href": "ex/TypedFunctionsWithoutTypedefs/TypedFunctionsWithoutTypedefs.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "TypedFunctionsWithoutTypedefs",
@@ -3653,10 +3671,10 @@
}
},
{
- "name": "WithGeneric",
- "qualifiedName": "ex.WithGeneric",
- "href": "ex/WithGeneric/WithGeneric.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.WithGeneric.==",
+ "href": "ex/WithGeneric/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "WithGeneric",
@@ -3664,10 +3682,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.WithGeneric.==",
- "href": "ex/WithGeneric/operator_equals.html",
- "type": "method",
+ "name": "WithGeneric",
+ "qualifiedName": "ex.WithGeneric.WithGeneric",
+ "href": "ex/WithGeneric/WithGeneric.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "WithGeneric",
@@ -3742,7 +3760,7 @@
},
{
"name": "WithGenericSub",
- "qualifiedName": "ex.WithGenericSub",
+ "qualifiedName": "ex.WithGenericSub.WithGenericSub",
"href": "ex/WithGenericSub/WithGenericSub.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -3774,10 +3792,10 @@
}
},
{
- "name": "aThingToDo",
- "qualifiedName": "ex.aThingToDo",
- "href": "ex/aThingToDo/aThingToDo.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.aThingToDo.==",
+ "href": "ex/aThingToDo/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "aThingToDo",
@@ -3785,10 +3803,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.aThingToDo.==",
- "href": "ex/aThingToDo/operator_equals.html",
- "type": "method",
+ "name": "aThingToDo",
+ "qualifiedName": "ex.aThingToDo.aThingToDo",
+ "href": "ex/aThingToDo/aThingToDo.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "aThingToDo",
@@ -4001,10 +4019,10 @@
}
},
{
- "name": "ABaseClass",
- "qualifiedName": "fake.ABaseClass",
- "href": "fake/ABaseClass/ABaseClass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.ABaseClass.==",
+ "href": "fake/ABaseClass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ABaseClass",
@@ -4012,10 +4030,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.ABaseClass.==",
- "href": "fake/ABaseClass/operator_equals.html",
- "type": "method",
+ "name": "ABaseClass",
+ "qualifiedName": "fake.ABaseClass.ABaseClass",
+ "href": "fake/ABaseClass/ABaseClass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ABaseClass",
@@ -4079,7 +4097,7 @@
},
{
"name": "AClassUsingASuperMixin",
- "qualifiedName": "fake.AClassUsingASuperMixin",
+ "qualifiedName": "fake.AClassUsingASuperMixin.AClassUsingASuperMixin",
"href": "fake/AClassUsingASuperMixin/AClassUsingASuperMixin.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -4101,7 +4119,7 @@
},
{
"name": "AClassUsingNewStyleMixin",
- "qualifiedName": "fake.AClassUsingNewStyleMixin",
+ "qualifiedName": "fake.AClassUsingNewStyleMixin.AClassUsingNewStyleMixin",
"href": "fake/AClassUsingNewStyleMixin/AClassUsingNewStyleMixin.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -4122,10 +4140,10 @@
}
},
{
- "name": "AClassWithFancyProperties",
- "qualifiedName": "fake.AClassWithFancyProperties",
- "href": "fake/AClassWithFancyProperties/AClassWithFancyProperties.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.AClassWithFancyProperties.==",
+ "href": "fake/AClassWithFancyProperties/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "AClassWithFancyProperties",
@@ -4133,10 +4151,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.AClassWithFancyProperties.==",
- "href": "fake/AClassWithFancyProperties/operator_equals.html",
- "type": "method",
+ "name": "AClassWithFancyProperties",
+ "qualifiedName": "fake.AClassWithFancyProperties.AClassWithFancyProperties",
+ "href": "fake/AClassWithFancyProperties/AClassWithFancyProperties.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "AClassWithFancyProperties",
@@ -4211,7 +4229,7 @@
},
{
"name": "AMixinCallingSuper",
- "qualifiedName": "fake.AMixinCallingSuper",
+ "qualifiedName": "fake.AMixinCallingSuper.AMixinCallingSuper",
"href": "fake/AMixinCallingSuper/AMixinCallingSuper.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -4243,10 +4261,10 @@
}
},
{
- "name": "ATypeTakingClass",
- "qualifiedName": "fake.ATypeTakingClass",
- "href": "fake/ATypeTakingClass/ATypeTakingClass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.ATypeTakingClass.==",
+ "href": "fake/ATypeTakingClass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ATypeTakingClass",
@@ -4254,10 +4272,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.ATypeTakingClass.==",
- "href": "fake/ATypeTakingClass/operator_equals.html",
- "type": "method",
+ "name": "ATypeTakingClass",
+ "qualifiedName": "fake.ATypeTakingClass.ATypeTakingClass",
+ "href": "fake/ATypeTakingClass/ATypeTakingClass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ATypeTakingClass",
@@ -4332,7 +4350,7 @@
},
{
"name": "ATypeTakingClassMixedIn",
- "qualifiedName": "fake.ATypeTakingClassMixedIn",
+ "qualifiedName": "fake.ATypeTakingClassMixedIn.ATypeTakingClassMixedIn",
"href": "fake/ATypeTakingClassMixedIn/ATypeTakingClassMixedIn.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -4353,10 +4371,10 @@
}
},
{
- "name": "Annotation",
- "qualifiedName": "fake.Annotation",
- "href": "fake/Annotation/Annotation.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.Annotation.==",
+ "href": "fake/Annotation/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Annotation",
@@ -4364,10 +4382,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.Annotation.==",
- "href": "fake/Annotation/operator_equals.html",
- "type": "method",
+ "name": "Annotation",
+ "qualifiedName": "fake.Annotation.Annotation",
+ "href": "fake/Annotation/Annotation.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Annotation",
@@ -4441,10 +4459,10 @@
}
},
{
- "name": "AnotherInterface",
- "qualifiedName": "fake.AnotherInterface",
- "href": "fake/AnotherInterface/AnotherInterface.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.AnotherInterface.==",
+ "href": "fake/AnotherInterface/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "AnotherInterface",
@@ -4452,10 +4470,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.AnotherInterface.==",
- "href": "fake/AnotherInterface/operator_equals.html",
- "type": "method",
+ "name": "AnotherInterface",
+ "qualifiedName": "fake.AnotherInterface.AnotherInterface",
+ "href": "fake/AnotherInterface/AnotherInterface.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "AnotherInterface",
@@ -4518,10 +4536,10 @@
}
},
{
- "name": "BaseForDocComments",
- "qualifiedName": "fake.BaseForDocComments",
- "href": "fake/BaseForDocComments/BaseForDocComments.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.BaseForDocComments.==",
+ "href": "fake/BaseForDocComments/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "BaseForDocComments",
@@ -4529,10 +4547,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.BaseForDocComments.==",
- "href": "fake/BaseForDocComments/operator_equals.html",
- "type": "method",
+ "name": "BaseForDocComments",
+ "qualifiedName": "fake.BaseForDocComments.BaseForDocComments",
+ "href": "fake/BaseForDocComments/BaseForDocComments.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "BaseForDocComments",
@@ -4639,10 +4657,10 @@
}
},
{
- "name": "BaseThingy",
- "qualifiedName": "fake.BaseThingy",
- "href": "fake/BaseThingy/BaseThingy.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.BaseThingy.==",
+ "href": "fake/BaseThingy/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "BaseThingy",
@@ -4650,10 +4668,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.BaseThingy.==",
- "href": "fake/BaseThingy/operator_equals.html",
- "type": "method",
+ "name": "BaseThingy",
+ "qualifiedName": "fake.BaseThingy.BaseThingy",
+ "href": "fake/BaseThingy/BaseThingy.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "BaseThingy",
@@ -4750,7 +4768,7 @@
},
{
"name": "BaseThingy2",
- "qualifiedName": "fake.BaseThingy2",
+ "qualifiedName": "fake.BaseThingy2.BaseThingy2",
"href": "fake/BaseThingy2/BaseThingy2.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -4816,7 +4834,7 @@
},
{
"name": "ClassWithUnusualProperties",
- "qualifiedName": "fake.ClassWithUnusualProperties",
+ "qualifiedName": "fake.ClassWithUnusualProperties.ClassWithUnusualProperties",
"href": "fake/ClassWithUnusualProperties/ClassWithUnusualProperties.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -5013,10 +5031,10 @@
}
},
{
- "name": "ConstantClass",
- "qualifiedName": "fake.ConstantClass",
- "href": "fake/ConstantClass/ConstantClass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.ConstantClass.==",
+ "href": "fake/ConstantClass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ConstantClass",
@@ -5024,10 +5042,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.ConstantClass.==",
- "href": "fake/ConstantClass/operator_equals.html",
- "type": "method",
+ "name": "ConstantClass",
+ "qualifiedName": "fake.ConstantClass.ConstantClass",
+ "href": "fake/ConstantClass/ConstantClass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ConstantClass",
@@ -5123,10 +5141,10 @@
}
},
{
- "name": "ConstructorTester",
- "qualifiedName": "fake.ConstructorTester",
- "href": "fake/ConstructorTester/ConstructorTester.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.ConstructorTester.==",
+ "href": "fake/ConstructorTester/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ConstructorTester",
@@ -5134,10 +5152,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.ConstructorTester.==",
- "href": "fake/ConstructorTester/operator_equals.html",
- "type": "method",
+ "name": "ConstructorTester",
+ "qualifiedName": "fake.ConstructorTester.ConstructorTester",
+ "href": "fake/ConstructorTester/ConstructorTester.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ConstructorTester",
@@ -5211,10 +5229,10 @@
}
},
{
- "name": "Cool",
- "qualifiedName": "fake.Cool",
- "href": "fake/Cool/Cool.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.Cool.==",
+ "href": "fake/Cool/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Cool",
@@ -5222,10 +5240,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.Cool.==",
- "href": "fake/Cool/operator_equals.html",
- "type": "method",
+ "name": "Cool",
+ "qualifiedName": "fake.Cool.Cool",
+ "href": "fake/Cool/Cool.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Cool",
@@ -5299,10 +5317,10 @@
}
},
{
- "name": "CovariantMemberParams",
- "qualifiedName": "fake.CovariantMemberParams",
- "href": "fake/CovariantMemberParams/CovariantMemberParams.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.CovariantMemberParams.==",
+ "href": "fake/CovariantMemberParams/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "CovariantMemberParams",
@@ -5310,10 +5328,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.CovariantMemberParams.==",
- "href": "fake/CovariantMemberParams/operator_equals.html",
- "type": "method",
+ "name": "CovariantMemberParams",
+ "qualifiedName": "fake.CovariantMemberParams.CovariantMemberParams",
+ "href": "fake/CovariantMemberParams/CovariantMemberParams.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "CovariantMemberParams",
@@ -5420,10 +5438,10 @@
}
},
{
- "name": "DocumentWithATable",
- "qualifiedName": "fake.DocumentWithATable",
- "href": "fake/DocumentWithATable/DocumentWithATable.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.DocumentWithATable.==",
+ "href": "fake/DocumentWithATable/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "DocumentWithATable",
@@ -5431,10 +5449,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.DocumentWithATable.==",
- "href": "fake/DocumentWithATable/operator_equals.html",
- "type": "method",
+ "name": "DocumentWithATable",
+ "qualifiedName": "fake.DocumentWithATable.DocumentWithATable",
+ "href": "fake/DocumentWithATable/DocumentWithATable.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "DocumentWithATable",
@@ -5530,10 +5548,10 @@
}
},
{
- "name": "Doh",
- "qualifiedName": "fake.Doh",
- "href": "fake/Doh/Doh.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.Doh.==",
+ "href": "fake/Doh/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Doh",
@@ -5541,10 +5559,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.Doh.==",
- "href": "fake/Doh/operator_equals.html",
- "type": "method",
+ "name": "Doh",
+ "qualifiedName": "fake.Doh.Doh",
+ "href": "fake/Doh/Doh.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Doh",
@@ -5618,10 +5636,10 @@
}
},
{
- "name": "ExtendsFutureVoid",
- "qualifiedName": "fake.ExtendsFutureVoid",
- "href": "fake/ExtendsFutureVoid/ExtendsFutureVoid.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.ExtendsFutureVoid.==",
+ "href": "fake/ExtendsFutureVoid/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ExtendsFutureVoid",
@@ -5629,10 +5647,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.ExtendsFutureVoid.==",
- "href": "fake/ExtendsFutureVoid/operator_equals.html",
- "type": "method",
+ "name": "ExtendsFutureVoid",
+ "qualifiedName": "fake.ExtendsFutureVoid.ExtendsFutureVoid",
+ "href": "fake/ExtendsFutureVoid/ExtendsFutureVoid.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ExtendsFutureVoid",
@@ -5751,7 +5769,7 @@
},
{
"name": "ExtraSpecialList",
- "qualifiedName": "fake.ExtraSpecialList",
+ "qualifiedName": "fake.ExtraSpecialList.ExtraSpecialList",
"href": "fake/ExtraSpecialList/ExtraSpecialList.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -5782,17 +5800,6 @@
"type": "library"
}
},
- {
- "name": "Foo2",
- "qualifiedName": "fake.Foo2",
- "href": "fake/Foo2/Foo2.html",
- "type": "constructor",
- "overriddenDepth": 0,
- "enclosedBy": {
- "name": "Foo2",
- "type": "class"
- }
- },
{
"name": "operator ==",
"qualifiedName": "fake.Foo2.==",
@@ -5826,6 +5833,17 @@
"type": "class"
}
},
+ {
+ "name": "Foo2",
+ "qualifiedName": "fake.Foo2.Foo2",
+ "href": "fake/Foo2/Foo2.html",
+ "type": "constructor",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "Foo2",
+ "type": "class"
+ }
+ },
{
"name": "hashCode",
"qualifiedName": "fake.Foo2.hashCode",
@@ -5893,10 +5911,10 @@
}
},
{
- "name": "GenericClass",
- "qualifiedName": "fake.GenericClass",
- "href": "fake/GenericClass/GenericClass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.GenericClass.==",
+ "href": "fake/GenericClass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "GenericClass",
@@ -5904,10 +5922,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.GenericClass.==",
- "href": "fake/GenericClass/operator_equals.html",
- "type": "method",
+ "name": "GenericClass",
+ "qualifiedName": "fake.GenericClass.GenericClass",
+ "href": "fake/GenericClass/GenericClass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "GenericClass",
@@ -6016,23 +6034,23 @@
{
"name": "GenericMixin",
"qualifiedName": "fake.GenericMixin",
- "href": "fake/GenericMixin/GenericMixin.html",
- "type": "constructor",
+ "href": "fake/GenericMixin-mixin.html",
+ "type": "mixin",
"overriddenDepth": 0,
"enclosedBy": {
- "name": "GenericMixin",
- "type": "mixin"
+ "name": "fake",
+ "type": "library"
}
},
{
"name": "GenericMixin",
- "qualifiedName": "fake.GenericMixin",
- "href": "fake/GenericMixin-mixin.html",
- "type": "mixin",
+ "qualifiedName": "fake.GenericMixin.GenericMixin",
+ "href": "fake/GenericMixin/GenericMixin.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
- "name": "fake",
- "type": "library"
+ "name": "GenericMixin",
+ "type": "mixin"
}
},
{
@@ -6102,10 +6120,10 @@
}
},
{
- "name": "HasDynamicAnnotation",
- "qualifiedName": "fake.HasDynamicAnnotation",
- "href": "fake/HasDynamicAnnotation/HasDynamicAnnotation.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.HasDynamicAnnotation.==",
+ "href": "fake/HasDynamicAnnotation/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "HasDynamicAnnotation",
@@ -6113,10 +6131,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.HasDynamicAnnotation.==",
- "href": "fake/HasDynamicAnnotation/operator_equals.html",
- "type": "method",
+ "name": "HasDynamicAnnotation",
+ "qualifiedName": "fake.HasDynamicAnnotation.HasDynamicAnnotation",
+ "href": "fake/HasDynamicAnnotation/HasDynamicAnnotation.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "HasDynamicAnnotation",
@@ -6179,10 +6197,10 @@
}
},
{
- "name": "HasGenericWithExtends",
- "qualifiedName": "fake.HasGenericWithExtends",
- "href": "fake/HasGenericWithExtends/HasGenericWithExtends.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.HasGenericWithExtends.==",
+ "href": "fake/HasGenericWithExtends/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "HasGenericWithExtends",
@@ -6190,10 +6208,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.HasGenericWithExtends.==",
- "href": "fake/HasGenericWithExtends/operator_equals.html",
- "type": "method",
+ "name": "HasGenericWithExtends",
+ "qualifiedName": "fake.HasGenericWithExtends.HasGenericWithExtends",
+ "href": "fake/HasGenericWithExtends/HasGenericWithExtends.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "HasGenericWithExtends",
@@ -6256,10 +6274,10 @@
}
},
{
- "name": "HasGenerics",
- "qualifiedName": "fake.HasGenerics",
- "href": "fake/HasGenerics/HasGenerics.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.HasGenerics.==",
+ "href": "fake/HasGenerics/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "HasGenerics",
@@ -6267,10 +6285,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.HasGenerics.==",
- "href": "fake/HasGenerics/operator_equals.html",
- "type": "method",
+ "name": "HasGenerics",
+ "qualifiedName": "fake.HasGenerics.HasGenerics",
+ "href": "fake/HasGenerics/HasGenerics.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "HasGenerics",
@@ -6377,21 +6395,21 @@
}
},
{
- "name": "HasPragma",
- "qualifiedName": "fake.HasPragma",
- "href": "fake/HasPragma/HasPragma.html",
- "type": "constructor",
- "overriddenDepth": 0,
- "enclosedBy": {
+ "name": "operator ==",
+ "qualifiedName": "fake.HasPragma.==",
+ "href": "fake/HasPragma/operator_equals.html",
+ "type": "method",
+ "overriddenDepth": 0,
+ "enclosedBy": {
"name": "HasPragma",
"type": "class"
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.HasPragma.==",
- "href": "fake/HasPragma/operator_equals.html",
- "type": "method",
+ "name": "HasPragma",
+ "qualifiedName": "fake.HasPragma.HasPragma",
+ "href": "fake/HasPragma/HasPragma.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "HasPragma",
@@ -6455,7 +6473,7 @@
},
{
"name": "ImplementingThingy",
- "qualifiedName": "fake.ImplementingThingy",
+ "qualifiedName": "fake.ImplementingThingy.ImplementingThingy",
"href": "fake/ImplementingThingy/ImplementingThingy.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -6477,7 +6495,7 @@
},
{
"name": "ImplementingThingy2",
- "qualifiedName": "fake.ImplementingThingy2",
+ "qualifiedName": "fake.ImplementingThingy2.ImplementingThingy2",
"href": "fake/ImplementingThingy2/ImplementingThingy2.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -6498,10 +6516,10 @@
}
},
{
- "name": "ImplementsFutureVoid",
- "qualifiedName": "fake.ImplementsFutureVoid",
- "href": "fake/ImplementsFutureVoid/ImplementsFutureVoid.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.ImplementsFutureVoid.==",
+ "href": "fake/ImplementsFutureVoid/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ImplementsFutureVoid",
@@ -6509,10 +6527,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.ImplementsFutureVoid.==",
- "href": "fake/ImplementsFutureVoid/operator_equals.html",
- "type": "method",
+ "name": "ImplementsFutureVoid",
+ "qualifiedName": "fake.ImplementsFutureVoid.ImplementsFutureVoid",
+ "href": "fake/ImplementsFutureVoid/ImplementsFutureVoid.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ImplementsFutureVoid",
@@ -6630,10 +6648,10 @@
}
},
{
- "name": "ImplicitProperties",
- "qualifiedName": "fake.ImplicitProperties",
- "href": "fake/ImplicitProperties/ImplicitProperties.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.ImplicitProperties.==",
+ "href": "fake/ImplicitProperties/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ImplicitProperties",
@@ -6641,10 +6659,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.ImplicitProperties.==",
- "href": "fake/ImplicitProperties/operator_equals.html",
- "type": "method",
+ "name": "ImplicitProperties",
+ "qualifiedName": "fake.ImplicitProperties.ImplicitProperties",
+ "href": "fake/ImplicitProperties/ImplicitProperties.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ImplicitProperties",
@@ -6762,10 +6780,10 @@
}
},
{
- "name": "InheritingClassOne",
- "qualifiedName": "fake.InheritingClassOne",
- "href": "fake/InheritingClassOne/InheritingClassOne.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.InheritingClassOne.==",
+ "href": "fake/InheritingClassOne/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "InheritingClassOne",
@@ -6773,10 +6791,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.InheritingClassOne.==",
- "href": "fake/InheritingClassOne/operator_equals.html",
- "type": "method",
+ "name": "InheritingClassOne",
+ "qualifiedName": "fake.InheritingClassOne.InheritingClassOne",
+ "href": "fake/InheritingClassOne/InheritingClassOne.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "InheritingClassOne",
@@ -6850,10 +6868,10 @@
}
},
{
- "name": "InheritingClassTwo",
- "qualifiedName": "fake.InheritingClassTwo",
- "href": "fake/InheritingClassTwo/InheritingClassTwo.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.InheritingClassTwo.==",
+ "href": "fake/InheritingClassTwo/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "InheritingClassTwo",
@@ -6861,10 +6879,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.InheritingClassTwo.==",
- "href": "fake/InheritingClassTwo/operator_equals.html",
- "type": "method",
+ "name": "InheritingClassTwo",
+ "qualifiedName": "fake.InheritingClassTwo.InheritingClassTwo",
+ "href": "fake/InheritingClassTwo/InheritingClassTwo.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "InheritingClassTwo",
@@ -6938,10 +6956,10 @@
}
},
{
- "name": "Interface",
- "qualifiedName": "fake.Interface",
- "href": "fake/Interface/Interface.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.Interface.==",
+ "href": "fake/Interface/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Interface",
@@ -6949,10 +6967,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.Interface.==",
- "href": "fake/Interface/operator_equals.html",
- "type": "method",
+ "name": "Interface",
+ "qualifiedName": "fake.Interface.Interface",
+ "href": "fake/Interface/Interface.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Interface",
@@ -7014,17 +7032,6 @@
"type": "library"
}
},
- {
- "name": "LongFirstLine",
- "qualifiedName": "fake.LongFirstLine",
- "href": "fake/LongFirstLine/LongFirstLine.html",
- "type": "constructor",
- "overriddenDepth": 0,
- "enclosedBy": {
- "name": "LongFirstLine",
- "type": "class"
- }
- },
{
"name": "operator *",
"qualifiedName": "fake.LongFirstLine.*",
@@ -7058,6 +7065,17 @@
"type": "class"
}
},
+ {
+ "name": "LongFirstLine",
+ "qualifiedName": "fake.LongFirstLine.LongFirstLine",
+ "href": "fake/LongFirstLine/LongFirstLine.html",
+ "type": "constructor",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "LongFirstLine",
+ "type": "class"
+ }
+ },
{
"name": "THING",
"qualifiedName": "fake.LongFirstLine.THING",
@@ -7247,7 +7265,7 @@
},
{
"name": "MIEEBase",
- "qualifiedName": "fake.MIEEBase",
+ "qualifiedName": "fake.MIEEBase.MIEEBase",
"href": "fake/MIEEBase/MIEEBase.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -7269,7 +7287,7 @@
},
{
"name": "MIEEMixin",
- "qualifiedName": "fake.MIEEMixin",
+ "qualifiedName": "fake.MIEEMixin.MIEEMixin",
"href": "fake/MIEEMixin/MIEEMixin.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -7302,7 +7320,7 @@
},
{
"name": "MIEEMixinWithOverride",
- "qualifiedName": "fake.MIEEMixinWithOverride",
+ "qualifiedName": "fake.MIEEMixinWithOverride.MIEEMixinWithOverride",
"href": "fake/MIEEMixinWithOverride/MIEEMixinWithOverride.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -7334,10 +7352,10 @@
}
},
{
- "name": "MIEEThing",
- "qualifiedName": "fake.MIEEThing",
- "href": "fake/MIEEThing/MIEEThing.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.MIEEThing.==",
+ "href": "fake/MIEEThing/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "MIEEThing",
@@ -7345,10 +7363,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.MIEEThing.==",
- "href": "fake/MIEEThing/operator_equals.html",
- "type": "method",
+ "name": "MIEEThing",
+ "qualifiedName": "fake.MIEEThing.MIEEThing",
+ "href": "fake/MIEEThing/MIEEThing.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "MIEEThing",
@@ -7488,10 +7506,10 @@
}
},
{
- "name": "MixMeIn",
- "qualifiedName": "fake.MixMeIn",
- "href": "fake/MixMeIn/MixMeIn.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.MixMeIn.==",
+ "href": "fake/MixMeIn/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "MixMeIn",
@@ -7499,10 +7517,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.MixMeIn.==",
- "href": "fake/MixMeIn/operator_equals.html",
- "type": "method",
+ "name": "MixMeIn",
+ "qualifiedName": "fake.MixMeIn.MixMeIn",
+ "href": "fake/MixMeIn/MixMeIn.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "MixMeIn",
@@ -7566,7 +7584,7 @@
},
{
"name": "ModifierClass",
- "qualifiedName": "fake.ModifierClass",
+ "qualifiedName": "fake.ModifierClass.ModifierClass",
"href": "fake/ModifierClass/ModifierClass.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -7655,23 +7673,23 @@
{
"name": "NewStyleMixinCallingSuper",
"qualifiedName": "fake.NewStyleMixinCallingSuper",
- "href": "fake/NewStyleMixinCallingSuper/NewStyleMixinCallingSuper.html",
- "type": "constructor",
+ "href": "fake/NewStyleMixinCallingSuper-mixin.html",
+ "type": "mixin",
"overriddenDepth": 0,
"enclosedBy": {
- "name": "NewStyleMixinCallingSuper",
- "type": "mixin"
+ "name": "fake",
+ "type": "library"
}
},
{
"name": "NewStyleMixinCallingSuper",
- "qualifiedName": "fake.NewStyleMixinCallingSuper",
- "href": "fake/NewStyleMixinCallingSuper-mixin.html",
- "type": "mixin",
+ "qualifiedName": "fake.NewStyleMixinCallingSuper.NewStyleMixinCallingSuper",
+ "href": "fake/NewStyleMixinCallingSuper/NewStyleMixinCallingSuper.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
- "name": "fake",
- "type": "library"
+ "name": "NewStyleMixinCallingSuper",
+ "type": "mixin"
}
},
{
@@ -7697,10 +7715,10 @@
}
},
{
- "name": "NotAMixin",
- "qualifiedName": "fake.NotAMixin",
- "href": "fake/NotAMixin/NotAMixin.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.NotAMixin.==",
+ "href": "fake/NotAMixin/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "NotAMixin",
@@ -7708,10 +7726,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.NotAMixin.==",
- "href": "fake/NotAMixin/operator_equals.html",
- "type": "method",
+ "name": "NotAMixin",
+ "qualifiedName": "fake.NotAMixin.NotAMixin",
+ "href": "fake/NotAMixin/NotAMixin.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "NotAMixin",
@@ -7785,10 +7803,10 @@
}
},
{
- "name": "Oops",
- "qualifiedName": "fake.Oops",
- "href": "fake/Oops/Oops.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.Oops.==",
+ "href": "fake/Oops/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Oops",
@@ -7796,10 +7814,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.Oops.==",
- "href": "fake/Oops/operator_equals.html",
- "type": "method",
+ "name": "Oops",
+ "qualifiedName": "fake.Oops.Oops",
+ "href": "fake/Oops/Oops.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Oops",
@@ -7873,22 +7891,22 @@
}
},
{
- "name": "OperatorReferenceClass",
- "qualifiedName": "fake.OperatorReferenceClass",
- "href": "fake/OperatorReferenceClass/OperatorReferenceClass.html",
- "type": "constructor",
- "overriddenDepth": 0,
+ "name": "operator ==",
+ "qualifiedName": "fake.OperatorReferenceClass.==",
+ "href": "fake/OperatorReferenceClass/operator_equals.html",
+ "type": "method",
+ "overriddenDepth": 1,
"enclosedBy": {
"name": "OperatorReferenceClass",
"type": "class"
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.OperatorReferenceClass.==",
- "href": "fake/OperatorReferenceClass/operator_equals.html",
- "type": "method",
- "overriddenDepth": 1,
+ "name": "OperatorReferenceClass",
+ "qualifiedName": "fake.OperatorReferenceClass.OperatorReferenceClass",
+ "href": "fake/OperatorReferenceClass/OperatorReferenceClass.html",
+ "type": "constructor",
+ "overriddenDepth": 0,
"enclosedBy": {
"name": "OperatorReferenceClass",
"type": "class"
@@ -7950,10 +7968,10 @@
}
},
{
- "name": "OtherGenericsThing",
- "qualifiedName": "fake.OtherGenericsThing",
- "href": "fake/OtherGenericsThing/OtherGenericsThing.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.OtherGenericsThing.==",
+ "href": "fake/OtherGenericsThing/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "OtherGenericsThing",
@@ -7961,10 +7979,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.OtherGenericsThing.==",
- "href": "fake/OtherGenericsThing/operator_equals.html",
- "type": "method",
+ "name": "OtherGenericsThing",
+ "qualifiedName": "fake.OtherGenericsThing.OtherGenericsThing",
+ "href": "fake/OtherGenericsThing/OtherGenericsThing.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "OtherGenericsThing",
@@ -8049,10 +8067,10 @@
}
},
{
- "name": "ReferToADefaultConstructor",
- "qualifiedName": "fake.ReferToADefaultConstructor",
- "href": "fake/ReferToADefaultConstructor/ReferToADefaultConstructor.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.ReferToADefaultConstructor.==",
+ "href": "fake/ReferToADefaultConstructor/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ReferToADefaultConstructor",
@@ -8060,10 +8078,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.ReferToADefaultConstructor.==",
- "href": "fake/ReferToADefaultConstructor/operator_equals.html",
- "type": "method",
+ "name": "ReferToADefaultConstructor",
+ "qualifiedName": "fake.ReferToADefaultConstructor.ReferToADefaultConstructor",
+ "href": "fake/ReferToADefaultConstructor/ReferToADefaultConstructor.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ReferToADefaultConstructor",
@@ -8126,10 +8144,10 @@
}
},
{
- "name": "ReferringClass",
- "qualifiedName": "fake.ReferringClass",
- "href": "fake/ReferringClass/ReferringClass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.ReferringClass.==",
+ "href": "fake/ReferringClass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ReferringClass",
@@ -8137,10 +8155,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.ReferringClass.==",
- "href": "fake/ReferringClass/operator_equals.html",
- "type": "method",
+ "name": "ReferringClass",
+ "qualifiedName": "fake.ReferringClass.ReferringClass",
+ "href": "fake/ReferringClass/ReferringClass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ReferringClass",
@@ -8214,32 +8232,32 @@
}
},
{
- "name": "SpecialList",
- "qualifiedName": "fake.SpecialList",
- "href": "fake/SpecialList/SpecialList.html",
- "type": "constructor",
- "overriddenDepth": 0,
+ "name": "operator +",
+ "qualifiedName": "fake.SpecialList.+",
+ "href": "fake/SpecialList/operator_plus.html",
+ "type": "method",
+ "overriddenDepth": 1,
"enclosedBy": {
"name": "SpecialList",
"type": "class"
}
},
{
- "name": "operator +",
- "qualifiedName": "fake.SpecialList.+",
- "href": "fake/SpecialList/operator_plus.html",
+ "name": "operator ==",
+ "qualifiedName": "fake.SpecialList.==",
+ "href": "fake/SpecialList/operator_equals.html",
"type": "method",
- "overriddenDepth": 1,
+ "overriddenDepth": 0,
"enclosedBy": {
"name": "SpecialList",
"type": "class"
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.SpecialList.==",
- "href": "fake/SpecialList/operator_equals.html",
- "type": "method",
+ "name": "SpecialList",
+ "qualifiedName": "fake.SpecialList.SpecialList",
+ "href": "fake/SpecialList/SpecialList.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "SpecialList",
@@ -8930,7 +8948,7 @@
},
{
"name": "SubForDocComments",
- "qualifiedName": "fake.SubForDocComments",
+ "qualifiedName": "fake.SubForDocComments.SubForDocComments",
"href": "fake/SubForDocComments/SubForDocComments.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -8972,17 +8990,6 @@
"type": "library"
}
},
- {
- "name": "SuperAwesomeClass",
- "qualifiedName": "fake.SuperAwesomeClass",
- "href": "fake/SuperAwesomeClass/SuperAwesomeClass.html",
- "type": "constructor",
- "overriddenDepth": 0,
- "enclosedBy": {
- "name": "SuperAwesomeClass",
- "type": "class"
- }
- },
{
"name": "operator -",
"qualifiedName": "fake.SuperAwesomeClass.-",
@@ -9005,6 +9012,17 @@
"type": "class"
}
},
+ {
+ "name": "SuperAwesomeClass",
+ "qualifiedName": "fake.SuperAwesomeClass.SuperAwesomeClass",
+ "href": "fake/SuperAwesomeClass/SuperAwesomeClass.html",
+ "type": "constructor",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "SuperAwesomeClass",
+ "type": "class"
+ }
+ },
{
"name": "fly",
"qualifiedName": "fake.SuperAwesomeClass.fly",
@@ -9084,7 +9102,7 @@
},
{
"name": "TypeInferenceMixedIn",
- "qualifiedName": "fake.TypeInferenceMixedIn",
+ "qualifiedName": "fake.TypeInferenceMixedIn.TypeInferenceMixedIn",
"href": "fake/TypeInferenceMixedIn/TypeInferenceMixedIn.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -9116,10 +9134,10 @@
}
},
{
- "name": "TypedefUsingClass",
- "qualifiedName": "fake.TypedefUsingClass",
- "href": "fake/TypedefUsingClass/TypedefUsingClass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.TypedefUsingClass.==",
+ "href": "fake/TypedefUsingClass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "TypedefUsingClass",
@@ -9127,10 +9145,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.TypedefUsingClass.==",
- "href": "fake/TypedefUsingClass/operator_equals.html",
- "type": "method",
+ "name": "TypedefUsingClass",
+ "qualifiedName": "fake.TypedefUsingClass.TypedefUsingClass",
+ "href": "fake/TypedefUsingClass/TypedefUsingClass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "TypedefUsingClass",
@@ -9226,10 +9244,10 @@
}
},
{
- "name": "WithGetterAndSetter",
- "qualifiedName": "fake.WithGetterAndSetter",
- "href": "fake/WithGetterAndSetter/WithGetterAndSetter.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.WithGetterAndSetter.==",
+ "href": "fake/WithGetterAndSetter/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "WithGetterAndSetter",
@@ -9237,10 +9255,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.WithGetterAndSetter.==",
- "href": "fake/WithGetterAndSetter/operator_equals.html",
- "type": "method",
+ "name": "WithGetterAndSetter",
+ "qualifiedName": "fake.WithGetterAndSetter.WithGetterAndSetter",
+ "href": "fake/WithGetterAndSetter/WithGetterAndSetter.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "WithGetterAndSetter",
@@ -9335,6 +9353,17 @@
"type": "library"
}
},
+ {
+ "name": "aFunctionUsingRenamedLib",
+ "qualifiedName": "fake.aFunctionUsingRenamedLib",
+ "href": "fake/aFunctionUsingRenamedLib.html",
+ "type": "function",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "fake",
+ "type": "library"
+ }
+ },
{
"name": "aMixinReturningFunction",
"qualifiedName": "fake.aMixinReturningFunction",
@@ -9837,6 +9866,112 @@
"type": "library",
"overriddenDepth": 0
},
+ {
+ "name": "mylibpub",
+ "qualifiedName": "mylibpub",
+ "href": "mylibpub/mylibpub-library.html",
+ "type": "library",
+ "overriddenDepth": 0
+ },
+ {
+ "name": "YetAnotherHelper",
+ "qualifiedName": "mylibpub.YetAnotherHelper",
+ "href": "mylibpub/YetAnotherHelper-class.html",
+ "type": "class",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "mylibpub",
+ "type": "library"
+ }
+ },
+ {
+ "name": "operator ==",
+ "qualifiedName": "mylibpub.YetAnotherHelper.==",
+ "href": "mylibpub/YetAnotherHelper/operator_equals.html",
+ "type": "method",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "YetAnotherHelper",
+ "type": "class"
+ }
+ },
+ {
+ "name": "YetAnotherHelper",
+ "qualifiedName": "mylibpub.YetAnotherHelper.YetAnotherHelper",
+ "href": "mylibpub/YetAnotherHelper/YetAnotherHelper.html",
+ "type": "constructor",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "YetAnotherHelper",
+ "type": "class"
+ }
+ },
+ {
+ "name": "getMoreContents",
+ "qualifiedName": "mylibpub.YetAnotherHelper.getMoreContents",
+ "href": "mylibpub/YetAnotherHelper/getMoreContents.html",
+ "type": "method",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "YetAnotherHelper",
+ "type": "class"
+ }
+ },
+ {
+ "name": "hashCode",
+ "qualifiedName": "mylibpub.YetAnotherHelper.hashCode",
+ "href": "mylibpub/YetAnotherHelper/hashCode.html",
+ "type": "property",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "YetAnotherHelper",
+ "type": "class"
+ }
+ },
+ {
+ "name": "noSuchMethod",
+ "qualifiedName": "mylibpub.YetAnotherHelper.noSuchMethod",
+ "href": "mylibpub/YetAnotherHelper/noSuchMethod.html",
+ "type": "method",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "YetAnotherHelper",
+ "type": "class"
+ }
+ },
+ {
+ "name": "runtimeType",
+ "qualifiedName": "mylibpub.YetAnotherHelper.runtimeType",
+ "href": "mylibpub/YetAnotherHelper/runtimeType.html",
+ "type": "property",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "YetAnotherHelper",
+ "type": "class"
+ }
+ },
+ {
+ "name": "toString",
+ "qualifiedName": "mylibpub.YetAnotherHelper.toString",
+ "href": "mylibpub/YetAnotherHelper/toString.html",
+ "type": "method",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "YetAnotherHelper",
+ "type": "class"
+ }
+ },
+ {
+ "name": "helperFunction",
+ "qualifiedName": "mylibpub.helperFunction",
+ "href": "mylibpub/helperFunction.html",
+ "type": "function",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "mylibpub",
+ "type": "library"
+ }
+ },
{
"name": "reexport_one",
"qualifiedName": "reexport_one",
@@ -9856,10 +9991,10 @@
}
},
{
- "name": "SomeOtherClass",
- "qualifiedName": "reexport_one.SomeOtherClass",
- "href": "reexport_one/SomeOtherClass/SomeOtherClass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "reexport_one.SomeOtherClass.==",
+ "href": "reexport_one/SomeOtherClass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "SomeOtherClass",
@@ -9867,10 +10002,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "reexport_one.SomeOtherClass.==",
- "href": "reexport_one/SomeOtherClass/operator_equals.html",
- "type": "method",
+ "name": "SomeOtherClass",
+ "qualifiedName": "reexport_one.SomeOtherClass.SomeOtherClass",
+ "href": "reexport_one/SomeOtherClass/SomeOtherClass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "SomeOtherClass",
@@ -9928,17 +10063,6 @@
"type": "library",
"overriddenDepth": 0
},
- {
- "name": "AMixin",
- "qualifiedName": "reexport_two.AMixin",
- "href": "reexport_two/AMixin/AMixin.html",
- "type": "constructor",
- "overriddenDepth": 0,
- "enclosedBy": {
- "name": "AMixin",
- "type": "mixin"
- }
- },
{
"name": "AMixin",
"qualifiedName": "reexport_two.AMixin",
@@ -9961,6 +10085,17 @@
"type": "mixin"
}
},
+ {
+ "name": "AMixin",
+ "qualifiedName": "reexport_two.AMixin.AMixin",
+ "href": "reexport_two/AMixin/AMixin.html",
+ "type": "constructor",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "AMixin",
+ "type": "mixin"
+ }
+ },
{
"name": "hashCode",
"qualifiedName": "reexport_two.AMixin.hashCode",
@@ -10017,10 +10152,10 @@
}
},
{
- "name": "AUnicornClass",
- "qualifiedName": "reexport_two.AUnicornClass",
- "href": "reexport_two/AUnicornClass/AUnicornClass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "reexport_two.AUnicornClass.==",
+ "href": "reexport_two/AUnicornClass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "AUnicornClass",
@@ -10028,10 +10163,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "reexport_two.AUnicornClass.==",
- "href": "reexport_two/AUnicornClass/operator_equals.html",
- "type": "method",
+ "name": "AUnicornClass",
+ "qualifiedName": "reexport_two.AUnicornClass.AUnicornClass",
+ "href": "reexport_two/AUnicornClass/AUnicornClass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "AUnicornClass",
@@ -10095,7 +10230,7 @@
},
{
"name": "MixedIn",
- "qualifiedName": "reexport_two.MixedIn",
+ "qualifiedName": "reexport_two.MixedIn.MixedIn",
"href": "reexport_two/MixedIn/MixedIn.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -10127,10 +10262,10 @@
}
},
{
- "name": "SomeClass",
- "qualifiedName": "reexport_two.SomeClass",
- "href": "reexport_two/SomeClass/SomeClass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "reexport_two.SomeClass.==",
+ "href": "reexport_two/SomeClass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "SomeClass",
@@ -10138,10 +10273,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "reexport_two.SomeClass.==",
- "href": "reexport_two/SomeClass/operator_equals.html",
- "type": "method",
+ "name": "SomeClass",
+ "qualifiedName": "reexport_two.SomeClass.SomeClass",
+ "href": "reexport_two/SomeClass/SomeClass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "SomeClass",
@@ -10204,10 +10339,10 @@
}
},
{
- "name": "YetAnotherClass",
- "qualifiedName": "reexport_two.YetAnotherClass",
- "href": "reexport_two/YetAnotherClass/YetAnotherClass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "reexport_two.YetAnotherClass.==",
+ "href": "reexport_two/YetAnotherClass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "YetAnotherClass",
@@ -10215,10 +10350,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "reexport_two.YetAnotherClass.==",
- "href": "reexport_two/YetAnotherClass/operator_equals.html",
- "type": "method",
+ "name": "YetAnotherClass",
+ "qualifiedName": "reexport_two.YetAnotherClass.YetAnotherClass",
+ "href": "reexport_two/YetAnotherClass/YetAnotherClass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "YetAnotherClass",
@@ -10288,10 +10423,10 @@
}
},
{
- "name": "Whataclass",
- "qualifiedName": "test_package_imported.main.Whataclass",
- "href": "test_package_imported.main/Whataclass/Whataclass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "test_package_imported.main.Whataclass.==",
+ "href": "test_package_imported.main/Whataclass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Whataclass",
@@ -10299,10 +10434,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "test_package_imported.main.Whataclass.==",
- "href": "test_package_imported.main/Whataclass/operator_equals.html",
- "type": "method",
+ "name": "Whataclass",
+ "qualifiedName": "test_package_imported.main.Whataclass.Whataclass",
+ "href": "test_package_imported.main/Whataclass/Whataclass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Whataclass",
@@ -10365,10 +10500,10 @@
}
},
{
- "name": "Whataclass2",
- "qualifiedName": "test_package_imported.main.Whataclass2",
- "href": "test_package_imported.main/Whataclass2/Whataclass2.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "test_package_imported.main.Whataclass2.==",
+ "href": "test_package_imported.main/Whataclass2/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Whataclass2",
@@ -10376,10 +10511,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "test_package_imported.main.Whataclass2.==",
- "href": "test_package_imported.main/Whataclass2/operator_equals.html",
- "type": "method",
+ "name": "Whataclass2",
+ "qualifiedName": "test_package_imported.main.Whataclass2.Whataclass2",
+ "href": "test_package_imported.main/Whataclass2/Whataclass2.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Whataclass2",
@@ -10450,7 +10585,7 @@
},
{
"name": "BaseClass",
- "qualifiedName": "two_exports.BaseClass",
+ "qualifiedName": "two_exports.BaseClass.BaseClass",
"href": "two_exports/BaseClass/BaseClass.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -10472,7 +10607,7 @@
},
{
"name": "ExtendingClass",
- "qualifiedName": "two_exports.ExtendingClass",
+ "qualifiedName": "two_exports.ExtendingClass.ExtendingClass",
"href": "two_exports/ExtendingClass/ExtendingClass.html",
"type": "constructor",
"overriddenDepth": 0,
diff --git a/testing/test_package_docs/is_deprecated/is_deprecated-library.html b/testing/test_package_docs/is_deprecated/is_deprecated-library.html
index fb01eb9e6c..ffa840cc6e 100644
--- a/testing/test_package_docs/is_deprecated/is_deprecated-library.html
+++ b/testing/test_package_docs/is_deprecated/is_deprecated-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/mylibpub/YetAnotherHelper-class.html b/testing/test_package_docs/mylibpub/YetAnotherHelper-class.html
new file mode 100644
index 0000000000..f299d91ce4
--- /dev/null
+++ b/testing/test_package_docs/mylibpub/YetAnotherHelper-class.html
@@ -0,0 +1,208 @@
+
+
+
+
+
+
+
+ YetAnotherHelper class - mylibpub library - Dart API
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
YetAnotherHelper class
+
+
+ Even unresolved references in the same library should be resolved
+Apple
+ex.B
+
+
+
+
+
+
+ Properties
+
+
+
+ hashCode
+ → int
+
+
+
+ read-only, inherited
+
+
+ runtimeType
+ → Type
+
+
+
+ read-only, inherited
+
+
+
+
+
+ Methods
+
+
+ getMoreContents ()
+ → String
+
+
+
+
+
+
+
+ noSuchMethod (Invocation invocation )
+ → dynamic
+
+
+
+
+ inherited
+
+
+ toString ()
+ → String
+
+
+
+
+ inherited
+
+
+
+
+
+ Operators
+
+
+ operator == (dynamic other )
+ → bool
+
+
+
+
+ inherited
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ test_package 0.0.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/testing/test_package_docs/mylibpub/YetAnotherHelper/YetAnotherHelper.html b/testing/test_package_docs/mylibpub/YetAnotherHelper/YetAnotherHelper.html
new file mode 100644
index 0000000000..e8eb29f512
--- /dev/null
+++ b/testing/test_package_docs/mylibpub/YetAnotherHelper/YetAnotherHelper.html
@@ -0,0 +1,111 @@
+
+
+
+
+
+
+
+ YetAnotherHelper constructor - YetAnotherHelper class - mylibpub library - Dart API
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
YetAnotherHelper constructor
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ test_package 0.0.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/testing/test_package_docs/mylibpub/YetAnotherHelper/getMoreContents.html b/testing/test_package_docs/mylibpub/YetAnotherHelper/getMoreContents.html
new file mode 100644
index 0000000000..df007fb055
--- /dev/null
+++ b/testing/test_package_docs/mylibpub/YetAnotherHelper/getMoreContents.html
@@ -0,0 +1,112 @@
+
+
+
+
+
+
+
+ getMoreContents method - YetAnotherHelper class - mylibpub library - Dart API
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
getMoreContents method
+
+
+ String
+ getMoreContents
+()
+
+
+
+
+
+
+
+
+
+
+
+
+
+ test_package 0.0.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/testing/test_package_docs/mylibpub/YetAnotherHelper/hashCode.html b/testing/test_package_docs/mylibpub/YetAnotherHelper/hashCode.html
new file mode 100644
index 0000000000..e69d415649
--- /dev/null
+++ b/testing/test_package_docs/mylibpub/YetAnotherHelper/hashCode.html
@@ -0,0 +1,115 @@
+
+
+
+
+
+
+
+ hashCode property - YetAnotherHelper class - mylibpub library - Dart API
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
hashCode property
+
+
+
+
+
+ int
+ hashCode
+ inherited
+
+
+
+
+
+
+
+
+
+
+
+
+
+ test_package 0.0.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/testing/test_package_docs/mylibpub/YetAnotherHelper/noSuchMethod.html b/testing/test_package_docs/mylibpub/YetAnotherHelper/noSuchMethod.html
new file mode 100644
index 0000000000..93a2838558
--- /dev/null
+++ b/testing/test_package_docs/mylibpub/YetAnotherHelper/noSuchMethod.html
@@ -0,0 +1,112 @@
+
+
+
+
+
+
+
+ noSuchMethod method - YetAnotherHelper class - mylibpub library - Dart API
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
noSuchMethod method
+
+
+ dynamic
+ noSuchMethod
+(Invocation invocation )
+ inherited
+
+
+
+
+
+
+
+
+
+
+
+
+ test_package 0.0.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/testing/test_package_docs/mylibpub/YetAnotherHelper/operator_equals.html b/testing/test_package_docs/mylibpub/YetAnotherHelper/operator_equals.html
new file mode 100644
index 0000000000..4b8cabd898
--- /dev/null
+++ b/testing/test_package_docs/mylibpub/YetAnotherHelper/operator_equals.html
@@ -0,0 +1,112 @@
+
+
+
+
+
+
+
+ operator == method - YetAnotherHelper class - mylibpub library - Dart API
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
operator == method
+
+
+ bool
+ operator ==
+(dynamic other )
+ inherited
+
+
+
+
+
+
+
+
+
+
+
+
+ test_package 0.0.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/testing/test_package_docs/mylibpub/YetAnotherHelper/runtimeType.html b/testing/test_package_docs/mylibpub/YetAnotherHelper/runtimeType.html
new file mode 100644
index 0000000000..499f643888
--- /dev/null
+++ b/testing/test_package_docs/mylibpub/YetAnotherHelper/runtimeType.html
@@ -0,0 +1,115 @@
+
+
+
+
+
+
+
+ runtimeType property - YetAnotherHelper class - mylibpub library - Dart API
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
runtimeType property
+
+
+
+
+
+ Type
+ runtimeType
+ inherited
+
+
+
+
+
+
+
+
+
+
+
+
+
+ test_package 0.0.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/testing/test_package_docs/mylibpub/YetAnotherHelper/toString.html b/testing/test_package_docs/mylibpub/YetAnotherHelper/toString.html
new file mode 100644
index 0000000000..d7c78b4f07
--- /dev/null
+++ b/testing/test_package_docs/mylibpub/YetAnotherHelper/toString.html
@@ -0,0 +1,112 @@
+
+
+
+
+
+
+
+ toString method - YetAnotherHelper class - mylibpub library - Dart API
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
toString method
+
+
+ String
+ toString
+()
+ inherited
+
+
+
+
+
+
+
+
+
+
+
+
+ test_package 0.0.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/testing/test_package_docs/mylibpub/helperFunction.html b/testing/test_package_docs/mylibpub/helperFunction.html
new file mode 100644
index 0000000000..df0eb9a4f3
--- /dev/null
+++ b/testing/test_package_docs/mylibpub/helperFunction.html
@@ -0,0 +1,101 @@
+
+
+
+
+
+
+
+ helperFunction function - mylibpub library - Dart API
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
helperFunction function
+
+
+ void
+ helperFunction
+(String message , int i )
+
+
+
+
+
+
+
+
+
+
+
+
+ test_package 0.0.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/testing/test_package_docs/mylibpub/mylibpub-library.html b/testing/test_package_docs/mylibpub/mylibpub-library.html
new file mode 100644
index 0000000000..363245ad91
--- /dev/null
+++ b/testing/test_package_docs/mylibpub/mylibpub-library.html
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+ mylibpub library - Dart API
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
mylibpub library
+
+
+
+ Classes
+
+
+
+ YetAnotherHelper
+
+
+ Even unresolved references in the same library should be resolved
+Apple
+ex.B
+
+
+
+
+
+
+
+
+ Functions
+
+
+
+ helperFunction (String message , int i )
+ → void
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ test_package 0.0.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/testing/test_package_docs/reexport_one/reexport_one-library.html b/testing/test_package_docs/reexport_one/reexport_one-library.html
index a645739c6a..2943a3c9d8 100644
--- a/testing/test_package_docs/reexport_one/reexport_one-library.html
+++ b/testing/test_package_docs/reexport_one/reexport_one-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/reexport_two/reexport_two-library.html b/testing/test_package_docs/reexport_two/reexport_two-library.html
index f97585d917..f23ea5ef34 100644
--- a/testing/test_package_docs/reexport_two/reexport_two-library.html
+++ b/testing/test_package_docs/reexport_two/reexport_two-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/test_package_imported.main/test_package_imported.main-library.html b/testing/test_package_docs/test_package_imported.main/test_package_imported.main-library.html
index 4c53ecfe05..2d2d675cf3 100644
--- a/testing/test_package_docs/test_package_imported.main/test_package_imported.main-library.html
+++ b/testing/test_package_docs/test_package_imported.main/test_package_imported.main-library.html
@@ -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/topics/Superb-topic.html b/testing/test_package_docs/topics/Superb-topic.html
index a6641abb2f..287ae2852e 100644
--- a/testing/test_package_docs/topics/Superb-topic.html
+++ b/testing/test_package_docs/topics/Superb-topic.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/topics/Unreal-topic.html b/testing/test_package_docs/topics/Unreal-topic.html
index ca6f4d9084..c1ae1a6d92 100644
--- a/testing/test_package_docs/topics/Unreal-topic.html
+++ b/testing/test_package_docs/topics/Unreal-topic.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/two_exports/two_exports-library.html b/testing/test_package_docs/two_exports/two_exports-library.html
index 95e78e1b7f..5cac0f3a43 100644
--- a/testing/test_package_docs/two_exports/two_exports-library.html
+++ b/testing/test_package_docs/two_exports/two_exports-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_dev/__404error.html b/testing/test_package_docs_dev/__404error.html
index 4eb7efd5e1..83e9b78ba2 100644
--- a/testing/test_package_docs_dev/__404error.html
+++ b/testing/test_package_docs_dev/__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_dev/anonymous_library/anonymous_library-library.html b/testing/test_package_docs_dev/anonymous_library/anonymous_library-library.html
index 43b1409497..2c5bea722b 100644
--- a/testing/test_package_docs_dev/anonymous_library/anonymous_library-library.html
+++ b/testing/test_package_docs_dev/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_dev/another_anonymous_lib/another_anonymous_lib-library.html b/testing/test_package_docs_dev/another_anonymous_lib/another_anonymous_lib-library.html
index f01b729502..b3a9a126c5 100644
--- a/testing/test_package_docs_dev/another_anonymous_lib/another_anonymous_lib-library.html
+++ b/testing/test_package_docs_dev/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_dev/categoriesExported/categoriesExported-library.html b/testing/test_package_docs_dev/categoriesExported/categoriesExported-library.html
index 8a74dba988..1f80856726 100644
--- a/testing/test_package_docs_dev/categoriesExported/categoriesExported-library.html
+++ b/testing/test_package_docs_dev/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_dev/code_in_comments/code_in_comments-library.html b/testing/test_package_docs_dev/code_in_comments/code_in_comments-library.html
index 2fb09b19fe..51d02625dd 100644
--- a/testing/test_package_docs_dev/code_in_comments/code_in_comments-library.html
+++ b/testing/test_package_docs_dev/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_dev/css/css-library.html b/testing/test_package_docs_dev/css/css-library.html
index 94bcc3bf0d..618d65d5e2 100644
--- a/testing/test_package_docs_dev/css/css-library.html
+++ b/testing/test_package_docs_dev/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_dev/csspub/csspub-library.html b/testing/test_package_docs_dev/csspub/csspub-library.html
new file mode 100644
index 0000000000..257b672f23
--- /dev/null
+++ b/testing/test_package_docs_dev/csspub/csspub-library.html
@@ -0,0 +1,139 @@
+
+
+
+
+
+
+
+ csspub library - Dart API
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
csspub library
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ test_package 0.0.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/testing/test_package_docs_dev/csspub/theOnlyThingInTheLibrary.html b/testing/test_package_docs_dev/csspub/theOnlyThingInTheLibrary.html
new file mode 100644
index 0000000000..da6dfce767
--- /dev/null
+++ b/testing/test_package_docs_dev/csspub/theOnlyThingInTheLibrary.html
@@ -0,0 +1,99 @@
+
+
+
+
+
+
+
+ theOnlyThingInTheLibrary property - csspub library - Dart API
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ test_package
+ csspub
+ theOnlyThingInTheLibrary property
+
+ theOnlyThingInTheLibrary
+
+
+
+
+
+
+
+
+
theOnlyThingInTheLibrary top-level property
+
+
+ String
+ theOnlyThingInTheLibrary
+ read / write
+
+
+
+
+
+
+
+
+
+
+
+
+ test_package 0.0.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/testing/test_package_docs_dev/ex/ex-library.html b/testing/test_package_docs_dev/ex/ex-library.html
index 4ce74c59d0..c88a3eccda 100644
--- a/testing/test_package_docs_dev/ex/ex-library.html
+++ b/testing/test_package_docs_dev/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_dev/fake/ABaseClass-class.html b/testing/test_package_docs_dev/fake/ABaseClass-class.html
index 334a9ca94a..21968c62ef 100644
--- a/testing/test_package_docs_dev/fake/ABaseClass-class.html
+++ b/testing/test_package_docs_dev/fake/ABaseClass-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/AClassUsingASuperMixin-class.html b/testing/test_package_docs_dev/fake/AClassUsingASuperMixin-class.html
index 76251289e1..1dba0924a4 100644
--- a/testing/test_package_docs_dev/fake/AClassUsingASuperMixin-class.html
+++ b/testing/test_package_docs_dev/fake/AClassUsingASuperMixin-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/AClassUsingNewStyleMixin-class.html b/testing/test_package_docs_dev/fake/AClassUsingNewStyleMixin-class.html
index b9ddae3b3c..8d5a124e14 100644
--- a/testing/test_package_docs_dev/fake/AClassUsingNewStyleMixin-class.html
+++ b/testing/test_package_docs_dev/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_dev/fake/AClassWithFancyProperties-class.html b/testing/test_package_docs_dev/fake/AClassWithFancyProperties-class.html
index c9c7dbf351..452161a9ae 100644
--- a/testing/test_package_docs_dev/fake/AClassWithFancyProperties-class.html
+++ b/testing/test_package_docs_dev/fake/AClassWithFancyProperties-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/AMixinCallingSuper-class.html b/testing/test_package_docs_dev/fake/AMixinCallingSuper-class.html
index 114a6051d9..709842b9b6 100644
--- a/testing/test_package_docs_dev/fake/AMixinCallingSuper-class.html
+++ b/testing/test_package_docs_dev/fake/AMixinCallingSuper-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/ATypeTakingClass-class.html b/testing/test_package_docs_dev/fake/ATypeTakingClass-class.html
index f764dd13fb..057602683d 100644
--- a/testing/test_package_docs_dev/fake/ATypeTakingClass-class.html
+++ b/testing/test_package_docs_dev/fake/ATypeTakingClass-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/ATypeTakingClassMixedIn-class.html b/testing/test_package_docs_dev/fake/ATypeTakingClassMixedIn-class.html
index d6ad4a7a86..52a4525f01 100644
--- a/testing/test_package_docs_dev/fake/ATypeTakingClassMixedIn-class.html
+++ b/testing/test_package_docs_dev/fake/ATypeTakingClassMixedIn-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/Annotation-class.html b/testing/test_package_docs_dev/fake/Annotation-class.html
index 1ab7cb2694..991014892a 100644
--- a/testing/test_package_docs_dev/fake/Annotation-class.html
+++ b/testing/test_package_docs_dev/fake/Annotation-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/AnotherInterface-class.html b/testing/test_package_docs_dev/fake/AnotherInterface-class.html
index a00bf96391..439e254dd2 100644
--- a/testing/test_package_docs_dev/fake/AnotherInterface-class.html
+++ b/testing/test_package_docs_dev/fake/AnotherInterface-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/BaseForDocComments-class.html b/testing/test_package_docs_dev/fake/BaseForDocComments-class.html
index c26f290070..2a7d8a6159 100644
--- a/testing/test_package_docs_dev/fake/BaseForDocComments-class.html
+++ b/testing/test_package_docs_dev/fake/BaseForDocComments-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/BaseForDocComments/doAwesomeStuff.html b/testing/test_package_docs_dev/fake/BaseForDocComments/doAwesomeStuff.html
index 847f7fe5a5..df201c28e2 100644
--- a/testing/test_package_docs_dev/fake/BaseForDocComments/doAwesomeStuff.html
+++ b/testing/test_package_docs_dev/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_dev/fake/BaseThingy-class.html b/testing/test_package_docs_dev/fake/BaseThingy-class.html
index 50f4002d57..c03455409a 100644
--- a/testing/test_package_docs_dev/fake/BaseThingy-class.html
+++ b/testing/test_package_docs_dev/fake/BaseThingy-class.html
@@ -146,6 +146,7 @@
fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/BaseThingy2-class.html b/testing/test_package_docs_dev/fake/BaseThingy2-class.html
index a526da4c7a..ba50daec68 100644
--- a/testing/test_package_docs_dev/fake/BaseThingy2-class.html
+++ b/testing/test_package_docs_dev/fake/BaseThingy2-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/CUSTOM_CLASS-constant.html b/testing/test_package_docs_dev/fake/CUSTOM_CLASS-constant.html
index de0ac2278c..46e0878c09 100644
--- a/testing/test_package_docs_dev/fake/CUSTOM_CLASS-constant.html
+++ b/testing/test_package_docs_dev/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_dev/fake/CUSTOM_CLASS_PRIVATE-constant.html b/testing/test_package_docs_dev/fake/CUSTOM_CLASS_PRIVATE-constant.html
index 04dbda746e..1c11660155 100644
--- a/testing/test_package_docs_dev/fake/CUSTOM_CLASS_PRIVATE-constant.html
+++ b/testing/test_package_docs_dev/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_dev/fake/Callback2.html b/testing/test_package_docs_dev/fake/Callback2.html
index b9dc5a8114..8a1a02926b 100644
--- a/testing/test_package_docs_dev/fake/Callback2.html
+++ b/testing/test_package_docs_dev/fake/Callback2.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/ClassWithUnusualProperties-class.html b/testing/test_package_docs_dev/fake/ClassWithUnusualProperties-class.html
index 5e809e9971..b25de8fb20 100644
--- a/testing/test_package_docs_dev/fake/ClassWithUnusualProperties-class.html
+++ b/testing/test_package_docs_dev/fake/ClassWithUnusualProperties-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/Color-class.html b/testing/test_package_docs_dev/fake/Color-class.html
index dbc605031b..1e2f17963c 100644
--- a/testing/test_package_docs_dev/fake/Color-class.html
+++ b/testing/test_package_docs_dev/fake/Color-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/ConstantClass-class.html b/testing/test_package_docs_dev/fake/ConstantClass-class.html
index 3ebf8d0d38..d75acff706 100644
--- a/testing/test_package_docs_dev/fake/ConstantClass-class.html
+++ b/testing/test_package_docs_dev/fake/ConstantClass-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/ConstructorTester-class.html b/testing/test_package_docs_dev/fake/ConstructorTester-class.html
index 8bd1c590d6..d66288444b 100644
--- a/testing/test_package_docs_dev/fake/ConstructorTester-class.html
+++ b/testing/test_package_docs_dev/fake/ConstructorTester-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/Cool-class.html b/testing/test_package_docs_dev/fake/Cool-class.html
index 3bfd3d4527..346180706f 100644
--- a/testing/test_package_docs_dev/fake/Cool-class.html
+++ b/testing/test_package_docs_dev/fake/Cool-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/CovariantMemberParams-class.html b/testing/test_package_docs_dev/fake/CovariantMemberParams-class.html
index 3177c643f4..6dc298b505 100644
--- a/testing/test_package_docs_dev/fake/CovariantMemberParams-class.html
+++ b/testing/test_package_docs_dev/fake/CovariantMemberParams-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/DOWN-constant.html b/testing/test_package_docs_dev/fake/DOWN-constant.html
index 551a047d6a..523cadd96a 100644
--- a/testing/test_package_docs_dev/fake/DOWN-constant.html
+++ b/testing/test_package_docs_dev/fake/DOWN-constant.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/DocumentWithATable-class.html b/testing/test_package_docs_dev/fake/DocumentWithATable-class.html
index 4fa72aac41..2b18a33d19 100644
--- a/testing/test_package_docs_dev/fake/DocumentWithATable-class.html
+++ b/testing/test_package_docs_dev/fake/DocumentWithATable-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/Doh-class.html b/testing/test_package_docs_dev/fake/Doh-class.html
index cbe4212f76..3a5f357a16 100644
--- a/testing/test_package_docs_dev/fake/Doh-class.html
+++ b/testing/test_package_docs_dev/fake/Doh-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/ExtendsFutureVoid-class.html b/testing/test_package_docs_dev/fake/ExtendsFutureVoid-class.html
index bd5527b344..d0ad90c91d 100644
--- a/testing/test_package_docs_dev/fake/ExtendsFutureVoid-class.html
+++ b/testing/test_package_docs_dev/fake/ExtendsFutureVoid-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/ExtraSpecialList-class.html b/testing/test_package_docs_dev/fake/ExtraSpecialList-class.html
index 924da5d38e..2a1d2cb7ca 100644
--- a/testing/test_package_docs_dev/fake/ExtraSpecialList-class.html
+++ b/testing/test_package_docs_dev/fake/ExtraSpecialList-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/FakeProcesses.html b/testing/test_package_docs_dev/fake/FakeProcesses.html
index d1bc6622bf..6b5ed3e9c7 100644
--- a/testing/test_package_docs_dev/fake/FakeProcesses.html
+++ b/testing/test_package_docs_dev/fake/FakeProcesses.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/Foo2-class.html b/testing/test_package_docs_dev/fake/Foo2-class.html
index 4dd356dc58..3d42180c46 100644
--- a/testing/test_package_docs_dev/fake/Foo2-class.html
+++ b/testing/test_package_docs_dev/fake/Foo2-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/GenericClass-class.html b/testing/test_package_docs_dev/fake/GenericClass-class.html
index 6b1ee7c9e8..b5ec5212b8 100644
--- a/testing/test_package_docs_dev/fake/GenericClass-class.html
+++ b/testing/test_package_docs_dev/fake/GenericClass-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/GenericMixin-mixin.html b/testing/test_package_docs_dev/fake/GenericMixin-mixin.html
index 1fb0c3f74b..28f296f815 100644
--- a/testing/test_package_docs_dev/fake/GenericMixin-mixin.html
+++ b/testing/test_package_docs_dev/fake/GenericMixin-mixin.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/GenericTypedef.html b/testing/test_package_docs_dev/fake/GenericTypedef.html
index b24caa9d44..72974971bd 100644
--- a/testing/test_package_docs_dev/fake/GenericTypedef.html
+++ b/testing/test_package_docs_dev/fake/GenericTypedef.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/HasDynamicAnnotation-class.html b/testing/test_package_docs_dev/fake/HasDynamicAnnotation-class.html
index fce5e080b4..4b8691dbc2 100644
--- a/testing/test_package_docs_dev/fake/HasDynamicAnnotation-class.html
+++ b/testing/test_package_docs_dev/fake/HasDynamicAnnotation-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/HasGenericWithExtends-class.html b/testing/test_package_docs_dev/fake/HasGenericWithExtends-class.html
index ff69bab1d0..79a5ff705a 100644
--- a/testing/test_package_docs_dev/fake/HasGenericWithExtends-class.html
+++ b/testing/test_package_docs_dev/fake/HasGenericWithExtends-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/HasGenerics-class.html b/testing/test_package_docs_dev/fake/HasGenerics-class.html
index fc6fb0a189..2c182f164d 100644
--- a/testing/test_package_docs_dev/fake/HasGenerics-class.html
+++ b/testing/test_package_docs_dev/fake/HasGenerics-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/HasPragma-class.html b/testing/test_package_docs_dev/fake/HasPragma-class.html
index 1ba0b05e41..8edc6082ca 100644
--- a/testing/test_package_docs_dev/fake/HasPragma-class.html
+++ b/testing/test_package_docs_dev/fake/HasPragma-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/ImplementingThingy-class.html b/testing/test_package_docs_dev/fake/ImplementingThingy-class.html
index 1c19fdef78..8261684c68 100644
--- a/testing/test_package_docs_dev/fake/ImplementingThingy-class.html
+++ b/testing/test_package_docs_dev/fake/ImplementingThingy-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/ImplementingThingy2-class.html b/testing/test_package_docs_dev/fake/ImplementingThingy2-class.html
index 115dcd971b..3bfb58fbb3 100644
--- a/testing/test_package_docs_dev/fake/ImplementingThingy2-class.html
+++ b/testing/test_package_docs_dev/fake/ImplementingThingy2-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/ImplementsFutureVoid-class.html b/testing/test_package_docs_dev/fake/ImplementsFutureVoid-class.html
index e6357dc03b..6d7c796fe9 100644
--- a/testing/test_package_docs_dev/fake/ImplementsFutureVoid-class.html
+++ b/testing/test_package_docs_dev/fake/ImplementsFutureVoid-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/ImplicitProperties-class.html b/testing/test_package_docs_dev/fake/ImplicitProperties-class.html
index 064a2f0d68..91628926f7 100644
--- a/testing/test_package_docs_dev/fake/ImplicitProperties-class.html
+++ b/testing/test_package_docs_dev/fake/ImplicitProperties-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/InheritingClassOne-class.html b/testing/test_package_docs_dev/fake/InheritingClassOne-class.html
index c557fed7d5..cfe0f29543 100644
--- a/testing/test_package_docs_dev/fake/InheritingClassOne-class.html
+++ b/testing/test_package_docs_dev/fake/InheritingClassOne-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/InheritingClassTwo-class.html b/testing/test_package_docs_dev/fake/InheritingClassTwo-class.html
index 06bf263102..129cc87bec 100644
--- a/testing/test_package_docs_dev/fake/InheritingClassTwo-class.html
+++ b/testing/test_package_docs_dev/fake/InheritingClassTwo-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/Interface-class.html b/testing/test_package_docs_dev/fake/Interface-class.html
index e734130128..a5ed33517c 100644
--- a/testing/test_package_docs_dev/fake/Interface-class.html
+++ b/testing/test_package_docs_dev/fake/Interface-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/LongFirstLine-class.html b/testing/test_package_docs_dev/fake/LongFirstLine-class.html
index c1dfe06c14..d50ba2a3cf 100644
--- a/testing/test_package_docs_dev/fake/LongFirstLine-class.html
+++ b/testing/test_package_docs_dev/fake/LongFirstLine-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/LotsAndLotsOfParameters.html b/testing/test_package_docs_dev/fake/LotsAndLotsOfParameters.html
index 628f279215..0e77fdb8b9 100644
--- a/testing/test_package_docs_dev/fake/LotsAndLotsOfParameters.html
+++ b/testing/test_package_docs_dev/fake/LotsAndLotsOfParameters.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/MIEEBase-class.html b/testing/test_package_docs_dev/fake/MIEEBase-class.html
index 823b093998..a62dc27402 100644
--- a/testing/test_package_docs_dev/fake/MIEEBase-class.html
+++ b/testing/test_package_docs_dev/fake/MIEEBase-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/MIEEMixin-class.html b/testing/test_package_docs_dev/fake/MIEEMixin-class.html
index 1b0675b5d8..41183bb72a 100644
--- a/testing/test_package_docs_dev/fake/MIEEMixin-class.html
+++ b/testing/test_package_docs_dev/fake/MIEEMixin-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/MIEEMixinWithOverride-class.html b/testing/test_package_docs_dev/fake/MIEEMixinWithOverride-class.html
index a8c3341fa1..7f6d3f423d 100644
--- a/testing/test_package_docs_dev/fake/MIEEMixinWithOverride-class.html
+++ b/testing/test_package_docs_dev/fake/MIEEMixinWithOverride-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/MIEEThing-class.html b/testing/test_package_docs_dev/fake/MIEEThing-class.html
index a39d6ebce6..638249c695 100644
--- a/testing/test_package_docs_dev/fake/MIEEThing-class.html
+++ b/testing/test_package_docs_dev/fake/MIEEThing-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/MacrosFromAccessors-class.html b/testing/test_package_docs_dev/fake/MacrosFromAccessors-class.html
index d59ba1b22f..0654fe7c04 100644
--- a/testing/test_package_docs_dev/fake/MacrosFromAccessors-class.html
+++ b/testing/test_package_docs_dev/fake/MacrosFromAccessors-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/MixMeIn-class.html b/testing/test_package_docs_dev/fake/MixMeIn-class.html
index 51c8d87afc..1fb15ae30b 100644
--- a/testing/test_package_docs_dev/fake/MixMeIn-class.html
+++ b/testing/test_package_docs_dev/fake/MixMeIn-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/ModifierClass-class.html b/testing/test_package_docs_dev/fake/ModifierClass-class.html
index b5afb3032d..e9d40b47de 100644
--- a/testing/test_package_docs_dev/fake/ModifierClass-class.html
+++ b/testing/test_package_docs_dev/fake/ModifierClass-class.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/NAME_SINGLEUNDERSCORE-constant.html b/testing/test_package_docs_dev/fake/NAME_SINGLEUNDERSCORE-constant.html
index 4e835ef87b..4a840f3f1d 100644
--- a/testing/test_package_docs_dev/fake/NAME_SINGLEUNDERSCORE-constant.html
+++ b/testing/test_package_docs_dev/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_dev/fake/NAME_WITH_TWO_UNDERSCORES-constant.html b/testing/test_package_docs_dev/fake/NAME_WITH_TWO_UNDERSCORES-constant.html
index c186f3d4dc..a1afa41b63 100644
--- a/testing/test_package_docs_dev/fake/NAME_WITH_TWO_UNDERSCORES-constant.html
+++ b/testing/test_package_docs_dev/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_dev/fake/NewGenericTypedef.html b/testing/test_package_docs_dev/fake/NewGenericTypedef.html
index c8c8270feb..f06334be5b 100644
--- a/testing/test_package_docs_dev/fake/NewGenericTypedef.html
+++ b/testing/test_package_docs_dev/fake/NewGenericTypedef.html
@@ -146,6 +146,7 @@ fake library
Functions
addCallback
addCallback2
+ aFunctionUsingRenamedLib
aMixinReturningFunction
aVoidParameter
doAComplicatedThing
diff --git a/testing/test_package_docs_dev/fake/NewStyleMixinCallingSuper-mixin.html b/testing/test_package_docs_dev/fake/NewStyleMixinCallingSuper-mixin.html
index de29dc58fe..f66bd95b54 100644
--- a/testing/test_package_docs_dev/fake/NewStyleMixinCallingSuper-mixin.html
+++ b/testing/test_package_docs_dev/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_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
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
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ test_package
+ fake
+ aFunctionUsingRenamedLib function
+
+ aFunctionUsingRenamedLib
+
+
+
+
+
+
+
+
+
aFunctionUsingRenamedLib function
+
+
+ void
+ aFunctionUsingRenamedLib
+()
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 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 @@ test_package anonymous_library
another_anonymous_lib
code_in_comments
+ csspub
is_deprecated
+ mylibpub
Unreal
reexport_one
reexport_two
@@ -139,11 +141,21 @@ Libraries
// in Dart!
}
[...]
+
+ csspub
+
+
+
is_deprecated
This lib is deprecated. It never had a chance
+
+ mylibpub
+
+
+
Unreal
reexport_one Unreal
diff --git a/testing/test_package_docs_dev/index.json b/testing/test_package_docs_dev/index.json
index cd54dbc793..577554a929 100644
--- a/testing/test_package_docs_dev/index.json
+++ b/testing/test_package_docs_dev/index.json
@@ -68,10 +68,10 @@
}
},
{
- "name": "IAmAClassWithCategories",
- "qualifiedName": "categoriesExported.IAmAClassWithCategories",
- "href": "categoriesExported/IAmAClassWithCategories/IAmAClassWithCategories.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "categoriesExported.IAmAClassWithCategories.==",
+ "href": "categoriesExported/IAmAClassWithCategories/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "IAmAClassWithCategories",
@@ -79,10 +79,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "categoriesExported.IAmAClassWithCategories.==",
- "href": "categoriesExported/IAmAClassWithCategories/operator_equals.html",
- "type": "method",
+ "name": "IAmAClassWithCategories",
+ "qualifiedName": "categoriesExported.IAmAClassWithCategories.IAmAClassWithCategories",
+ "href": "categoriesExported/IAmAClassWithCategories/IAmAClassWithCategories.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "IAmAClassWithCategories",
@@ -158,6 +158,24 @@
"type": "library"
}
},
+ {
+ "name": "csspub",
+ "qualifiedName": "csspub",
+ "href": "csspub/csspub-library.html",
+ "type": "library",
+ "overriddenDepth": 0
+ },
+ {
+ "name": "theOnlyThingInTheLibrary",
+ "qualifiedName": "csspub.theOnlyThingInTheLibrary",
+ "href": "csspub/theOnlyThingInTheLibrary.html",
+ "type": "top-level property",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "csspub",
+ "type": "library"
+ }
+ },
{
"name": "ex",
"qualifiedName": "ex",
@@ -243,10 +261,10 @@
}
},
{
- "name": "AnotherParameterizedClass",
- "qualifiedName": "ex.AnotherParameterizedClass",
- "href": "ex/AnotherParameterizedClass/AnotherParameterizedClass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.AnotherParameterizedClass.==",
+ "href": "ex/AnotherParameterizedClass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "AnotherParameterizedClass",
@@ -254,10 +272,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.AnotherParameterizedClass.==",
- "href": "ex/AnotherParameterizedClass/operator_equals.html",
- "type": "method",
+ "name": "AnotherParameterizedClass",
+ "qualifiedName": "ex.AnotherParameterizedClass.AnotherParameterizedClass",
+ "href": "ex/AnotherParameterizedClass/AnotherParameterizedClass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "AnotherParameterizedClass",
@@ -319,17 +337,6 @@
"type": "library"
}
},
- {
- "name": "Apple",
- "qualifiedName": "ex.Apple",
- "href": "ex/Apple/Apple.html",
- "type": "constructor",
- "overriddenDepth": 0,
- "enclosedBy": {
- "name": "Apple",
- "type": "class"
- }
- },
{
"name": "operator *",
"qualifiedName": "ex.Apple.*",
@@ -352,6 +359,17 @@
"type": "class"
}
},
+ {
+ "name": "Apple",
+ "qualifiedName": "ex.Apple.Apple",
+ "href": "ex/Apple/Apple.html",
+ "type": "constructor",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "Apple",
+ "type": "class"
+ }
+ },
{
"name": "fieldWithTypedef",
"qualifiedName": "ex.Apple.fieldWithTypedef",
@@ -541,7 +559,7 @@
},
{
"name": "B",
- "qualifiedName": "ex.B",
+ "qualifiedName": "ex.B.B",
"href": "ex/B/B.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -694,10 +712,10 @@
}
},
{
- "name": "Cat",
- "qualifiedName": "ex.Cat",
- "href": "ex/Cat/Cat.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.Cat.==",
+ "href": "ex/Cat/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Cat",
@@ -705,10 +723,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.Cat.==",
- "href": "ex/Cat/operator_equals.html",
- "type": "method",
+ "name": "Cat",
+ "qualifiedName": "ex.Cat.Cat",
+ "href": "ex/Cat/Cat.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Cat",
@@ -793,10 +811,10 @@
}
},
{
- "name": "CatString",
- "qualifiedName": "ex.CatString",
- "href": "ex/CatString/CatString.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.CatString.==",
+ "href": "ex/CatString/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "CatString",
@@ -804,10 +822,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.CatString.==",
- "href": "ex/CatString/operator_equals.html",
- "type": "method",
+ "name": "CatString",
+ "qualifiedName": "ex.CatString.CatString",
+ "href": "ex/CatString/CatString.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "CatString",
@@ -959,7 +977,7 @@
},
{
"name": "ConstantCat",
- "qualifiedName": "ex.ConstantCat",
+ "qualifiedName": "ex.ConstantCat.ConstantCat",
"href": "ex/ConstantCat/ConstantCat.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -1013,10 +1031,10 @@
}
},
{
- "name": "Deprecated",
- "qualifiedName": "ex.Deprecated",
- "href": "ex/Deprecated/Deprecated.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.Deprecated.==",
+ "href": "ex/Deprecated/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Deprecated",
@@ -1024,10 +1042,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.Deprecated.==",
- "href": "ex/Deprecated/operator_equals.html",
- "type": "method",
+ "name": "Deprecated",
+ "qualifiedName": "ex.Deprecated.Deprecated",
+ "href": "ex/Deprecated/Deprecated.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Deprecated",
@@ -1112,22 +1130,22 @@
}
},
{
- "name": "Dog",
- "qualifiedName": "ex.Dog",
- "href": "ex/Dog/Dog.html",
- "type": "constructor",
- "overriddenDepth": 0,
+ "name": "operator ==",
+ "qualifiedName": "ex.Dog.==",
+ "href": "ex/Dog/operator_equals.html",
+ "type": "method",
+ "overriddenDepth": 1,
"enclosedBy": {
"name": "Dog",
"type": "class"
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.Dog.==",
- "href": "ex/Dog/operator_equals.html",
- "type": "method",
- "overriddenDepth": 1,
+ "name": "Dog",
+ "qualifiedName": "ex.Dog.Dog",
+ "href": "ex/Dog/Dog.html",
+ "type": "constructor",
+ "overriddenDepth": 0,
"enclosedBy": {
"name": "Dog",
"type": "class"
@@ -1497,10 +1515,10 @@
}
},
{
- "name": "E",
- "qualifiedName": "ex.E",
- "href": "ex/E/E.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.E.==",
+ "href": "ex/E/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "E",
@@ -1508,10 +1526,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.E.==",
- "href": "ex/E/operator_equals.html",
- "type": "method",
+ "name": "E",
+ "qualifiedName": "ex.E.E",
+ "href": "ex/E/E.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "E",
@@ -1575,7 +1593,7 @@
},
{
"name": "ExtendedShortName",
- "qualifiedName": "ex.ExtendedShortName",
+ "qualifiedName": "ex.ExtendedShortName.ExtendedShortName",
"href": "ex/ExtendedShortName/ExtendedShortName.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -1597,7 +1615,7 @@
},
{
"name": "F",
- "qualifiedName": "ex.F",
+ "qualifiedName": "ex.F.F",
"href": "ex/F/F.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -1640,10 +1658,10 @@
}
},
{
- "name": "ForAnnotation",
- "qualifiedName": "ex.ForAnnotation",
- "href": "ex/ForAnnotation/ForAnnotation.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.ForAnnotation.==",
+ "href": "ex/ForAnnotation/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ForAnnotation",
@@ -1651,10 +1669,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.ForAnnotation.==",
- "href": "ex/ForAnnotation/operator_equals.html",
- "type": "method",
+ "name": "ForAnnotation",
+ "qualifiedName": "ex.ForAnnotation.ForAnnotation",
+ "href": "ex/ForAnnotation/ForAnnotation.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ForAnnotation",
@@ -1728,10 +1746,10 @@
}
},
{
- "name": "HasAnnotation",
- "qualifiedName": "ex.HasAnnotation",
- "href": "ex/HasAnnotation/HasAnnotation.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.HasAnnotation.==",
+ "href": "ex/HasAnnotation/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "HasAnnotation",
@@ -1739,10 +1757,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.HasAnnotation.==",
- "href": "ex/HasAnnotation/operator_equals.html",
- "type": "method",
+ "name": "HasAnnotation",
+ "qualifiedName": "ex.HasAnnotation.HasAnnotation",
+ "href": "ex/HasAnnotation/HasAnnotation.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "HasAnnotation",
@@ -1805,10 +1823,10 @@
}
},
{
- "name": "Helper",
- "qualifiedName": "ex.Helper",
- "href": "ex/Helper/Helper.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.Helper.==",
+ "href": "ex/Helper/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Helper",
@@ -1816,10 +1834,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.Helper.==",
- "href": "ex/Helper/operator_equals.html",
- "type": "method",
+ "name": "Helper",
+ "qualifiedName": "ex.Helper.Helper",
+ "href": "ex/Helper/Helper.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Helper",
@@ -1893,10 +1911,10 @@
}
},
{
- "name": "HtmlInjection",
- "qualifiedName": "ex.HtmlInjection",
- "href": "ex/HtmlInjection/HtmlInjection.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.HtmlInjection.==",
+ "href": "ex/HtmlInjection/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "HtmlInjection",
@@ -1904,10 +1922,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.HtmlInjection.==",
- "href": "ex/HtmlInjection/operator_equals.html",
- "type": "method",
+ "name": "HtmlInjection",
+ "qualifiedName": "ex.HtmlInjection.HtmlInjection",
+ "href": "ex/HtmlInjection/HtmlInjection.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "HtmlInjection",
@@ -1992,10 +2010,10 @@
}
},
{
- "name": "Klass",
- "qualifiedName": "ex.Klass",
- "href": "ex/Klass/Klass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.Klass.==",
+ "href": "ex/Klass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Klass",
@@ -2003,10 +2021,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.Klass.==",
- "href": "ex/Klass/operator_equals.html",
- "type": "method",
+ "name": "Klass",
+ "qualifiedName": "ex.Klass.Klass",
+ "href": "ex/Klass/Klass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Klass",
@@ -2135,10 +2153,10 @@
}
},
{
- "name": "MyError",
- "qualifiedName": "ex.MyError",
- "href": "ex/MyError/MyError.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.MyError.==",
+ "href": "ex/MyError/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "MyError",
@@ -2146,10 +2164,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.MyError.==",
- "href": "ex/MyError/operator_equals.html",
- "type": "method",
+ "name": "MyError",
+ "qualifiedName": "ex.MyError.MyError",
+ "href": "ex/MyError/MyError.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "MyError",
@@ -2223,10 +2241,10 @@
}
},
{
- "name": "MyErrorImplements",
- "qualifiedName": "ex.MyErrorImplements",
- "href": "ex/MyErrorImplements/MyErrorImplements.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.MyErrorImplements.==",
+ "href": "ex/MyErrorImplements/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "MyErrorImplements",
@@ -2234,10 +2252,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.MyErrorImplements.==",
- "href": "ex/MyErrorImplements/operator_equals.html",
- "type": "method",
+ "name": "MyErrorImplements",
+ "qualifiedName": "ex.MyErrorImplements.MyErrorImplements",
+ "href": "ex/MyErrorImplements/MyErrorImplements.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "MyErrorImplements",
@@ -2311,21 +2329,21 @@
}
},
{
- "name": "MyException",
- "qualifiedName": "ex.MyException",
- "href": "ex/MyException/MyException.html",
- "type": "constructor",
- "overriddenDepth": 0,
+ "name": "operator ==",
+ "qualifiedName": "ex.MyException.==",
+ "href": "ex/MyException/operator_equals.html",
+ "type": "method",
+ "overriddenDepth": 0,
"enclosedBy": {
"name": "MyException",
"type": "class"
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.MyException.==",
- "href": "ex/MyException/operator_equals.html",
- "type": "method",
+ "name": "MyException",
+ "qualifiedName": "ex.MyException.MyException",
+ "href": "ex/MyException/MyException.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "MyException",
@@ -2388,10 +2406,10 @@
}
},
{
- "name": "MyExceptionImplements",
- "qualifiedName": "ex.MyExceptionImplements",
- "href": "ex/MyExceptionImplements/MyExceptionImplements.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.MyExceptionImplements.==",
+ "href": "ex/MyExceptionImplements/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "MyExceptionImplements",
@@ -2399,10 +2417,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.MyExceptionImplements.==",
- "href": "ex/MyExceptionImplements/operator_equals.html",
- "type": "method",
+ "name": "MyExceptionImplements",
+ "qualifiedName": "ex.MyExceptionImplements.MyExceptionImplements",
+ "href": "ex/MyExceptionImplements/MyExceptionImplements.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "MyExceptionImplements",
@@ -2475,17 +2493,6 @@
"type": "library"
}
},
- {
- "name": "ParameterizedClass",
- "qualifiedName": "ex.ParameterizedClass",
- "href": "ex/ParameterizedClass/ParameterizedClass.html",
- "type": "constructor",
- "overriddenDepth": 0,
- "enclosedBy": {
- "name": "ParameterizedClass",
- "type": "class"
- }
- },
{
"name": "operator +",
"qualifiedName": "ex.ParameterizedClass.+",
@@ -2508,6 +2515,17 @@
"type": "class"
}
},
+ {
+ "name": "ParameterizedClass",
+ "qualifiedName": "ex.ParameterizedClass.ParameterizedClass",
+ "href": "ex/ParameterizedClass/ParameterizedClass.html",
+ "type": "constructor",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "ParameterizedClass",
+ "type": "class"
+ }
+ },
{
"name": "aInheritedField",
"qualifiedName": "ex.ParameterizedClass.aInheritedField",
@@ -2630,10 +2648,10 @@
}
},
{
- "name": "PublicClassExtendsPrivateClass",
- "qualifiedName": "ex.PublicClassExtendsPrivateClass",
- "href": "ex/PublicClassExtendsPrivateClass/PublicClassExtendsPrivateClass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.PublicClassExtendsPrivateClass.==",
+ "href": "ex/PublicClassExtendsPrivateClass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "PublicClassExtendsPrivateClass",
@@ -2641,10 +2659,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.PublicClassExtendsPrivateClass.==",
- "href": "ex/PublicClassExtendsPrivateClass/operator_equals.html",
- "type": "method",
+ "name": "PublicClassExtendsPrivateClass",
+ "qualifiedName": "ex.PublicClassExtendsPrivateClass.PublicClassExtendsPrivateClass",
+ "href": "ex/PublicClassExtendsPrivateClass/PublicClassExtendsPrivateClass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "PublicClassExtendsPrivateClass",
@@ -2718,10 +2736,10 @@
}
},
{
- "name": "PublicClassImplementsPrivateInterface",
- "qualifiedName": "ex.PublicClassImplementsPrivateInterface",
- "href": "ex/PublicClassImplementsPrivateInterface/PublicClassImplementsPrivateInterface.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.PublicClassImplementsPrivateInterface.==",
+ "href": "ex/PublicClassImplementsPrivateInterface/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "PublicClassImplementsPrivateInterface",
@@ -2729,10 +2747,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.PublicClassImplementsPrivateInterface.==",
- "href": "ex/PublicClassImplementsPrivateInterface/operator_equals.html",
- "type": "method",
+ "name": "PublicClassImplementsPrivateInterface",
+ "qualifiedName": "ex.PublicClassImplementsPrivateInterface.PublicClassImplementsPrivateInterface",
+ "href": "ex/PublicClassImplementsPrivateInterface/PublicClassImplementsPrivateInterface.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "PublicClassImplementsPrivateInterface",
@@ -2905,10 +2923,10 @@
}
},
{
- "name": "ShortName",
- "qualifiedName": "ex.ShortName",
- "href": "ex/ShortName/ShortName.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.ShortName.==",
+ "href": "ex/ShortName/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ShortName",
@@ -2916,10 +2934,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.ShortName.==",
- "href": "ex/ShortName/operator_equals.html",
- "type": "method",
+ "name": "ShortName",
+ "qualifiedName": "ex.ShortName.ShortName",
+ "href": "ex/ShortName/ShortName.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ShortName",
@@ -2992,17 +3010,6 @@
"type": "library"
}
},
- {
- "name": "SpecializedDuration",
- "qualifiedName": "ex.SpecializedDuration",
- "href": "ex/SpecializedDuration/SpecializedDuration.html",
- "type": "constructor",
- "overriddenDepth": 0,
- "enclosedBy": {
- "name": "SpecializedDuration",
- "type": "class"
- }
- },
{
"name": "operator *",
"qualifiedName": "ex.SpecializedDuration.*",
@@ -3091,6 +3098,17 @@
"type": "class"
}
},
+ {
+ "name": "SpecializedDuration",
+ "qualifiedName": "ex.SpecializedDuration.SpecializedDuration",
+ "href": "ex/SpecializedDuration/SpecializedDuration.html",
+ "type": "constructor",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "SpecializedDuration",
+ "type": "class"
+ }
+ },
{
"name": "abs",
"qualifiedName": "ex.SpecializedDuration.abs",
@@ -3268,10 +3286,10 @@
}
},
{
- "name": "TemplatedClass",
- "qualifiedName": "ex.TemplatedClass",
- "href": "ex/TemplatedClass/TemplatedClass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.TemplatedClass.==",
+ "href": "ex/TemplatedClass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "TemplatedClass",
@@ -3279,10 +3297,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.TemplatedClass.==",
- "href": "ex/TemplatedClass/operator_equals.html",
- "type": "method",
+ "name": "TemplatedClass",
+ "qualifiedName": "ex.TemplatedClass.TemplatedClass",
+ "href": "ex/TemplatedClass/TemplatedClass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "TemplatedClass",
@@ -3357,7 +3375,7 @@
},
{
"name": "TemplatedInterface",
- "qualifiedName": "ex.TemplatedInterface",
+ "qualifiedName": "ex.TemplatedInterface.TemplatedInterface",
"href": "ex/TemplatedInterface/TemplatedInterface.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -3433,10 +3451,10 @@
}
},
{
- "name": "ToolUser",
- "qualifiedName": "ex.ToolUser",
- "href": "ex/ToolUser/ToolUser.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.ToolUser.==",
+ "href": "ex/ToolUser/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ToolUser",
@@ -3444,10 +3462,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.ToolUser.==",
- "href": "ex/ToolUser/operator_equals.html",
- "type": "method",
+ "name": "ToolUser",
+ "qualifiedName": "ex.ToolUser.ToolUser",
+ "href": "ex/ToolUser/ToolUser.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ToolUser",
@@ -3543,10 +3561,10 @@
}
},
{
- "name": "TypedFunctionsWithoutTypedefs",
- "qualifiedName": "ex.TypedFunctionsWithoutTypedefs",
- "href": "ex/TypedFunctionsWithoutTypedefs/TypedFunctionsWithoutTypedefs.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.TypedFunctionsWithoutTypedefs.==",
+ "href": "ex/TypedFunctionsWithoutTypedefs/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "TypedFunctionsWithoutTypedefs",
@@ -3554,10 +3572,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.TypedFunctionsWithoutTypedefs.==",
- "href": "ex/TypedFunctionsWithoutTypedefs/operator_equals.html",
- "type": "method",
+ "name": "TypedFunctionsWithoutTypedefs",
+ "qualifiedName": "ex.TypedFunctionsWithoutTypedefs.TypedFunctionsWithoutTypedefs",
+ "href": "ex/TypedFunctionsWithoutTypedefs/TypedFunctionsWithoutTypedefs.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "TypedFunctionsWithoutTypedefs",
@@ -3653,10 +3671,10 @@
}
},
{
- "name": "WithGeneric",
- "qualifiedName": "ex.WithGeneric",
- "href": "ex/WithGeneric/WithGeneric.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.WithGeneric.==",
+ "href": "ex/WithGeneric/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "WithGeneric",
@@ -3664,10 +3682,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.WithGeneric.==",
- "href": "ex/WithGeneric/operator_equals.html",
- "type": "method",
+ "name": "WithGeneric",
+ "qualifiedName": "ex.WithGeneric.WithGeneric",
+ "href": "ex/WithGeneric/WithGeneric.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "WithGeneric",
@@ -3742,7 +3760,7 @@
},
{
"name": "WithGenericSub",
- "qualifiedName": "ex.WithGenericSub",
+ "qualifiedName": "ex.WithGenericSub.WithGenericSub",
"href": "ex/WithGenericSub/WithGenericSub.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -3774,10 +3792,10 @@
}
},
{
- "name": "aThingToDo",
- "qualifiedName": "ex.aThingToDo",
- "href": "ex/aThingToDo/aThingToDo.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "ex.aThingToDo.==",
+ "href": "ex/aThingToDo/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "aThingToDo",
@@ -3785,10 +3803,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "ex.aThingToDo.==",
- "href": "ex/aThingToDo/operator_equals.html",
- "type": "method",
+ "name": "aThingToDo",
+ "qualifiedName": "ex.aThingToDo.aThingToDo",
+ "href": "ex/aThingToDo/aThingToDo.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "aThingToDo",
@@ -4001,10 +4019,10 @@
}
},
{
- "name": "ABaseClass",
- "qualifiedName": "fake.ABaseClass",
- "href": "fake/ABaseClass/ABaseClass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.ABaseClass.==",
+ "href": "fake/ABaseClass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ABaseClass",
@@ -4012,10 +4030,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.ABaseClass.==",
- "href": "fake/ABaseClass/operator_equals.html",
- "type": "method",
+ "name": "ABaseClass",
+ "qualifiedName": "fake.ABaseClass.ABaseClass",
+ "href": "fake/ABaseClass/ABaseClass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ABaseClass",
@@ -4079,7 +4097,7 @@
},
{
"name": "AClassUsingASuperMixin",
- "qualifiedName": "fake.AClassUsingASuperMixin",
+ "qualifiedName": "fake.AClassUsingASuperMixin.AClassUsingASuperMixin",
"href": "fake/AClassUsingASuperMixin/AClassUsingASuperMixin.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -4101,7 +4119,7 @@
},
{
"name": "AClassUsingNewStyleMixin",
- "qualifiedName": "fake.AClassUsingNewStyleMixin",
+ "qualifiedName": "fake.AClassUsingNewStyleMixin.AClassUsingNewStyleMixin",
"href": "fake/AClassUsingNewStyleMixin/AClassUsingNewStyleMixin.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -4122,10 +4140,10 @@
}
},
{
- "name": "AClassWithFancyProperties",
- "qualifiedName": "fake.AClassWithFancyProperties",
- "href": "fake/AClassWithFancyProperties/AClassWithFancyProperties.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.AClassWithFancyProperties.==",
+ "href": "fake/AClassWithFancyProperties/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "AClassWithFancyProperties",
@@ -4133,10 +4151,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.AClassWithFancyProperties.==",
- "href": "fake/AClassWithFancyProperties/operator_equals.html",
- "type": "method",
+ "name": "AClassWithFancyProperties",
+ "qualifiedName": "fake.AClassWithFancyProperties.AClassWithFancyProperties",
+ "href": "fake/AClassWithFancyProperties/AClassWithFancyProperties.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "AClassWithFancyProperties",
@@ -4211,7 +4229,7 @@
},
{
"name": "AMixinCallingSuper",
- "qualifiedName": "fake.AMixinCallingSuper",
+ "qualifiedName": "fake.AMixinCallingSuper.AMixinCallingSuper",
"href": "fake/AMixinCallingSuper/AMixinCallingSuper.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -4243,10 +4261,10 @@
}
},
{
- "name": "ATypeTakingClass",
- "qualifiedName": "fake.ATypeTakingClass",
- "href": "fake/ATypeTakingClass/ATypeTakingClass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.ATypeTakingClass.==",
+ "href": "fake/ATypeTakingClass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ATypeTakingClass",
@@ -4254,10 +4272,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.ATypeTakingClass.==",
- "href": "fake/ATypeTakingClass/operator_equals.html",
- "type": "method",
+ "name": "ATypeTakingClass",
+ "qualifiedName": "fake.ATypeTakingClass.ATypeTakingClass",
+ "href": "fake/ATypeTakingClass/ATypeTakingClass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ATypeTakingClass",
@@ -4332,7 +4350,7 @@
},
{
"name": "ATypeTakingClassMixedIn",
- "qualifiedName": "fake.ATypeTakingClassMixedIn",
+ "qualifiedName": "fake.ATypeTakingClassMixedIn.ATypeTakingClassMixedIn",
"href": "fake/ATypeTakingClassMixedIn/ATypeTakingClassMixedIn.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -4353,10 +4371,10 @@
}
},
{
- "name": "Annotation",
- "qualifiedName": "fake.Annotation",
- "href": "fake/Annotation/Annotation.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.Annotation.==",
+ "href": "fake/Annotation/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Annotation",
@@ -4364,10 +4382,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.Annotation.==",
- "href": "fake/Annotation/operator_equals.html",
- "type": "method",
+ "name": "Annotation",
+ "qualifiedName": "fake.Annotation.Annotation",
+ "href": "fake/Annotation/Annotation.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Annotation",
@@ -4441,10 +4459,10 @@
}
},
{
- "name": "AnotherInterface",
- "qualifiedName": "fake.AnotherInterface",
- "href": "fake/AnotherInterface/AnotherInterface.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.AnotherInterface.==",
+ "href": "fake/AnotherInterface/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "AnotherInterface",
@@ -4452,10 +4470,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.AnotherInterface.==",
- "href": "fake/AnotherInterface/operator_equals.html",
- "type": "method",
+ "name": "AnotherInterface",
+ "qualifiedName": "fake.AnotherInterface.AnotherInterface",
+ "href": "fake/AnotherInterface/AnotherInterface.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "AnotherInterface",
@@ -4518,10 +4536,10 @@
}
},
{
- "name": "BaseForDocComments",
- "qualifiedName": "fake.BaseForDocComments",
- "href": "fake/BaseForDocComments/BaseForDocComments.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.BaseForDocComments.==",
+ "href": "fake/BaseForDocComments/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "BaseForDocComments",
@@ -4529,10 +4547,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.BaseForDocComments.==",
- "href": "fake/BaseForDocComments/operator_equals.html",
- "type": "method",
+ "name": "BaseForDocComments",
+ "qualifiedName": "fake.BaseForDocComments.BaseForDocComments",
+ "href": "fake/BaseForDocComments/BaseForDocComments.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "BaseForDocComments",
@@ -4639,10 +4657,10 @@
}
},
{
- "name": "BaseThingy",
- "qualifiedName": "fake.BaseThingy",
- "href": "fake/BaseThingy/BaseThingy.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.BaseThingy.==",
+ "href": "fake/BaseThingy/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "BaseThingy",
@@ -4650,10 +4668,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.BaseThingy.==",
- "href": "fake/BaseThingy/operator_equals.html",
- "type": "method",
+ "name": "BaseThingy",
+ "qualifiedName": "fake.BaseThingy.BaseThingy",
+ "href": "fake/BaseThingy/BaseThingy.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "BaseThingy",
@@ -4750,7 +4768,7 @@
},
{
"name": "BaseThingy2",
- "qualifiedName": "fake.BaseThingy2",
+ "qualifiedName": "fake.BaseThingy2.BaseThingy2",
"href": "fake/BaseThingy2/BaseThingy2.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -4816,7 +4834,7 @@
},
{
"name": "ClassWithUnusualProperties",
- "qualifiedName": "fake.ClassWithUnusualProperties",
+ "qualifiedName": "fake.ClassWithUnusualProperties.ClassWithUnusualProperties",
"href": "fake/ClassWithUnusualProperties/ClassWithUnusualProperties.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -5013,10 +5031,10 @@
}
},
{
- "name": "ConstantClass",
- "qualifiedName": "fake.ConstantClass",
- "href": "fake/ConstantClass/ConstantClass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.ConstantClass.==",
+ "href": "fake/ConstantClass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ConstantClass",
@@ -5024,10 +5042,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.ConstantClass.==",
- "href": "fake/ConstantClass/operator_equals.html",
- "type": "method",
+ "name": "ConstantClass",
+ "qualifiedName": "fake.ConstantClass.ConstantClass",
+ "href": "fake/ConstantClass/ConstantClass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ConstantClass",
@@ -5123,10 +5141,10 @@
}
},
{
- "name": "ConstructorTester",
- "qualifiedName": "fake.ConstructorTester",
- "href": "fake/ConstructorTester/ConstructorTester.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.ConstructorTester.==",
+ "href": "fake/ConstructorTester/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ConstructorTester",
@@ -5134,10 +5152,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.ConstructorTester.==",
- "href": "fake/ConstructorTester/operator_equals.html",
- "type": "method",
+ "name": "ConstructorTester",
+ "qualifiedName": "fake.ConstructorTester.ConstructorTester",
+ "href": "fake/ConstructorTester/ConstructorTester.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ConstructorTester",
@@ -5211,10 +5229,10 @@
}
},
{
- "name": "Cool",
- "qualifiedName": "fake.Cool",
- "href": "fake/Cool/Cool.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.Cool.==",
+ "href": "fake/Cool/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Cool",
@@ -5222,10 +5240,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.Cool.==",
- "href": "fake/Cool/operator_equals.html",
- "type": "method",
+ "name": "Cool",
+ "qualifiedName": "fake.Cool.Cool",
+ "href": "fake/Cool/Cool.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Cool",
@@ -5299,10 +5317,10 @@
}
},
{
- "name": "CovariantMemberParams",
- "qualifiedName": "fake.CovariantMemberParams",
- "href": "fake/CovariantMemberParams/CovariantMemberParams.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.CovariantMemberParams.==",
+ "href": "fake/CovariantMemberParams/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "CovariantMemberParams",
@@ -5310,10 +5328,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.CovariantMemberParams.==",
- "href": "fake/CovariantMemberParams/operator_equals.html",
- "type": "method",
+ "name": "CovariantMemberParams",
+ "qualifiedName": "fake.CovariantMemberParams.CovariantMemberParams",
+ "href": "fake/CovariantMemberParams/CovariantMemberParams.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "CovariantMemberParams",
@@ -5420,10 +5438,10 @@
}
},
{
- "name": "DocumentWithATable",
- "qualifiedName": "fake.DocumentWithATable",
- "href": "fake/DocumentWithATable/DocumentWithATable.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.DocumentWithATable.==",
+ "href": "fake/DocumentWithATable/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "DocumentWithATable",
@@ -5431,10 +5449,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.DocumentWithATable.==",
- "href": "fake/DocumentWithATable/operator_equals.html",
- "type": "method",
+ "name": "DocumentWithATable",
+ "qualifiedName": "fake.DocumentWithATable.DocumentWithATable",
+ "href": "fake/DocumentWithATable/DocumentWithATable.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "DocumentWithATable",
@@ -5530,10 +5548,10 @@
}
},
{
- "name": "Doh",
- "qualifiedName": "fake.Doh",
- "href": "fake/Doh/Doh.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.Doh.==",
+ "href": "fake/Doh/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Doh",
@@ -5541,10 +5559,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.Doh.==",
- "href": "fake/Doh/operator_equals.html",
- "type": "method",
+ "name": "Doh",
+ "qualifiedName": "fake.Doh.Doh",
+ "href": "fake/Doh/Doh.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Doh",
@@ -5618,10 +5636,10 @@
}
},
{
- "name": "ExtendsFutureVoid",
- "qualifiedName": "fake.ExtendsFutureVoid",
- "href": "fake/ExtendsFutureVoid/ExtendsFutureVoid.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.ExtendsFutureVoid.==",
+ "href": "fake/ExtendsFutureVoid/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ExtendsFutureVoid",
@@ -5629,10 +5647,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.ExtendsFutureVoid.==",
- "href": "fake/ExtendsFutureVoid/operator_equals.html",
- "type": "method",
+ "name": "ExtendsFutureVoid",
+ "qualifiedName": "fake.ExtendsFutureVoid.ExtendsFutureVoid",
+ "href": "fake/ExtendsFutureVoid/ExtendsFutureVoid.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ExtendsFutureVoid",
@@ -5751,7 +5769,7 @@
},
{
"name": "ExtraSpecialList",
- "qualifiedName": "fake.ExtraSpecialList",
+ "qualifiedName": "fake.ExtraSpecialList.ExtraSpecialList",
"href": "fake/ExtraSpecialList/ExtraSpecialList.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -5782,17 +5800,6 @@
"type": "library"
}
},
- {
- "name": "Foo2",
- "qualifiedName": "fake.Foo2",
- "href": "fake/Foo2/Foo2.html",
- "type": "constructor",
- "overriddenDepth": 0,
- "enclosedBy": {
- "name": "Foo2",
- "type": "class"
- }
- },
{
"name": "operator ==",
"qualifiedName": "fake.Foo2.==",
@@ -5826,6 +5833,17 @@
"type": "class"
}
},
+ {
+ "name": "Foo2",
+ "qualifiedName": "fake.Foo2.Foo2",
+ "href": "fake/Foo2/Foo2.html",
+ "type": "constructor",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "Foo2",
+ "type": "class"
+ }
+ },
{
"name": "hashCode",
"qualifiedName": "fake.Foo2.hashCode",
@@ -5893,10 +5911,10 @@
}
},
{
- "name": "GenericClass",
- "qualifiedName": "fake.GenericClass",
- "href": "fake/GenericClass/GenericClass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.GenericClass.==",
+ "href": "fake/GenericClass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "GenericClass",
@@ -5904,10 +5922,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.GenericClass.==",
- "href": "fake/GenericClass/operator_equals.html",
- "type": "method",
+ "name": "GenericClass",
+ "qualifiedName": "fake.GenericClass.GenericClass",
+ "href": "fake/GenericClass/GenericClass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "GenericClass",
@@ -6016,23 +6034,23 @@
{
"name": "GenericMixin",
"qualifiedName": "fake.GenericMixin",
- "href": "fake/GenericMixin/GenericMixin.html",
- "type": "constructor",
+ "href": "fake/GenericMixin-mixin.html",
+ "type": "mixin",
"overriddenDepth": 0,
"enclosedBy": {
- "name": "GenericMixin",
- "type": "mixin"
+ "name": "fake",
+ "type": "library"
}
},
{
"name": "GenericMixin",
- "qualifiedName": "fake.GenericMixin",
- "href": "fake/GenericMixin-mixin.html",
- "type": "mixin",
+ "qualifiedName": "fake.GenericMixin.GenericMixin",
+ "href": "fake/GenericMixin/GenericMixin.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
- "name": "fake",
- "type": "library"
+ "name": "GenericMixin",
+ "type": "mixin"
}
},
{
@@ -6102,10 +6120,10 @@
}
},
{
- "name": "HasDynamicAnnotation",
- "qualifiedName": "fake.HasDynamicAnnotation",
- "href": "fake/HasDynamicAnnotation/HasDynamicAnnotation.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.HasDynamicAnnotation.==",
+ "href": "fake/HasDynamicAnnotation/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "HasDynamicAnnotation",
@@ -6113,10 +6131,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.HasDynamicAnnotation.==",
- "href": "fake/HasDynamicAnnotation/operator_equals.html",
- "type": "method",
+ "name": "HasDynamicAnnotation",
+ "qualifiedName": "fake.HasDynamicAnnotation.HasDynamicAnnotation",
+ "href": "fake/HasDynamicAnnotation/HasDynamicAnnotation.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "HasDynamicAnnotation",
@@ -6179,10 +6197,10 @@
}
},
{
- "name": "HasGenericWithExtends",
- "qualifiedName": "fake.HasGenericWithExtends",
- "href": "fake/HasGenericWithExtends/HasGenericWithExtends.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.HasGenericWithExtends.==",
+ "href": "fake/HasGenericWithExtends/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "HasGenericWithExtends",
@@ -6190,10 +6208,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.HasGenericWithExtends.==",
- "href": "fake/HasGenericWithExtends/operator_equals.html",
- "type": "method",
+ "name": "HasGenericWithExtends",
+ "qualifiedName": "fake.HasGenericWithExtends.HasGenericWithExtends",
+ "href": "fake/HasGenericWithExtends/HasGenericWithExtends.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "HasGenericWithExtends",
@@ -6256,10 +6274,10 @@
}
},
{
- "name": "HasGenerics",
- "qualifiedName": "fake.HasGenerics",
- "href": "fake/HasGenerics/HasGenerics.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.HasGenerics.==",
+ "href": "fake/HasGenerics/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "HasGenerics",
@@ -6267,10 +6285,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.HasGenerics.==",
- "href": "fake/HasGenerics/operator_equals.html",
- "type": "method",
+ "name": "HasGenerics",
+ "qualifiedName": "fake.HasGenerics.HasGenerics",
+ "href": "fake/HasGenerics/HasGenerics.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "HasGenerics",
@@ -6377,21 +6395,21 @@
}
},
{
- "name": "HasPragma",
- "qualifiedName": "fake.HasPragma",
- "href": "fake/HasPragma/HasPragma.html",
- "type": "constructor",
- "overriddenDepth": 0,
- "enclosedBy": {
+ "name": "operator ==",
+ "qualifiedName": "fake.HasPragma.==",
+ "href": "fake/HasPragma/operator_equals.html",
+ "type": "method",
+ "overriddenDepth": 0,
+ "enclosedBy": {
"name": "HasPragma",
"type": "class"
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.HasPragma.==",
- "href": "fake/HasPragma/operator_equals.html",
- "type": "method",
+ "name": "HasPragma",
+ "qualifiedName": "fake.HasPragma.HasPragma",
+ "href": "fake/HasPragma/HasPragma.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "HasPragma",
@@ -6455,7 +6473,7 @@
},
{
"name": "ImplementingThingy",
- "qualifiedName": "fake.ImplementingThingy",
+ "qualifiedName": "fake.ImplementingThingy.ImplementingThingy",
"href": "fake/ImplementingThingy/ImplementingThingy.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -6477,7 +6495,7 @@
},
{
"name": "ImplementingThingy2",
- "qualifiedName": "fake.ImplementingThingy2",
+ "qualifiedName": "fake.ImplementingThingy2.ImplementingThingy2",
"href": "fake/ImplementingThingy2/ImplementingThingy2.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -6498,10 +6516,10 @@
}
},
{
- "name": "ImplementsFutureVoid",
- "qualifiedName": "fake.ImplementsFutureVoid",
- "href": "fake/ImplementsFutureVoid/ImplementsFutureVoid.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.ImplementsFutureVoid.==",
+ "href": "fake/ImplementsFutureVoid/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ImplementsFutureVoid",
@@ -6509,10 +6527,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.ImplementsFutureVoid.==",
- "href": "fake/ImplementsFutureVoid/operator_equals.html",
- "type": "method",
+ "name": "ImplementsFutureVoid",
+ "qualifiedName": "fake.ImplementsFutureVoid.ImplementsFutureVoid",
+ "href": "fake/ImplementsFutureVoid/ImplementsFutureVoid.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ImplementsFutureVoid",
@@ -6630,10 +6648,10 @@
}
},
{
- "name": "ImplicitProperties",
- "qualifiedName": "fake.ImplicitProperties",
- "href": "fake/ImplicitProperties/ImplicitProperties.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.ImplicitProperties.==",
+ "href": "fake/ImplicitProperties/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ImplicitProperties",
@@ -6641,10 +6659,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.ImplicitProperties.==",
- "href": "fake/ImplicitProperties/operator_equals.html",
- "type": "method",
+ "name": "ImplicitProperties",
+ "qualifiedName": "fake.ImplicitProperties.ImplicitProperties",
+ "href": "fake/ImplicitProperties/ImplicitProperties.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ImplicitProperties",
@@ -6762,10 +6780,10 @@
}
},
{
- "name": "InheritingClassOne",
- "qualifiedName": "fake.InheritingClassOne",
- "href": "fake/InheritingClassOne/InheritingClassOne.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.InheritingClassOne.==",
+ "href": "fake/InheritingClassOne/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "InheritingClassOne",
@@ -6773,10 +6791,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.InheritingClassOne.==",
- "href": "fake/InheritingClassOne/operator_equals.html",
- "type": "method",
+ "name": "InheritingClassOne",
+ "qualifiedName": "fake.InheritingClassOne.InheritingClassOne",
+ "href": "fake/InheritingClassOne/InheritingClassOne.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "InheritingClassOne",
@@ -6850,10 +6868,10 @@
}
},
{
- "name": "InheritingClassTwo",
- "qualifiedName": "fake.InheritingClassTwo",
- "href": "fake/InheritingClassTwo/InheritingClassTwo.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.InheritingClassTwo.==",
+ "href": "fake/InheritingClassTwo/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "InheritingClassTwo",
@@ -6861,10 +6879,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.InheritingClassTwo.==",
- "href": "fake/InheritingClassTwo/operator_equals.html",
- "type": "method",
+ "name": "InheritingClassTwo",
+ "qualifiedName": "fake.InheritingClassTwo.InheritingClassTwo",
+ "href": "fake/InheritingClassTwo/InheritingClassTwo.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "InheritingClassTwo",
@@ -6938,10 +6956,10 @@
}
},
{
- "name": "Interface",
- "qualifiedName": "fake.Interface",
- "href": "fake/Interface/Interface.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.Interface.==",
+ "href": "fake/Interface/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Interface",
@@ -6949,10 +6967,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.Interface.==",
- "href": "fake/Interface/operator_equals.html",
- "type": "method",
+ "name": "Interface",
+ "qualifiedName": "fake.Interface.Interface",
+ "href": "fake/Interface/Interface.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Interface",
@@ -7014,17 +7032,6 @@
"type": "library"
}
},
- {
- "name": "LongFirstLine",
- "qualifiedName": "fake.LongFirstLine",
- "href": "fake/LongFirstLine/LongFirstLine.html",
- "type": "constructor",
- "overriddenDepth": 0,
- "enclosedBy": {
- "name": "LongFirstLine",
- "type": "class"
- }
- },
{
"name": "operator *",
"qualifiedName": "fake.LongFirstLine.*",
@@ -7058,6 +7065,17 @@
"type": "class"
}
},
+ {
+ "name": "LongFirstLine",
+ "qualifiedName": "fake.LongFirstLine.LongFirstLine",
+ "href": "fake/LongFirstLine/LongFirstLine.html",
+ "type": "constructor",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "LongFirstLine",
+ "type": "class"
+ }
+ },
{
"name": "THING",
"qualifiedName": "fake.LongFirstLine.THING",
@@ -7247,7 +7265,7 @@
},
{
"name": "MIEEBase",
- "qualifiedName": "fake.MIEEBase",
+ "qualifiedName": "fake.MIEEBase.MIEEBase",
"href": "fake/MIEEBase/MIEEBase.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -7269,7 +7287,7 @@
},
{
"name": "MIEEMixin",
- "qualifiedName": "fake.MIEEMixin",
+ "qualifiedName": "fake.MIEEMixin.MIEEMixin",
"href": "fake/MIEEMixin/MIEEMixin.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -7302,7 +7320,7 @@
},
{
"name": "MIEEMixinWithOverride",
- "qualifiedName": "fake.MIEEMixinWithOverride",
+ "qualifiedName": "fake.MIEEMixinWithOverride.MIEEMixinWithOverride",
"href": "fake/MIEEMixinWithOverride/MIEEMixinWithOverride.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -7334,10 +7352,10 @@
}
},
{
- "name": "MIEEThing",
- "qualifiedName": "fake.MIEEThing",
- "href": "fake/MIEEThing/MIEEThing.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.MIEEThing.==",
+ "href": "fake/MIEEThing/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "MIEEThing",
@@ -7345,10 +7363,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.MIEEThing.==",
- "href": "fake/MIEEThing/operator_equals.html",
- "type": "method",
+ "name": "MIEEThing",
+ "qualifiedName": "fake.MIEEThing.MIEEThing",
+ "href": "fake/MIEEThing/MIEEThing.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "MIEEThing",
@@ -7488,10 +7506,10 @@
}
},
{
- "name": "MixMeIn",
- "qualifiedName": "fake.MixMeIn",
- "href": "fake/MixMeIn/MixMeIn.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.MixMeIn.==",
+ "href": "fake/MixMeIn/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "MixMeIn",
@@ -7499,10 +7517,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.MixMeIn.==",
- "href": "fake/MixMeIn/operator_equals.html",
- "type": "method",
+ "name": "MixMeIn",
+ "qualifiedName": "fake.MixMeIn.MixMeIn",
+ "href": "fake/MixMeIn/MixMeIn.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "MixMeIn",
@@ -7566,7 +7584,7 @@
},
{
"name": "ModifierClass",
- "qualifiedName": "fake.ModifierClass",
+ "qualifiedName": "fake.ModifierClass.ModifierClass",
"href": "fake/ModifierClass/ModifierClass.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -7655,23 +7673,23 @@
{
"name": "NewStyleMixinCallingSuper",
"qualifiedName": "fake.NewStyleMixinCallingSuper",
- "href": "fake/NewStyleMixinCallingSuper/NewStyleMixinCallingSuper.html",
- "type": "constructor",
+ "href": "fake/NewStyleMixinCallingSuper-mixin.html",
+ "type": "mixin",
"overriddenDepth": 0,
"enclosedBy": {
- "name": "NewStyleMixinCallingSuper",
- "type": "mixin"
+ "name": "fake",
+ "type": "library"
}
},
{
"name": "NewStyleMixinCallingSuper",
- "qualifiedName": "fake.NewStyleMixinCallingSuper",
- "href": "fake/NewStyleMixinCallingSuper-mixin.html",
- "type": "mixin",
+ "qualifiedName": "fake.NewStyleMixinCallingSuper.NewStyleMixinCallingSuper",
+ "href": "fake/NewStyleMixinCallingSuper/NewStyleMixinCallingSuper.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
- "name": "fake",
- "type": "library"
+ "name": "NewStyleMixinCallingSuper",
+ "type": "mixin"
}
},
{
@@ -7697,10 +7715,10 @@
}
},
{
- "name": "NotAMixin",
- "qualifiedName": "fake.NotAMixin",
- "href": "fake/NotAMixin/NotAMixin.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.NotAMixin.==",
+ "href": "fake/NotAMixin/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "NotAMixin",
@@ -7708,10 +7726,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.NotAMixin.==",
- "href": "fake/NotAMixin/operator_equals.html",
- "type": "method",
+ "name": "NotAMixin",
+ "qualifiedName": "fake.NotAMixin.NotAMixin",
+ "href": "fake/NotAMixin/NotAMixin.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "NotAMixin",
@@ -7785,10 +7803,10 @@
}
},
{
- "name": "Oops",
- "qualifiedName": "fake.Oops",
- "href": "fake/Oops/Oops.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.Oops.==",
+ "href": "fake/Oops/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Oops",
@@ -7796,10 +7814,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.Oops.==",
- "href": "fake/Oops/operator_equals.html",
- "type": "method",
+ "name": "Oops",
+ "qualifiedName": "fake.Oops.Oops",
+ "href": "fake/Oops/Oops.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Oops",
@@ -7873,22 +7891,22 @@
}
},
{
- "name": "OperatorReferenceClass",
- "qualifiedName": "fake.OperatorReferenceClass",
- "href": "fake/OperatorReferenceClass/OperatorReferenceClass.html",
- "type": "constructor",
- "overriddenDepth": 0,
+ "name": "operator ==",
+ "qualifiedName": "fake.OperatorReferenceClass.==",
+ "href": "fake/OperatorReferenceClass/operator_equals.html",
+ "type": "method",
+ "overriddenDepth": 1,
"enclosedBy": {
"name": "OperatorReferenceClass",
"type": "class"
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.OperatorReferenceClass.==",
- "href": "fake/OperatorReferenceClass/operator_equals.html",
- "type": "method",
- "overriddenDepth": 1,
+ "name": "OperatorReferenceClass",
+ "qualifiedName": "fake.OperatorReferenceClass.OperatorReferenceClass",
+ "href": "fake/OperatorReferenceClass/OperatorReferenceClass.html",
+ "type": "constructor",
+ "overriddenDepth": 0,
"enclosedBy": {
"name": "OperatorReferenceClass",
"type": "class"
@@ -7950,10 +7968,10 @@
}
},
{
- "name": "OtherGenericsThing",
- "qualifiedName": "fake.OtherGenericsThing",
- "href": "fake/OtherGenericsThing/OtherGenericsThing.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.OtherGenericsThing.==",
+ "href": "fake/OtherGenericsThing/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "OtherGenericsThing",
@@ -7961,10 +7979,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.OtherGenericsThing.==",
- "href": "fake/OtherGenericsThing/operator_equals.html",
- "type": "method",
+ "name": "OtherGenericsThing",
+ "qualifiedName": "fake.OtherGenericsThing.OtherGenericsThing",
+ "href": "fake/OtherGenericsThing/OtherGenericsThing.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "OtherGenericsThing",
@@ -8049,10 +8067,10 @@
}
},
{
- "name": "ReferToADefaultConstructor",
- "qualifiedName": "fake.ReferToADefaultConstructor",
- "href": "fake/ReferToADefaultConstructor/ReferToADefaultConstructor.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.ReferToADefaultConstructor.==",
+ "href": "fake/ReferToADefaultConstructor/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ReferToADefaultConstructor",
@@ -8060,10 +8078,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.ReferToADefaultConstructor.==",
- "href": "fake/ReferToADefaultConstructor/operator_equals.html",
- "type": "method",
+ "name": "ReferToADefaultConstructor",
+ "qualifiedName": "fake.ReferToADefaultConstructor.ReferToADefaultConstructor",
+ "href": "fake/ReferToADefaultConstructor/ReferToADefaultConstructor.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ReferToADefaultConstructor",
@@ -8126,10 +8144,10 @@
}
},
{
- "name": "ReferringClass",
- "qualifiedName": "fake.ReferringClass",
- "href": "fake/ReferringClass/ReferringClass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.ReferringClass.==",
+ "href": "fake/ReferringClass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ReferringClass",
@@ -8137,10 +8155,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.ReferringClass.==",
- "href": "fake/ReferringClass/operator_equals.html",
- "type": "method",
+ "name": "ReferringClass",
+ "qualifiedName": "fake.ReferringClass.ReferringClass",
+ "href": "fake/ReferringClass/ReferringClass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "ReferringClass",
@@ -8214,32 +8232,32 @@
}
},
{
- "name": "SpecialList",
- "qualifiedName": "fake.SpecialList",
- "href": "fake/SpecialList/SpecialList.html",
- "type": "constructor",
- "overriddenDepth": 0,
+ "name": "operator +",
+ "qualifiedName": "fake.SpecialList.+",
+ "href": "fake/SpecialList/operator_plus.html",
+ "type": "method",
+ "overriddenDepth": 1,
"enclosedBy": {
"name": "SpecialList",
"type": "class"
}
},
{
- "name": "operator +",
- "qualifiedName": "fake.SpecialList.+",
- "href": "fake/SpecialList/operator_plus.html",
+ "name": "operator ==",
+ "qualifiedName": "fake.SpecialList.==",
+ "href": "fake/SpecialList/operator_equals.html",
"type": "method",
- "overriddenDepth": 1,
+ "overriddenDepth": 0,
"enclosedBy": {
"name": "SpecialList",
"type": "class"
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.SpecialList.==",
- "href": "fake/SpecialList/operator_equals.html",
- "type": "method",
+ "name": "SpecialList",
+ "qualifiedName": "fake.SpecialList.SpecialList",
+ "href": "fake/SpecialList/SpecialList.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "SpecialList",
@@ -8930,7 +8948,7 @@
},
{
"name": "SubForDocComments",
- "qualifiedName": "fake.SubForDocComments",
+ "qualifiedName": "fake.SubForDocComments.SubForDocComments",
"href": "fake/SubForDocComments/SubForDocComments.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -8972,17 +8990,6 @@
"type": "library"
}
},
- {
- "name": "SuperAwesomeClass",
- "qualifiedName": "fake.SuperAwesomeClass",
- "href": "fake/SuperAwesomeClass/SuperAwesomeClass.html",
- "type": "constructor",
- "overriddenDepth": 0,
- "enclosedBy": {
- "name": "SuperAwesomeClass",
- "type": "class"
- }
- },
{
"name": "operator -",
"qualifiedName": "fake.SuperAwesomeClass.-",
@@ -9005,6 +9012,17 @@
"type": "class"
}
},
+ {
+ "name": "SuperAwesomeClass",
+ "qualifiedName": "fake.SuperAwesomeClass.SuperAwesomeClass",
+ "href": "fake/SuperAwesomeClass/SuperAwesomeClass.html",
+ "type": "constructor",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "SuperAwesomeClass",
+ "type": "class"
+ }
+ },
{
"name": "fly",
"qualifiedName": "fake.SuperAwesomeClass.fly",
@@ -9084,7 +9102,7 @@
},
{
"name": "TypeInferenceMixedIn",
- "qualifiedName": "fake.TypeInferenceMixedIn",
+ "qualifiedName": "fake.TypeInferenceMixedIn.TypeInferenceMixedIn",
"href": "fake/TypeInferenceMixedIn/TypeInferenceMixedIn.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -9116,10 +9134,10 @@
}
},
{
- "name": "TypedefUsingClass",
- "qualifiedName": "fake.TypedefUsingClass",
- "href": "fake/TypedefUsingClass/TypedefUsingClass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.TypedefUsingClass.==",
+ "href": "fake/TypedefUsingClass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "TypedefUsingClass",
@@ -9127,10 +9145,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.TypedefUsingClass.==",
- "href": "fake/TypedefUsingClass/operator_equals.html",
- "type": "method",
+ "name": "TypedefUsingClass",
+ "qualifiedName": "fake.TypedefUsingClass.TypedefUsingClass",
+ "href": "fake/TypedefUsingClass/TypedefUsingClass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "TypedefUsingClass",
@@ -9226,10 +9244,10 @@
}
},
{
- "name": "WithGetterAndSetter",
- "qualifiedName": "fake.WithGetterAndSetter",
- "href": "fake/WithGetterAndSetter/WithGetterAndSetter.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "fake.WithGetterAndSetter.==",
+ "href": "fake/WithGetterAndSetter/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "WithGetterAndSetter",
@@ -9237,10 +9255,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "fake.WithGetterAndSetter.==",
- "href": "fake/WithGetterAndSetter/operator_equals.html",
- "type": "method",
+ "name": "WithGetterAndSetter",
+ "qualifiedName": "fake.WithGetterAndSetter.WithGetterAndSetter",
+ "href": "fake/WithGetterAndSetter/WithGetterAndSetter.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "WithGetterAndSetter",
@@ -9335,6 +9353,17 @@
"type": "library"
}
},
+ {
+ "name": "aFunctionUsingRenamedLib",
+ "qualifiedName": "fake.aFunctionUsingRenamedLib",
+ "href": "fake/aFunctionUsingRenamedLib.html",
+ "type": "function",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "fake",
+ "type": "library"
+ }
+ },
{
"name": "aMixinReturningFunction",
"qualifiedName": "fake.aMixinReturningFunction",
@@ -9837,6 +9866,112 @@
"type": "library",
"overriddenDepth": 0
},
+ {
+ "name": "mylibpub",
+ "qualifiedName": "mylibpub",
+ "href": "mylibpub/mylibpub-library.html",
+ "type": "library",
+ "overriddenDepth": 0
+ },
+ {
+ "name": "YetAnotherHelper",
+ "qualifiedName": "mylibpub.YetAnotherHelper",
+ "href": "mylibpub/YetAnotherHelper-class.html",
+ "type": "class",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "mylibpub",
+ "type": "library"
+ }
+ },
+ {
+ "name": "operator ==",
+ "qualifiedName": "mylibpub.YetAnotherHelper.==",
+ "href": "mylibpub/YetAnotherHelper/operator_equals.html",
+ "type": "method",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "YetAnotherHelper",
+ "type": "class"
+ }
+ },
+ {
+ "name": "YetAnotherHelper",
+ "qualifiedName": "mylibpub.YetAnotherHelper.YetAnotherHelper",
+ "href": "mylibpub/YetAnotherHelper/YetAnotherHelper.html",
+ "type": "constructor",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "YetAnotherHelper",
+ "type": "class"
+ }
+ },
+ {
+ "name": "getMoreContents",
+ "qualifiedName": "mylibpub.YetAnotherHelper.getMoreContents",
+ "href": "mylibpub/YetAnotherHelper/getMoreContents.html",
+ "type": "method",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "YetAnotherHelper",
+ "type": "class"
+ }
+ },
+ {
+ "name": "hashCode",
+ "qualifiedName": "mylibpub.YetAnotherHelper.hashCode",
+ "href": "mylibpub/YetAnotherHelper/hashCode.html",
+ "type": "property",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "YetAnotherHelper",
+ "type": "class"
+ }
+ },
+ {
+ "name": "noSuchMethod",
+ "qualifiedName": "mylibpub.YetAnotherHelper.noSuchMethod",
+ "href": "mylibpub/YetAnotherHelper/noSuchMethod.html",
+ "type": "method",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "YetAnotherHelper",
+ "type": "class"
+ }
+ },
+ {
+ "name": "runtimeType",
+ "qualifiedName": "mylibpub.YetAnotherHelper.runtimeType",
+ "href": "mylibpub/YetAnotherHelper/runtimeType.html",
+ "type": "property",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "YetAnotherHelper",
+ "type": "class"
+ }
+ },
+ {
+ "name": "toString",
+ "qualifiedName": "mylibpub.YetAnotherHelper.toString",
+ "href": "mylibpub/YetAnotherHelper/toString.html",
+ "type": "method",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "YetAnotherHelper",
+ "type": "class"
+ }
+ },
+ {
+ "name": "helperFunction",
+ "qualifiedName": "mylibpub.helperFunction",
+ "href": "mylibpub/helperFunction.html",
+ "type": "function",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "mylibpub",
+ "type": "library"
+ }
+ },
{
"name": "reexport_one",
"qualifiedName": "reexport_one",
@@ -9856,10 +9991,10 @@
}
},
{
- "name": "SomeOtherClass",
- "qualifiedName": "reexport_one.SomeOtherClass",
- "href": "reexport_one/SomeOtherClass/SomeOtherClass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "reexport_one.SomeOtherClass.==",
+ "href": "reexport_one/SomeOtherClass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "SomeOtherClass",
@@ -9867,10 +10002,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "reexport_one.SomeOtherClass.==",
- "href": "reexport_one/SomeOtherClass/operator_equals.html",
- "type": "method",
+ "name": "SomeOtherClass",
+ "qualifiedName": "reexport_one.SomeOtherClass.SomeOtherClass",
+ "href": "reexport_one/SomeOtherClass/SomeOtherClass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "SomeOtherClass",
@@ -9928,17 +10063,6 @@
"type": "library",
"overriddenDepth": 0
},
- {
- "name": "AMixin",
- "qualifiedName": "reexport_two.AMixin",
- "href": "reexport_two/AMixin/AMixin.html",
- "type": "constructor",
- "overriddenDepth": 0,
- "enclosedBy": {
- "name": "AMixin",
- "type": "mixin"
- }
- },
{
"name": "AMixin",
"qualifiedName": "reexport_two.AMixin",
@@ -9961,6 +10085,17 @@
"type": "mixin"
}
},
+ {
+ "name": "AMixin",
+ "qualifiedName": "reexport_two.AMixin.AMixin",
+ "href": "reexport_two/AMixin/AMixin.html",
+ "type": "constructor",
+ "overriddenDepth": 0,
+ "enclosedBy": {
+ "name": "AMixin",
+ "type": "mixin"
+ }
+ },
{
"name": "hashCode",
"qualifiedName": "reexport_two.AMixin.hashCode",
@@ -10017,10 +10152,10 @@
}
},
{
- "name": "AUnicornClass",
- "qualifiedName": "reexport_two.AUnicornClass",
- "href": "reexport_two/AUnicornClass/AUnicornClass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "reexport_two.AUnicornClass.==",
+ "href": "reexport_two/AUnicornClass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "AUnicornClass",
@@ -10028,10 +10163,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "reexport_two.AUnicornClass.==",
- "href": "reexport_two/AUnicornClass/operator_equals.html",
- "type": "method",
+ "name": "AUnicornClass",
+ "qualifiedName": "reexport_two.AUnicornClass.AUnicornClass",
+ "href": "reexport_two/AUnicornClass/AUnicornClass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "AUnicornClass",
@@ -10095,7 +10230,7 @@
},
{
"name": "MixedIn",
- "qualifiedName": "reexport_two.MixedIn",
+ "qualifiedName": "reexport_two.MixedIn.MixedIn",
"href": "reexport_two/MixedIn/MixedIn.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -10127,10 +10262,10 @@
}
},
{
- "name": "SomeClass",
- "qualifiedName": "reexport_two.SomeClass",
- "href": "reexport_two/SomeClass/SomeClass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "reexport_two.SomeClass.==",
+ "href": "reexport_two/SomeClass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "SomeClass",
@@ -10138,10 +10273,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "reexport_two.SomeClass.==",
- "href": "reexport_two/SomeClass/operator_equals.html",
- "type": "method",
+ "name": "SomeClass",
+ "qualifiedName": "reexport_two.SomeClass.SomeClass",
+ "href": "reexport_two/SomeClass/SomeClass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "SomeClass",
@@ -10204,10 +10339,10 @@
}
},
{
- "name": "YetAnotherClass",
- "qualifiedName": "reexport_two.YetAnotherClass",
- "href": "reexport_two/YetAnotherClass/YetAnotherClass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "reexport_two.YetAnotherClass.==",
+ "href": "reexport_two/YetAnotherClass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "YetAnotherClass",
@@ -10215,10 +10350,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "reexport_two.YetAnotherClass.==",
- "href": "reexport_two/YetAnotherClass/operator_equals.html",
- "type": "method",
+ "name": "YetAnotherClass",
+ "qualifiedName": "reexport_two.YetAnotherClass.YetAnotherClass",
+ "href": "reexport_two/YetAnotherClass/YetAnotherClass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "YetAnotherClass",
@@ -10288,10 +10423,10 @@
}
},
{
- "name": "Whataclass",
- "qualifiedName": "test_package_imported.main.Whataclass",
- "href": "test_package_imported.main/Whataclass/Whataclass.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "test_package_imported.main.Whataclass.==",
+ "href": "test_package_imported.main/Whataclass/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Whataclass",
@@ -10299,10 +10434,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "test_package_imported.main.Whataclass.==",
- "href": "test_package_imported.main/Whataclass/operator_equals.html",
- "type": "method",
+ "name": "Whataclass",
+ "qualifiedName": "test_package_imported.main.Whataclass.Whataclass",
+ "href": "test_package_imported.main/Whataclass/Whataclass.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Whataclass",
@@ -10365,10 +10500,10 @@
}
},
{
- "name": "Whataclass2",
- "qualifiedName": "test_package_imported.main.Whataclass2",
- "href": "test_package_imported.main/Whataclass2/Whataclass2.html",
- "type": "constructor",
+ "name": "operator ==",
+ "qualifiedName": "test_package_imported.main.Whataclass2.==",
+ "href": "test_package_imported.main/Whataclass2/operator_equals.html",
+ "type": "method",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Whataclass2",
@@ -10376,10 +10511,10 @@
}
},
{
- "name": "operator ==",
- "qualifiedName": "test_package_imported.main.Whataclass2.==",
- "href": "test_package_imported.main/Whataclass2/operator_equals.html",
- "type": "method",
+ "name": "Whataclass2",
+ "qualifiedName": "test_package_imported.main.Whataclass2.Whataclass2",
+ "href": "test_package_imported.main/Whataclass2/Whataclass2.html",
+ "type": "constructor",
"overriddenDepth": 0,
"enclosedBy": {
"name": "Whataclass2",
@@ -10450,7 +10585,7 @@
},
{
"name": "BaseClass",
- "qualifiedName": "two_exports.BaseClass",
+ "qualifiedName": "two_exports.BaseClass.BaseClass",
"href": "two_exports/BaseClass/BaseClass.html",
"type": "constructor",
"overriddenDepth": 0,
@@ -10472,7 +10607,7 @@
},
{
"name": "ExtendingClass",
- "qualifiedName": "two_exports.ExtendingClass",
+ "qualifiedName": "two_exports.ExtendingClass.ExtendingClass",
"href": "two_exports/ExtendingClass/ExtendingClass.html",
"type": "constructor",
"overriddenDepth": 0,
diff --git a/testing/test_package_docs_dev/is_deprecated/is_deprecated-library.html b/testing/test_package_docs_dev/is_deprecated/is_deprecated-library.html
index fb01eb9e6c..ffa840cc6e 100644
--- a/testing/test_package_docs_dev/is_deprecated/is_deprecated-library.html
+++ b/testing/test_package_docs_dev/is_deprecated/is_deprecated-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_dev/mylibpub/YetAnotherHelper-class.html b/testing/test_package_docs_dev/mylibpub/YetAnotherHelper-class.html
new file mode 100644
index 0000000000..f299d91ce4
--- /dev/null
+++ b/testing/test_package_docs_dev/mylibpub/YetAnotherHelper-class.html
@@ -0,0 +1,208 @@
+
+
+
+
+
+
+
+ YetAnotherHelper class - mylibpub library - Dart API
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
YetAnotherHelper class
+
+
+ Even unresolved references in the same library should be resolved
+Apple
+ex.B
+
+
+
+
+
+
+ Properties
+
+
+
+ hashCode
+ → int
+
+
+
+ read-only, inherited
+
+
+ runtimeType
+ → Type
+
+
+
+ read-only, inherited
+
+
+
+
+
+ Methods
+
+
+ getMoreContents ()
+ → String
+
+
+
+
+
+
+
+ noSuchMethod (Invocation invocation )
+ → dynamic
+
+
+
+
+ inherited
+
+
+ toString ()
+ → String
+
+
+
+
+ inherited
+
+
+
+
+
+ Operators
+
+
+ operator == (dynamic other )
+ → bool
+
+
+
+
+ inherited
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ test_package 0.0.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/testing/test_package_docs_dev/mylibpub/YetAnotherHelper/YetAnotherHelper.html b/testing/test_package_docs_dev/mylibpub/YetAnotherHelper/YetAnotherHelper.html
new file mode 100644
index 0000000000..e8eb29f512
--- /dev/null
+++ b/testing/test_package_docs_dev/mylibpub/YetAnotherHelper/YetAnotherHelper.html
@@ -0,0 +1,111 @@
+
+
+
+
+
+
+
+ YetAnotherHelper constructor - YetAnotherHelper class - mylibpub library - Dart API
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
YetAnotherHelper constructor
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ test_package 0.0.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/testing/test_package_docs_dev/mylibpub/YetAnotherHelper/getMoreContents.html b/testing/test_package_docs_dev/mylibpub/YetAnotherHelper/getMoreContents.html
new file mode 100644
index 0000000000..df007fb055
--- /dev/null
+++ b/testing/test_package_docs_dev/mylibpub/YetAnotherHelper/getMoreContents.html
@@ -0,0 +1,112 @@
+
+
+
+
+
+
+
+ getMoreContents method - YetAnotherHelper class - mylibpub library - Dart API
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
getMoreContents method
+
+
+ String
+ getMoreContents
+()
+
+
+
+
+
+
+
+
+
+
+
+
+
+ test_package 0.0.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/testing/test_package_docs_dev/mylibpub/YetAnotherHelper/hashCode.html b/testing/test_package_docs_dev/mylibpub/YetAnotherHelper/hashCode.html
new file mode 100644
index 0000000000..e69d415649
--- /dev/null
+++ b/testing/test_package_docs_dev/mylibpub/YetAnotherHelper/hashCode.html
@@ -0,0 +1,115 @@
+
+
+
+
+
+
+
+ hashCode property - YetAnotherHelper class - mylibpub library - Dart API
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
hashCode property
+
+
+
+
+
+ int
+ hashCode
+ inherited
+
+
+
+
+
+
+
+
+
+
+
+
+
+ test_package 0.0.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/testing/test_package_docs_dev/mylibpub/YetAnotherHelper/noSuchMethod.html b/testing/test_package_docs_dev/mylibpub/YetAnotherHelper/noSuchMethod.html
new file mode 100644
index 0000000000..93a2838558
--- /dev/null
+++ b/testing/test_package_docs_dev/mylibpub/YetAnotherHelper/noSuchMethod.html
@@ -0,0 +1,112 @@
+
+
+
+
+
+
+
+ noSuchMethod method - YetAnotherHelper class - mylibpub library - Dart API
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
noSuchMethod method
+
+
+ dynamic
+ noSuchMethod
+(Invocation invocation )
+ inherited
+
+
+
+
+
+
+
+
+
+
+
+
+ test_package 0.0.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/testing/test_package_docs_dev/mylibpub/YetAnotherHelper/operator_equals.html b/testing/test_package_docs_dev/mylibpub/YetAnotherHelper/operator_equals.html
new file mode 100644
index 0000000000..4b8cabd898
--- /dev/null
+++ b/testing/test_package_docs_dev/mylibpub/YetAnotherHelper/operator_equals.html
@@ -0,0 +1,112 @@
+
+
+
+
+
+
+
+ operator == method - YetAnotherHelper class - mylibpub library - Dart API
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
operator == method
+
+
+ bool
+ operator ==
+(dynamic other )
+ inherited
+
+
+
+
+
+
+
+
+
+
+
+
+ test_package 0.0.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/testing/test_package_docs_dev/mylibpub/YetAnotherHelper/runtimeType.html b/testing/test_package_docs_dev/mylibpub/YetAnotherHelper/runtimeType.html
new file mode 100644
index 0000000000..499f643888
--- /dev/null
+++ b/testing/test_package_docs_dev/mylibpub/YetAnotherHelper/runtimeType.html
@@ -0,0 +1,115 @@
+
+
+
+
+
+
+
+ runtimeType property - YetAnotherHelper class - mylibpub library - Dart API
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
runtimeType property
+
+
+
+
+
+ Type
+ runtimeType
+ inherited
+
+
+
+
+
+
+
+
+
+
+
+
+
+ test_package 0.0.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/testing/test_package_docs_dev/mylibpub/YetAnotherHelper/toString.html b/testing/test_package_docs_dev/mylibpub/YetAnotherHelper/toString.html
new file mode 100644
index 0000000000..d7c78b4f07
--- /dev/null
+++ b/testing/test_package_docs_dev/mylibpub/YetAnotherHelper/toString.html
@@ -0,0 +1,112 @@
+
+
+
+
+
+
+
+ toString method - YetAnotherHelper class - mylibpub library - Dart API
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
toString method
+
+
+ String
+ toString
+()
+ inherited
+
+
+
+
+
+
+
+
+
+
+
+
+ test_package 0.0.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/testing/test_package_docs_dev/mylibpub/helperFunction.html b/testing/test_package_docs_dev/mylibpub/helperFunction.html
new file mode 100644
index 0000000000..df0eb9a4f3
--- /dev/null
+++ b/testing/test_package_docs_dev/mylibpub/helperFunction.html
@@ -0,0 +1,101 @@
+
+
+
+
+
+
+
+ helperFunction function - mylibpub library - Dart API
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
helperFunction function
+
+
+ void
+ helperFunction
+(String message , int i )
+
+
+
+
+
+
+
+
+
+
+
+
+ test_package 0.0.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/testing/test_package_docs_dev/mylibpub/mylibpub-library.html b/testing/test_package_docs_dev/mylibpub/mylibpub-library.html
new file mode 100644
index 0000000000..363245ad91
--- /dev/null
+++ b/testing/test_package_docs_dev/mylibpub/mylibpub-library.html
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+ mylibpub library - Dart API
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
mylibpub library
+
+
+
+ Classes
+
+
+
+ YetAnotherHelper
+
+
+ Even unresolved references in the same library should be resolved
+Apple
+ex.B
+
+
+
+
+
+
+
+
+ Functions
+
+
+
+ helperFunction (String message , int i )
+ → void
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ test_package 0.0.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/testing/test_package_docs_dev/reexport_one/reexport_one-library.html b/testing/test_package_docs_dev/reexport_one/reexport_one-library.html
index a645739c6a..2943a3c9d8 100644
--- a/testing/test_package_docs_dev/reexport_one/reexport_one-library.html
+++ b/testing/test_package_docs_dev/reexport_one/reexport_one-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_dev/reexport_two/reexport_two-library.html b/testing/test_package_docs_dev/reexport_two/reexport_two-library.html
index f97585d917..f23ea5ef34 100644
--- a/testing/test_package_docs_dev/reexport_two/reexport_two-library.html
+++ b/testing/test_package_docs_dev/reexport_two/reexport_two-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_dev/test_package_imported.main/test_package_imported.main-library.html b/testing/test_package_docs_dev/test_package_imported.main/test_package_imported.main-library.html
index 4c53ecfe05..2d2d675cf3 100644
--- a/testing/test_package_docs_dev/test_package_imported.main/test_package_imported.main-library.html
+++ b/testing/test_package_docs_dev/test_package_imported.main/test_package_imported.main-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_dev/topics/Superb-topic.html b/testing/test_package_docs_dev/topics/Superb-topic.html
index a6641abb2f..287ae2852e 100644
--- a/testing/test_package_docs_dev/topics/Superb-topic.html
+++ b/testing/test_package_docs_dev/topics/Superb-topic.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_dev/topics/Unreal-topic.html b/testing/test_package_docs_dev/topics/Unreal-topic.html
index ca6f4d9084..c1ae1a6d92 100644
--- a/testing/test_package_docs_dev/topics/Unreal-topic.html
+++ b/testing/test_package_docs_dev/topics/Unreal-topic.html
@@ -55,7 +55,9 @@