diff --git a/lib/src/export_graph.dart b/lib/src/export_graph.dart new file mode 100644 index 0000000000..401ecacbfb --- /dev/null +++ b/lib/src/export_graph.dart @@ -0,0 +1,70 @@ +import 'package:analyzer/dart/element/element.dart'; + +/// Node in the directed export graph. +/// +/// It wraps a library element, and also contains links to the nodes/libs, which export this lib, +/// and nodes/libs, which are exported by this lib. +class _ExportGraphNode { + final LibraryElement libraryElement; + Set<_ExportGraphNode> exportedBy = new Set(); + Set<_ExportGraphNode> exports = new Set(); + + _ExportGraphNode(this.libraryElement); + + /// It returns a "canonical" library element + /// + /// That's one of the passed in the arguments, which is the closest if we go up the graph. + _ExportGraphNode canonicalLibraryElement(Iterable libraryElements) { + if (libraryElements.contains(libraryElement)) { + return this; + } else { + return exportedBy.toList().firstWhere((l) => l.canonicalLibraryElement(libraryElements) != null); + } + } +} + +/// Recursively builds the export graph, and also populates the index [map]. It takes +/// the library element from the arguments, adds it to the index, then goes through all +/// the libraries this library element exports, adds them to the index too and also connects +/// them to build a graph. +void _buildSubGraph(Map map, LibraryElement libraryElement) { + if (!map.containsKey(libraryElement.source.fullName)) { + map[libraryElement.source.fullName] = new _ExportGraphNode(libraryElement); + } + final node = map[libraryElement.source.fullName]; + libraryElement.exports.forEach((ExportElement export) { + final exportedLibraryElement = export.exportedLibrary; + if (!map.containsKey(exportedLibraryElement.source.fullName)) { + map[exportedLibraryElement.source.fullName] = new _ExportGraphNode(exportedLibraryElement); + } + final childNode = map[exportedLibraryElement.source.fullName]; + childNode.exportedBy.add(node); + node.exports.add(childNode); + _buildSubGraph(map, exportedLibraryElement); + }); +} + +/// Directed graph, which allows to track what libs export and being exported by what libs +/// (where libs are the documentable package libraries). +/// +/// Also, allows to find the "canonical" library element for the provided element, i.e. the +/// one, which should contain documentation of the provided element. +class ExportGraph { + final Map map = {}; + final Iterable packageLibraryElements; + + ExportGraph(this.packageLibraryElements) { + packageLibraryElements.forEach((LibraryElement libraryElement) { + _buildSubGraph(map, libraryElement); + }); + } + + LibraryElement canonicalLibraryElement(Element element) { + if (map.containsKey(element.library.source.fullName)) { + final node = map[element.library.source.fullName]; + return node.canonicalLibraryElement(packageLibraryElements)?.libraryElement; + } else { + return element.library; + } + } +} diff --git a/lib/src/html/html_generator_instance.dart b/lib/src/html/html_generator_instance.dart index 6c5570a48a..43e82d91b7 100644 --- a/lib/src/html/html_generator_instance.dart +++ b/lib/src/html/html_generator_instance.dart @@ -50,7 +50,7 @@ class HtmlGeneratorInstance implements HtmlOptions { void _generateSearchIndex() { File jsonFile = _createOutputFile(out, 'index.json'); - String json = JSON.encode(documentedElements.map((ModelElement e) { + String json = JSON.encode(documentedElements.where((e) => e.isCanonical).map((ModelElement e) { Map data = { 'name': e.name, 'qualifiedName': e.name, diff --git a/lib/src/model.dart b/lib/src/model.dart index 6ca84198e5..f928097c57 100644 --- a/lib/src/model.dart +++ b/lib/src/model.dart @@ -26,6 +26,7 @@ import 'markdown_processor.dart' show Documentation; import 'model_utils.dart'; import 'package_meta.dart' show PackageMeta, FileContents; import 'utils.dart'; +import 'export_graph.dart'; Map>>> __crossdartJson; @@ -98,7 +99,7 @@ class Accessor extends ModelElement @override String get href => - '${library.dirName}/${_accessor.enclosingElement.name}/${name}.html'; + '${canonicalLibrary.dirName}/${_accessor.enclosingElement.name}/${name}.html'; bool get isGetter => _accessor.isGetter; @@ -310,7 +311,7 @@ class Class extends ModelElement implements EnclosedElement { bool get hasSupertype => supertype != null; @override - String get href => '${library.dirName}/$fileName'; + String get href => '${canonicalLibrary.dirName}/$fileName'; /// Returns all the implementors of the class specified. List get implementors => @@ -663,7 +664,7 @@ class Constructor extends ModelElement @override String get href => - '${library.dirName}/${_constructor.enclosingElement.name}/$name.html'; + '${canonicalLibrary.dirName}/${_constructor.enclosingElement.name}/$name.html'; @override bool get isConst => _constructor.isConst; @@ -790,7 +791,7 @@ class EnumField extends Field { @override String get href => - '${library.dirName}/${(enclosingElement as Class).fileName}'; + '${canonicalLibrary.dirName}/${(enclosingElement as Class).fileName}'; @override String get linkedName => name; @@ -844,12 +845,21 @@ class Field extends ModelElement @override bool get hasSetter => _field.setter != null; + @override + Library get canonicalLibrary { + if (isInherited) { + return enclosingElement.canonicalLibrary; + } else { + return super.canonicalLibrary; + } + } + @override String get href { if (enclosingElement is Class) { - return '${library.dirName}/${enclosingElement.name}/$_fileName'; + return '${canonicalLibrary.dirName}/${enclosingElement.name}/$_fileName'; } else if (enclosingElement is Library) { - return '${library.dirName}/$_fileName'; + return '${canonicalLibrary.dirName}/$_fileName'; } else { throw new StateError( '$name is not in a class or library, instead it is a ${enclosingElement.element}'); @@ -1284,6 +1294,15 @@ class Method extends ModelElement }).toList(); } + @override + Library get canonicalLibrary { + if (isInherited) { + return enclosingElement.canonicalLibrary; + } else { + return super.canonicalLibrary; + } + } + @override ModelElement get enclosingElement { if (_enclosingClass == null) { @@ -1301,7 +1320,7 @@ class Method extends ModelElement } @override - String get href => '${library.dirName}/${enclosingElement.name}/${fileName}'; + String get href => '${canonicalLibrary.dirName}/${enclosingElement.name}/${fileName}'; bool get isInherited => _isInherited; @@ -1456,6 +1475,17 @@ abstract class ModelElement implements Comparable, Nameable, Documentable { return _rawDocs; } + Library _canonicalLibrary; + Library get canonicalLibrary { + if (_canonicalLibrary == null) { + final libraryElement = package.exportGraph.canonicalLibraryElement(element) ?? library.element; + _canonicalLibrary = package.libraries.firstWhere((l) => l.element == libraryElement, orElse: () => library); + } + return _canonicalLibrary; + } + + bool get isCanonical => library == canonicalLibrary; + @override String get documentationAsHtml => _documentation.asHtml; @@ -1897,7 +1927,7 @@ class ModelFunction extends ModelElement String get fileName => "$name.html"; @override - String get href => '${library.dirName}/$fileName'; + String get href => '${canonicalLibrary.dirName}/$fileName'; @override bool get isStatic => _func.isStatic; @@ -2137,6 +2167,11 @@ class Package implements Nameable, Documentable { } return _allModelElements; } + + ExportGraph _exportGraph; + ExportGraph get exportGraph { + return (_exportGraph ??= new ExportGraph(libraries.map((l) => l.element as LibraryElement))); + } } class PackageCategory implements Comparable { @@ -2178,13 +2213,13 @@ class Parameter extends ModelElement implements EnclosedElement { var p = _parameter.enclosingElement; if (p is FunctionElement) { - return '${library.dirName}/${p.name}.html'; + return '${canonicalLibrary.dirName}/${p.name}.html'; } else { // TODO: why is this logic here? var name = Operator.friendlyNames.containsKey(p.name) ? Operator.friendlyNames[p.name] : p.name; - return '${library.dirName}/${p.enclosingElement.name}/' + + return '${canonicalLibrary.dirName}/${p.enclosingElement.name}/' + '${name}.html#${htmlId}'; } } @@ -2353,7 +2388,7 @@ class TopLevelVariable extends ModelElement bool get hasSetter => _variable.setter != null; @override - String get href => '${library.dirName}/$_fileName'; + String get href => '${canonicalLibrary.dirName}/$_fileName'; @override bool get isConst => _variable.isConst; @@ -2404,7 +2439,7 @@ class Typedef extends ModelElement String get fileName => '$name.html'; @override - String get href => '${library.dirName}/$fileName'; + String get href => '${canonicalLibrary.dirName}/$fileName'; @override String get kind => 'typedef'; @@ -2435,7 +2470,7 @@ class TypeParameter extends ModelElement { @override String get href => - '${library.dirName}/${_typeParameter.enclosingElement.name}/$name'; + '${canonicalLibrary.dirName}/${_typeParameter.enclosingElement.name}/$name'; @override String get kind => 'type parameter'; diff --git a/test/model_test.dart b/test/model_test.dart index f78807efa4..d51981c824 100644 --- a/test/model_test.dart +++ b/test/model_test.dart @@ -636,7 +636,7 @@ void main() { .firstWhere((m) => m.name == 'returnCool', orElse: () => null); expect(returnCool, isNotNull); expect(returnCool.linkedReturnType, - equals('Cool')); + equals('Cool')); }); test('F has a single instance method', () { diff --git a/testing/test_package_docs/ex/Animal-class.html b/testing/test_package_docs/ex/Animal-class.html index cd0fd22e98..4177ed6b36 100644 --- a/testing/test_package_docs/ex/Animal-class.html +++ b/testing/test_package_docs/ex/Animal-class.html @@ -108,7 +108,7 @@
ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/Apple-class.html b/testing/test_package_docs/ex/Apple-class.html index dbca6a192f..f5968b4e0c 100644 --- a/testing/test_package_docs/ex/Apple-class.html +++ b/testing/test_package_docs/ex/Apple-class.html @@ -112,7 +112,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/B-class.html b/testing/test_package_docs/ex/B-class.html index 02d04d4a6e..16c300171a 100644 --- a/testing/test_package_docs/ex/B-class.html +++ b/testing/test_package_docs/ex/B-class.html @@ -110,7 +110,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/COLOR-constant.html b/testing/test_package_docs/ex/COLOR-constant.html index a4eed882b5..395cac0483 100644 --- a/testing/test_package_docs/ex/COLOR-constant.html +++ b/testing/test_package_docs/ex/COLOR-constant.html @@ -103,7 +103,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/COLOR_GREEN-constant.html b/testing/test_package_docs/ex/COLOR_GREEN-constant.html index c653f3b206..551461ea4f 100644 --- a/testing/test_package_docs/ex/COLOR_GREEN-constant.html +++ b/testing/test_package_docs/ex/COLOR_GREEN-constant.html @@ -103,7 +103,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/COLOR_ORANGE-constant.html b/testing/test_package_docs/ex/COLOR_ORANGE-constant.html index 50adaa65a6..6f55b1c44a 100644 --- a/testing/test_package_docs/ex/COLOR_ORANGE-constant.html +++ b/testing/test_package_docs/ex/COLOR_ORANGE-constant.html @@ -103,7 +103,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/COMPLEX_COLOR-constant.html b/testing/test_package_docs/ex/COMPLEX_COLOR-constant.html index 568fefdcb6..ca9175c8d2 100644 --- a/testing/test_package_docs/ex/COMPLEX_COLOR-constant.html +++ b/testing/test_package_docs/ex/COMPLEX_COLOR-constant.html @@ -103,7 +103,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/Cat-class.html b/testing/test_package_docs/ex/Cat-class.html index fa444c99c1..f59030b3ed 100644 --- a/testing/test_package_docs/ex/Cat-class.html +++ b/testing/test_package_docs/ex/Cat-class.html @@ -110,7 +110,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/CatString-class.html b/testing/test_package_docs/ex/CatString-class.html index ec6a28eff6..5de3c0be52 100644 --- a/testing/test_package_docs/ex/CatString-class.html +++ b/testing/test_package_docs/ex/CatString-class.html @@ -110,7 +110,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/ConstantCat-class.html b/testing/test_package_docs/ex/ConstantCat-class.html index 68c4af140e..710ac3f3d3 100644 --- a/testing/test_package_docs/ex/ConstantCat-class.html +++ b/testing/test_package_docs/ex/ConstantCat-class.html @@ -110,7 +110,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/Cool-class.html b/testing/test_package_docs/ex/Cool-class.html deleted file mode 100644 index 38ff74de9d..0000000000 --- a/testing/test_package_docs/ex/Cool-class.html +++ /dev/null @@ -1,296 +0,0 @@ - - - - - - - - Cool class - ex library - Dart API - - - - - - - - - - - - - - - -
    - -
    - - -
    -
    -
    - -
    -

    - class Cool -

    -
    - -
    -
    -
    - -
    - -
    -
    - - - -
    - -
    -

    This class is cool!

    -
    - - - - - -
    -

    Constructors

    - -
    -
    - Cool() -
    -
    -

    -
    -
    -
    - -
    -

    Properties

    - -
    -
    - hashCode - → int -
    -
    -

    Get a hash code for this object.

    -
    - read-only, inherited -
    -
    -
    - runtimeType - → Type -
    -
    -

    A representation of the runtime type of the object.

    -
    - read-only, inherited -
    -
    -
    -
    - -
    -

    Operators

    -
    -
    - operator ==(other) - → bool - -
    -
    -

    The equality operator.

    -
    inherited
    -
    -
    -
    - -
    -

    Methods

    -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    -

    Invoked when a non-existent method or property is accessed.

    -
    inherited
    -
    -
    - returnCool() - Cool - -
    -
    -

    -
    -
    - toString() - → String - -
    -
    -

    Returns a string representation of this object.

    -
    inherited
    -
    -
    -
    - -
    - - - -
    -
    - -
    -
    -
    -

    - - test_package 0.0.1 - - • - - - Dart - - - • - - cc license - -

    -
    -
    -
    - - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Cool/Cool.html b/testing/test_package_docs/ex/Cool/Cool.html deleted file mode 100644 index 7e2db11ec0..0000000000 --- a/testing/test_package_docs/ex/Cool/Cool.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - - - Cool constructor - Cool class - ex library - Dart API - - - - - - - - - - - - - - - -
    - -
    - - -
    -
    -
    - -
    -

    - constructor Cool -

    -
    -
    -
    -
    - -
    - -
    -
    - - - -
    -
    - - Cool() -
    - - - - -
    - -
    -
    - -
    -
    -
    -

    - - test_package 0.0.1 - - • - - - Dart - - - • - - cc license - -

    -
    -
    -
    - - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Cool/hashCode.html b/testing/test_package_docs/ex/Cool/hashCode.html deleted file mode 100644 index 6a4f6f4b66..0000000000 --- a/testing/test_package_docs/ex/Cool/hashCode.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - hashCode property - Cool class - ex library - Dart API - - - - - - - - - - - - - - - -
    - -
    - - -
    -
    -
    - -
    -

    - property hashCode -

    -
    -
    -
    -
    - -
    - -
    -
    - - - -
    - - -
    - -
    - int - hashCode
    - -
    -

    Get a hash code for this object.

    -

    All objects have hash codes. Hash codes are guaranteed to be the -same for objects that are equal when compared using the equality -operator ==. Other than that there are no guarantees about -the hash codes. They will not be consistent between runs and -there are no distribution guarantees.

    -

    If a subclass overrides hashCode it should override the -equality operator as well to maintain consistency.

    -
    -
    - - - -
    - -
    -
    - -
    -
    -
    -

    - - test_package 0.0.1 - - • - - - Dart - - - • - - cc license - -

    -
    -
    -
    - - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Cool/noSuchMethod.html b/testing/test_package_docs/ex/Cool/noSuchMethod.html deleted file mode 100644 index 0de9e2dc21..0000000000 --- a/testing/test_package_docs/ex/Cool/noSuchMethod.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - - noSuchMethod method - Cool class - ex library - Dart API - - - - - - - - - - - - - - - -
    - -
    - - -
    -
    -
    - -
    -

    - method noSuchMethod -

    -
    -
    -
    -
    - -
    - -
    -
    - - - -
    -
    - dynamic - noSuchMethod(Invocation invocation) -
    -
    -

    Invoked when a non-existent method or property is accessed.

    -

    Classes can override noSuchMethod to provide custom behavior.

    -

    If a value is returned, it becomes the result of the original invocation.

    -

    The default behavior is to throw a NoSuchMethodError.

    -
    - - - -
    - -
    -
    - -
    -
    -
    -

    - - test_package 0.0.1 - - • - - - Dart - - - • - - cc license - -

    -
    -
    -
    - - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Cool/operator_equals.html b/testing/test_package_docs/ex/Cool/operator_equals.html deleted file mode 100644 index ef96550f23..0000000000 --- a/testing/test_package_docs/ex/Cool/operator_equals.html +++ /dev/null @@ -1,164 +0,0 @@ - - - - - - - - operator == method - Cool class - ex library - Dart API - - - - - - - - - - - - - - - -
    - -
    - - -
    -
    -
    - -
    -

    - method operator == -

    -
    -
    -
    -
    - -
    - -
    -
    - - - -
    -
    - bool - operator ==(other) -
    -
    -

    The equality operator.

    -

    The default behavior for all Objects is to return true if and -only if this and other are the same object.

    -

    Override this method to specify a different equality relation on -a class. The overriding method must still be an equivalence relation. -That is, it must be:

    • -

      Total: It must return a boolean for all arguments. It should never throw -or return null.

    • -

      Reflexive: For all objects o, o == o must be true.

    • -

      Symmetric: For all objects o1 and o2, o1 == o2 and o2 == o1 must -either both be true, or both be false.

    • -

      Transitive: For all objects o1, o2, and o3, if o1 == o2 and -o2 == o3 are true, then o1 == o3 must be true.

    -

    The method should also be consistent over time, so equality of two objects -should not change over time, or at least only change if one of the objects -was modified.

    -

    If a subclass overrides the equality operator it should override -the hashCode method as well to maintain consistency.

    -
    - - - -
    - -
    -
    - -
    -
    -
    -

    - - test_package 0.0.1 - - • - - - Dart - - - • - - cc license - -

    -
    -
    -
    - - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Cool/returnCool.html b/testing/test_package_docs/ex/Cool/returnCool.html deleted file mode 100644 index 98c6d58cf5..0000000000 --- a/testing/test_package_docs/ex/Cool/returnCool.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - returnCool method - Cool class - ex library - Dart API - - - - - - - - - - - - - - - -
    - -
    - - -
    -
    -
    - -
    -

    - method returnCool -

    -
    -
    -
    -
    - -
    - -
    -
    - - - -
    -
    - Cool - returnCool() -
    - - - -
    - -
    -
    - -
    -
    -
    -

    - - test_package 0.0.1 - - • - - - Dart - - - • - - cc license - -

    -
    -
    -
    - - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Cool/runtimeType.html b/testing/test_package_docs/ex/Cool/runtimeType.html deleted file mode 100644 index 5b0811e818..0000000000 --- a/testing/test_package_docs/ex/Cool/runtimeType.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - - - runtimeType property - Cool class - ex library - Dart API - - - - - - - - - - - - - - - -
    - -
    - - -
    -
    -
    - -
    -

    - property runtimeType -

    -
    -
    -
    -
    - -
    - -
    -
    - - - -
    - - -
    - -
    - Type - runtimeType
    - -
    -

    A representation of the runtime type of the object.

    -
    -
    - - - -
    - -
    -
    - -
    -
    -
    -

    - - test_package 0.0.1 - - • - - - Dart - - - • - - cc license - -

    -
    -
    -
    - - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Cool/toString.html b/testing/test_package_docs/ex/Cool/toString.html deleted file mode 100644 index e26e24a891..0000000000 --- a/testing/test_package_docs/ex/Cool/toString.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - toString method - Cool class - ex library - Dart API - - - - - - - - - - - - - - - -
    - -
    - - -
    -
    -
    - -
    -

    - method toString -

    -
    -
    -
    -
    - -
    - -
    -
    - - - -
    -
    - String - toString() -
    -
    -

    Returns a string representation of this object.

    -
    - - - -
    - -
    -
    - -
    -
    -
    -

    - - test_package 0.0.1 - - • - - - Dart - - - • - - cc license - -

    -
    -
    -
    - - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Deprecated-class.html b/testing/test_package_docs/ex/Deprecated-class.html index 5a58bf637c..6059257306 100644 --- a/testing/test_package_docs/ex/Deprecated-class.html +++ b/testing/test_package_docs/ex/Deprecated-class.html @@ -110,7 +110,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/Dog-class.html b/testing/test_package_docs/ex/Dog-class.html index 94e987fac3..1d18733a70 100644 --- a/testing/test_package_docs/ex/Dog-class.html +++ b/testing/test_package_docs/ex/Dog-class.html @@ -111,7 +111,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/E-class.html b/testing/test_package_docs/ex/E-class.html index bb22b1503b..dd4ab661ff 100644 --- a/testing/test_package_docs/ex/E-class.html +++ b/testing/test_package_docs/ex/E-class.html @@ -110,7 +110,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/F-class.html b/testing/test_package_docs/ex/F-class.html index e24c0f18d8..f7ef09596b 100644 --- a/testing/test_package_docs/ex/F-class.html +++ b/testing/test_package_docs/ex/F-class.html @@ -110,7 +110,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/ForAnnotation-class.html b/testing/test_package_docs/ex/ForAnnotation-class.html index 8e9702136b..31aef0788e 100644 --- a/testing/test_package_docs/ex/ForAnnotation-class.html +++ b/testing/test_package_docs/ex/ForAnnotation-class.html @@ -110,7 +110,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/HasAnnotation-class.html b/testing/test_package_docs/ex/HasAnnotation-class.html index 8fd76162fa..740fa9e7d2 100644 --- a/testing/test_package_docs/ex/HasAnnotation-class.html +++ b/testing/test_package_docs/ex/HasAnnotation-class.html @@ -110,7 +110,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/Helper-class.html b/testing/test_package_docs/ex/Helper-class.html index bd8a248a5c..ea9c124741 100644 --- a/testing/test_package_docs/ex/Helper-class.html +++ b/testing/test_package_docs/ex/Helper-class.html @@ -110,7 +110,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/Klass-class.html b/testing/test_package_docs/ex/Klass-class.html index 845fb350ae..b56f9c2190 100644 --- a/testing/test_package_docs/ex/Klass-class.html +++ b/testing/test_package_docs/ex/Klass-class.html @@ -110,7 +110,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/MY_CAT-constant.html b/testing/test_package_docs/ex/MY_CAT-constant.html index 2c47eeee77..fb38ad6ce4 100644 --- a/testing/test_package_docs/ex/MY_CAT-constant.html +++ b/testing/test_package_docs/ex/MY_CAT-constant.html @@ -103,7 +103,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/MyError-class.html b/testing/test_package_docs/ex/MyError-class.html index ac9d2c58ee..e63da9011e 100644 --- a/testing/test_package_docs/ex/MyError-class.html +++ b/testing/test_package_docs/ex/MyError-class.html @@ -110,7 +110,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/MyErrorImplements-class.html b/testing/test_package_docs/ex/MyErrorImplements-class.html index bc2b36a1f1..12add604d1 100644 --- a/testing/test_package_docs/ex/MyErrorImplements-class.html +++ b/testing/test_package_docs/ex/MyErrorImplements-class.html @@ -110,7 +110,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/MyException-class.html b/testing/test_package_docs/ex/MyException-class.html index 412bb71a13..99e7d0ac68 100644 --- a/testing/test_package_docs/ex/MyException-class.html +++ b/testing/test_package_docs/ex/MyException-class.html @@ -110,7 +110,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/MyExceptionImplements-class.html b/testing/test_package_docs/ex/MyExceptionImplements-class.html index 4443e0cbcc..df0a982746 100644 --- a/testing/test_package_docs/ex/MyExceptionImplements-class.html +++ b/testing/test_package_docs/ex/MyExceptionImplements-class.html @@ -110,7 +110,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/PRETTY_COLORS-constant.html b/testing/test_package_docs/ex/PRETTY_COLORS-constant.html index adba49775c..7ddf9f0ce4 100644 --- a/testing/test_package_docs/ex/PRETTY_COLORS-constant.html +++ b/testing/test_package_docs/ex/PRETTY_COLORS-constant.html @@ -103,7 +103,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass-class.html b/testing/test_package_docs/ex/PublicClassExtendsPrivateClass-class.html index 59bc36ab58..81d4606ccb 100644 --- a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass-class.html +++ b/testing/test_package_docs/ex/PublicClassExtendsPrivateClass-class.html @@ -110,7 +110,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface-class.html b/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface-class.html index f0ea00fb30..fbf204bbdb 100644 --- a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface-class.html +++ b/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface-class.html @@ -110,7 +110,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/ShapeType-class.html b/testing/test_package_docs/ex/ShapeType-class.html index d966709e22..4b26777e2b 100644 --- a/testing/test_package_docs/ex/ShapeType-class.html +++ b/testing/test_package_docs/ex/ShapeType-class.html @@ -110,7 +110,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/SpecializedDuration-class.html b/testing/test_package_docs/ex/SpecializedDuration-class.html index 81894f3f89..726de2df81 100644 --- a/testing/test_package_docs/ex/SpecializedDuration-class.html +++ b/testing/test_package_docs/ex/SpecializedDuration-class.html @@ -110,7 +110,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/WithGeneric-class.html b/testing/test_package_docs/ex/WithGeneric-class.html index ff787b3df4..7475e1bbc3 100644 --- a/testing/test_package_docs/ex/WithGeneric-class.html +++ b/testing/test_package_docs/ex/WithGeneric-class.html @@ -110,7 +110,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/WithGenericSub-class.html b/testing/test_package_docs/ex/WithGenericSub-class.html index bb935dc65c..dd28695176 100644 --- a/testing/test_package_docs/ex/WithGenericSub-class.html +++ b/testing/test_package_docs/ex/WithGenericSub-class.html @@ -110,7 +110,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/deprecated-constant.html b/testing/test_package_docs/ex/deprecated-constant.html index d13b80d293..e221c26be4 100644 --- a/testing/test_package_docs/ex/deprecated-constant.html +++ b/testing/test_package_docs/ex/deprecated-constant.html @@ -103,7 +103,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/deprecatedField.html b/testing/test_package_docs/ex/deprecatedField.html index a4f09ad668..1dfbf6b418 100644 --- a/testing/test_package_docs/ex/deprecatedField.html +++ b/testing/test_package_docs/ex/deprecatedField.html @@ -103,7 +103,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/deprecatedGetter.html b/testing/test_package_docs/ex/deprecatedGetter.html index f44c5cef8a..5b4c8fdae3 100644 --- a/testing/test_package_docs/ex/deprecatedGetter.html +++ b/testing/test_package_docs/ex/deprecatedGetter.html @@ -103,7 +103,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/deprecatedSetter.html b/testing/test_package_docs/ex/deprecatedSetter.html index 92b3e3a7ef..6e6c8c5ab0 100644 --- a/testing/test_package_docs/ex/deprecatedSetter.html +++ b/testing/test_package_docs/ex/deprecatedSetter.html @@ -103,7 +103,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/ex-library.html b/testing/test_package_docs/ex/ex-library.html index 4c180a9d54..8201a44617 100644 --- a/testing/test_package_docs/ex/ex-library.html +++ b/testing/test_package_docs/ex/ex-library.html @@ -335,7 +335,7 @@

    Classes

    - Cool + Cool

    This class is cool!

    @@ -500,7 +500,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/function1.html b/testing/test_package_docs/ex/function1.html index 1b702e19ab..912982e97e 100644 --- a/testing/test_package_docs/ex/function1.html +++ b/testing/test_package_docs/ex/function1.html @@ -103,7 +103,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/genericFunction.html b/testing/test_package_docs/ex/genericFunction.html index 5148eccd3c..228af8f3ad 100644 --- a/testing/test_package_docs/ex/genericFunction.html +++ b/testing/test_package_docs/ex/genericFunction.html @@ -103,7 +103,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/incorrectDocReference-constant.html b/testing/test_package_docs/ex/incorrectDocReference-constant.html index 2e8d88b6d9..458db9f396 100644 --- a/testing/test_package_docs/ex/incorrectDocReference-constant.html +++ b/testing/test_package_docs/ex/incorrectDocReference-constant.html @@ -103,7 +103,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/incorrectDocReferenceFromEx-constant.html b/testing/test_package_docs/ex/incorrectDocReferenceFromEx-constant.html index 089fdaa7bb..a69983b709 100644 --- a/testing/test_package_docs/ex/incorrectDocReferenceFromEx-constant.html +++ b/testing/test_package_docs/ex/incorrectDocReferenceFromEx-constant.html @@ -103,7 +103,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/number.html b/testing/test_package_docs/ex/number.html index 4ba582a678..c1f20fc0c5 100644 --- a/testing/test_package_docs/ex/number.html +++ b/testing/test_package_docs/ex/number.html @@ -103,7 +103,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/processMessage.html b/testing/test_package_docs/ex/processMessage.html index 002bb11006..4a5800ab9c 100644 --- a/testing/test_package_docs/ex/processMessage.html +++ b/testing/test_package_docs/ex/processMessage.html @@ -103,7 +103,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/ex/y.html b/testing/test_package_docs/ex/y.html index 23c4a86cde..9e92b73ab3 100644 --- a/testing/test_package_docs/ex/y.html +++ b/testing/test_package_docs/ex/y.html @@ -103,7 +103,7 @@
    ex
  • Cat
  • CatString
  • ConstantCat
  • -
  • Cool
  • +
  • Cool
  • Deprecated
  • Dog
  • E
  • diff --git a/testing/test_package_docs/fake/Cool-class.html b/testing/test_package_docs/fake/Cool-class.html index bba6c3a0fb..1d855090d2 100644 --- a/testing/test_package_docs/fake/Cool-class.html +++ b/testing/test_package_docs/fake/Cool-class.html @@ -228,7 +228,7 @@

    Methods

    returnCool() - Cool + Cool
    diff --git a/testing/test_package_docs/fake/Cool/returnCool.html b/testing/test_package_docs/fake/Cool/returnCool.html index fc3cbab430..10794fad43 100644 --- a/testing/test_package_docs/fake/Cool/returnCool.html +++ b/testing/test_package_docs/fake/Cool/returnCool.html @@ -98,7 +98,7 @@
    Cool
    - Cool + Cool returnCool()
    diff --git a/testing/test_package_docs/fake/OtherGenericsThing-class.html b/testing/test_package_docs/fake/OtherGenericsThing-class.html index 8ea94dc511..4757f2e48c 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing-class.html +++ b/testing/test_package_docs/fake/OtherGenericsThing-class.html @@ -216,7 +216,7 @@

    Methods

    convert() - HasGenerics<A, Cool, String> + HasGenerics<A, Cool, String>
    diff --git a/testing/test_package_docs/fake/OtherGenericsThing/convert.html b/testing/test_package_docs/fake/OtherGenericsThing/convert.html index ec63c5c7ec..a40600e77e 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing/convert.html +++ b/testing/test_package_docs/fake/OtherGenericsThing/convert.html @@ -98,7 +98,7 @@
    OtherGenericsThing
    - HasGenerics<A, Cool, String> + HasGenerics<A, Cool, String> convert()
    diff --git a/testing/test_package_docs/fake/fake-library.html b/testing/test_package_docs/fake/fake-library.html index 33580258ad..1aa717dac6 100644 --- a/testing/test_package_docs/fake/fake-library.html +++ b/testing/test_package_docs/fake/fake-library.html @@ -97,7 +97,7 @@

    WOW FAKE PACKAGE IS BEST PACKA Don't ask questions.

    Testing code true and false

    Testing string escaping: var s = 'I am a string'

    -

    My favorite class is Cool.

    +

    My favorite class is Cool.

    I am an h2

    hello there

    I am an h3

    diff --git a/testing/test_package_docs/fake/topLevelFunction.html b/testing/test_package_docs/fake/topLevelFunction.html index 25ccfba4e5..871c6016fa 100644 --- a/testing/test_package_docs/fake/topLevelFunction.html +++ b/testing/test_package_docs/fake/topLevelFunction.html @@ -157,7 +157,7 @@
    fake

    Top-level function 3 params and 1 optional positional param.

    This is the second paragraph. It has two lines.

    -

    The third parameter is a Cool object.

    +

    The third parameter is a Cool object.

    Here is a code snippet:

    var thing = topLevelFunction(1, true, 3.4);
     
    diff --git a/testing/test_package_docs/index.json b/testing/test_package_docs/index.json index 9dcc56eb20..ab76af121d 100644 --- a/testing/test_package_docs/index.json +++ b/testing/test_package_docs/index.json @@ -1 +1 @@ -[{"name":"anonymous_library","qualifiedName":"anonymous_library","href":"anonymous_library/anonymous_library-library.html","type":"library","overriddenDepth":0},{"name":"doesStuff","qualifiedName":"anonymous_library.doesStuff","href":"anonymous_library/doesStuff.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"anonymous_library","type":"library"}},{"name":"another_anonymous_lib","qualifiedName":"another_anonymous_lib","href":"another_anonymous_lib/another_anonymous_lib-library.html","type":"library","overriddenDepth":0},{"name":"greeting","qualifiedName":"another_anonymous_lib.greeting","href":"another_anonymous_lib/greeting.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"another_anonymous_lib","type":"library"}},{"name":"code_in_comments","qualifiedName":"code_in_comments","href":"code_in_comments/code_in_comments-library.html","type":"library","overriddenDepth":0},{"name":"css","qualifiedName":"css","href":"css/css-library.html","type":"library","overriddenDepth":0},{"name":"theOnlyThingInTheLibrary","qualifiedName":"css.theOnlyThingInTheLibrary","href":"css/theOnlyThingInTheLibrary.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"css","type":"library"}},{"name":"ex","qualifiedName":"ex","href":"ex/ex-library.html","type":"library","overriddenDepth":0},{"name":"Apple","qualifiedName":"ex.Apple","href":"ex/Apple-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"Apple","qualifiedName":"ex.Apple","href":"ex/Apple/Apple.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"Apple.fromString","qualifiedName":"ex.Apple.fromString","href":"ex/Apple/Apple.fromString.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"n","qualifiedName":"ex.Apple.n","href":"ex/Apple/n-constant.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"string","qualifiedName":"ex.Apple.string","href":"ex/Apple/string.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"m","qualifiedName":"ex.Apple.m","href":"ex/Apple/m.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"s","qualifiedName":"ex.Apple.s","href":"ex/Apple/s.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"hashCode","qualifiedName":"ex.Apple.hashCode","href":"ex/Apple/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.Apple.runtimeType","href":"ex/Apple/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"isGreaterThan","qualifiedName":"ex.Apple.isGreaterThan","href":"ex/Apple/isGreaterThan.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"m1","qualifiedName":"ex.Apple.m1","href":"ex/Apple/m1.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"methodWithTypedefParam","qualifiedName":"ex.Apple.methodWithTypedefParam","href":"ex/Apple/methodWithTypedefParam.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"paramFromExportLib","qualifiedName":"ex.Apple.paramFromExportLib","href":"ex/Apple/paramFromExportLib.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"printMsg","qualifiedName":"ex.Apple.printMsg","href":"ex/Apple/printMsg.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"toString","qualifiedName":"ex.Apple.toString","href":"ex/Apple/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.Apple.noSuchMethod","href":"ex/Apple/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"operator *","qualifiedName":"ex.Apple.*","href":"ex/Apple/operator_multiply.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"operator ==","qualifiedName":"ex.Apple.==","href":"ex/Apple/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"B","qualifiedName":"ex.B","href":"ex/B-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"B","qualifiedName":"ex.B","href":"ex/B/B.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"B","type":"class"}},{"name":"autoCompress","qualifiedName":"ex.B.autoCompress","href":"ex/B/autoCompress.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"B","type":"class"}},{"name":"isImplemented","qualifiedName":"ex.B.isImplemented","href":"ex/B/isImplemented.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"B","type":"class"}},{"name":"list","qualifiedName":"ex.B.list","href":"ex/B/list.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"B","type":"class"}},{"name":"s","qualifiedName":"ex.B.s","href":"ex/B/s.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"B","type":"class"}},{"name":"hashCode","qualifiedName":"ex.B.hashCode","href":"ex/B/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"B","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.B.runtimeType","href":"ex/B/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"B","type":"class"}},{"name":"abstractMethod","qualifiedName":"ex.B.abstractMethod","href":"ex/B/abstractMethod.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"B","type":"class"}},{"name":"doNothing","qualifiedName":"ex.B.doNothing","href":"ex/B/doNothing.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"B","type":"class"}},{"name":"m1","qualifiedName":"ex.B.m1","href":"ex/B/m1.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"B","type":"class"}},{"name":"writeMsg","qualifiedName":"ex.B.writeMsg","href":"ex/B/writeMsg.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"B","type":"class"}},{"name":"toString","qualifiedName":"ex.B.toString","href":"ex/B/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"B","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.B.noSuchMethod","href":"ex/B/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"B","type":"class"}},{"name":"operator ==","qualifiedName":"ex.B.==","href":"ex/B/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"B","type":"class"}},{"name":"Cat","qualifiedName":"ex.Cat","href":"ex/Cat-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"Cat","qualifiedName":"ex.Cat","href":"ex/Cat/Cat.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Cat","type":"class"}},{"name":"isImplemented","qualifiedName":"ex.Cat.isImplemented","href":"ex/Cat/isImplemented.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Cat","type":"class"}},{"name":"hashCode","qualifiedName":"ex.Cat.hashCode","href":"ex/Cat/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Cat","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.Cat.runtimeType","href":"ex/Cat/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Cat","type":"class"}},{"name":"abstractMethod","qualifiedName":"ex.Cat.abstractMethod","href":"ex/Cat/abstractMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Cat","type":"class"}},{"name":"toString","qualifiedName":"ex.Cat.toString","href":"ex/Cat/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Cat","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.Cat.noSuchMethod","href":"ex/Cat/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Cat","type":"class"}},{"name":"operator ==","qualifiedName":"ex.Cat.==","href":"ex/Cat/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Cat","type":"class"}},{"name":"CatString","qualifiedName":"ex.CatString","href":"ex/CatString-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"CatString","qualifiedName":"ex.CatString","href":"ex/CatString/CatString.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"hashCode","qualifiedName":"ex.CatString.hashCode","href":"ex/CatString/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.CatString.runtimeType","href":"ex/CatString/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"length","qualifiedName":"ex.CatString.length","href":"ex/CatString/length.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"isEmpty","qualifiedName":"ex.CatString.isEmpty","href":"ex/CatString/isEmpty.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"isNotEmpty","qualifiedName":"ex.CatString.isNotEmpty","href":"ex/CatString/isNotEmpty.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"toString","qualifiedName":"ex.CatString.toString","href":"ex/CatString/toString.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.CatString.noSuchMethod","href":"ex/CatString/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"write","qualifiedName":"ex.CatString.write","href":"ex/CatString/write.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"writeCharCode","qualifiedName":"ex.CatString.writeCharCode","href":"ex/CatString/writeCharCode.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"writeAll","qualifiedName":"ex.CatString.writeAll","href":"ex/CatString/writeAll.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"writeln","qualifiedName":"ex.CatString.writeln","href":"ex/CatString/writeln.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"clear","qualifiedName":"ex.CatString.clear","href":"ex/CatString/clear.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"operator ==","qualifiedName":"ex.CatString.==","href":"ex/CatString/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"ConstantCat","qualifiedName":"ex.ConstantCat","href":"ex/ConstantCat-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"ConstantCat","qualifiedName":"ex.ConstantCat","href":"ex/ConstantCat/ConstantCat.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"isImplemented","qualifiedName":"ex.ConstantCat.isImplemented","href":"ex/ConstantCat/isImplemented.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"name","qualifiedName":"ex.ConstantCat.name","href":"ex/ConstantCat/name.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"hashCode","qualifiedName":"ex.ConstantCat.hashCode","href":"ex/ConstantCat/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.ConstantCat.runtimeType","href":"ex/ConstantCat/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"abstractMethod","qualifiedName":"ex.ConstantCat.abstractMethod","href":"ex/ConstantCat/abstractMethod.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"toString","qualifiedName":"ex.ConstantCat.toString","href":"ex/ConstantCat/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.ConstantCat.noSuchMethod","href":"ex/ConstantCat/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"operator ==","qualifiedName":"ex.ConstantCat.==","href":"ex/ConstantCat/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"Cool","qualifiedName":"ex.Cool","href":"ex/Cool-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"Cool","qualifiedName":"ex.Cool","href":"ex/Cool/Cool.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Cool","type":"class"}},{"name":"hashCode","qualifiedName":"ex.Cool.hashCode","href":"ex/Cool/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Cool","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.Cool.runtimeType","href":"ex/Cool/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Cool","type":"class"}},{"name":"returnCool","qualifiedName":"ex.Cool.returnCool","href":"ex/Cool/returnCool.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Cool","type":"class"}},{"name":"toString","qualifiedName":"ex.Cool.toString","href":"ex/Cool/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Cool","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.Cool.noSuchMethod","href":"ex/Cool/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Cool","type":"class"}},{"name":"operator ==","qualifiedName":"ex.Cool.==","href":"ex/Cool/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Cool","type":"class"}},{"name":"Deprecated","qualifiedName":"ex.Deprecated","href":"ex/Deprecated-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"Deprecated","qualifiedName":"ex.Deprecated","href":"ex/Deprecated/Deprecated.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"expires","qualifiedName":"ex.Deprecated.expires","href":"ex/Deprecated/expires.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"hashCode","qualifiedName":"ex.Deprecated.hashCode","href":"ex/Deprecated/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.Deprecated.runtimeType","href":"ex/Deprecated/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"toString","qualifiedName":"ex.Deprecated.toString","href":"ex/Deprecated/toString.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.Deprecated.noSuchMethod","href":"ex/Deprecated/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"operator ==","qualifiedName":"ex.Deprecated.==","href":"ex/Deprecated/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"Dog","qualifiedName":"ex.Dog","href":"ex/Dog-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"Dog","qualifiedName":"ex.Dog","href":"ex/Dog/Dog.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"Dog.deprecatedCreate","qualifiedName":"ex.Dog.deprecatedCreate","href":"ex/Dog/Dog.deprecatedCreate.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"deprecatedField","qualifiedName":"ex.Dog.deprecatedField","href":"ex/Dog/deprecatedField.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"deprecatedGetter","qualifiedName":"ex.Dog.deprecatedGetter","href":"ex/Dog/deprecatedGetter.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"deprecatedSetter","qualifiedName":"ex.Dog.deprecatedSetter","href":"ex/Dog/deprecatedSetter.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"isImplemented","qualifiedName":"ex.Dog.isImplemented","href":"ex/Dog/isImplemented.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"name","qualifiedName":"ex.Dog.name","href":"ex/Dog/name.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"hashCode","qualifiedName":"ex.Dog.hashCode","href":"ex/Dog/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.Dog.runtimeType","href":"ex/Dog/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"abstractMethod","qualifiedName":"ex.Dog.abstractMethod","href":"ex/Dog/abstractMethod.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"foo","qualifiedName":"ex.Dog.foo","href":"ex/Dog/foo.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"getClassA","qualifiedName":"ex.Dog.getClassA","href":"ex/Dog/getClassA.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"testGeneric","qualifiedName":"ex.Dog.testGeneric","href":"ex/Dog/testGeneric.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"testGenericMethod","qualifiedName":"ex.Dog.testGenericMethod","href":"ex/Dog/testGenericMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"testMethod","qualifiedName":"ex.Dog.testMethod","href":"ex/Dog/testMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"toString","qualifiedName":"ex.Dog.toString","href":"ex/Dog/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.Dog.noSuchMethod","href":"ex/Dog/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"operator ==","qualifiedName":"ex.Dog.==","href":"ex/Dog/operator_equals.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"createDog","qualifiedName":"ex.Dog.createDog","href":"ex/Dog/createDog.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"E","qualifiedName":"ex.E","href":"ex/E-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"E","qualifiedName":"ex.E","href":"ex/E/E.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"E","type":"class"}},{"name":"hashCode","qualifiedName":"ex.E.hashCode","href":"ex/E/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"E","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.E.runtimeType","href":"ex/E/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"E","type":"class"}},{"name":"toString","qualifiedName":"ex.E.toString","href":"ex/E/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"E","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.E.noSuchMethod","href":"ex/E/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"E","type":"class"}},{"name":"operator ==","qualifiedName":"ex.E.==","href":"ex/E/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"E","type":"class"}},{"name":"F","qualifiedName":"ex.F","href":"ex/F-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"F","qualifiedName":"ex.F","href":"ex/F/F.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"F","type":"class"}},{"name":"hashCode","qualifiedName":"ex.F.hashCode","href":"ex/F/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"F","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.F.runtimeType","href":"ex/F/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"F","type":"class"}},{"name":"methodWithGenericParam","qualifiedName":"ex.F.methodWithGenericParam","href":"ex/F/methodWithGenericParam.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"F","type":"class"}},{"name":"toString","qualifiedName":"ex.F.toString","href":"ex/F/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"F","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.F.noSuchMethod","href":"ex/F/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"F","type":"class"}},{"name":"test","qualifiedName":"ex.F.test","href":"ex/F/test.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"F","type":"class"}},{"name":"ForAnnotation","qualifiedName":"ex.ForAnnotation","href":"ex/ForAnnotation-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"ForAnnotation","qualifiedName":"ex.ForAnnotation","href":"ex/ForAnnotation/ForAnnotation.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"value","qualifiedName":"ex.ForAnnotation.value","href":"ex/ForAnnotation/value.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"hashCode","qualifiedName":"ex.ForAnnotation.hashCode","href":"ex/ForAnnotation/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.ForAnnotation.runtimeType","href":"ex/ForAnnotation/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"toString","qualifiedName":"ex.ForAnnotation.toString","href":"ex/ForAnnotation/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.ForAnnotation.noSuchMethod","href":"ex/ForAnnotation/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"operator ==","qualifiedName":"ex.ForAnnotation.==","href":"ex/ForAnnotation/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"HasAnnotation","qualifiedName":"ex.HasAnnotation","href":"ex/HasAnnotation-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"HasAnnotation","qualifiedName":"ex.HasAnnotation","href":"ex/HasAnnotation/HasAnnotation.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"HasAnnotation","type":"class"}},{"name":"hashCode","qualifiedName":"ex.HasAnnotation.hashCode","href":"ex/HasAnnotation/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"HasAnnotation","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.HasAnnotation.runtimeType","href":"ex/HasAnnotation/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"HasAnnotation","type":"class"}},{"name":"toString","qualifiedName":"ex.HasAnnotation.toString","href":"ex/HasAnnotation/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"HasAnnotation","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.HasAnnotation.noSuchMethod","href":"ex/HasAnnotation/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"HasAnnotation","type":"class"}},{"name":"operator ==","qualifiedName":"ex.HasAnnotation.==","href":"ex/HasAnnotation/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"HasAnnotation","type":"class"}},{"name":"Helper","qualifiedName":"ex.Helper","href":"ex/Helper-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"Helper","qualifiedName":"ex.Helper","href":"ex/Helper/Helper.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Helper","type":"class"}},{"name":"hashCode","qualifiedName":"ex.Helper.hashCode","href":"ex/Helper/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Helper","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.Helper.runtimeType","href":"ex/Helper/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Helper","type":"class"}},{"name":"getContents","qualifiedName":"ex.Helper.getContents","href":"ex/Helper/getContents.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Helper","type":"class"}},{"name":"toString","qualifiedName":"ex.Helper.toString","href":"ex/Helper/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Helper","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.Helper.noSuchMethod","href":"ex/Helper/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Helper","type":"class"}},{"name":"operator ==","qualifiedName":"ex.Helper.==","href":"ex/Helper/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Helper","type":"class"}},{"name":"Klass","qualifiedName":"ex.Klass","href":"ex/Klass-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"Klass","qualifiedName":"ex.Klass","href":"ex/Klass/Klass.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Klass","type":"class"}},{"name":"hashCode","qualifiedName":"ex.Klass.hashCode","href":"ex/Klass/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Klass","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.Klass.runtimeType","href":"ex/Klass/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Klass","type":"class"}},{"name":"another","qualifiedName":"ex.Klass.another","href":"ex/Klass/another.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Klass","type":"class"}},{"name":"method","qualifiedName":"ex.Klass.method","href":"ex/Klass/method.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Klass","type":"class"}},{"name":"toString","qualifiedName":"ex.Klass.toString","href":"ex/Klass/toString.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"Klass","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.Klass.noSuchMethod","href":"ex/Klass/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Klass","type":"class"}},{"name":"operator ==","qualifiedName":"ex.Klass.==","href":"ex/Klass/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Klass","type":"class"}},{"name":"MyError","qualifiedName":"ex.MyError","href":"ex/MyError-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"MyError","qualifiedName":"ex.MyError","href":"ex/MyError/MyError.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"MyError","type":"class"}},{"name":"hashCode","qualifiedName":"ex.MyError.hashCode","href":"ex/MyError/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"MyError","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.MyError.runtimeType","href":"ex/MyError/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"MyError","type":"class"}},{"name":"stackTrace","qualifiedName":"ex.MyError.stackTrace","href":"ex/MyError/stackTrace.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"MyError","type":"class"}},{"name":"toString","qualifiedName":"ex.MyError.toString","href":"ex/MyError/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MyError","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.MyError.noSuchMethod","href":"ex/MyError/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MyError","type":"class"}},{"name":"operator ==","qualifiedName":"ex.MyError.==","href":"ex/MyError/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MyError","type":"class"}},{"name":"MyErrorImplements","qualifiedName":"ex.MyErrorImplements","href":"ex/MyErrorImplements-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"MyErrorImplements","qualifiedName":"ex.MyErrorImplements","href":"ex/MyErrorImplements/MyErrorImplements.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"stackTrace","qualifiedName":"ex.MyErrorImplements.stackTrace","href":"ex/MyErrorImplements/stackTrace.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"hashCode","qualifiedName":"ex.MyErrorImplements.hashCode","href":"ex/MyErrorImplements/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.MyErrorImplements.runtimeType","href":"ex/MyErrorImplements/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"toString","qualifiedName":"ex.MyErrorImplements.toString","href":"ex/MyErrorImplements/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.MyErrorImplements.noSuchMethod","href":"ex/MyErrorImplements/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"operator ==","qualifiedName":"ex.MyErrorImplements.==","href":"ex/MyErrorImplements/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"MyException","qualifiedName":"ex.MyException","href":"ex/MyException-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"MyException","qualifiedName":"ex.MyException","href":"ex/MyException/MyException.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"MyException","type":"class"}},{"name":"hashCode","qualifiedName":"ex.MyException.hashCode","href":"ex/MyException/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"MyException","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.MyException.runtimeType","href":"ex/MyException/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"MyException","type":"class"}},{"name":"toString","qualifiedName":"ex.MyException.toString","href":"ex/MyException/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MyException","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.MyException.noSuchMethod","href":"ex/MyException/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MyException","type":"class"}},{"name":"operator ==","qualifiedName":"ex.MyException.==","href":"ex/MyException/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MyException","type":"class"}},{"name":"MyExceptionImplements","qualifiedName":"ex.MyExceptionImplements","href":"ex/MyExceptionImplements-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"MyExceptionImplements","qualifiedName":"ex.MyExceptionImplements","href":"ex/MyExceptionImplements/MyExceptionImplements.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"MyExceptionImplements","type":"class"}},{"name":"hashCode","qualifiedName":"ex.MyExceptionImplements.hashCode","href":"ex/MyExceptionImplements/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"MyExceptionImplements","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.MyExceptionImplements.runtimeType","href":"ex/MyExceptionImplements/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"MyExceptionImplements","type":"class"}},{"name":"toString","qualifiedName":"ex.MyExceptionImplements.toString","href":"ex/MyExceptionImplements/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MyExceptionImplements","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.MyExceptionImplements.noSuchMethod","href":"ex/MyExceptionImplements/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MyExceptionImplements","type":"class"}},{"name":"operator ==","qualifiedName":"ex.MyExceptionImplements.==","href":"ex/MyExceptionImplements/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MyExceptionImplements","type":"class"}},{"name":"PublicClassExtendsPrivateClass","qualifiedName":"ex.PublicClassExtendsPrivateClass","href":"ex/PublicClassExtendsPrivateClass-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"PublicClassExtendsPrivateClass","qualifiedName":"ex.PublicClassExtendsPrivateClass","href":"ex/PublicClassExtendsPrivateClass/PublicClassExtendsPrivateClass.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"hashCode","qualifiedName":"ex.PublicClassExtendsPrivateClass.hashCode","href":"ex/PublicClassExtendsPrivateClass/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.PublicClassExtendsPrivateClass.runtimeType","href":"ex/PublicClassExtendsPrivateClass/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"toString","qualifiedName":"ex.PublicClassExtendsPrivateClass.toString","href":"ex/PublicClassExtendsPrivateClass/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.PublicClassExtendsPrivateClass.noSuchMethod","href":"ex/PublicClassExtendsPrivateClass/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"test","qualifiedName":"ex.PublicClassExtendsPrivateClass.test","href":"ex/PublicClassExtendsPrivateClass/test.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"operator ==","qualifiedName":"ex.PublicClassExtendsPrivateClass.==","href":"ex/PublicClassExtendsPrivateClass/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"PublicClassImplementsPrivateInterface","qualifiedName":"ex.PublicClassImplementsPrivateInterface","href":"ex/PublicClassImplementsPrivateInterface-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"PublicClassImplementsPrivateInterface","qualifiedName":"ex.PublicClassImplementsPrivateInterface","href":"ex/PublicClassImplementsPrivateInterface/PublicClassImplementsPrivateInterface.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"hashCode","qualifiedName":"ex.PublicClassImplementsPrivateInterface.hashCode","href":"ex/PublicClassImplementsPrivateInterface/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.PublicClassImplementsPrivateInterface.runtimeType","href":"ex/PublicClassImplementsPrivateInterface/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"test","qualifiedName":"ex.PublicClassImplementsPrivateInterface.test","href":"ex/PublicClassImplementsPrivateInterface/test.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"toString","qualifiedName":"ex.PublicClassImplementsPrivateInterface.toString","href":"ex/PublicClassImplementsPrivateInterface/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.PublicClassImplementsPrivateInterface.noSuchMethod","href":"ex/PublicClassImplementsPrivateInterface/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"operator ==","qualifiedName":"ex.PublicClassImplementsPrivateInterface.==","href":"ex/PublicClassImplementsPrivateInterface/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"ShapeType","qualifiedName":"ex.ShapeType","href":"ex/ShapeType-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"ellipse","qualifiedName":"ex.ShapeType.ellipse","href":"ex/ShapeType/ellipse-constant.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"rect","qualifiedName":"ex.ShapeType.rect","href":"ex/ShapeType/rect-constant.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"hashCode","qualifiedName":"ex.ShapeType.hashCode","href":"ex/ShapeType/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.ShapeType.runtimeType","href":"ex/ShapeType/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"name","qualifiedName":"ex.ShapeType.name","href":"ex/ShapeType/name.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"toString","qualifiedName":"ex.ShapeType.toString","href":"ex/ShapeType/toString.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.ShapeType.noSuchMethod","href":"ex/ShapeType/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"operator ==","qualifiedName":"ex.ShapeType.==","href":"ex/ShapeType/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"SpecializedDuration","qualifiedName":"ex.SpecializedDuration","href":"ex/SpecializedDuration-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"SpecializedDuration","qualifiedName":"ex.SpecializedDuration","href":"ex/SpecializedDuration/SpecializedDuration.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"hashCode","qualifiedName":"ex.SpecializedDuration.hashCode","href":"ex/SpecializedDuration/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.SpecializedDuration.runtimeType","href":"ex/SpecializedDuration/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"inDays","qualifiedName":"ex.SpecializedDuration.inDays","href":"ex/SpecializedDuration/inDays.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"inHours","qualifiedName":"ex.SpecializedDuration.inHours","href":"ex/SpecializedDuration/inHours.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"inMinutes","qualifiedName":"ex.SpecializedDuration.inMinutes","href":"ex/SpecializedDuration/inMinutes.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"inSeconds","qualifiedName":"ex.SpecializedDuration.inSeconds","href":"ex/SpecializedDuration/inSeconds.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"inMilliseconds","qualifiedName":"ex.SpecializedDuration.inMilliseconds","href":"ex/SpecializedDuration/inMilliseconds.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"inMicroseconds","qualifiedName":"ex.SpecializedDuration.inMicroseconds","href":"ex/SpecializedDuration/inMicroseconds.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"isNegative","qualifiedName":"ex.SpecializedDuration.isNegative","href":"ex/SpecializedDuration/isNegative.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"toString","qualifiedName":"ex.SpecializedDuration.toString","href":"ex/SpecializedDuration/toString.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.SpecializedDuration.noSuchMethod","href":"ex/SpecializedDuration/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"compareTo","qualifiedName":"ex.SpecializedDuration.compareTo","href":"ex/SpecializedDuration/compareTo.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"abs","qualifiedName":"ex.SpecializedDuration.abs","href":"ex/SpecializedDuration/abs.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator ~/","qualifiedName":"ex.SpecializedDuration.~/","href":"ex/SpecializedDuration/operator_truncate_divide.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator *","qualifiedName":"ex.SpecializedDuration.*","href":"ex/SpecializedDuration/operator_multiply.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator -","qualifiedName":"ex.SpecializedDuration.-","href":"ex/SpecializedDuration/operator_minus.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator <","qualifiedName":"ex.SpecializedDuration.<","href":"ex/SpecializedDuration/operator_less.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator >=","qualifiedName":"ex.SpecializedDuration.>=","href":"ex/SpecializedDuration/operator_greater_equal.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator ==","qualifiedName":"ex.SpecializedDuration.==","href":"ex/SpecializedDuration/operator_equals.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator <=","qualifiedName":"ex.SpecializedDuration.<=","href":"ex/SpecializedDuration/operator_less_equal.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator >","qualifiedName":"ex.SpecializedDuration.>","href":"ex/SpecializedDuration/operator_greater.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator +","qualifiedName":"ex.SpecializedDuration.+","href":"ex/SpecializedDuration/operator_plus.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator unary-","qualifiedName":"ex.SpecializedDuration.unary-","href":"ex/SpecializedDuration/operator_unary_minus.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"WithGeneric","qualifiedName":"ex.WithGeneric","href":"ex/WithGeneric-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"WithGeneric","qualifiedName":"ex.WithGeneric","href":"ex/WithGeneric/WithGeneric.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"WithGeneric","type":"class"}},{"name":"prop","qualifiedName":"ex.WithGeneric.prop","href":"ex/WithGeneric/prop.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"WithGeneric","type":"class"}},{"name":"hashCode","qualifiedName":"ex.WithGeneric.hashCode","href":"ex/WithGeneric/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"WithGeneric","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.WithGeneric.runtimeType","href":"ex/WithGeneric/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"WithGeneric","type":"class"}},{"name":"toString","qualifiedName":"ex.WithGeneric.toString","href":"ex/WithGeneric/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"WithGeneric","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.WithGeneric.noSuchMethod","href":"ex/WithGeneric/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"WithGeneric","type":"class"}},{"name":"operator ==","qualifiedName":"ex.WithGeneric.==","href":"ex/WithGeneric/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"WithGeneric","type":"class"}},{"name":"WithGenericSub","qualifiedName":"ex.WithGenericSub","href":"ex/WithGenericSub-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"WithGenericSub","qualifiedName":"ex.WithGenericSub","href":"ex/WithGenericSub/WithGenericSub.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"WithGenericSub","type":"class"}},{"name":"hashCode","qualifiedName":"ex.WithGenericSub.hashCode","href":"ex/WithGenericSub/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"WithGenericSub","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.WithGenericSub.runtimeType","href":"ex/WithGenericSub/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"WithGenericSub","type":"class"}},{"name":"toString","qualifiedName":"ex.WithGenericSub.toString","href":"ex/WithGenericSub/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"WithGenericSub","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.WithGenericSub.noSuchMethod","href":"ex/WithGenericSub/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"WithGenericSub","type":"class"}},{"name":"operator ==","qualifiedName":"ex.WithGenericSub.==","href":"ex/WithGenericSub/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"WithGenericSub","type":"class"}},{"name":"Animal","qualifiedName":"ex.Animal","href":"ex/Animal-class.html","type":"enum","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"COLOR","qualifiedName":"ex.COLOR","href":"ex/COLOR-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"COLOR_GREEN","qualifiedName":"ex.COLOR_GREEN","href":"ex/COLOR_GREEN-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"COLOR_ORANGE","qualifiedName":"ex.COLOR_ORANGE","href":"ex/COLOR_ORANGE-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"COMPLEX_COLOR","qualifiedName":"ex.COMPLEX_COLOR","href":"ex/COMPLEX_COLOR-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"deprecated","qualifiedName":"ex.deprecated","href":"ex/deprecated-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"incorrectDocReference","qualifiedName":"ex.incorrectDocReference","href":"ex/incorrectDocReference-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"incorrectDocReferenceFromEx","qualifiedName":"ex.incorrectDocReferenceFromEx","href":"ex/incorrectDocReferenceFromEx-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"MY_CAT","qualifiedName":"ex.MY_CAT","href":"ex/MY_CAT-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"PRETTY_COLORS","qualifiedName":"ex.PRETTY_COLORS","href":"ex/PRETTY_COLORS-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"deprecatedField","qualifiedName":"ex.deprecatedField","href":"ex/deprecatedField.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"deprecatedGetter","qualifiedName":"ex.deprecatedGetter","href":"ex/deprecatedGetter.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"deprecatedSetter","qualifiedName":"ex.deprecatedSetter","href":"ex/deprecatedSetter.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"number","qualifiedName":"ex.number","href":"ex/number.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"y","qualifiedName":"ex.y","href":"ex/y.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"function1","qualifiedName":"ex.function1","href":"ex/function1.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"genericFunction","qualifiedName":"ex.genericFunction","href":"ex/genericFunction.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"processMessage","qualifiedName":"ex.processMessage","href":"ex/processMessage.html","type":"typedef","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"fake","qualifiedName":"fake","href":"fake/fake-library.html","type":"library","overriddenDepth":0},{"name":"Annotation","qualifiedName":"fake.Annotation","href":"fake/Annotation-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"Annotation","qualifiedName":"fake.Annotation","href":"fake/Annotation/Annotation.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Annotation","type":"class"}},{"name":"value","qualifiedName":"fake.Annotation.value","href":"fake/Annotation/value.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Annotation","type":"class"}},{"name":"hashCode","qualifiedName":"fake.Annotation.hashCode","href":"fake/Annotation/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Annotation","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.Annotation.runtimeType","href":"fake/Annotation/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Annotation","type":"class"}},{"name":"toString","qualifiedName":"fake.Annotation.toString","href":"fake/Annotation/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Annotation","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.Annotation.noSuchMethod","href":"fake/Annotation/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Annotation","type":"class"}},{"name":"operator ==","qualifiedName":"fake.Annotation.==","href":"fake/Annotation/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Annotation","type":"class"}},{"name":"AnotherInterface","qualifiedName":"fake.AnotherInterface","href":"fake/AnotherInterface-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"AnotherInterface","qualifiedName":"fake.AnotherInterface","href":"fake/AnotherInterface/AnotherInterface.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"AnotherInterface","type":"class"}},{"name":"hashCode","qualifiedName":"fake.AnotherInterface.hashCode","href":"fake/AnotherInterface/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"AnotherInterface","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.AnotherInterface.runtimeType","href":"fake/AnotherInterface/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"AnotherInterface","type":"class"}},{"name":"toString","qualifiedName":"fake.AnotherInterface.toString","href":"fake/AnotherInterface/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"AnotherInterface","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.AnotherInterface.noSuchMethod","href":"fake/AnotherInterface/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"AnotherInterface","type":"class"}},{"name":"operator ==","qualifiedName":"fake.AnotherInterface.==","href":"fake/AnotherInterface/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"AnotherInterface","type":"class"}},{"name":"BaseForDocComments","qualifiedName":"fake.BaseForDocComments","href":"fake/BaseForDocComments-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"BaseForDocComments","qualifiedName":"fake.BaseForDocComments","href":"fake/BaseForDocComments/BaseForDocComments.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"hashCode","qualifiedName":"fake.BaseForDocComments.hashCode","href":"fake/BaseForDocComments/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.BaseForDocComments.runtimeType","href":"fake/BaseForDocComments/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"anotherMethod","qualifiedName":"fake.BaseForDocComments.anotherMethod","href":"fake/BaseForDocComments/anotherMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"doAwesomeStuff","qualifiedName":"fake.BaseForDocComments.doAwesomeStuff","href":"fake/BaseForDocComments/doAwesomeStuff.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"toString","qualifiedName":"fake.BaseForDocComments.toString","href":"fake/BaseForDocComments/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.BaseForDocComments.noSuchMethod","href":"fake/BaseForDocComments/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"operator ==","qualifiedName":"fake.BaseForDocComments.==","href":"fake/BaseForDocComments/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"ConstantClass","qualifiedName":"fake.ConstantClass","href":"fake/ConstantClass-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"ConstantClass","qualifiedName":"fake.ConstantClass","href":"fake/ConstantClass/ConstantClass.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"ConstantClass.isVeryConstant","qualifiedName":"fake.ConstantClass.isVeryConstant","href":"fake/ConstantClass/ConstantClass.isVeryConstant.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"ConstantClass.notConstant","qualifiedName":"fake.ConstantClass.notConstant","href":"fake/ConstantClass/ConstantClass.notConstant.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"value","qualifiedName":"fake.ConstantClass.value","href":"fake/ConstantClass/value.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"hashCode","qualifiedName":"fake.ConstantClass.hashCode","href":"fake/ConstantClass/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.ConstantClass.runtimeType","href":"fake/ConstantClass/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"toString","qualifiedName":"fake.ConstantClass.toString","href":"fake/ConstantClass/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.ConstantClass.noSuchMethod","href":"fake/ConstantClass/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"operator ==","qualifiedName":"fake.ConstantClass.==","href":"fake/ConstantClass/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"Cool","qualifiedName":"fake.Cool","href":"fake/Cool-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"Cool","qualifiedName":"fake.Cool","href":"fake/Cool/Cool.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Cool","type":"class"}},{"name":"hashCode","qualifiedName":"fake.Cool.hashCode","href":"fake/Cool/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Cool","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.Cool.runtimeType","href":"fake/Cool/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Cool","type":"class"}},{"name":"returnCool","qualifiedName":"fake.Cool.returnCool","href":"fake/Cool/returnCool.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Cool","type":"class"}},{"name":"toString","qualifiedName":"fake.Cool.toString","href":"fake/Cool/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Cool","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.Cool.noSuchMethod","href":"fake/Cool/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Cool","type":"class"}},{"name":"operator ==","qualifiedName":"fake.Cool.==","href":"fake/Cool/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Cool","type":"class"}},{"name":"Doh","qualifiedName":"fake.Doh","href":"fake/Doh-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"Doh","qualifiedName":"fake.Doh","href":"fake/Doh/Doh.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Doh","type":"class"}},{"name":"hashCode","qualifiedName":"fake.Doh.hashCode","href":"fake/Doh/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Doh","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.Doh.runtimeType","href":"fake/Doh/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Doh","type":"class"}},{"name":"stackTrace","qualifiedName":"fake.Doh.stackTrace","href":"fake/Doh/stackTrace.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Doh","type":"class"}},{"name":"toString","qualifiedName":"fake.Doh.toString","href":"fake/Doh/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Doh","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.Doh.noSuchMethod","href":"fake/Doh/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Doh","type":"class"}},{"name":"operator ==","qualifiedName":"fake.Doh.==","href":"fake/Doh/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Doh","type":"class"}},{"name":"ExtraSpecialList","qualifiedName":"fake.ExtraSpecialList","href":"fake/ExtraSpecialList-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"ExtraSpecialList","qualifiedName":"fake.ExtraSpecialList","href":"fake/ExtraSpecialList/ExtraSpecialList.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"hashCode","qualifiedName":"fake.ExtraSpecialList.hashCode","href":"fake/ExtraSpecialList/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.ExtraSpecialList.runtimeType","href":"fake/ExtraSpecialList/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"iterator","qualifiedName":"fake.ExtraSpecialList.iterator","href":"fake/ExtraSpecialList/iterator.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"isEmpty","qualifiedName":"fake.ExtraSpecialList.isEmpty","href":"fake/ExtraSpecialList/isEmpty.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"isNotEmpty","qualifiedName":"fake.ExtraSpecialList.isNotEmpty","href":"fake/ExtraSpecialList/isNotEmpty.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"first","qualifiedName":"fake.ExtraSpecialList.first","href":"fake/ExtraSpecialList/first.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"last","qualifiedName":"fake.ExtraSpecialList.last","href":"fake/ExtraSpecialList/last.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"single","qualifiedName":"fake.ExtraSpecialList.single","href":"fake/ExtraSpecialList/single.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"reversed","qualifiedName":"fake.ExtraSpecialList.reversed","href":"fake/ExtraSpecialList/reversed.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"toString","qualifiedName":"fake.ExtraSpecialList.toString","href":"fake/ExtraSpecialList/toString.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.ExtraSpecialList.noSuchMethod","href":"fake/ExtraSpecialList/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"elementAt","qualifiedName":"fake.ExtraSpecialList.elementAt","href":"fake/ExtraSpecialList/elementAt.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"forEach","qualifiedName":"fake.ExtraSpecialList.forEach","href":"fake/ExtraSpecialList/forEach.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"contains","qualifiedName":"fake.ExtraSpecialList.contains","href":"fake/ExtraSpecialList/contains.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"every","qualifiedName":"fake.ExtraSpecialList.every","href":"fake/ExtraSpecialList/every.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"any","qualifiedName":"fake.ExtraSpecialList.any","href":"fake/ExtraSpecialList/any.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"firstWhere","qualifiedName":"fake.ExtraSpecialList.firstWhere","href":"fake/ExtraSpecialList/firstWhere.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"lastWhere","qualifiedName":"fake.ExtraSpecialList.lastWhere","href":"fake/ExtraSpecialList/lastWhere.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"singleWhere","qualifiedName":"fake.ExtraSpecialList.singleWhere","href":"fake/ExtraSpecialList/singleWhere.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"join","qualifiedName":"fake.ExtraSpecialList.join","href":"fake/ExtraSpecialList/join.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"where","qualifiedName":"fake.ExtraSpecialList.where","href":"fake/ExtraSpecialList/where.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"map","qualifiedName":"fake.ExtraSpecialList.map","href":"fake/ExtraSpecialList/map.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"expand","qualifiedName":"fake.ExtraSpecialList.expand","href":"fake/ExtraSpecialList/expand.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"reduce","qualifiedName":"fake.ExtraSpecialList.reduce","href":"fake/ExtraSpecialList/reduce.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"fold","qualifiedName":"fake.ExtraSpecialList.fold","href":"fake/ExtraSpecialList/fold.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"skip","qualifiedName":"fake.ExtraSpecialList.skip","href":"fake/ExtraSpecialList/skip.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"skipWhile","qualifiedName":"fake.ExtraSpecialList.skipWhile","href":"fake/ExtraSpecialList/skipWhile.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"take","qualifiedName":"fake.ExtraSpecialList.take","href":"fake/ExtraSpecialList/take.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"takeWhile","qualifiedName":"fake.ExtraSpecialList.takeWhile","href":"fake/ExtraSpecialList/takeWhile.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"toList","qualifiedName":"fake.ExtraSpecialList.toList","href":"fake/ExtraSpecialList/toList.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"toSet","qualifiedName":"fake.ExtraSpecialList.toSet","href":"fake/ExtraSpecialList/toSet.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"add","qualifiedName":"fake.ExtraSpecialList.add","href":"fake/ExtraSpecialList/add.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"addAll","qualifiedName":"fake.ExtraSpecialList.addAll","href":"fake/ExtraSpecialList/addAll.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"remove","qualifiedName":"fake.ExtraSpecialList.remove","href":"fake/ExtraSpecialList/remove.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"removeWhere","qualifiedName":"fake.ExtraSpecialList.removeWhere","href":"fake/ExtraSpecialList/removeWhere.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"retainWhere","qualifiedName":"fake.ExtraSpecialList.retainWhere","href":"fake/ExtraSpecialList/retainWhere.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"clear","qualifiedName":"fake.ExtraSpecialList.clear","href":"fake/ExtraSpecialList/clear.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"removeLast","qualifiedName":"fake.ExtraSpecialList.removeLast","href":"fake/ExtraSpecialList/removeLast.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"sort","qualifiedName":"fake.ExtraSpecialList.sort","href":"fake/ExtraSpecialList/sort.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"shuffle","qualifiedName":"fake.ExtraSpecialList.shuffle","href":"fake/ExtraSpecialList/shuffle.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"asMap","qualifiedName":"fake.ExtraSpecialList.asMap","href":"fake/ExtraSpecialList/asMap.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"sublist","qualifiedName":"fake.ExtraSpecialList.sublist","href":"fake/ExtraSpecialList/sublist.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"getRange","qualifiedName":"fake.ExtraSpecialList.getRange","href":"fake/ExtraSpecialList/getRange.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"removeRange","qualifiedName":"fake.ExtraSpecialList.removeRange","href":"fake/ExtraSpecialList/removeRange.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"fillRange","qualifiedName":"fake.ExtraSpecialList.fillRange","href":"fake/ExtraSpecialList/fillRange.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"setRange","qualifiedName":"fake.ExtraSpecialList.setRange","href":"fake/ExtraSpecialList/setRange.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"replaceRange","qualifiedName":"fake.ExtraSpecialList.replaceRange","href":"fake/ExtraSpecialList/replaceRange.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"indexOf","qualifiedName":"fake.ExtraSpecialList.indexOf","href":"fake/ExtraSpecialList/indexOf.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"lastIndexOf","qualifiedName":"fake.ExtraSpecialList.lastIndexOf","href":"fake/ExtraSpecialList/lastIndexOf.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"insert","qualifiedName":"fake.ExtraSpecialList.insert","href":"fake/ExtraSpecialList/insert.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"removeAt","qualifiedName":"fake.ExtraSpecialList.removeAt","href":"fake/ExtraSpecialList/removeAt.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"insertAll","qualifiedName":"fake.ExtraSpecialList.insertAll","href":"fake/ExtraSpecialList/insertAll.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"setAll","qualifiedName":"fake.ExtraSpecialList.setAll","href":"fake/ExtraSpecialList/setAll.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"operator ==","qualifiedName":"fake.ExtraSpecialList.==","href":"fake/ExtraSpecialList/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"Foo2","qualifiedName":"fake.Foo2","href":"fake/Foo2-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"Foo2","qualifiedName":"fake.Foo2","href":"fake/Foo2/Foo2.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Foo2","type":"class"}},{"name":"BAR","qualifiedName":"fake.Foo2.BAR","href":"fake/Foo2/BAR-constant.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Foo2","type":"class"}},{"name":"BAZ","qualifiedName":"fake.Foo2.BAZ","href":"fake/Foo2/BAZ-constant.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Foo2","type":"class"}},{"name":"index","qualifiedName":"fake.Foo2.index","href":"fake/Foo2/index.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Foo2","type":"class"}},{"name":"hashCode","qualifiedName":"fake.Foo2.hashCode","href":"fake/Foo2/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Foo2","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.Foo2.runtimeType","href":"fake/Foo2/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Foo2","type":"class"}},{"name":"toString","qualifiedName":"fake.Foo2.toString","href":"fake/Foo2/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Foo2","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.Foo2.noSuchMethod","href":"fake/Foo2/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Foo2","type":"class"}},{"name":"operator ==","qualifiedName":"fake.Foo2.==","href":"fake/Foo2/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Foo2","type":"class"}},{"name":"HasGenerics","qualifiedName":"fake.HasGenerics","href":"fake/HasGenerics-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"HasGenerics","qualifiedName":"fake.HasGenerics","href":"fake/HasGenerics/HasGenerics.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"hashCode","qualifiedName":"fake.HasGenerics.hashCode","href":"fake/HasGenerics/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.HasGenerics.runtimeType","href":"fake/HasGenerics/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"convertToMap","qualifiedName":"fake.HasGenerics.convertToMap","href":"fake/HasGenerics/convertToMap.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"doStuff","qualifiedName":"fake.HasGenerics.doStuff","href":"fake/HasGenerics/doStuff.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"returnX","qualifiedName":"fake.HasGenerics.returnX","href":"fake/HasGenerics/returnX.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"returnZ","qualifiedName":"fake.HasGenerics.returnZ","href":"fake/HasGenerics/returnZ.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"toString","qualifiedName":"fake.HasGenerics.toString","href":"fake/HasGenerics/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.HasGenerics.noSuchMethod","href":"fake/HasGenerics/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"operator ==","qualifiedName":"fake.HasGenerics.==","href":"fake/HasGenerics/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"HasGenericWithExtends","qualifiedName":"fake.HasGenericWithExtends","href":"fake/HasGenericWithExtends-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"HasGenericWithExtends","qualifiedName":"fake.HasGenericWithExtends","href":"fake/HasGenericWithExtends/HasGenericWithExtends.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"HasGenericWithExtends","type":"class"}},{"name":"hashCode","qualifiedName":"fake.HasGenericWithExtends.hashCode","href":"fake/HasGenericWithExtends/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"HasGenericWithExtends","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.HasGenericWithExtends.runtimeType","href":"fake/HasGenericWithExtends/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"HasGenericWithExtends","type":"class"}},{"name":"toString","qualifiedName":"fake.HasGenericWithExtends.toString","href":"fake/HasGenericWithExtends/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"HasGenericWithExtends","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.HasGenericWithExtends.noSuchMethod","href":"fake/HasGenericWithExtends/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"HasGenericWithExtends","type":"class"}},{"name":"operator ==","qualifiedName":"fake.HasGenericWithExtends.==","href":"fake/HasGenericWithExtends/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"HasGenericWithExtends","type":"class"}},{"name":"Interface","qualifiedName":"fake.Interface","href":"fake/Interface-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"Interface","qualifiedName":"fake.Interface","href":"fake/Interface/Interface.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Interface","type":"class"}},{"name":"hashCode","qualifiedName":"fake.Interface.hashCode","href":"fake/Interface/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Interface","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.Interface.runtimeType","href":"fake/Interface/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Interface","type":"class"}},{"name":"toString","qualifiedName":"fake.Interface.toString","href":"fake/Interface/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Interface","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.Interface.noSuchMethod","href":"fake/Interface/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Interface","type":"class"}},{"name":"operator ==","qualifiedName":"fake.Interface.==","href":"fake/Interface/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Interface","type":"class"}},{"name":"LongFirstLine","qualifiedName":"fake.LongFirstLine","href":"fake/LongFirstLine-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"LongFirstLine","qualifiedName":"fake.LongFirstLine","href":"fake/LongFirstLine/LongFirstLine.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"LongFirstLine.fromHasGenerics","qualifiedName":"fake.LongFirstLine.fromHasGenerics","href":"fake/LongFirstLine/LongFirstLine.fromHasGenerics.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"LongFirstLine.fromMap","qualifiedName":"fake.LongFirstLine.fromMap","href":"fake/LongFirstLine/LongFirstLine.fromMap.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"ANSWER","qualifiedName":"fake.LongFirstLine.ANSWER","href":"fake/LongFirstLine/ANSWER-constant.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"THING","qualifiedName":"fake.LongFirstLine.THING","href":"fake/LongFirstLine/THING-constant.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"meaningOfLife","qualifiedName":"fake.LongFirstLine.meaningOfLife","href":"fake/LongFirstLine/meaningOfLife.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"staticGetter","qualifiedName":"fake.LongFirstLine.staticGetter","href":"fake/LongFirstLine/staticGetter.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"staticOnlySetter","qualifiedName":"fake.LongFirstLine.staticOnlySetter","href":"fake/LongFirstLine/staticOnlySetter.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"aStringProperty","qualifiedName":"fake.LongFirstLine.aStringProperty","href":"fake/LongFirstLine/aStringProperty.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"dynamicGetter","qualifiedName":"fake.LongFirstLine.dynamicGetter","href":"fake/LongFirstLine/dynamicGetter.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"onlySetter","qualifiedName":"fake.LongFirstLine.onlySetter","href":"fake/LongFirstLine/onlySetter.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"hashCode","qualifiedName":"fake.LongFirstLine.hashCode","href":"fake/LongFirstLine/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.LongFirstLine.runtimeType","href":"fake/LongFirstLine/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"noParams","qualifiedName":"fake.LongFirstLine.noParams","href":"fake/LongFirstLine/noParams.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"optionalParams","qualifiedName":"fake.LongFirstLine.optionalParams","href":"fake/LongFirstLine/optionalParams.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"returnString","qualifiedName":"fake.LongFirstLine.returnString","href":"fake/LongFirstLine/returnString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"twoParams","qualifiedName":"fake.LongFirstLine.twoParams","href":"fake/LongFirstLine/twoParams.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"toString","qualifiedName":"fake.LongFirstLine.toString","href":"fake/LongFirstLine/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.LongFirstLine.noSuchMethod","href":"fake/LongFirstLine/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"operator *","qualifiedName":"fake.LongFirstLine.*","href":"fake/LongFirstLine/operator_multiply.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"operator +","qualifiedName":"fake.LongFirstLine.+","href":"fake/LongFirstLine/operator_plus.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"operator ==","qualifiedName":"fake.LongFirstLine.==","href":"fake/LongFirstLine/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"staticMethodNoParams","qualifiedName":"fake.LongFirstLine.staticMethodNoParams","href":"fake/LongFirstLine/staticMethodNoParams.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"staticMethodReturnsVoid","qualifiedName":"fake.LongFirstLine.staticMethodReturnsVoid","href":"fake/LongFirstLine/staticMethodReturnsVoid.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"MixMeIn","qualifiedName":"fake.MixMeIn","href":"fake/MixMeIn-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"MixMeIn","qualifiedName":"fake.MixMeIn","href":"fake/MixMeIn/MixMeIn.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"MixMeIn","type":"class"}},{"name":"hashCode","qualifiedName":"fake.MixMeIn.hashCode","href":"fake/MixMeIn/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"MixMeIn","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.MixMeIn.runtimeType","href":"fake/MixMeIn/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"MixMeIn","type":"class"}},{"name":"toString","qualifiedName":"fake.MixMeIn.toString","href":"fake/MixMeIn/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MixMeIn","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.MixMeIn.noSuchMethod","href":"fake/MixMeIn/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MixMeIn","type":"class"}},{"name":"operator ==","qualifiedName":"fake.MixMeIn.==","href":"fake/MixMeIn/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MixMeIn","type":"class"}},{"name":"Oops","qualifiedName":"fake.Oops","href":"fake/Oops-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"Oops","qualifiedName":"fake.Oops","href":"fake/Oops/Oops.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Oops","type":"class"}},{"name":"message","qualifiedName":"fake.Oops.message","href":"fake/Oops/message.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Oops","type":"class"}},{"name":"hashCode","qualifiedName":"fake.Oops.hashCode","href":"fake/Oops/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Oops","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.Oops.runtimeType","href":"fake/Oops/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Oops","type":"class"}},{"name":"toString","qualifiedName":"fake.Oops.toString","href":"fake/Oops/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Oops","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.Oops.noSuchMethod","href":"fake/Oops/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Oops","type":"class"}},{"name":"operator ==","qualifiedName":"fake.Oops.==","href":"fake/Oops/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Oops","type":"class"}},{"name":"OperatorReferenceClass","qualifiedName":"fake.OperatorReferenceClass","href":"fake/OperatorReferenceClass-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"OperatorReferenceClass","qualifiedName":"fake.OperatorReferenceClass","href":"fake/OperatorReferenceClass/OperatorReferenceClass.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"OperatorReferenceClass","type":"class"}},{"name":"hashCode","qualifiedName":"fake.OperatorReferenceClass.hashCode","href":"fake/OperatorReferenceClass/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"OperatorReferenceClass","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.OperatorReferenceClass.runtimeType","href":"fake/OperatorReferenceClass/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"OperatorReferenceClass","type":"class"}},{"name":"toString","qualifiedName":"fake.OperatorReferenceClass.toString","href":"fake/OperatorReferenceClass/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"OperatorReferenceClass","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.OperatorReferenceClass.noSuchMethod","href":"fake/OperatorReferenceClass/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"OperatorReferenceClass","type":"class"}},{"name":"operator ==","qualifiedName":"fake.OperatorReferenceClass.==","href":"fake/OperatorReferenceClass/operator_equals.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"OperatorReferenceClass","type":"class"}},{"name":"OtherGenericsThing","qualifiedName":"fake.OtherGenericsThing","href":"fake/OtherGenericsThing-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"OtherGenericsThing","qualifiedName":"fake.OtherGenericsThing","href":"fake/OtherGenericsThing/OtherGenericsThing.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"hashCode","qualifiedName":"fake.OtherGenericsThing.hashCode","href":"fake/OtherGenericsThing/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.OtherGenericsThing.runtimeType","href":"fake/OtherGenericsThing/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"convert","qualifiedName":"fake.OtherGenericsThing.convert","href":"fake/OtherGenericsThing/convert.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"toString","qualifiedName":"fake.OtherGenericsThing.toString","href":"fake/OtherGenericsThing/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.OtherGenericsThing.noSuchMethod","href":"fake/OtherGenericsThing/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"operator ==","qualifiedName":"fake.OtherGenericsThing.==","href":"fake/OtherGenericsThing/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"SpecialList","qualifiedName":"fake.SpecialList","href":"fake/SpecialList-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"SpecialList","qualifiedName":"fake.SpecialList","href":"fake/SpecialList/SpecialList.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"length","qualifiedName":"fake.SpecialList.length","href":"fake/SpecialList/length.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"hashCode","qualifiedName":"fake.SpecialList.hashCode","href":"fake/SpecialList/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.SpecialList.runtimeType","href":"fake/SpecialList/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"iterator","qualifiedName":"fake.SpecialList.iterator","href":"fake/SpecialList/iterator.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"isEmpty","qualifiedName":"fake.SpecialList.isEmpty","href":"fake/SpecialList/isEmpty.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"isNotEmpty","qualifiedName":"fake.SpecialList.isNotEmpty","href":"fake/SpecialList/isNotEmpty.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"first","qualifiedName":"fake.SpecialList.first","href":"fake/SpecialList/first.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"last","qualifiedName":"fake.SpecialList.last","href":"fake/SpecialList/last.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"single","qualifiedName":"fake.SpecialList.single","href":"fake/SpecialList/single.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"reversed","qualifiedName":"fake.SpecialList.reversed","href":"fake/SpecialList/reversed.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"toString","qualifiedName":"fake.SpecialList.toString","href":"fake/SpecialList/toString.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.SpecialList.noSuchMethod","href":"fake/SpecialList/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"elementAt","qualifiedName":"fake.SpecialList.elementAt","href":"fake/SpecialList/elementAt.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"forEach","qualifiedName":"fake.SpecialList.forEach","href":"fake/SpecialList/forEach.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"contains","qualifiedName":"fake.SpecialList.contains","href":"fake/SpecialList/contains.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"every","qualifiedName":"fake.SpecialList.every","href":"fake/SpecialList/every.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"any","qualifiedName":"fake.SpecialList.any","href":"fake/SpecialList/any.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"firstWhere","qualifiedName":"fake.SpecialList.firstWhere","href":"fake/SpecialList/firstWhere.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"lastWhere","qualifiedName":"fake.SpecialList.lastWhere","href":"fake/SpecialList/lastWhere.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"singleWhere","qualifiedName":"fake.SpecialList.singleWhere","href":"fake/SpecialList/singleWhere.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"join","qualifiedName":"fake.SpecialList.join","href":"fake/SpecialList/join.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"where","qualifiedName":"fake.SpecialList.where","href":"fake/SpecialList/where.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"map","qualifiedName":"fake.SpecialList.map","href":"fake/SpecialList/map.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"expand","qualifiedName":"fake.SpecialList.expand","href":"fake/SpecialList/expand.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"reduce","qualifiedName":"fake.SpecialList.reduce","href":"fake/SpecialList/reduce.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"fold","qualifiedName":"fake.SpecialList.fold","href":"fake/SpecialList/fold.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"skip","qualifiedName":"fake.SpecialList.skip","href":"fake/SpecialList/skip.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"skipWhile","qualifiedName":"fake.SpecialList.skipWhile","href":"fake/SpecialList/skipWhile.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"take","qualifiedName":"fake.SpecialList.take","href":"fake/SpecialList/take.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"takeWhile","qualifiedName":"fake.SpecialList.takeWhile","href":"fake/SpecialList/takeWhile.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"toList","qualifiedName":"fake.SpecialList.toList","href":"fake/SpecialList/toList.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"toSet","qualifiedName":"fake.SpecialList.toSet","href":"fake/SpecialList/toSet.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"add","qualifiedName":"fake.SpecialList.add","href":"fake/SpecialList/add.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"addAll","qualifiedName":"fake.SpecialList.addAll","href":"fake/SpecialList/addAll.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"remove","qualifiedName":"fake.SpecialList.remove","href":"fake/SpecialList/remove.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"removeWhere","qualifiedName":"fake.SpecialList.removeWhere","href":"fake/SpecialList/removeWhere.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"retainWhere","qualifiedName":"fake.SpecialList.retainWhere","href":"fake/SpecialList/retainWhere.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"clear","qualifiedName":"fake.SpecialList.clear","href":"fake/SpecialList/clear.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"removeLast","qualifiedName":"fake.SpecialList.removeLast","href":"fake/SpecialList/removeLast.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"sort","qualifiedName":"fake.SpecialList.sort","href":"fake/SpecialList/sort.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"shuffle","qualifiedName":"fake.SpecialList.shuffle","href":"fake/SpecialList/shuffle.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"asMap","qualifiedName":"fake.SpecialList.asMap","href":"fake/SpecialList/asMap.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"sublist","qualifiedName":"fake.SpecialList.sublist","href":"fake/SpecialList/sublist.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"getRange","qualifiedName":"fake.SpecialList.getRange","href":"fake/SpecialList/getRange.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"removeRange","qualifiedName":"fake.SpecialList.removeRange","href":"fake/SpecialList/removeRange.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"fillRange","qualifiedName":"fake.SpecialList.fillRange","href":"fake/SpecialList/fillRange.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"setRange","qualifiedName":"fake.SpecialList.setRange","href":"fake/SpecialList/setRange.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"replaceRange","qualifiedName":"fake.SpecialList.replaceRange","href":"fake/SpecialList/replaceRange.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"indexOf","qualifiedName":"fake.SpecialList.indexOf","href":"fake/SpecialList/indexOf.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"lastIndexOf","qualifiedName":"fake.SpecialList.lastIndexOf","href":"fake/SpecialList/lastIndexOf.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"insert","qualifiedName":"fake.SpecialList.insert","href":"fake/SpecialList/insert.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"removeAt","qualifiedName":"fake.SpecialList.removeAt","href":"fake/SpecialList/removeAt.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"insertAll","qualifiedName":"fake.SpecialList.insertAll","href":"fake/SpecialList/insertAll.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"setAll","qualifiedName":"fake.SpecialList.setAll","href":"fake/SpecialList/setAll.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"operator []","qualifiedName":"fake.SpecialList.[]","href":"fake/SpecialList/operator_get.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"operator []=","qualifiedName":"fake.SpecialList.[]=","href":"fake/SpecialList/operator_put.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"operator ==","qualifiedName":"fake.SpecialList.==","href":"fake/SpecialList/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"SubForDocComments","qualifiedName":"fake.SubForDocComments","href":"fake/SubForDocComments-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"SubForDocComments","qualifiedName":"fake.SubForDocComments","href":"fake/SubForDocComments/SubForDocComments.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"hashCode","qualifiedName":"fake.SubForDocComments.hashCode","href":"fake/SubForDocComments/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.SubForDocComments.runtimeType","href":"fake/SubForDocComments/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"localMethod","qualifiedName":"fake.SubForDocComments.localMethod","href":"fake/SubForDocComments/localMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"toString","qualifiedName":"fake.SubForDocComments.toString","href":"fake/SubForDocComments/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.SubForDocComments.noSuchMethod","href":"fake/SubForDocComments/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"operator ==","qualifiedName":"fake.SubForDocComments.==","href":"fake/SubForDocComments/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"SuperAwesomeClass","qualifiedName":"fake.SuperAwesomeClass","href":"fake/SuperAwesomeClass-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"SuperAwesomeClass","qualifiedName":"fake.SuperAwesomeClass","href":"fake/SuperAwesomeClass/SuperAwesomeClass.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"powers","qualifiedName":"fake.SuperAwesomeClass.powers","href":"fake/SuperAwesomeClass/powers.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"hashCode","qualifiedName":"fake.SuperAwesomeClass.hashCode","href":"fake/SuperAwesomeClass/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.SuperAwesomeClass.runtimeType","href":"fake/SuperAwesomeClass/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"fly","qualifiedName":"fake.SuperAwesomeClass.fly","href":"fake/SuperAwesomeClass/fly.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"toString","qualifiedName":"fake.SuperAwesomeClass.toString","href":"fake/SuperAwesomeClass/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.SuperAwesomeClass.noSuchMethod","href":"fake/SuperAwesomeClass/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"operator -","qualifiedName":"fake.SuperAwesomeClass.-","href":"fake/SuperAwesomeClass/operator_minus.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"operator ==","qualifiedName":"fake.SuperAwesomeClass.==","href":"fake/SuperAwesomeClass/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"WithGetterAndSetter","qualifiedName":"fake.WithGetterAndSetter","href":"fake/WithGetterAndSetter-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"WithGetterAndSetter","qualifiedName":"fake.WithGetterAndSetter","href":"fake/WithGetterAndSetter/WithGetterAndSetter.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"lengthX","qualifiedName":"fake.WithGetterAndSetter.lengthX","href":"fake/WithGetterAndSetter/lengthX.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"hashCode","qualifiedName":"fake.WithGetterAndSetter.hashCode","href":"fake/WithGetterAndSetter/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.WithGetterAndSetter.runtimeType","href":"fake/WithGetterAndSetter/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"toString","qualifiedName":"fake.WithGetterAndSetter.toString","href":"fake/WithGetterAndSetter/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.WithGetterAndSetter.noSuchMethod","href":"fake/WithGetterAndSetter/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"operator ==","qualifiedName":"fake.WithGetterAndSetter.==","href":"fake/WithGetterAndSetter/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"Color","qualifiedName":"fake.Color","href":"fake/Color-class.html","type":"enum","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"CUSTOM_CLASS","qualifiedName":"fake.CUSTOM_CLASS","href":"fake/CUSTOM_CLASS-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"DOWN","qualifiedName":"fake.DOWN","href":"fake/DOWN-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"greatAnnotation","qualifiedName":"fake.greatAnnotation","href":"fake/greatAnnotation-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"greatestAnnotation","qualifiedName":"fake.greatestAnnotation","href":"fake/greatestAnnotation-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"incorrectDocReference","qualifiedName":"fake.incorrectDocReference","href":"fake/incorrectDocReference-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"NAME_SINGLEUNDERSCORE","qualifiedName":"fake.NAME_SINGLEUNDERSCORE","href":"fake/NAME_SINGLEUNDERSCORE-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"NAME_WITH_TWO_UNDERSCORES","qualifiedName":"fake.NAME_WITH_TWO_UNDERSCORES","href":"fake/NAME_WITH_TWO_UNDERSCORES-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"PI","qualifiedName":"fake.PI","href":"fake/PI-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"required","qualifiedName":"fake.required","href":"fake/required-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"testingCodeSyntaxInOneLiners","qualifiedName":"fake.testingCodeSyntaxInOneLiners","href":"fake/testingCodeSyntaxInOneLiners-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"UP","qualifiedName":"fake.UP","href":"fake/UP-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"ZERO","qualifiedName":"fake.ZERO","href":"fake/ZERO-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"dynamicGetter","qualifiedName":"fake.dynamicGetter","href":"fake/dynamicGetter.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"justGetter","qualifiedName":"fake.justGetter","href":"fake/justGetter.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"justSetter","qualifiedName":"fake.justSetter","href":"fake/justSetter.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"mapWithDynamicKeys","qualifiedName":"fake.mapWithDynamicKeys","href":"fake/mapWithDynamicKeys.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"meaningOfLife","qualifiedName":"fake.meaningOfLife","href":"fake/meaningOfLife.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"setAndGet","qualifiedName":"fake.setAndGet","href":"fake/setAndGet.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"simpleProperty","qualifiedName":"fake.simpleProperty","href":"fake/simpleProperty.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"addCallback","qualifiedName":"fake.addCallback","href":"fake/addCallback.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"addCallback2","qualifiedName":"fake.addCallback2","href":"fake/addCallback2.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"functionWithFunctionParameters","qualifiedName":"fake.functionWithFunctionParameters","href":"fake/functionWithFunctionParameters.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"onlyPositionalWithNoDefaultNoType","qualifiedName":"fake.onlyPositionalWithNoDefaultNoType","href":"fake/onlyPositionalWithNoDefaultNoType.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"paintImage1","qualifiedName":"fake.paintImage1","href":"fake/paintImage1.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"paintImage2","qualifiedName":"fake.paintImage2","href":"fake/paintImage2.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"paramFromAnotherLib","qualifiedName":"fake.paramFromAnotherLib","href":"fake/paramFromAnotherLib.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"short","qualifiedName":"fake.short","href":"fake/short.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"soIntense","qualifiedName":"fake.soIntense","href":"fake/soIntense.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"thisIsAlsoAsync","qualifiedName":"fake.thisIsAlsoAsync","href":"fake/thisIsAlsoAsync.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"thisIsAsync","qualifiedName":"fake.thisIsAsync","href":"fake/thisIsAsync.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"topLevelFunction","qualifiedName":"fake.topLevelFunction","href":"fake/topLevelFunction.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"Callback2","qualifiedName":"fake.Callback2","href":"fake/Callback2.html","type":"typedef","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"FakeProcesses","qualifiedName":"fake.FakeProcesses","href":"fake/FakeProcesses.html","type":"typedef","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"GenericTypedef","qualifiedName":"fake.GenericTypedef","href":"fake/GenericTypedef.html","type":"typedef","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"LotsAndLotsOfParameters","qualifiedName":"fake.LotsAndLotsOfParameters","href":"fake/LotsAndLotsOfParameters.html","type":"typedef","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"VoidCallback","qualifiedName":"fake.VoidCallback","href":"fake/VoidCallback.html","type":"typedef","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"is_deprecated","qualifiedName":"is_deprecated","href":"is_deprecated/is_deprecated-library.html","type":"library","overriddenDepth":0},{"name":"two_exports","qualifiedName":"two_exports","href":"two_exports/two_exports-library.html","type":"library","overriddenDepth":0},{"name":"BaseClass","qualifiedName":"two_exports.BaseClass","href":"two_exports/BaseClass-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"two_exports","type":"library"}},{"name":"BaseClass","qualifiedName":"two_exports.BaseClass","href":"two_exports/BaseClass/BaseClass.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"BaseClass","type":"class"}},{"name":"hashCode","qualifiedName":"two_exports.BaseClass.hashCode","href":"two_exports/BaseClass/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"BaseClass","type":"class"}},{"name":"runtimeType","qualifiedName":"two_exports.BaseClass.runtimeType","href":"two_exports/BaseClass/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"BaseClass","type":"class"}},{"name":"toString","qualifiedName":"two_exports.BaseClass.toString","href":"two_exports/BaseClass/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"BaseClass","type":"class"}},{"name":"noSuchMethod","qualifiedName":"two_exports.BaseClass.noSuchMethod","href":"two_exports/BaseClass/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"BaseClass","type":"class"}},{"name":"operator ==","qualifiedName":"two_exports.BaseClass.==","href":"two_exports/BaseClass/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"BaseClass","type":"class"}},{"name":"ExtendingClass","qualifiedName":"two_exports.ExtendingClass","href":"two_exports/ExtendingClass-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"two_exports","type":"library"}},{"name":"ExtendingClass","qualifiedName":"two_exports.ExtendingClass","href":"two_exports/ExtendingClass/ExtendingClass.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"ExtendingClass","type":"class"}},{"name":"hashCode","qualifiedName":"two_exports.ExtendingClass.hashCode","href":"two_exports/ExtendingClass/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ExtendingClass","type":"class"}},{"name":"runtimeType","qualifiedName":"two_exports.ExtendingClass.runtimeType","href":"two_exports/ExtendingClass/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ExtendingClass","type":"class"}},{"name":"toString","qualifiedName":"two_exports.ExtendingClass.toString","href":"two_exports/ExtendingClass/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ExtendingClass","type":"class"}},{"name":"noSuchMethod","qualifiedName":"two_exports.ExtendingClass.noSuchMethod","href":"two_exports/ExtendingClass/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ExtendingClass","type":"class"}},{"name":"operator ==","qualifiedName":"two_exports.ExtendingClass.==","href":"two_exports/ExtendingClass/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ExtendingClass","type":"class"}},{"name":"topLevelVariable","qualifiedName":"two_exports.topLevelVariable","href":"two_exports/topLevelVariable.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"two_exports","type":"library"}}] +[{"name":"anonymous_library","qualifiedName":"anonymous_library","href":"anonymous_library/anonymous_library-library.html","type":"library","overriddenDepth":0},{"name":"doesStuff","qualifiedName":"anonymous_library.doesStuff","href":"anonymous_library/doesStuff.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"anonymous_library","type":"library"}},{"name":"another_anonymous_lib","qualifiedName":"another_anonymous_lib","href":"another_anonymous_lib/another_anonymous_lib-library.html","type":"library","overriddenDepth":0},{"name":"greeting","qualifiedName":"another_anonymous_lib.greeting","href":"another_anonymous_lib/greeting.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"another_anonymous_lib","type":"library"}},{"name":"code_in_comments","qualifiedName":"code_in_comments","href":"code_in_comments/code_in_comments-library.html","type":"library","overriddenDepth":0},{"name":"css","qualifiedName":"css","href":"css/css-library.html","type":"library","overriddenDepth":0},{"name":"theOnlyThingInTheLibrary","qualifiedName":"css.theOnlyThingInTheLibrary","href":"css/theOnlyThingInTheLibrary.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"css","type":"library"}},{"name":"ex","qualifiedName":"ex","href":"ex/ex-library.html","type":"library","overriddenDepth":0},{"name":"Apple","qualifiedName":"ex.Apple","href":"ex/Apple-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"Apple","qualifiedName":"ex.Apple","href":"ex/Apple/Apple.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"Apple.fromString","qualifiedName":"ex.Apple.fromString","href":"ex/Apple/Apple.fromString.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"n","qualifiedName":"ex.Apple.n","href":"ex/Apple/n-constant.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"string","qualifiedName":"ex.Apple.string","href":"ex/Apple/string.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"m","qualifiedName":"ex.Apple.m","href":"ex/Apple/m.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"s","qualifiedName":"ex.Apple.s","href":"ex/Apple/s.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"hashCode","qualifiedName":"ex.Apple.hashCode","href":"ex/Apple/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.Apple.runtimeType","href":"ex/Apple/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"isGreaterThan","qualifiedName":"ex.Apple.isGreaterThan","href":"ex/Apple/isGreaterThan.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"m1","qualifiedName":"ex.Apple.m1","href":"ex/Apple/m1.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"methodWithTypedefParam","qualifiedName":"ex.Apple.methodWithTypedefParam","href":"ex/Apple/methodWithTypedefParam.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"paramFromExportLib","qualifiedName":"ex.Apple.paramFromExportLib","href":"ex/Apple/paramFromExportLib.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"printMsg","qualifiedName":"ex.Apple.printMsg","href":"ex/Apple/printMsg.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"toString","qualifiedName":"ex.Apple.toString","href":"ex/Apple/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.Apple.noSuchMethod","href":"ex/Apple/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"operator *","qualifiedName":"ex.Apple.*","href":"ex/Apple/operator_multiply.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"operator ==","qualifiedName":"ex.Apple.==","href":"ex/Apple/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Apple","type":"class"}},{"name":"B","qualifiedName":"ex.B","href":"ex/B-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"B","qualifiedName":"ex.B","href":"ex/B/B.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"B","type":"class"}},{"name":"autoCompress","qualifiedName":"ex.B.autoCompress","href":"ex/B/autoCompress.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"B","type":"class"}},{"name":"isImplemented","qualifiedName":"ex.B.isImplemented","href":"ex/B/isImplemented.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"B","type":"class"}},{"name":"list","qualifiedName":"ex.B.list","href":"ex/B/list.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"B","type":"class"}},{"name":"s","qualifiedName":"ex.B.s","href":"ex/B/s.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"B","type":"class"}},{"name":"hashCode","qualifiedName":"ex.B.hashCode","href":"ex/B/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"B","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.B.runtimeType","href":"ex/B/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"B","type":"class"}},{"name":"abstractMethod","qualifiedName":"ex.B.abstractMethod","href":"ex/B/abstractMethod.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"B","type":"class"}},{"name":"doNothing","qualifiedName":"ex.B.doNothing","href":"ex/B/doNothing.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"B","type":"class"}},{"name":"m1","qualifiedName":"ex.B.m1","href":"ex/B/m1.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"B","type":"class"}},{"name":"writeMsg","qualifiedName":"ex.B.writeMsg","href":"ex/B/writeMsg.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"B","type":"class"}},{"name":"toString","qualifiedName":"ex.B.toString","href":"ex/B/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"B","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.B.noSuchMethod","href":"ex/B/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"B","type":"class"}},{"name":"operator ==","qualifiedName":"ex.B.==","href":"ex/B/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"B","type":"class"}},{"name":"Cat","qualifiedName":"ex.Cat","href":"ex/Cat-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"Cat","qualifiedName":"ex.Cat","href":"ex/Cat/Cat.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Cat","type":"class"}},{"name":"isImplemented","qualifiedName":"ex.Cat.isImplemented","href":"ex/Cat/isImplemented.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Cat","type":"class"}},{"name":"hashCode","qualifiedName":"ex.Cat.hashCode","href":"ex/Cat/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Cat","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.Cat.runtimeType","href":"ex/Cat/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Cat","type":"class"}},{"name":"abstractMethod","qualifiedName":"ex.Cat.abstractMethod","href":"ex/Cat/abstractMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Cat","type":"class"}},{"name":"toString","qualifiedName":"ex.Cat.toString","href":"ex/Cat/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Cat","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.Cat.noSuchMethod","href":"ex/Cat/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Cat","type":"class"}},{"name":"operator ==","qualifiedName":"ex.Cat.==","href":"ex/Cat/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Cat","type":"class"}},{"name":"CatString","qualifiedName":"ex.CatString","href":"ex/CatString-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"CatString","qualifiedName":"ex.CatString","href":"ex/CatString/CatString.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"hashCode","qualifiedName":"ex.CatString.hashCode","href":"ex/CatString/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.CatString.runtimeType","href":"ex/CatString/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"length","qualifiedName":"ex.CatString.length","href":"ex/CatString/length.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"isEmpty","qualifiedName":"ex.CatString.isEmpty","href":"ex/CatString/isEmpty.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"isNotEmpty","qualifiedName":"ex.CatString.isNotEmpty","href":"ex/CatString/isNotEmpty.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"toString","qualifiedName":"ex.CatString.toString","href":"ex/CatString/toString.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.CatString.noSuchMethod","href":"ex/CatString/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"write","qualifiedName":"ex.CatString.write","href":"ex/CatString/write.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"writeCharCode","qualifiedName":"ex.CatString.writeCharCode","href":"ex/CatString/writeCharCode.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"writeAll","qualifiedName":"ex.CatString.writeAll","href":"ex/CatString/writeAll.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"writeln","qualifiedName":"ex.CatString.writeln","href":"ex/CatString/writeln.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"clear","qualifiedName":"ex.CatString.clear","href":"ex/CatString/clear.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"operator ==","qualifiedName":"ex.CatString.==","href":"ex/CatString/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"CatString","type":"class"}},{"name":"ConstantCat","qualifiedName":"ex.ConstantCat","href":"ex/ConstantCat-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"ConstantCat","qualifiedName":"ex.ConstantCat","href":"ex/ConstantCat/ConstantCat.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"isImplemented","qualifiedName":"ex.ConstantCat.isImplemented","href":"ex/ConstantCat/isImplemented.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"name","qualifiedName":"ex.ConstantCat.name","href":"ex/ConstantCat/name.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"hashCode","qualifiedName":"ex.ConstantCat.hashCode","href":"ex/ConstantCat/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.ConstantCat.runtimeType","href":"ex/ConstantCat/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"abstractMethod","qualifiedName":"ex.ConstantCat.abstractMethod","href":"ex/ConstantCat/abstractMethod.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"toString","qualifiedName":"ex.ConstantCat.toString","href":"ex/ConstantCat/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.ConstantCat.noSuchMethod","href":"ex/ConstantCat/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"operator ==","qualifiedName":"ex.ConstantCat.==","href":"ex/ConstantCat/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"Deprecated","qualifiedName":"ex.Deprecated","href":"ex/Deprecated-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"Deprecated","qualifiedName":"ex.Deprecated","href":"ex/Deprecated/Deprecated.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"expires","qualifiedName":"ex.Deprecated.expires","href":"ex/Deprecated/expires.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"hashCode","qualifiedName":"ex.Deprecated.hashCode","href":"ex/Deprecated/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.Deprecated.runtimeType","href":"ex/Deprecated/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"toString","qualifiedName":"ex.Deprecated.toString","href":"ex/Deprecated/toString.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.Deprecated.noSuchMethod","href":"ex/Deprecated/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"operator ==","qualifiedName":"ex.Deprecated.==","href":"ex/Deprecated/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"Dog","qualifiedName":"ex.Dog","href":"ex/Dog-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"Dog","qualifiedName":"ex.Dog","href":"ex/Dog/Dog.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"Dog.deprecatedCreate","qualifiedName":"ex.Dog.deprecatedCreate","href":"ex/Dog/Dog.deprecatedCreate.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"deprecatedField","qualifiedName":"ex.Dog.deprecatedField","href":"ex/Dog/deprecatedField.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"deprecatedGetter","qualifiedName":"ex.Dog.deprecatedGetter","href":"ex/Dog/deprecatedGetter.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"deprecatedSetter","qualifiedName":"ex.Dog.deprecatedSetter","href":"ex/Dog/deprecatedSetter.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"isImplemented","qualifiedName":"ex.Dog.isImplemented","href":"ex/Dog/isImplemented.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"name","qualifiedName":"ex.Dog.name","href":"ex/Dog/name.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"hashCode","qualifiedName":"ex.Dog.hashCode","href":"ex/Dog/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.Dog.runtimeType","href":"ex/Dog/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"abstractMethod","qualifiedName":"ex.Dog.abstractMethod","href":"ex/Dog/abstractMethod.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"foo","qualifiedName":"ex.Dog.foo","href":"ex/Dog/foo.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"getClassA","qualifiedName":"ex.Dog.getClassA","href":"ex/Dog/getClassA.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"testGeneric","qualifiedName":"ex.Dog.testGeneric","href":"ex/Dog/testGeneric.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"testGenericMethod","qualifiedName":"ex.Dog.testGenericMethod","href":"ex/Dog/testGenericMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"testMethod","qualifiedName":"ex.Dog.testMethod","href":"ex/Dog/testMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"toString","qualifiedName":"ex.Dog.toString","href":"ex/Dog/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.Dog.noSuchMethod","href":"ex/Dog/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"operator ==","qualifiedName":"ex.Dog.==","href":"ex/Dog/operator_equals.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"createDog","qualifiedName":"ex.Dog.createDog","href":"ex/Dog/createDog.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Dog","type":"class"}},{"name":"E","qualifiedName":"ex.E","href":"ex/E-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"E","qualifiedName":"ex.E","href":"ex/E/E.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"E","type":"class"}},{"name":"hashCode","qualifiedName":"ex.E.hashCode","href":"ex/E/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"E","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.E.runtimeType","href":"ex/E/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"E","type":"class"}},{"name":"toString","qualifiedName":"ex.E.toString","href":"ex/E/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"E","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.E.noSuchMethod","href":"ex/E/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"E","type":"class"}},{"name":"operator ==","qualifiedName":"ex.E.==","href":"ex/E/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"E","type":"class"}},{"name":"F","qualifiedName":"ex.F","href":"ex/F-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"F","qualifiedName":"ex.F","href":"ex/F/F.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"F","type":"class"}},{"name":"hashCode","qualifiedName":"ex.F.hashCode","href":"ex/F/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"F","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.F.runtimeType","href":"ex/F/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"F","type":"class"}},{"name":"methodWithGenericParam","qualifiedName":"ex.F.methodWithGenericParam","href":"ex/F/methodWithGenericParam.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"F","type":"class"}},{"name":"toString","qualifiedName":"ex.F.toString","href":"ex/F/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"F","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.F.noSuchMethod","href":"ex/F/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"F","type":"class"}},{"name":"test","qualifiedName":"ex.F.test","href":"ex/F/test.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"F","type":"class"}},{"name":"ForAnnotation","qualifiedName":"ex.ForAnnotation","href":"ex/ForAnnotation-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"ForAnnotation","qualifiedName":"ex.ForAnnotation","href":"ex/ForAnnotation/ForAnnotation.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"value","qualifiedName":"ex.ForAnnotation.value","href":"ex/ForAnnotation/value.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"hashCode","qualifiedName":"ex.ForAnnotation.hashCode","href":"ex/ForAnnotation/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.ForAnnotation.runtimeType","href":"ex/ForAnnotation/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"toString","qualifiedName":"ex.ForAnnotation.toString","href":"ex/ForAnnotation/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.ForAnnotation.noSuchMethod","href":"ex/ForAnnotation/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"operator ==","qualifiedName":"ex.ForAnnotation.==","href":"ex/ForAnnotation/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"HasAnnotation","qualifiedName":"ex.HasAnnotation","href":"ex/HasAnnotation-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"HasAnnotation","qualifiedName":"ex.HasAnnotation","href":"ex/HasAnnotation/HasAnnotation.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"HasAnnotation","type":"class"}},{"name":"hashCode","qualifiedName":"ex.HasAnnotation.hashCode","href":"ex/HasAnnotation/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"HasAnnotation","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.HasAnnotation.runtimeType","href":"ex/HasAnnotation/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"HasAnnotation","type":"class"}},{"name":"toString","qualifiedName":"ex.HasAnnotation.toString","href":"ex/HasAnnotation/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"HasAnnotation","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.HasAnnotation.noSuchMethod","href":"ex/HasAnnotation/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"HasAnnotation","type":"class"}},{"name":"operator ==","qualifiedName":"ex.HasAnnotation.==","href":"ex/HasAnnotation/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"HasAnnotation","type":"class"}},{"name":"Helper","qualifiedName":"ex.Helper","href":"ex/Helper-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"Helper","qualifiedName":"ex.Helper","href":"ex/Helper/Helper.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Helper","type":"class"}},{"name":"hashCode","qualifiedName":"ex.Helper.hashCode","href":"ex/Helper/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Helper","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.Helper.runtimeType","href":"ex/Helper/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Helper","type":"class"}},{"name":"getContents","qualifiedName":"ex.Helper.getContents","href":"ex/Helper/getContents.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Helper","type":"class"}},{"name":"toString","qualifiedName":"ex.Helper.toString","href":"ex/Helper/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Helper","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.Helper.noSuchMethod","href":"ex/Helper/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Helper","type":"class"}},{"name":"operator ==","qualifiedName":"ex.Helper.==","href":"ex/Helper/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Helper","type":"class"}},{"name":"Klass","qualifiedName":"ex.Klass","href":"ex/Klass-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"Klass","qualifiedName":"ex.Klass","href":"ex/Klass/Klass.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Klass","type":"class"}},{"name":"hashCode","qualifiedName":"ex.Klass.hashCode","href":"ex/Klass/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Klass","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.Klass.runtimeType","href":"ex/Klass/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Klass","type":"class"}},{"name":"another","qualifiedName":"ex.Klass.another","href":"ex/Klass/another.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Klass","type":"class"}},{"name":"method","qualifiedName":"ex.Klass.method","href":"ex/Klass/method.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Klass","type":"class"}},{"name":"toString","qualifiedName":"ex.Klass.toString","href":"ex/Klass/toString.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"Klass","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.Klass.noSuchMethod","href":"ex/Klass/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Klass","type":"class"}},{"name":"operator ==","qualifiedName":"ex.Klass.==","href":"ex/Klass/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Klass","type":"class"}},{"name":"MyError","qualifiedName":"ex.MyError","href":"ex/MyError-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"MyError","qualifiedName":"ex.MyError","href":"ex/MyError/MyError.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"MyError","type":"class"}},{"name":"hashCode","qualifiedName":"ex.MyError.hashCode","href":"ex/MyError/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"MyError","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.MyError.runtimeType","href":"ex/MyError/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"MyError","type":"class"}},{"name":"stackTrace","qualifiedName":"ex.MyError.stackTrace","href":"ex/MyError/stackTrace.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"MyError","type":"class"}},{"name":"toString","qualifiedName":"ex.MyError.toString","href":"ex/MyError/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MyError","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.MyError.noSuchMethod","href":"ex/MyError/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MyError","type":"class"}},{"name":"operator ==","qualifiedName":"ex.MyError.==","href":"ex/MyError/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MyError","type":"class"}},{"name":"MyErrorImplements","qualifiedName":"ex.MyErrorImplements","href":"ex/MyErrorImplements-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"MyErrorImplements","qualifiedName":"ex.MyErrorImplements","href":"ex/MyErrorImplements/MyErrorImplements.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"stackTrace","qualifiedName":"ex.MyErrorImplements.stackTrace","href":"ex/MyErrorImplements/stackTrace.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"hashCode","qualifiedName":"ex.MyErrorImplements.hashCode","href":"ex/MyErrorImplements/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.MyErrorImplements.runtimeType","href":"ex/MyErrorImplements/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"toString","qualifiedName":"ex.MyErrorImplements.toString","href":"ex/MyErrorImplements/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.MyErrorImplements.noSuchMethod","href":"ex/MyErrorImplements/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"operator ==","qualifiedName":"ex.MyErrorImplements.==","href":"ex/MyErrorImplements/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"MyException","qualifiedName":"ex.MyException","href":"ex/MyException-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"MyException","qualifiedName":"ex.MyException","href":"ex/MyException/MyException.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"MyException","type":"class"}},{"name":"hashCode","qualifiedName":"ex.MyException.hashCode","href":"ex/MyException/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"MyException","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.MyException.runtimeType","href":"ex/MyException/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"MyException","type":"class"}},{"name":"toString","qualifiedName":"ex.MyException.toString","href":"ex/MyException/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MyException","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.MyException.noSuchMethod","href":"ex/MyException/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MyException","type":"class"}},{"name":"operator ==","qualifiedName":"ex.MyException.==","href":"ex/MyException/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MyException","type":"class"}},{"name":"MyExceptionImplements","qualifiedName":"ex.MyExceptionImplements","href":"ex/MyExceptionImplements-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"MyExceptionImplements","qualifiedName":"ex.MyExceptionImplements","href":"ex/MyExceptionImplements/MyExceptionImplements.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"MyExceptionImplements","type":"class"}},{"name":"hashCode","qualifiedName":"ex.MyExceptionImplements.hashCode","href":"ex/MyExceptionImplements/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"MyExceptionImplements","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.MyExceptionImplements.runtimeType","href":"ex/MyExceptionImplements/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"MyExceptionImplements","type":"class"}},{"name":"toString","qualifiedName":"ex.MyExceptionImplements.toString","href":"ex/MyExceptionImplements/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MyExceptionImplements","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.MyExceptionImplements.noSuchMethod","href":"ex/MyExceptionImplements/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MyExceptionImplements","type":"class"}},{"name":"operator ==","qualifiedName":"ex.MyExceptionImplements.==","href":"ex/MyExceptionImplements/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MyExceptionImplements","type":"class"}},{"name":"PublicClassExtendsPrivateClass","qualifiedName":"ex.PublicClassExtendsPrivateClass","href":"ex/PublicClassExtendsPrivateClass-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"PublicClassExtendsPrivateClass","qualifiedName":"ex.PublicClassExtendsPrivateClass","href":"ex/PublicClassExtendsPrivateClass/PublicClassExtendsPrivateClass.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"hashCode","qualifiedName":"ex.PublicClassExtendsPrivateClass.hashCode","href":"ex/PublicClassExtendsPrivateClass/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.PublicClassExtendsPrivateClass.runtimeType","href":"ex/PublicClassExtendsPrivateClass/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"toString","qualifiedName":"ex.PublicClassExtendsPrivateClass.toString","href":"ex/PublicClassExtendsPrivateClass/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.PublicClassExtendsPrivateClass.noSuchMethod","href":"ex/PublicClassExtendsPrivateClass/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"test","qualifiedName":"ex.PublicClassExtendsPrivateClass.test","href":"ex/PublicClassExtendsPrivateClass/test.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"operator ==","qualifiedName":"ex.PublicClassExtendsPrivateClass.==","href":"ex/PublicClassExtendsPrivateClass/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"PublicClassImplementsPrivateInterface","qualifiedName":"ex.PublicClassImplementsPrivateInterface","href":"ex/PublicClassImplementsPrivateInterface-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"PublicClassImplementsPrivateInterface","qualifiedName":"ex.PublicClassImplementsPrivateInterface","href":"ex/PublicClassImplementsPrivateInterface/PublicClassImplementsPrivateInterface.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"hashCode","qualifiedName":"ex.PublicClassImplementsPrivateInterface.hashCode","href":"ex/PublicClassImplementsPrivateInterface/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.PublicClassImplementsPrivateInterface.runtimeType","href":"ex/PublicClassImplementsPrivateInterface/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"test","qualifiedName":"ex.PublicClassImplementsPrivateInterface.test","href":"ex/PublicClassImplementsPrivateInterface/test.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"toString","qualifiedName":"ex.PublicClassImplementsPrivateInterface.toString","href":"ex/PublicClassImplementsPrivateInterface/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.PublicClassImplementsPrivateInterface.noSuchMethod","href":"ex/PublicClassImplementsPrivateInterface/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"operator ==","qualifiedName":"ex.PublicClassImplementsPrivateInterface.==","href":"ex/PublicClassImplementsPrivateInterface/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"ShapeType","qualifiedName":"ex.ShapeType","href":"ex/ShapeType-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"ellipse","qualifiedName":"ex.ShapeType.ellipse","href":"ex/ShapeType/ellipse-constant.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"rect","qualifiedName":"ex.ShapeType.rect","href":"ex/ShapeType/rect-constant.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"hashCode","qualifiedName":"ex.ShapeType.hashCode","href":"ex/ShapeType/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.ShapeType.runtimeType","href":"ex/ShapeType/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"name","qualifiedName":"ex.ShapeType.name","href":"ex/ShapeType/name.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"toString","qualifiedName":"ex.ShapeType.toString","href":"ex/ShapeType/toString.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.ShapeType.noSuchMethod","href":"ex/ShapeType/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"operator ==","qualifiedName":"ex.ShapeType.==","href":"ex/ShapeType/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"SpecializedDuration","qualifiedName":"ex.SpecializedDuration","href":"ex/SpecializedDuration-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"SpecializedDuration","qualifiedName":"ex.SpecializedDuration","href":"ex/SpecializedDuration/SpecializedDuration.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"hashCode","qualifiedName":"ex.SpecializedDuration.hashCode","href":"ex/SpecializedDuration/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.SpecializedDuration.runtimeType","href":"ex/SpecializedDuration/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"inDays","qualifiedName":"ex.SpecializedDuration.inDays","href":"ex/SpecializedDuration/inDays.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"inHours","qualifiedName":"ex.SpecializedDuration.inHours","href":"ex/SpecializedDuration/inHours.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"inMinutes","qualifiedName":"ex.SpecializedDuration.inMinutes","href":"ex/SpecializedDuration/inMinutes.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"inSeconds","qualifiedName":"ex.SpecializedDuration.inSeconds","href":"ex/SpecializedDuration/inSeconds.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"inMilliseconds","qualifiedName":"ex.SpecializedDuration.inMilliseconds","href":"ex/SpecializedDuration/inMilliseconds.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"inMicroseconds","qualifiedName":"ex.SpecializedDuration.inMicroseconds","href":"ex/SpecializedDuration/inMicroseconds.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"isNegative","qualifiedName":"ex.SpecializedDuration.isNegative","href":"ex/SpecializedDuration/isNegative.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"toString","qualifiedName":"ex.SpecializedDuration.toString","href":"ex/SpecializedDuration/toString.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.SpecializedDuration.noSuchMethod","href":"ex/SpecializedDuration/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"compareTo","qualifiedName":"ex.SpecializedDuration.compareTo","href":"ex/SpecializedDuration/compareTo.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"abs","qualifiedName":"ex.SpecializedDuration.abs","href":"ex/SpecializedDuration/abs.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator ~/","qualifiedName":"ex.SpecializedDuration.~/","href":"ex/SpecializedDuration/operator_truncate_divide.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator *","qualifiedName":"ex.SpecializedDuration.*","href":"ex/SpecializedDuration/operator_multiply.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator -","qualifiedName":"ex.SpecializedDuration.-","href":"ex/SpecializedDuration/operator_minus.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator <","qualifiedName":"ex.SpecializedDuration.<","href":"ex/SpecializedDuration/operator_less.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator >=","qualifiedName":"ex.SpecializedDuration.>=","href":"ex/SpecializedDuration/operator_greater_equal.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator ==","qualifiedName":"ex.SpecializedDuration.==","href":"ex/SpecializedDuration/operator_equals.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator <=","qualifiedName":"ex.SpecializedDuration.<=","href":"ex/SpecializedDuration/operator_less_equal.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator >","qualifiedName":"ex.SpecializedDuration.>","href":"ex/SpecializedDuration/operator_greater.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator +","qualifiedName":"ex.SpecializedDuration.+","href":"ex/SpecializedDuration/operator_plus.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator unary-","qualifiedName":"ex.SpecializedDuration.unary-","href":"ex/SpecializedDuration/operator_unary_minus.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"WithGeneric","qualifiedName":"ex.WithGeneric","href":"ex/WithGeneric-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"WithGeneric","qualifiedName":"ex.WithGeneric","href":"ex/WithGeneric/WithGeneric.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"WithGeneric","type":"class"}},{"name":"prop","qualifiedName":"ex.WithGeneric.prop","href":"ex/WithGeneric/prop.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"WithGeneric","type":"class"}},{"name":"hashCode","qualifiedName":"ex.WithGeneric.hashCode","href":"ex/WithGeneric/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"WithGeneric","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.WithGeneric.runtimeType","href":"ex/WithGeneric/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"WithGeneric","type":"class"}},{"name":"toString","qualifiedName":"ex.WithGeneric.toString","href":"ex/WithGeneric/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"WithGeneric","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.WithGeneric.noSuchMethod","href":"ex/WithGeneric/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"WithGeneric","type":"class"}},{"name":"operator ==","qualifiedName":"ex.WithGeneric.==","href":"ex/WithGeneric/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"WithGeneric","type":"class"}},{"name":"WithGenericSub","qualifiedName":"ex.WithGenericSub","href":"ex/WithGenericSub-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"WithGenericSub","qualifiedName":"ex.WithGenericSub","href":"ex/WithGenericSub/WithGenericSub.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"WithGenericSub","type":"class"}},{"name":"hashCode","qualifiedName":"ex.WithGenericSub.hashCode","href":"ex/WithGenericSub/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"WithGenericSub","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.WithGenericSub.runtimeType","href":"ex/WithGenericSub/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"WithGenericSub","type":"class"}},{"name":"toString","qualifiedName":"ex.WithGenericSub.toString","href":"ex/WithGenericSub/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"WithGenericSub","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.WithGenericSub.noSuchMethod","href":"ex/WithGenericSub/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"WithGenericSub","type":"class"}},{"name":"operator ==","qualifiedName":"ex.WithGenericSub.==","href":"ex/WithGenericSub/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"WithGenericSub","type":"class"}},{"name":"Animal","qualifiedName":"ex.Animal","href":"ex/Animal-class.html","type":"enum","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"COLOR","qualifiedName":"ex.COLOR","href":"ex/COLOR-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"COLOR_GREEN","qualifiedName":"ex.COLOR_GREEN","href":"ex/COLOR_GREEN-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"COLOR_ORANGE","qualifiedName":"ex.COLOR_ORANGE","href":"ex/COLOR_ORANGE-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"COMPLEX_COLOR","qualifiedName":"ex.COMPLEX_COLOR","href":"ex/COMPLEX_COLOR-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"deprecated","qualifiedName":"ex.deprecated","href":"ex/deprecated-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"incorrectDocReference","qualifiedName":"ex.incorrectDocReference","href":"ex/incorrectDocReference-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"incorrectDocReferenceFromEx","qualifiedName":"ex.incorrectDocReferenceFromEx","href":"ex/incorrectDocReferenceFromEx-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"MY_CAT","qualifiedName":"ex.MY_CAT","href":"ex/MY_CAT-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"PRETTY_COLORS","qualifiedName":"ex.PRETTY_COLORS","href":"ex/PRETTY_COLORS-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"deprecatedField","qualifiedName":"ex.deprecatedField","href":"ex/deprecatedField.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"deprecatedGetter","qualifiedName":"ex.deprecatedGetter","href":"ex/deprecatedGetter.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"deprecatedSetter","qualifiedName":"ex.deprecatedSetter","href":"ex/deprecatedSetter.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"number","qualifiedName":"ex.number","href":"ex/number.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"y","qualifiedName":"ex.y","href":"ex/y.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"function1","qualifiedName":"ex.function1","href":"ex/function1.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"genericFunction","qualifiedName":"ex.genericFunction","href":"ex/genericFunction.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"processMessage","qualifiedName":"ex.processMessage","href":"ex/processMessage.html","type":"typedef","overriddenDepth":0,"enclosedBy":{"name":"ex","type":"library"}},{"name":"fake","qualifiedName":"fake","href":"fake/fake-library.html","type":"library","overriddenDepth":0},{"name":"Annotation","qualifiedName":"fake.Annotation","href":"fake/Annotation-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"Annotation","qualifiedName":"fake.Annotation","href":"fake/Annotation/Annotation.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Annotation","type":"class"}},{"name":"value","qualifiedName":"fake.Annotation.value","href":"fake/Annotation/value.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Annotation","type":"class"}},{"name":"hashCode","qualifiedName":"fake.Annotation.hashCode","href":"fake/Annotation/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Annotation","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.Annotation.runtimeType","href":"fake/Annotation/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Annotation","type":"class"}},{"name":"toString","qualifiedName":"fake.Annotation.toString","href":"fake/Annotation/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Annotation","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.Annotation.noSuchMethod","href":"fake/Annotation/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Annotation","type":"class"}},{"name":"operator ==","qualifiedName":"fake.Annotation.==","href":"fake/Annotation/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Annotation","type":"class"}},{"name":"AnotherInterface","qualifiedName":"fake.AnotherInterface","href":"fake/AnotherInterface-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"AnotherInterface","qualifiedName":"fake.AnotherInterface","href":"fake/AnotherInterface/AnotherInterface.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"AnotherInterface","type":"class"}},{"name":"hashCode","qualifiedName":"fake.AnotherInterface.hashCode","href":"fake/AnotherInterface/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"AnotherInterface","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.AnotherInterface.runtimeType","href":"fake/AnotherInterface/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"AnotherInterface","type":"class"}},{"name":"toString","qualifiedName":"fake.AnotherInterface.toString","href":"fake/AnotherInterface/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"AnotherInterface","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.AnotherInterface.noSuchMethod","href":"fake/AnotherInterface/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"AnotherInterface","type":"class"}},{"name":"operator ==","qualifiedName":"fake.AnotherInterface.==","href":"fake/AnotherInterface/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"AnotherInterface","type":"class"}},{"name":"BaseForDocComments","qualifiedName":"fake.BaseForDocComments","href":"fake/BaseForDocComments-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"BaseForDocComments","qualifiedName":"fake.BaseForDocComments","href":"fake/BaseForDocComments/BaseForDocComments.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"hashCode","qualifiedName":"fake.BaseForDocComments.hashCode","href":"fake/BaseForDocComments/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.BaseForDocComments.runtimeType","href":"fake/BaseForDocComments/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"anotherMethod","qualifiedName":"fake.BaseForDocComments.anotherMethod","href":"fake/BaseForDocComments/anotherMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"doAwesomeStuff","qualifiedName":"fake.BaseForDocComments.doAwesomeStuff","href":"fake/BaseForDocComments/doAwesomeStuff.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"toString","qualifiedName":"fake.BaseForDocComments.toString","href":"fake/BaseForDocComments/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.BaseForDocComments.noSuchMethod","href":"fake/BaseForDocComments/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"operator ==","qualifiedName":"fake.BaseForDocComments.==","href":"fake/BaseForDocComments/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"ConstantClass","qualifiedName":"fake.ConstantClass","href":"fake/ConstantClass-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"ConstantClass","qualifiedName":"fake.ConstantClass","href":"fake/ConstantClass/ConstantClass.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"ConstantClass.isVeryConstant","qualifiedName":"fake.ConstantClass.isVeryConstant","href":"fake/ConstantClass/ConstantClass.isVeryConstant.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"ConstantClass.notConstant","qualifiedName":"fake.ConstantClass.notConstant","href":"fake/ConstantClass/ConstantClass.notConstant.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"value","qualifiedName":"fake.ConstantClass.value","href":"fake/ConstantClass/value.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"hashCode","qualifiedName":"fake.ConstantClass.hashCode","href":"fake/ConstantClass/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.ConstantClass.runtimeType","href":"fake/ConstantClass/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"toString","qualifiedName":"fake.ConstantClass.toString","href":"fake/ConstantClass/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.ConstantClass.noSuchMethod","href":"fake/ConstantClass/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"operator ==","qualifiedName":"fake.ConstantClass.==","href":"fake/ConstantClass/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"Cool","qualifiedName":"fake.Cool","href":"fake/Cool-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"Cool","qualifiedName":"fake.Cool","href":"fake/Cool/Cool.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Cool","type":"class"}},{"name":"hashCode","qualifiedName":"fake.Cool.hashCode","href":"fake/Cool/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Cool","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.Cool.runtimeType","href":"fake/Cool/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Cool","type":"class"}},{"name":"returnCool","qualifiedName":"fake.Cool.returnCool","href":"fake/Cool/returnCool.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Cool","type":"class"}},{"name":"toString","qualifiedName":"fake.Cool.toString","href":"fake/Cool/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Cool","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.Cool.noSuchMethod","href":"fake/Cool/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Cool","type":"class"}},{"name":"operator ==","qualifiedName":"fake.Cool.==","href":"fake/Cool/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Cool","type":"class"}},{"name":"Doh","qualifiedName":"fake.Doh","href":"fake/Doh-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"Doh","qualifiedName":"fake.Doh","href":"fake/Doh/Doh.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Doh","type":"class"}},{"name":"hashCode","qualifiedName":"fake.Doh.hashCode","href":"fake/Doh/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Doh","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.Doh.runtimeType","href":"fake/Doh/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Doh","type":"class"}},{"name":"stackTrace","qualifiedName":"fake.Doh.stackTrace","href":"fake/Doh/stackTrace.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Doh","type":"class"}},{"name":"toString","qualifiedName":"fake.Doh.toString","href":"fake/Doh/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Doh","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.Doh.noSuchMethod","href":"fake/Doh/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Doh","type":"class"}},{"name":"operator ==","qualifiedName":"fake.Doh.==","href":"fake/Doh/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Doh","type":"class"}},{"name":"ExtraSpecialList","qualifiedName":"fake.ExtraSpecialList","href":"fake/ExtraSpecialList-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"ExtraSpecialList","qualifiedName":"fake.ExtraSpecialList","href":"fake/ExtraSpecialList/ExtraSpecialList.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"hashCode","qualifiedName":"fake.ExtraSpecialList.hashCode","href":"fake/ExtraSpecialList/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.ExtraSpecialList.runtimeType","href":"fake/ExtraSpecialList/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"iterator","qualifiedName":"fake.ExtraSpecialList.iterator","href":"fake/ExtraSpecialList/iterator.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"isEmpty","qualifiedName":"fake.ExtraSpecialList.isEmpty","href":"fake/ExtraSpecialList/isEmpty.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"isNotEmpty","qualifiedName":"fake.ExtraSpecialList.isNotEmpty","href":"fake/ExtraSpecialList/isNotEmpty.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"first","qualifiedName":"fake.ExtraSpecialList.first","href":"fake/ExtraSpecialList/first.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"last","qualifiedName":"fake.ExtraSpecialList.last","href":"fake/ExtraSpecialList/last.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"single","qualifiedName":"fake.ExtraSpecialList.single","href":"fake/ExtraSpecialList/single.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"reversed","qualifiedName":"fake.ExtraSpecialList.reversed","href":"fake/ExtraSpecialList/reversed.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"toString","qualifiedName":"fake.ExtraSpecialList.toString","href":"fake/ExtraSpecialList/toString.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.ExtraSpecialList.noSuchMethod","href":"fake/ExtraSpecialList/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"elementAt","qualifiedName":"fake.ExtraSpecialList.elementAt","href":"fake/ExtraSpecialList/elementAt.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"forEach","qualifiedName":"fake.ExtraSpecialList.forEach","href":"fake/ExtraSpecialList/forEach.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"contains","qualifiedName":"fake.ExtraSpecialList.contains","href":"fake/ExtraSpecialList/contains.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"every","qualifiedName":"fake.ExtraSpecialList.every","href":"fake/ExtraSpecialList/every.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"any","qualifiedName":"fake.ExtraSpecialList.any","href":"fake/ExtraSpecialList/any.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"firstWhere","qualifiedName":"fake.ExtraSpecialList.firstWhere","href":"fake/ExtraSpecialList/firstWhere.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"lastWhere","qualifiedName":"fake.ExtraSpecialList.lastWhere","href":"fake/ExtraSpecialList/lastWhere.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"singleWhere","qualifiedName":"fake.ExtraSpecialList.singleWhere","href":"fake/ExtraSpecialList/singleWhere.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"join","qualifiedName":"fake.ExtraSpecialList.join","href":"fake/ExtraSpecialList/join.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"where","qualifiedName":"fake.ExtraSpecialList.where","href":"fake/ExtraSpecialList/where.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"map","qualifiedName":"fake.ExtraSpecialList.map","href":"fake/ExtraSpecialList/map.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"expand","qualifiedName":"fake.ExtraSpecialList.expand","href":"fake/ExtraSpecialList/expand.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"reduce","qualifiedName":"fake.ExtraSpecialList.reduce","href":"fake/ExtraSpecialList/reduce.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"fold","qualifiedName":"fake.ExtraSpecialList.fold","href":"fake/ExtraSpecialList/fold.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"skip","qualifiedName":"fake.ExtraSpecialList.skip","href":"fake/ExtraSpecialList/skip.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"skipWhile","qualifiedName":"fake.ExtraSpecialList.skipWhile","href":"fake/ExtraSpecialList/skipWhile.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"take","qualifiedName":"fake.ExtraSpecialList.take","href":"fake/ExtraSpecialList/take.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"takeWhile","qualifiedName":"fake.ExtraSpecialList.takeWhile","href":"fake/ExtraSpecialList/takeWhile.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"toList","qualifiedName":"fake.ExtraSpecialList.toList","href":"fake/ExtraSpecialList/toList.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"toSet","qualifiedName":"fake.ExtraSpecialList.toSet","href":"fake/ExtraSpecialList/toSet.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"add","qualifiedName":"fake.ExtraSpecialList.add","href":"fake/ExtraSpecialList/add.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"addAll","qualifiedName":"fake.ExtraSpecialList.addAll","href":"fake/ExtraSpecialList/addAll.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"remove","qualifiedName":"fake.ExtraSpecialList.remove","href":"fake/ExtraSpecialList/remove.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"removeWhere","qualifiedName":"fake.ExtraSpecialList.removeWhere","href":"fake/ExtraSpecialList/removeWhere.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"retainWhere","qualifiedName":"fake.ExtraSpecialList.retainWhere","href":"fake/ExtraSpecialList/retainWhere.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"clear","qualifiedName":"fake.ExtraSpecialList.clear","href":"fake/ExtraSpecialList/clear.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"removeLast","qualifiedName":"fake.ExtraSpecialList.removeLast","href":"fake/ExtraSpecialList/removeLast.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"sort","qualifiedName":"fake.ExtraSpecialList.sort","href":"fake/ExtraSpecialList/sort.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"shuffle","qualifiedName":"fake.ExtraSpecialList.shuffle","href":"fake/ExtraSpecialList/shuffle.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"asMap","qualifiedName":"fake.ExtraSpecialList.asMap","href":"fake/ExtraSpecialList/asMap.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"sublist","qualifiedName":"fake.ExtraSpecialList.sublist","href":"fake/ExtraSpecialList/sublist.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"getRange","qualifiedName":"fake.ExtraSpecialList.getRange","href":"fake/ExtraSpecialList/getRange.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"removeRange","qualifiedName":"fake.ExtraSpecialList.removeRange","href":"fake/ExtraSpecialList/removeRange.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"fillRange","qualifiedName":"fake.ExtraSpecialList.fillRange","href":"fake/ExtraSpecialList/fillRange.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"setRange","qualifiedName":"fake.ExtraSpecialList.setRange","href":"fake/ExtraSpecialList/setRange.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"replaceRange","qualifiedName":"fake.ExtraSpecialList.replaceRange","href":"fake/ExtraSpecialList/replaceRange.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"indexOf","qualifiedName":"fake.ExtraSpecialList.indexOf","href":"fake/ExtraSpecialList/indexOf.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"lastIndexOf","qualifiedName":"fake.ExtraSpecialList.lastIndexOf","href":"fake/ExtraSpecialList/lastIndexOf.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"insert","qualifiedName":"fake.ExtraSpecialList.insert","href":"fake/ExtraSpecialList/insert.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"removeAt","qualifiedName":"fake.ExtraSpecialList.removeAt","href":"fake/ExtraSpecialList/removeAt.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"insertAll","qualifiedName":"fake.ExtraSpecialList.insertAll","href":"fake/ExtraSpecialList/insertAll.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"setAll","qualifiedName":"fake.ExtraSpecialList.setAll","href":"fake/ExtraSpecialList/setAll.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"operator ==","qualifiedName":"fake.ExtraSpecialList.==","href":"fake/ExtraSpecialList/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"Foo2","qualifiedName":"fake.Foo2","href":"fake/Foo2-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"Foo2","qualifiedName":"fake.Foo2","href":"fake/Foo2/Foo2.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Foo2","type":"class"}},{"name":"BAR","qualifiedName":"fake.Foo2.BAR","href":"fake/Foo2/BAR-constant.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Foo2","type":"class"}},{"name":"BAZ","qualifiedName":"fake.Foo2.BAZ","href":"fake/Foo2/BAZ-constant.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Foo2","type":"class"}},{"name":"index","qualifiedName":"fake.Foo2.index","href":"fake/Foo2/index.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Foo2","type":"class"}},{"name":"hashCode","qualifiedName":"fake.Foo2.hashCode","href":"fake/Foo2/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Foo2","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.Foo2.runtimeType","href":"fake/Foo2/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Foo2","type":"class"}},{"name":"toString","qualifiedName":"fake.Foo2.toString","href":"fake/Foo2/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Foo2","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.Foo2.noSuchMethod","href":"fake/Foo2/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Foo2","type":"class"}},{"name":"operator ==","qualifiedName":"fake.Foo2.==","href":"fake/Foo2/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Foo2","type":"class"}},{"name":"HasGenerics","qualifiedName":"fake.HasGenerics","href":"fake/HasGenerics-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"HasGenerics","qualifiedName":"fake.HasGenerics","href":"fake/HasGenerics/HasGenerics.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"hashCode","qualifiedName":"fake.HasGenerics.hashCode","href":"fake/HasGenerics/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.HasGenerics.runtimeType","href":"fake/HasGenerics/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"convertToMap","qualifiedName":"fake.HasGenerics.convertToMap","href":"fake/HasGenerics/convertToMap.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"doStuff","qualifiedName":"fake.HasGenerics.doStuff","href":"fake/HasGenerics/doStuff.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"returnX","qualifiedName":"fake.HasGenerics.returnX","href":"fake/HasGenerics/returnX.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"returnZ","qualifiedName":"fake.HasGenerics.returnZ","href":"fake/HasGenerics/returnZ.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"toString","qualifiedName":"fake.HasGenerics.toString","href":"fake/HasGenerics/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.HasGenerics.noSuchMethod","href":"fake/HasGenerics/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"operator ==","qualifiedName":"fake.HasGenerics.==","href":"fake/HasGenerics/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"HasGenericWithExtends","qualifiedName":"fake.HasGenericWithExtends","href":"fake/HasGenericWithExtends-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"HasGenericWithExtends","qualifiedName":"fake.HasGenericWithExtends","href":"fake/HasGenericWithExtends/HasGenericWithExtends.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"HasGenericWithExtends","type":"class"}},{"name":"hashCode","qualifiedName":"fake.HasGenericWithExtends.hashCode","href":"fake/HasGenericWithExtends/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"HasGenericWithExtends","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.HasGenericWithExtends.runtimeType","href":"fake/HasGenericWithExtends/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"HasGenericWithExtends","type":"class"}},{"name":"toString","qualifiedName":"fake.HasGenericWithExtends.toString","href":"fake/HasGenericWithExtends/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"HasGenericWithExtends","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.HasGenericWithExtends.noSuchMethod","href":"fake/HasGenericWithExtends/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"HasGenericWithExtends","type":"class"}},{"name":"operator ==","qualifiedName":"fake.HasGenericWithExtends.==","href":"fake/HasGenericWithExtends/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"HasGenericWithExtends","type":"class"}},{"name":"Interface","qualifiedName":"fake.Interface","href":"fake/Interface-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"Interface","qualifiedName":"fake.Interface","href":"fake/Interface/Interface.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Interface","type":"class"}},{"name":"hashCode","qualifiedName":"fake.Interface.hashCode","href":"fake/Interface/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Interface","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.Interface.runtimeType","href":"fake/Interface/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Interface","type":"class"}},{"name":"toString","qualifiedName":"fake.Interface.toString","href":"fake/Interface/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Interface","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.Interface.noSuchMethod","href":"fake/Interface/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Interface","type":"class"}},{"name":"operator ==","qualifiedName":"fake.Interface.==","href":"fake/Interface/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Interface","type":"class"}},{"name":"LongFirstLine","qualifiedName":"fake.LongFirstLine","href":"fake/LongFirstLine-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"LongFirstLine","qualifiedName":"fake.LongFirstLine","href":"fake/LongFirstLine/LongFirstLine.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"LongFirstLine.fromHasGenerics","qualifiedName":"fake.LongFirstLine.fromHasGenerics","href":"fake/LongFirstLine/LongFirstLine.fromHasGenerics.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"LongFirstLine.fromMap","qualifiedName":"fake.LongFirstLine.fromMap","href":"fake/LongFirstLine/LongFirstLine.fromMap.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"ANSWER","qualifiedName":"fake.LongFirstLine.ANSWER","href":"fake/LongFirstLine/ANSWER-constant.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"THING","qualifiedName":"fake.LongFirstLine.THING","href":"fake/LongFirstLine/THING-constant.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"meaningOfLife","qualifiedName":"fake.LongFirstLine.meaningOfLife","href":"fake/LongFirstLine/meaningOfLife.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"staticGetter","qualifiedName":"fake.LongFirstLine.staticGetter","href":"fake/LongFirstLine/staticGetter.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"staticOnlySetter","qualifiedName":"fake.LongFirstLine.staticOnlySetter","href":"fake/LongFirstLine/staticOnlySetter.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"aStringProperty","qualifiedName":"fake.LongFirstLine.aStringProperty","href":"fake/LongFirstLine/aStringProperty.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"dynamicGetter","qualifiedName":"fake.LongFirstLine.dynamicGetter","href":"fake/LongFirstLine/dynamicGetter.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"onlySetter","qualifiedName":"fake.LongFirstLine.onlySetter","href":"fake/LongFirstLine/onlySetter.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"hashCode","qualifiedName":"fake.LongFirstLine.hashCode","href":"fake/LongFirstLine/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.LongFirstLine.runtimeType","href":"fake/LongFirstLine/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"noParams","qualifiedName":"fake.LongFirstLine.noParams","href":"fake/LongFirstLine/noParams.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"optionalParams","qualifiedName":"fake.LongFirstLine.optionalParams","href":"fake/LongFirstLine/optionalParams.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"returnString","qualifiedName":"fake.LongFirstLine.returnString","href":"fake/LongFirstLine/returnString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"twoParams","qualifiedName":"fake.LongFirstLine.twoParams","href":"fake/LongFirstLine/twoParams.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"toString","qualifiedName":"fake.LongFirstLine.toString","href":"fake/LongFirstLine/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.LongFirstLine.noSuchMethod","href":"fake/LongFirstLine/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"operator *","qualifiedName":"fake.LongFirstLine.*","href":"fake/LongFirstLine/operator_multiply.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"operator +","qualifiedName":"fake.LongFirstLine.+","href":"fake/LongFirstLine/operator_plus.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"operator ==","qualifiedName":"fake.LongFirstLine.==","href":"fake/LongFirstLine/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"staticMethodNoParams","qualifiedName":"fake.LongFirstLine.staticMethodNoParams","href":"fake/LongFirstLine/staticMethodNoParams.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"staticMethodReturnsVoid","qualifiedName":"fake.LongFirstLine.staticMethodReturnsVoid","href":"fake/LongFirstLine/staticMethodReturnsVoid.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"MixMeIn","qualifiedName":"fake.MixMeIn","href":"fake/MixMeIn-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"MixMeIn","qualifiedName":"fake.MixMeIn","href":"fake/MixMeIn/MixMeIn.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"MixMeIn","type":"class"}},{"name":"hashCode","qualifiedName":"fake.MixMeIn.hashCode","href":"fake/MixMeIn/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"MixMeIn","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.MixMeIn.runtimeType","href":"fake/MixMeIn/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"MixMeIn","type":"class"}},{"name":"toString","qualifiedName":"fake.MixMeIn.toString","href":"fake/MixMeIn/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MixMeIn","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.MixMeIn.noSuchMethod","href":"fake/MixMeIn/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MixMeIn","type":"class"}},{"name":"operator ==","qualifiedName":"fake.MixMeIn.==","href":"fake/MixMeIn/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"MixMeIn","type":"class"}},{"name":"Oops","qualifiedName":"fake.Oops","href":"fake/Oops-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"Oops","qualifiedName":"fake.Oops","href":"fake/Oops/Oops.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"Oops","type":"class"}},{"name":"message","qualifiedName":"fake.Oops.message","href":"fake/Oops/message.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Oops","type":"class"}},{"name":"hashCode","qualifiedName":"fake.Oops.hashCode","href":"fake/Oops/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Oops","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.Oops.runtimeType","href":"fake/Oops/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"Oops","type":"class"}},{"name":"toString","qualifiedName":"fake.Oops.toString","href":"fake/Oops/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Oops","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.Oops.noSuchMethod","href":"fake/Oops/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Oops","type":"class"}},{"name":"operator ==","qualifiedName":"fake.Oops.==","href":"fake/Oops/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"Oops","type":"class"}},{"name":"OperatorReferenceClass","qualifiedName":"fake.OperatorReferenceClass","href":"fake/OperatorReferenceClass-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"OperatorReferenceClass","qualifiedName":"fake.OperatorReferenceClass","href":"fake/OperatorReferenceClass/OperatorReferenceClass.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"OperatorReferenceClass","type":"class"}},{"name":"hashCode","qualifiedName":"fake.OperatorReferenceClass.hashCode","href":"fake/OperatorReferenceClass/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"OperatorReferenceClass","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.OperatorReferenceClass.runtimeType","href":"fake/OperatorReferenceClass/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"OperatorReferenceClass","type":"class"}},{"name":"toString","qualifiedName":"fake.OperatorReferenceClass.toString","href":"fake/OperatorReferenceClass/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"OperatorReferenceClass","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.OperatorReferenceClass.noSuchMethod","href":"fake/OperatorReferenceClass/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"OperatorReferenceClass","type":"class"}},{"name":"operator ==","qualifiedName":"fake.OperatorReferenceClass.==","href":"fake/OperatorReferenceClass/operator_equals.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"OperatorReferenceClass","type":"class"}},{"name":"OtherGenericsThing","qualifiedName":"fake.OtherGenericsThing","href":"fake/OtherGenericsThing-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"OtherGenericsThing","qualifiedName":"fake.OtherGenericsThing","href":"fake/OtherGenericsThing/OtherGenericsThing.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"hashCode","qualifiedName":"fake.OtherGenericsThing.hashCode","href":"fake/OtherGenericsThing/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.OtherGenericsThing.runtimeType","href":"fake/OtherGenericsThing/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"convert","qualifiedName":"fake.OtherGenericsThing.convert","href":"fake/OtherGenericsThing/convert.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"toString","qualifiedName":"fake.OtherGenericsThing.toString","href":"fake/OtherGenericsThing/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.OtherGenericsThing.noSuchMethod","href":"fake/OtherGenericsThing/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"operator ==","qualifiedName":"fake.OtherGenericsThing.==","href":"fake/OtherGenericsThing/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"SpecialList","qualifiedName":"fake.SpecialList","href":"fake/SpecialList-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"SpecialList","qualifiedName":"fake.SpecialList","href":"fake/SpecialList/SpecialList.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"length","qualifiedName":"fake.SpecialList.length","href":"fake/SpecialList/length.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"hashCode","qualifiedName":"fake.SpecialList.hashCode","href":"fake/SpecialList/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.SpecialList.runtimeType","href":"fake/SpecialList/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"iterator","qualifiedName":"fake.SpecialList.iterator","href":"fake/SpecialList/iterator.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"isEmpty","qualifiedName":"fake.SpecialList.isEmpty","href":"fake/SpecialList/isEmpty.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"isNotEmpty","qualifiedName":"fake.SpecialList.isNotEmpty","href":"fake/SpecialList/isNotEmpty.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"first","qualifiedName":"fake.SpecialList.first","href":"fake/SpecialList/first.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"last","qualifiedName":"fake.SpecialList.last","href":"fake/SpecialList/last.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"single","qualifiedName":"fake.SpecialList.single","href":"fake/SpecialList/single.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"reversed","qualifiedName":"fake.SpecialList.reversed","href":"fake/SpecialList/reversed.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"toString","qualifiedName":"fake.SpecialList.toString","href":"fake/SpecialList/toString.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.SpecialList.noSuchMethod","href":"fake/SpecialList/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"elementAt","qualifiedName":"fake.SpecialList.elementAt","href":"fake/SpecialList/elementAt.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"forEach","qualifiedName":"fake.SpecialList.forEach","href":"fake/SpecialList/forEach.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"contains","qualifiedName":"fake.SpecialList.contains","href":"fake/SpecialList/contains.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"every","qualifiedName":"fake.SpecialList.every","href":"fake/SpecialList/every.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"any","qualifiedName":"fake.SpecialList.any","href":"fake/SpecialList/any.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"firstWhere","qualifiedName":"fake.SpecialList.firstWhere","href":"fake/SpecialList/firstWhere.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"lastWhere","qualifiedName":"fake.SpecialList.lastWhere","href":"fake/SpecialList/lastWhere.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"singleWhere","qualifiedName":"fake.SpecialList.singleWhere","href":"fake/SpecialList/singleWhere.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"join","qualifiedName":"fake.SpecialList.join","href":"fake/SpecialList/join.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"where","qualifiedName":"fake.SpecialList.where","href":"fake/SpecialList/where.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"map","qualifiedName":"fake.SpecialList.map","href":"fake/SpecialList/map.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"expand","qualifiedName":"fake.SpecialList.expand","href":"fake/SpecialList/expand.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"reduce","qualifiedName":"fake.SpecialList.reduce","href":"fake/SpecialList/reduce.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"fold","qualifiedName":"fake.SpecialList.fold","href":"fake/SpecialList/fold.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"skip","qualifiedName":"fake.SpecialList.skip","href":"fake/SpecialList/skip.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"skipWhile","qualifiedName":"fake.SpecialList.skipWhile","href":"fake/SpecialList/skipWhile.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"take","qualifiedName":"fake.SpecialList.take","href":"fake/SpecialList/take.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"takeWhile","qualifiedName":"fake.SpecialList.takeWhile","href":"fake/SpecialList/takeWhile.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"toList","qualifiedName":"fake.SpecialList.toList","href":"fake/SpecialList/toList.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"toSet","qualifiedName":"fake.SpecialList.toSet","href":"fake/SpecialList/toSet.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"add","qualifiedName":"fake.SpecialList.add","href":"fake/SpecialList/add.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"addAll","qualifiedName":"fake.SpecialList.addAll","href":"fake/SpecialList/addAll.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"remove","qualifiedName":"fake.SpecialList.remove","href":"fake/SpecialList/remove.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"removeWhere","qualifiedName":"fake.SpecialList.removeWhere","href":"fake/SpecialList/removeWhere.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"retainWhere","qualifiedName":"fake.SpecialList.retainWhere","href":"fake/SpecialList/retainWhere.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"clear","qualifiedName":"fake.SpecialList.clear","href":"fake/SpecialList/clear.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"removeLast","qualifiedName":"fake.SpecialList.removeLast","href":"fake/SpecialList/removeLast.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"sort","qualifiedName":"fake.SpecialList.sort","href":"fake/SpecialList/sort.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"shuffle","qualifiedName":"fake.SpecialList.shuffle","href":"fake/SpecialList/shuffle.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"asMap","qualifiedName":"fake.SpecialList.asMap","href":"fake/SpecialList/asMap.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"sublist","qualifiedName":"fake.SpecialList.sublist","href":"fake/SpecialList/sublist.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"getRange","qualifiedName":"fake.SpecialList.getRange","href":"fake/SpecialList/getRange.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"removeRange","qualifiedName":"fake.SpecialList.removeRange","href":"fake/SpecialList/removeRange.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"fillRange","qualifiedName":"fake.SpecialList.fillRange","href":"fake/SpecialList/fillRange.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"setRange","qualifiedName":"fake.SpecialList.setRange","href":"fake/SpecialList/setRange.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"replaceRange","qualifiedName":"fake.SpecialList.replaceRange","href":"fake/SpecialList/replaceRange.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"indexOf","qualifiedName":"fake.SpecialList.indexOf","href":"fake/SpecialList/indexOf.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"lastIndexOf","qualifiedName":"fake.SpecialList.lastIndexOf","href":"fake/SpecialList/lastIndexOf.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"insert","qualifiedName":"fake.SpecialList.insert","href":"fake/SpecialList/insert.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"removeAt","qualifiedName":"fake.SpecialList.removeAt","href":"fake/SpecialList/removeAt.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"insertAll","qualifiedName":"fake.SpecialList.insertAll","href":"fake/SpecialList/insertAll.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"setAll","qualifiedName":"fake.SpecialList.setAll","href":"fake/SpecialList/setAll.html","type":"method","overriddenDepth":1,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"operator []","qualifiedName":"fake.SpecialList.[]","href":"fake/SpecialList/operator_get.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"operator []=","qualifiedName":"fake.SpecialList.[]=","href":"fake/SpecialList/operator_put.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"operator ==","qualifiedName":"fake.SpecialList.==","href":"fake/SpecialList/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"SubForDocComments","qualifiedName":"fake.SubForDocComments","href":"fake/SubForDocComments-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"SubForDocComments","qualifiedName":"fake.SubForDocComments","href":"fake/SubForDocComments/SubForDocComments.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"hashCode","qualifiedName":"fake.SubForDocComments.hashCode","href":"fake/SubForDocComments/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.SubForDocComments.runtimeType","href":"fake/SubForDocComments/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"localMethod","qualifiedName":"fake.SubForDocComments.localMethod","href":"fake/SubForDocComments/localMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"toString","qualifiedName":"fake.SubForDocComments.toString","href":"fake/SubForDocComments/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.SubForDocComments.noSuchMethod","href":"fake/SubForDocComments/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"operator ==","qualifiedName":"fake.SubForDocComments.==","href":"fake/SubForDocComments/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"SuperAwesomeClass","qualifiedName":"fake.SuperAwesomeClass","href":"fake/SuperAwesomeClass-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"SuperAwesomeClass","qualifiedName":"fake.SuperAwesomeClass","href":"fake/SuperAwesomeClass/SuperAwesomeClass.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"powers","qualifiedName":"fake.SuperAwesomeClass.powers","href":"fake/SuperAwesomeClass/powers.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"hashCode","qualifiedName":"fake.SuperAwesomeClass.hashCode","href":"fake/SuperAwesomeClass/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.SuperAwesomeClass.runtimeType","href":"fake/SuperAwesomeClass/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"fly","qualifiedName":"fake.SuperAwesomeClass.fly","href":"fake/SuperAwesomeClass/fly.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"toString","qualifiedName":"fake.SuperAwesomeClass.toString","href":"fake/SuperAwesomeClass/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.SuperAwesomeClass.noSuchMethod","href":"fake/SuperAwesomeClass/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"operator -","qualifiedName":"fake.SuperAwesomeClass.-","href":"fake/SuperAwesomeClass/operator_minus.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"operator ==","qualifiedName":"fake.SuperAwesomeClass.==","href":"fake/SuperAwesomeClass/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"WithGetterAndSetter","qualifiedName":"fake.WithGetterAndSetter","href":"fake/WithGetterAndSetter-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"WithGetterAndSetter","qualifiedName":"fake.WithGetterAndSetter","href":"fake/WithGetterAndSetter/WithGetterAndSetter.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"lengthX","qualifiedName":"fake.WithGetterAndSetter.lengthX","href":"fake/WithGetterAndSetter/lengthX.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"hashCode","qualifiedName":"fake.WithGetterAndSetter.hashCode","href":"fake/WithGetterAndSetter/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.WithGetterAndSetter.runtimeType","href":"fake/WithGetterAndSetter/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"toString","qualifiedName":"fake.WithGetterAndSetter.toString","href":"fake/WithGetterAndSetter/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.WithGetterAndSetter.noSuchMethod","href":"fake/WithGetterAndSetter/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"operator ==","qualifiedName":"fake.WithGetterAndSetter.==","href":"fake/WithGetterAndSetter/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"Color","qualifiedName":"fake.Color","href":"fake/Color-class.html","type":"enum","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"CUSTOM_CLASS","qualifiedName":"fake.CUSTOM_CLASS","href":"fake/CUSTOM_CLASS-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"DOWN","qualifiedName":"fake.DOWN","href":"fake/DOWN-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"greatAnnotation","qualifiedName":"fake.greatAnnotation","href":"fake/greatAnnotation-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"greatestAnnotation","qualifiedName":"fake.greatestAnnotation","href":"fake/greatestAnnotation-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"incorrectDocReference","qualifiedName":"fake.incorrectDocReference","href":"fake/incorrectDocReference-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"NAME_SINGLEUNDERSCORE","qualifiedName":"fake.NAME_SINGLEUNDERSCORE","href":"fake/NAME_SINGLEUNDERSCORE-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"NAME_WITH_TWO_UNDERSCORES","qualifiedName":"fake.NAME_WITH_TWO_UNDERSCORES","href":"fake/NAME_WITH_TWO_UNDERSCORES-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"PI","qualifiedName":"fake.PI","href":"fake/PI-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"required","qualifiedName":"fake.required","href":"fake/required-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"testingCodeSyntaxInOneLiners","qualifiedName":"fake.testingCodeSyntaxInOneLiners","href":"fake/testingCodeSyntaxInOneLiners-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"UP","qualifiedName":"fake.UP","href":"fake/UP-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"ZERO","qualifiedName":"fake.ZERO","href":"fake/ZERO-constant.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"dynamicGetter","qualifiedName":"fake.dynamicGetter","href":"fake/dynamicGetter.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"justGetter","qualifiedName":"fake.justGetter","href":"fake/justGetter.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"justSetter","qualifiedName":"fake.justSetter","href":"fake/justSetter.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"mapWithDynamicKeys","qualifiedName":"fake.mapWithDynamicKeys","href":"fake/mapWithDynamicKeys.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"meaningOfLife","qualifiedName":"fake.meaningOfLife","href":"fake/meaningOfLife.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"setAndGet","qualifiedName":"fake.setAndGet","href":"fake/setAndGet.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"simpleProperty","qualifiedName":"fake.simpleProperty","href":"fake/simpleProperty.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"addCallback","qualifiedName":"fake.addCallback","href":"fake/addCallback.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"addCallback2","qualifiedName":"fake.addCallback2","href":"fake/addCallback2.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"functionWithFunctionParameters","qualifiedName":"fake.functionWithFunctionParameters","href":"fake/functionWithFunctionParameters.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"onlyPositionalWithNoDefaultNoType","qualifiedName":"fake.onlyPositionalWithNoDefaultNoType","href":"fake/onlyPositionalWithNoDefaultNoType.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"paintImage1","qualifiedName":"fake.paintImage1","href":"fake/paintImage1.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"paintImage2","qualifiedName":"fake.paintImage2","href":"fake/paintImage2.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"paramFromAnotherLib","qualifiedName":"fake.paramFromAnotherLib","href":"fake/paramFromAnotherLib.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"short","qualifiedName":"fake.short","href":"fake/short.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"soIntense","qualifiedName":"fake.soIntense","href":"fake/soIntense.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"thisIsAlsoAsync","qualifiedName":"fake.thisIsAlsoAsync","href":"fake/thisIsAlsoAsync.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"thisIsAsync","qualifiedName":"fake.thisIsAsync","href":"fake/thisIsAsync.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"topLevelFunction","qualifiedName":"fake.topLevelFunction","href":"fake/topLevelFunction.html","type":"function","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"Callback2","qualifiedName":"fake.Callback2","href":"fake/Callback2.html","type":"typedef","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"FakeProcesses","qualifiedName":"fake.FakeProcesses","href":"fake/FakeProcesses.html","type":"typedef","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"GenericTypedef","qualifiedName":"fake.GenericTypedef","href":"fake/GenericTypedef.html","type":"typedef","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"LotsAndLotsOfParameters","qualifiedName":"fake.LotsAndLotsOfParameters","href":"fake/LotsAndLotsOfParameters.html","type":"typedef","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"VoidCallback","qualifiedName":"fake.VoidCallback","href":"fake/VoidCallback.html","type":"typedef","overriddenDepth":0,"enclosedBy":{"name":"fake","type":"library"}},{"name":"is_deprecated","qualifiedName":"is_deprecated","href":"is_deprecated/is_deprecated-library.html","type":"library","overriddenDepth":0},{"name":"two_exports","qualifiedName":"two_exports","href":"two_exports/two_exports-library.html","type":"library","overriddenDepth":0},{"name":"BaseClass","qualifiedName":"two_exports.BaseClass","href":"two_exports/BaseClass-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"two_exports","type":"library"}},{"name":"BaseClass","qualifiedName":"two_exports.BaseClass","href":"two_exports/BaseClass/BaseClass.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"BaseClass","type":"class"}},{"name":"hashCode","qualifiedName":"two_exports.BaseClass.hashCode","href":"two_exports/BaseClass/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"BaseClass","type":"class"}},{"name":"runtimeType","qualifiedName":"two_exports.BaseClass.runtimeType","href":"two_exports/BaseClass/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"BaseClass","type":"class"}},{"name":"toString","qualifiedName":"two_exports.BaseClass.toString","href":"two_exports/BaseClass/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"BaseClass","type":"class"}},{"name":"noSuchMethod","qualifiedName":"two_exports.BaseClass.noSuchMethod","href":"two_exports/BaseClass/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"BaseClass","type":"class"}},{"name":"operator ==","qualifiedName":"two_exports.BaseClass.==","href":"two_exports/BaseClass/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"BaseClass","type":"class"}},{"name":"ExtendingClass","qualifiedName":"two_exports.ExtendingClass","href":"two_exports/ExtendingClass-class.html","type":"class","overriddenDepth":0,"enclosedBy":{"name":"two_exports","type":"library"}},{"name":"ExtendingClass","qualifiedName":"two_exports.ExtendingClass","href":"two_exports/ExtendingClass/ExtendingClass.html","type":"constructor","overriddenDepth":0,"enclosedBy":{"name":"ExtendingClass","type":"class"}},{"name":"hashCode","qualifiedName":"two_exports.ExtendingClass.hashCode","href":"two_exports/ExtendingClass/hashCode.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ExtendingClass","type":"class"}},{"name":"runtimeType","qualifiedName":"two_exports.ExtendingClass.runtimeType","href":"two_exports/ExtendingClass/runtimeType.html","type":"property","overriddenDepth":0,"enclosedBy":{"name":"ExtendingClass","type":"class"}},{"name":"toString","qualifiedName":"two_exports.ExtendingClass.toString","href":"two_exports/ExtendingClass/toString.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ExtendingClass","type":"class"}},{"name":"noSuchMethod","qualifiedName":"two_exports.ExtendingClass.noSuchMethod","href":"two_exports/ExtendingClass/noSuchMethod.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ExtendingClass","type":"class"}},{"name":"operator ==","qualifiedName":"two_exports.ExtendingClass.==","href":"two_exports/ExtendingClass/operator_equals.html","type":"method","overriddenDepth":0,"enclosedBy":{"name":"ExtendingClass","type":"class"}},{"name":"topLevelVariable","qualifiedName":"two_exports.topLevelVariable","href":"two_exports/topLevelVariable.html","type":"top-level property","overriddenDepth":0,"enclosedBy":{"name":"two_exports","type":"library"}}]