diff --git a/lib/src/html/template_data.dart b/lib/src/html/template_data.dart index c196cdc702..a5309cf861 100644 --- a/lib/src/html/template_data.dart +++ b/lib/src/html/template_data.dart @@ -306,7 +306,7 @@ class MethodTemplateData extends TemplateData { '${library.name} library - Dart API'; @override String get layoutTitle => - _layoutTitle(method.name, 'method', method.isDeprecated); + _layoutTitle(method.name, method.fullkind, method.isDeprecated); @override String get metaDescription => 'API docs for the ${method.name} method from the ${clazz.name} class, ' diff --git a/lib/src/model.dart b/lib/src/model.dart index fde3ae753b..dd13b73541 100644 --- a/lib/src/model.dart +++ b/lib/src/model.dart @@ -28,8 +28,27 @@ import 'model_utils.dart'; import 'package_meta.dart' show PackageMeta, FileContents; import 'utils.dart' show stripComments; +Map>>> __crossdartJson; + final Map> _implementors = new Map(); +Map>>> get _crossdartJson { + if (__crossdartJson == null) { + if (config != null) { + var crossdartFile = + new File(p.join(config.inputDir.path, "crossdart.json")); + if (crossdartFile.existsSync()) { + __crossdartJson = JSON.decode(crossdartFile.readAsStringSync()); + } else { + __crossdartJson = {}; + } + } else { + __crossdartJson = {}; + } + } + return __crossdartJson; +} + int byName(Nameable a, Nameable b) => compareAsciiLowerCaseNatural(a.name, b.name); @@ -666,7 +685,6 @@ abstract class Documentable { String get oneLineDoc; } -// TODO: how do we get rid of this class? class Dynamic extends ModelElement { Dynamic(Element element, Library library) : super(element, library); @@ -1218,6 +1236,11 @@ class Method extends ModelElement String get fileName => "${name}.html"; + String get fullkind { + if (_method.isAbstract) return 'abstract $kind'; + return kind; + } + @override String get href => '${library.dirName}/${enclosingElement.name}/${fileName}'; @@ -1249,7 +1272,6 @@ class Method extends ModelElement MethodElement get _method => (element as MethodElement); } -// TODO: rename this to Property abstract class ModelElement implements Comparable, Nameable, Documentable { final Element element; final Library library; @@ -1953,24 +1975,6 @@ class Parameter extends ModelElement implements EnclosedElement { String toString() => element.name; } -Map>>> __crossdartJson; -Map>>> get _crossdartJson { - if (__crossdartJson == null) { - if (config != null) { - var crossdartFile = - new File(p.join(config.inputDir.path, "crossdart.json")); - if (crossdartFile.existsSync()) { - __crossdartJson = JSON.decode(crossdartFile.readAsStringSync()); - } else { - __crossdartJson = {}; - } - } else { - __crossdartJson = {}; - } - } - return __crossdartJson; -} - abstract class SourceCodeMixin { String _sourceCodeCache; String get crossdartHtmlTag { @@ -1987,10 +1991,6 @@ abstract class SourceCodeMixin { Library get library; - void clearSourceCodeCache() { - _sourceCodeCache = null; - } - String get sourceCode { if (_sourceCodeCache == null) { String contents = getFileContentsFor(element); @@ -2027,27 +2027,6 @@ abstract class SourceCodeMixin { return _sourceCodeCache; } - String get _crossdartUrl { - if (_lineNumber != null && _crossdartPath != null) { - String url = "//www.crossdart.info/p/${_crossdartPath}.html"; - return "${url}#line-${_lineNumber}"; - } else { - return null; - } - } - - int get _lineNumber { - var node = element.computeNode(); - if (node is Declaration && (node as Declaration).element != null) { - var element = (node as Declaration).element; - var lineNumber = lineNumberCache.lineNumber( - element.source.fullName, element.nameOffset); - return lineNumber + 1; - } else { - return null; - } - } - String get _crossdartPath { var node = element.computeNode(); if (node is Declaration && (node as Declaration).element != null) { @@ -2086,6 +2065,31 @@ abstract class SourceCodeMixin { return null; } } + + String get _crossdartUrl { + if (_lineNumber != null && _crossdartPath != null) { + String url = "//www.crossdart.info/p/${_crossdartPath}.html"; + return "${url}#line-${_lineNumber}"; + } else { + return null; + } + } + + int get _lineNumber { + var node = element.computeNode(); + if (node is Declaration && (node as Declaration).element != null) { + var element = (node as Declaration).element; + var lineNumber = lineNumberCache.lineNumber( + element.source.fullName, element.nameOffset); + return lineNumber + 1; + } else { + return null; + } + } + + void clearSourceCodeCache() { + _sourceCodeCache = null; + } } /// Top-level variables. But also picks up getters and setters? diff --git a/test/model_test.dart b/test/model_test.dart index a14d21baec..88e772848e 100644 --- a/test/model_test.dart +++ b/test/model_test.dart @@ -592,7 +592,7 @@ void main() { }); test('inherited methods,including from Object ', () { - expect(B.inheritedMethods, hasLength(6)); + expect(B.inheritedMethods, hasLength(7)); expect(B.hasInheritedMethods, isTrue); }); @@ -632,10 +632,11 @@ void main() { }); test('F has many inherited methods', () { - expect(F.inheritedMethods, hasLength(7)); + expect(F.inheritedMethods, hasLength(8)); expect( F.inheritedMethods.map((im) => im.name), equals([ + 'abstractMethod', 'foo', 'getClassA', 'noSuchMethod', @@ -821,8 +822,8 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, }); group('Method', () { - Class classB, klass, HasGenerics, CatString; - Method m1, isGreaterThan, m4, m5, m6, m7, convertToMap; + Class classB, klass, HasGenerics, Cat, CatString; + Method m1, isGreaterThan, m4, m5, m6, m7, convertToMap, abstractMethod; Method inheritedClear, testGeneric; setUp(() { @@ -831,6 +832,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, HasGenerics = fakeLibrary.classes.singleWhere((c) => c.name == 'HasGenerics'); CatString = exLibrary.classes.singleWhere((c) => c.name == 'CatString'); + Cat = exLibrary.classes.singleWhere((c) => c.name == 'Cat'); inheritedClear = CatString.inheritedMethods.singleWhere((m) => m.name == 'clear'); m1 = classB.instanceMethods.singleWhere((m) => m.name == 'm1'); @@ -842,6 +844,8 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, m5 = klass.instanceMethods.singleWhere((m) => m.name == 'another'); m6 = klass.instanceMethods.singleWhere((m) => m.name == 'toString'); m7 = classB.instanceMethods.singleWhere((m) => m.name == 'doNothing'); + abstractMethod = + Cat.instanceMethods.singleWhere((m) => m.name == 'abstractMethod'); testGeneric = exLibrary.classes .singleWhere((c) => c.name == 'Dog') .instanceMethods @@ -861,6 +865,10 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, expect(m1.fullyQualifiedName, 'ex.B.m1'); }); + test('has abstract kind', () { + expect(abstractMethod.fullkind, 'abstract method'); + }); + test( 'an inherited method has class as the enclosing class, when superclass not in package', () { diff --git a/testing/test_package/lib/example.dart b/testing/test_package/lib/example.dart index e0b29c453e..83b78d9ca6 100644 --- a/testing/test_package/lib/example.dart +++ b/testing/test_package/lib/example.dart @@ -16,12 +16,6 @@ const String COLOR_GREEN = 'green'; const String COLOR_ORANGE = 'orange'; -const List PRETTY_COLORS = const [ - COLOR_GREEN, - COLOR_ORANGE, - 'blue' -]; - const String COMPLEX_COLOR = 'red' + '-' + 'green' + '-' + 'blue'; /// top level var @@ -32,7 +26,13 @@ const incorrectDocReference = 'same name as const from fake'; /// This should [not work]. const incorrectDocReferenceFromEx = 'doh'; + const ConstantCat MY_CAT = const ConstantCat('tabby'); +const List PRETTY_COLORS = const [ + COLOR_GREEN, + COLOR_ORANGE, + 'blue' +]; @deprecated int deprecatedField; @@ -165,6 +165,8 @@ class B extends Apple with Cat { abstract class Cat { bool get isImplemented; + + void abstractMethod(); } class CatString extends StringBuffer {} @@ -175,6 +177,10 @@ class ConstantCat implements Cat { const ConstantCat(this.name); bool get isImplemented => true; + + void abstractMethod() { + // do nothing + } } /// implements [Cat], [E] diff --git a/testing/test_package_docs/ex/B-class.html b/testing/test_package_docs/ex/B-class.html index 38065e8e10..425dc621e2 100644 --- a/testing/test_package_docs/ex/B-class.html +++ b/testing/test_package_docs/ex/B-class.html @@ -279,6 +279,15 @@

Operators

Methods

+
+ abstractMethod() + → void + +
+
+

+
inherited
+
doNothing() → Future @@ -387,6 +396,7 @@
B
  • operator ==
  • Methods
  • +
  • abstractMethod
  • doNothing
  • isGreaterThan
  • m1
  • diff --git a/testing/test_package_docs/ex/B/B.html b/testing/test_package_docs/ex/B/B.html index d1025161df..32c79b9ef2 100644 --- a/testing/test_package_docs/ex/B/B.html +++ b/testing/test_package_docs/ex/B/B.html @@ -96,6 +96,7 @@
    B
  • operator ==
  • Methods
  • +
  • abstractMethod
  • doNothing
  • isGreaterThan
  • m1
  • diff --git a/testing/test_package_docs/ex/B/autoCompress.html b/testing/test_package_docs/ex/B/autoCompress.html index 00c2534efd..f509145135 100644 --- a/testing/test_package_docs/ex/B/autoCompress.html +++ b/testing/test_package_docs/ex/B/autoCompress.html @@ -95,6 +95,7 @@
    B
  • operator ==
  • Methods
  • +
  • abstractMethod
  • doNothing
  • isGreaterThan
  • m1
  • diff --git a/testing/test_package_docs/ex/B/doNothing.html b/testing/test_package_docs/ex/B/doNothing.html index 2d5c654c1d..7b2d36c067 100644 --- a/testing/test_package_docs/ex/B/doNothing.html +++ b/testing/test_package_docs/ex/B/doNothing.html @@ -95,6 +95,7 @@
    B
  • operator ==
  • Methods
  • +
  • abstractMethod
  • doNothing
  • isGreaterThan
  • m1
  • diff --git a/testing/test_package_docs/ex/B/hashCode.html b/testing/test_package_docs/ex/B/hashCode.html index 5580e60868..5cadfec1a5 100644 --- a/testing/test_package_docs/ex/B/hashCode.html +++ b/testing/test_package_docs/ex/B/hashCode.html @@ -95,6 +95,7 @@
    B
  • operator ==
  • Methods
  • +
  • abstractMethod
  • doNothing
  • isGreaterThan
  • m1
  • diff --git a/testing/test_package_docs/ex/B/isImplemented.html b/testing/test_package_docs/ex/B/isImplemented.html index 425aa546b1..1e30ab5909 100644 --- a/testing/test_package_docs/ex/B/isImplemented.html +++ b/testing/test_package_docs/ex/B/isImplemented.html @@ -95,6 +95,7 @@
    B
  • operator ==
  • Methods
  • +
  • abstractMethod
  • doNothing
  • isGreaterThan
  • m1
  • diff --git a/testing/test_package_docs/ex/B/list.html b/testing/test_package_docs/ex/B/list.html index fbca22599b..4bfb7f9c4c 100644 --- a/testing/test_package_docs/ex/B/list.html +++ b/testing/test_package_docs/ex/B/list.html @@ -95,6 +95,7 @@
    B
  • operator ==
  • Methods
  • +
  • abstractMethod
  • doNothing
  • isGreaterThan
  • m1
  • diff --git a/testing/test_package_docs/ex/B/m1.html b/testing/test_package_docs/ex/B/m1.html index 34113e3850..5dc2b1315f 100644 --- a/testing/test_package_docs/ex/B/m1.html +++ b/testing/test_package_docs/ex/B/m1.html @@ -95,6 +95,7 @@
    B
  • operator ==
  • Methods
  • +
  • abstractMethod
  • doNothing
  • isGreaterThan
  • m1
  • diff --git a/testing/test_package_docs/ex/B/noSuchMethod.html b/testing/test_package_docs/ex/B/noSuchMethod.html index 353511903e..6de5ab08e2 100644 --- a/testing/test_package_docs/ex/B/noSuchMethod.html +++ b/testing/test_package_docs/ex/B/noSuchMethod.html @@ -95,6 +95,7 @@
    B
  • operator ==
  • Methods
  • +
  • abstractMethod
  • doNothing
  • isGreaterThan
  • m1
  • diff --git a/testing/test_package_docs/ex/B/operator_equals.html b/testing/test_package_docs/ex/B/operator_equals.html index 514a9e55a2..80addf4137 100644 --- a/testing/test_package_docs/ex/B/operator_equals.html +++ b/testing/test_package_docs/ex/B/operator_equals.html @@ -95,6 +95,7 @@
    B
  • operator ==
  • Methods
  • +
  • abstractMethod
  • doNothing
  • isGreaterThan
  • m1
  • diff --git a/testing/test_package_docs/ex/B/runtimeType.html b/testing/test_package_docs/ex/B/runtimeType.html index 2a19000a20..c3cc579216 100644 --- a/testing/test_package_docs/ex/B/runtimeType.html +++ b/testing/test_package_docs/ex/B/runtimeType.html @@ -95,6 +95,7 @@
    B
  • operator ==
  • Methods
  • +
  • abstractMethod
  • doNothing
  • isGreaterThan
  • m1
  • diff --git a/testing/test_package_docs/ex/B/toString.html b/testing/test_package_docs/ex/B/toString.html index 3729ddd136..ca479f662b 100644 --- a/testing/test_package_docs/ex/B/toString.html +++ b/testing/test_package_docs/ex/B/toString.html @@ -95,6 +95,7 @@
    B
  • operator ==
  • Methods
  • +
  • abstractMethod
  • doNothing
  • isGreaterThan
  • m1
  • diff --git a/testing/test_package_docs/ex/B/writeMsg.html b/testing/test_package_docs/ex/B/writeMsg.html index a4efec17c0..2acf57c4c5 100644 --- a/testing/test_package_docs/ex/B/writeMsg.html +++ b/testing/test_package_docs/ex/B/writeMsg.html @@ -95,6 +95,7 @@
    B
  • operator ==
  • Methods
  • +
  • abstractMethod
  • doNothing
  • isGreaterThan
  • m1
  • diff --git a/testing/test_package_docs/ex/Cat-class.html b/testing/test_package_docs/ex/Cat-class.html index ba6a849ab1..1d33a3c5ce 100644 --- a/testing/test_package_docs/ex/Cat-class.html +++ b/testing/test_package_docs/ex/Cat-class.html @@ -60,6 +60,7 @@

  • Properties
  • Constructors
  • Operators
  • +
  • Methods
  • @@ -216,9 +217,17 @@

    Operators

    -
    +

    Methods

    +
    + abstractMethod() + → void + +
    +
    +

    +
    noSuchMethod(Invocation invocation) → dynamic @@ -261,7 +270,8 @@
    Cat
  • Operators
  • operator ==
  • -
  • Methods
  • +
  • Methods
  • +
  • abstractMethod
  • noSuchMethod
  • toString
  • diff --git a/testing/test_package_docs/ex/Cat/Cat.html b/testing/test_package_docs/ex/Cat/Cat.html index 92b83ee5a5..ce6dd6429a 100644 --- a/testing/test_package_docs/ex/Cat/Cat.html +++ b/testing/test_package_docs/ex/Cat/Cat.html @@ -90,7 +90,8 @@
    Cat
  • Operators
  • operator ==
  • -
  • Methods
  • +
  • Methods
  • +
  • abstractMethod
  • noSuchMethod
  • toString
  • diff --git a/testing/test_package_docs/ex/Cat/abstractMethod.html b/testing/test_package_docs/ex/Cat/abstractMethod.html new file mode 100644 index 0000000000..9915fffc9e --- /dev/null +++ b/testing/test_package_docs/ex/Cat/abstractMethod.html @@ -0,0 +1,145 @@ + + + + + + + + abstractMethod method - Cat class - ex library - Dart API + + + + + + + + + + + + + + + +
    + +
    + + +
    +
    +
    + +
    +

    + abstract method abstractMethod +

    +
    +
    +
    +
    + +
    + +
    +
    + + + +
    +
    + void + abstractMethod() +
    + + + +
    + +
    +
    + +
    +
    +
    +

    + + test_package 0.0.1 + + • + + + Dart + + + • + + cc license + +

    +
    +
    +
    + + + + + + + + + + + + diff --git a/testing/test_package_docs/ex/Cat/hashCode.html b/testing/test_package_docs/ex/Cat/hashCode.html index 5e949972f4..9544a90bf2 100644 --- a/testing/test_package_docs/ex/Cat/hashCode.html +++ b/testing/test_package_docs/ex/Cat/hashCode.html @@ -89,7 +89,8 @@
    Cat
  • Operators
  • operator ==
  • -
  • Methods
  • +
  • Methods
  • +
  • abstractMethod
  • noSuchMethod
  • toString
  • diff --git a/testing/test_package_docs/ex/Cat/isImplemented.html b/testing/test_package_docs/ex/Cat/isImplemented.html index 6668634a2c..2dd382cf01 100644 --- a/testing/test_package_docs/ex/Cat/isImplemented.html +++ b/testing/test_package_docs/ex/Cat/isImplemented.html @@ -89,7 +89,8 @@
    Cat
  • Operators
  • operator ==
  • -
  • Methods
  • +
  • Methods
  • +
  • abstractMethod
  • noSuchMethod
  • toString
  • diff --git a/testing/test_package_docs/ex/Cat/noSuchMethod.html b/testing/test_package_docs/ex/Cat/noSuchMethod.html index 8c2fb98a32..19f1b22339 100644 --- a/testing/test_package_docs/ex/Cat/noSuchMethod.html +++ b/testing/test_package_docs/ex/Cat/noSuchMethod.html @@ -89,7 +89,8 @@
    Cat
  • Operators
  • operator ==
  • -
  • Methods
  • +
  • Methods
  • +
  • abstractMethod
  • noSuchMethod
  • toString
  • diff --git a/testing/test_package_docs/ex/Cat/operator_equals.html b/testing/test_package_docs/ex/Cat/operator_equals.html index 6b7dd585c2..c68d3c425d 100644 --- a/testing/test_package_docs/ex/Cat/operator_equals.html +++ b/testing/test_package_docs/ex/Cat/operator_equals.html @@ -89,7 +89,8 @@
    Cat
  • Operators
  • operator ==
  • -
  • Methods
  • +
  • Methods
  • +
  • abstractMethod
  • noSuchMethod
  • toString
  • diff --git a/testing/test_package_docs/ex/Cat/runtimeType.html b/testing/test_package_docs/ex/Cat/runtimeType.html index d823fa78ef..22141a385a 100644 --- a/testing/test_package_docs/ex/Cat/runtimeType.html +++ b/testing/test_package_docs/ex/Cat/runtimeType.html @@ -89,7 +89,8 @@
    Cat
  • Operators
  • operator ==
  • -
  • Methods
  • +
  • Methods
  • +
  • abstractMethod
  • noSuchMethod
  • toString
  • diff --git a/testing/test_package_docs/ex/Cat/toString.html b/testing/test_package_docs/ex/Cat/toString.html index 9a2baf85f7..a7dc2040b7 100644 --- a/testing/test_package_docs/ex/Cat/toString.html +++ b/testing/test_package_docs/ex/Cat/toString.html @@ -89,7 +89,8 @@
    Cat
  • Operators
  • operator ==
  • -
  • Methods
  • +
  • Methods
  • +
  • abstractMethod
  • noSuchMethod
  • toString
  • diff --git a/testing/test_package_docs/ex/ConstantCat-class.html b/testing/test_package_docs/ex/ConstantCat-class.html index 6eae029a7c..4e9691f74e 100644 --- a/testing/test_package_docs/ex/ConstantCat-class.html +++ b/testing/test_package_docs/ex/ConstantCat-class.html @@ -60,6 +60,7 @@

  • Properties
  • Constructors
  • Operators
  • +
  • Methods
  • @@ -227,9 +228,17 @@

    Operators

    -
    +

    Methods

    +
    + abstractMethod() + → void + +
    +
    +

    +
    noSuchMethod(Invocation invocation) → dynamic @@ -273,7 +282,8 @@
    ConstantCat
  • Operators
  • operator ==
  • -
  • Methods
  • +
  • Methods
  • +
  • abstractMethod
  • noSuchMethod
  • toString
  • diff --git a/testing/test_package_docs/ex/ConstantCat/ConstantCat.html b/testing/test_package_docs/ex/ConstantCat/ConstantCat.html index f9d9907d31..4379839c06 100644 --- a/testing/test_package_docs/ex/ConstantCat/ConstantCat.html +++ b/testing/test_package_docs/ex/ConstantCat/ConstantCat.html @@ -91,7 +91,8 @@
    ConstantCat
  • Operators
  • operator ==
  • -
  • Methods
  • +
  • Methods
  • +
  • abstractMethod
  • noSuchMethod
  • toString
  • diff --git a/testing/test_package_docs/ex/ConstantCat/abstractMethod.html b/testing/test_package_docs/ex/ConstantCat/abstractMethod.html new file mode 100644 index 0000000000..196a80d8e2 --- /dev/null +++ b/testing/test_package_docs/ex/ConstantCat/abstractMethod.html @@ -0,0 +1,146 @@ + + + + + + + + abstractMethod method - ConstantCat class - ex library - Dart API + + + + + + + + + + + + + + + +
    + +
    + + +
    +
    +
    + +
    +

    + method abstractMethod +

    +
    +
    +
    +
    + +
    + +
    +
    + + + +
    +
    + void + abstractMethod() +
    + + + +
    + +
    +
    + +
    +
    +
    +

    + + test_package 0.0.1 + + • + + + Dart + + + • + + cc license + +

    +
    +
    +
    + + + + + + + + + + + + diff --git a/testing/test_package_docs/ex/ConstantCat/hashCode.html b/testing/test_package_docs/ex/ConstantCat/hashCode.html index 30408b8707..6bcbdf3a89 100644 --- a/testing/test_package_docs/ex/ConstantCat/hashCode.html +++ b/testing/test_package_docs/ex/ConstantCat/hashCode.html @@ -90,7 +90,8 @@
    ConstantCat
  • Operators
  • operator ==
  • -
  • Methods
  • +
  • Methods
  • +
  • abstractMethod
  • noSuchMethod
  • toString
  • diff --git a/testing/test_package_docs/ex/ConstantCat/isImplemented.html b/testing/test_package_docs/ex/ConstantCat/isImplemented.html index 9268b9e41a..86dbb3b520 100644 --- a/testing/test_package_docs/ex/ConstantCat/isImplemented.html +++ b/testing/test_package_docs/ex/ConstantCat/isImplemented.html @@ -90,7 +90,8 @@
    ConstantCat
  • Operators
  • operator ==
  • -
  • Methods
  • +
  • Methods
  • +
  • abstractMethod
  • noSuchMethod
  • toString
  • diff --git a/testing/test_package_docs/ex/ConstantCat/name.html b/testing/test_package_docs/ex/ConstantCat/name.html index 080173882e..e2a9e8ecf5 100644 --- a/testing/test_package_docs/ex/ConstantCat/name.html +++ b/testing/test_package_docs/ex/ConstantCat/name.html @@ -90,7 +90,8 @@
    ConstantCat
  • Operators
  • operator ==
  • -
  • Methods
  • +
  • Methods
  • +
  • abstractMethod
  • noSuchMethod
  • toString
  • diff --git a/testing/test_package_docs/ex/ConstantCat/noSuchMethod.html b/testing/test_package_docs/ex/ConstantCat/noSuchMethod.html index 40b3e2cb89..015df56abc 100644 --- a/testing/test_package_docs/ex/ConstantCat/noSuchMethod.html +++ b/testing/test_package_docs/ex/ConstantCat/noSuchMethod.html @@ -90,7 +90,8 @@
    ConstantCat
  • Operators
  • operator ==
  • -
  • Methods
  • +
  • Methods
  • +
  • abstractMethod
  • noSuchMethod
  • toString
  • diff --git a/testing/test_package_docs/ex/ConstantCat/operator_equals.html b/testing/test_package_docs/ex/ConstantCat/operator_equals.html index fad87c0709..18715c5e4f 100644 --- a/testing/test_package_docs/ex/ConstantCat/operator_equals.html +++ b/testing/test_package_docs/ex/ConstantCat/operator_equals.html @@ -90,7 +90,8 @@
    ConstantCat
  • Operators
  • operator ==
  • -
  • Methods
  • +
  • Methods
  • +
  • abstractMethod
  • noSuchMethod
  • toString
  • diff --git a/testing/test_package_docs/ex/ConstantCat/runtimeType.html b/testing/test_package_docs/ex/ConstantCat/runtimeType.html index a67f39415c..775e8320d0 100644 --- a/testing/test_package_docs/ex/ConstantCat/runtimeType.html +++ b/testing/test_package_docs/ex/ConstantCat/runtimeType.html @@ -90,7 +90,8 @@
    ConstantCat
  • Operators
  • operator ==
  • -
  • Methods
  • +
  • Methods
  • +
  • abstractMethod
  • noSuchMethod
  • toString
  • diff --git a/testing/test_package_docs/ex/ConstantCat/toString.html b/testing/test_package_docs/ex/ConstantCat/toString.html index 3bf3c5acf9..400a7a4270 100644 --- a/testing/test_package_docs/ex/ConstantCat/toString.html +++ b/testing/test_package_docs/ex/ConstantCat/toString.html @@ -90,7 +90,8 @@
    ConstantCat
  • Operators
  • operator ==
  • -
  • Methods
  • +
  • Methods
  • +
  • abstractMethod
  • noSuchMethod
  • toString
  • diff --git a/testing/test_package_docs/ex/Dog-class.html b/testing/test_package_docs/ex/Dog-class.html index 7787e98217..2db7a14024 100644 --- a/testing/test_package_docs/ex/Dog-class.html +++ b/testing/test_package_docs/ex/Dog-class.html @@ -288,6 +288,15 @@

    Operators

    Methods

    +
    + abstractMethod() + → void + +
    +
    +

    +
    inherited
    +
    foo() → Future @@ -370,6 +379,7 @@
    Dog
  • operator ==
  • Methods
  • +
  • abstractMethod
  • foo
  • getClassA
  • noSuchMethod
  • diff --git a/testing/test_package_docs/ex/Dog/Dog.deprecatedCreate.html b/testing/test_package_docs/ex/Dog/Dog.deprecatedCreate.html index e1221c7e5c..8d1faa7686 100644 --- a/testing/test_package_docs/ex/Dog/Dog.deprecatedCreate.html +++ b/testing/test_package_docs/ex/Dog/Dog.deprecatedCreate.html @@ -98,6 +98,7 @@
    Dog
  • operator ==
  • Methods
  • +
  • abstractMethod
  • foo
  • getClassA
  • noSuchMethod
  • diff --git a/testing/test_package_docs/ex/Dog/Dog.html b/testing/test_package_docs/ex/Dog/Dog.html index 955242513b..29a85730ca 100644 --- a/testing/test_package_docs/ex/Dog/Dog.html +++ b/testing/test_package_docs/ex/Dog/Dog.html @@ -98,6 +98,7 @@
    Dog
  • operator ==
  • Methods
  • +
  • abstractMethod
  • foo
  • getClassA
  • noSuchMethod
  • diff --git a/testing/test_package_docs/ex/Dog/createDog.html b/testing/test_package_docs/ex/Dog/createDog.html index 61ab049cb7..cbcab38291 100644 --- a/testing/test_package_docs/ex/Dog/createDog.html +++ b/testing/test_package_docs/ex/Dog/createDog.html @@ -97,6 +97,7 @@
    Dog
  • operator ==
  • Methods
  • +
  • abstractMethod
  • foo
  • getClassA
  • noSuchMethod
  • diff --git a/testing/test_package_docs/ex/Dog/deprecatedField.html b/testing/test_package_docs/ex/Dog/deprecatedField.html index 6a8558b51c..d829ab0c10 100644 --- a/testing/test_package_docs/ex/Dog/deprecatedField.html +++ b/testing/test_package_docs/ex/Dog/deprecatedField.html @@ -97,6 +97,7 @@
    Dog
  • operator ==
  • Methods
  • +
  • abstractMethod
  • foo
  • getClassA
  • noSuchMethod
  • diff --git a/testing/test_package_docs/ex/Dog/deprecatedGetter.html b/testing/test_package_docs/ex/Dog/deprecatedGetter.html index 9a8b4a220e..2cbb6bf7db 100644 --- a/testing/test_package_docs/ex/Dog/deprecatedGetter.html +++ b/testing/test_package_docs/ex/Dog/deprecatedGetter.html @@ -97,6 +97,7 @@
    Dog
  • operator ==
  • Methods
  • +
  • abstractMethod
  • foo
  • getClassA
  • noSuchMethod
  • diff --git a/testing/test_package_docs/ex/Dog/deprecatedSetter.html b/testing/test_package_docs/ex/Dog/deprecatedSetter.html index f9361c0a63..174c61189e 100644 --- a/testing/test_package_docs/ex/Dog/deprecatedSetter.html +++ b/testing/test_package_docs/ex/Dog/deprecatedSetter.html @@ -97,6 +97,7 @@
    Dog
  • operator ==
  • Methods
  • +
  • abstractMethod
  • foo
  • getClassA
  • noSuchMethod
  • diff --git a/testing/test_package_docs/ex/Dog/foo.html b/testing/test_package_docs/ex/Dog/foo.html index c98b6a1b22..9baa8de6a9 100644 --- a/testing/test_package_docs/ex/Dog/foo.html +++ b/testing/test_package_docs/ex/Dog/foo.html @@ -97,6 +97,7 @@
    Dog
  • operator ==
  • Methods
  • +
  • abstractMethod
  • foo
  • getClassA
  • noSuchMethod
  • diff --git a/testing/test_package_docs/ex/Dog/getClassA.html b/testing/test_package_docs/ex/Dog/getClassA.html index 24f454d184..b25551c2c1 100644 --- a/testing/test_package_docs/ex/Dog/getClassA.html +++ b/testing/test_package_docs/ex/Dog/getClassA.html @@ -97,6 +97,7 @@
    Dog
  • operator ==
  • Methods
  • +
  • abstractMethod
  • foo
  • getClassA
  • noSuchMethod
  • diff --git a/testing/test_package_docs/ex/Dog/hashCode.html b/testing/test_package_docs/ex/Dog/hashCode.html index 20c9a186d1..2e66325d6f 100644 --- a/testing/test_package_docs/ex/Dog/hashCode.html +++ b/testing/test_package_docs/ex/Dog/hashCode.html @@ -97,6 +97,7 @@
    Dog
  • operator ==
  • Methods
  • +
  • abstractMethod
  • foo
  • getClassA
  • noSuchMethod
  • diff --git a/testing/test_package_docs/ex/Dog/isImplemented.html b/testing/test_package_docs/ex/Dog/isImplemented.html index b97a476c6a..ba9eb0dfe0 100644 --- a/testing/test_package_docs/ex/Dog/isImplemented.html +++ b/testing/test_package_docs/ex/Dog/isImplemented.html @@ -97,6 +97,7 @@
    Dog
  • operator ==
  • Methods
  • +
  • abstractMethod
  • foo
  • getClassA
  • noSuchMethod
  • diff --git a/testing/test_package_docs/ex/Dog/name.html b/testing/test_package_docs/ex/Dog/name.html index 3a7d752a1a..626cb2e3a8 100644 --- a/testing/test_package_docs/ex/Dog/name.html +++ b/testing/test_package_docs/ex/Dog/name.html @@ -97,6 +97,7 @@
    Dog
  • operator ==
  • Methods
  • +
  • abstractMethod
  • foo
  • getClassA
  • noSuchMethod
  • diff --git a/testing/test_package_docs/ex/Dog/noSuchMethod.html b/testing/test_package_docs/ex/Dog/noSuchMethod.html index e1877d900e..989d7478a1 100644 --- a/testing/test_package_docs/ex/Dog/noSuchMethod.html +++ b/testing/test_package_docs/ex/Dog/noSuchMethod.html @@ -97,6 +97,7 @@
    Dog
  • operator ==
  • Methods
  • +
  • abstractMethod
  • foo
  • getClassA
  • noSuchMethod
  • diff --git a/testing/test_package_docs/ex/Dog/operator_equals.html b/testing/test_package_docs/ex/Dog/operator_equals.html index fcdc976158..cf828fedb3 100644 --- a/testing/test_package_docs/ex/Dog/operator_equals.html +++ b/testing/test_package_docs/ex/Dog/operator_equals.html @@ -97,6 +97,7 @@
    Dog
  • operator ==
  • Methods
  • +
  • abstractMethod
  • foo
  • getClassA
  • noSuchMethod
  • diff --git a/testing/test_package_docs/ex/Dog/runtimeType.html b/testing/test_package_docs/ex/Dog/runtimeType.html index 271382663d..ffd4b80346 100644 --- a/testing/test_package_docs/ex/Dog/runtimeType.html +++ b/testing/test_package_docs/ex/Dog/runtimeType.html @@ -97,6 +97,7 @@
    Dog
  • operator ==
  • Methods
  • +
  • abstractMethod
  • foo
  • getClassA
  • noSuchMethod
  • diff --git a/testing/test_package_docs/ex/Dog/testGeneric.html b/testing/test_package_docs/ex/Dog/testGeneric.html index 4b90814d0d..6dd6b71531 100644 --- a/testing/test_package_docs/ex/Dog/testGeneric.html +++ b/testing/test_package_docs/ex/Dog/testGeneric.html @@ -97,6 +97,7 @@
    Dog
  • operator ==
  • Methods
  • +
  • abstractMethod
  • foo
  • getClassA
  • noSuchMethod
  • diff --git a/testing/test_package_docs/ex/Dog/testMethod.html b/testing/test_package_docs/ex/Dog/testMethod.html index b495304d94..8007f36a5f 100644 --- a/testing/test_package_docs/ex/Dog/testMethod.html +++ b/testing/test_package_docs/ex/Dog/testMethod.html @@ -97,6 +97,7 @@
    Dog
  • operator ==
  • Methods
  • +
  • abstractMethod
  • foo
  • getClassA
  • noSuchMethod
  • diff --git a/testing/test_package_docs/ex/Dog/toString.html b/testing/test_package_docs/ex/Dog/toString.html index e575a0ec5a..431f8c3b17 100644 --- a/testing/test_package_docs/ex/Dog/toString.html +++ b/testing/test_package_docs/ex/Dog/toString.html @@ -97,6 +97,7 @@
    Dog
  • operator ==
  • Methods
  • +
  • abstractMethod
  • foo
  • getClassA
  • noSuchMethod
  • diff --git a/testing/test_package_docs/ex/F-class.html b/testing/test_package_docs/ex/F-class.html index 4cfb972f0e..7b766f69b0 100644 --- a/testing/test_package_docs/ex/F-class.html +++ b/testing/test_package_docs/ex/F-class.html @@ -259,6 +259,15 @@

    Operators

    Methods

    +
    + abstractMethod() + → void + +
    +
    +

    +
    inherited
    +
    foo() → Future @@ -359,6 +368,7 @@
    F
  • operator ==
  • Methods
  • +
  • abstractMethod
  • foo
  • getClassA
  • methodWithGenericParam
  • diff --git a/testing/test_package_docs/ex/F/F.html b/testing/test_package_docs/ex/F/F.html index 9f572e334f..a850953b30 100644 --- a/testing/test_package_docs/ex/F/F.html +++ b/testing/test_package_docs/ex/F/F.html @@ -95,6 +95,7 @@
    F
  • operator ==
  • Methods
  • +
  • abstractMethod
  • foo
  • getClassA
  • methodWithGenericParam
  • diff --git a/testing/test_package_docs/ex/F/hashCode.html b/testing/test_package_docs/ex/F/hashCode.html index 2115f061ad..528a981981 100644 --- a/testing/test_package_docs/ex/F/hashCode.html +++ b/testing/test_package_docs/ex/F/hashCode.html @@ -94,6 +94,7 @@
    F
  • operator ==
  • Methods
  • +
  • abstractMethod
  • foo
  • getClassA
  • methodWithGenericParam
  • diff --git a/testing/test_package_docs/ex/F/methodWithGenericParam.html b/testing/test_package_docs/ex/F/methodWithGenericParam.html index 98a34063bf..41a1266d81 100644 --- a/testing/test_package_docs/ex/F/methodWithGenericParam.html +++ b/testing/test_package_docs/ex/F/methodWithGenericParam.html @@ -94,6 +94,7 @@
    F
  • operator ==
  • Methods
  • +
  • abstractMethod
  • foo
  • getClassA
  • methodWithGenericParam
  • diff --git a/testing/test_package_docs/ex/F/noSuchMethod.html b/testing/test_package_docs/ex/F/noSuchMethod.html index b13d0ab0b4..5065a19b4e 100644 --- a/testing/test_package_docs/ex/F/noSuchMethod.html +++ b/testing/test_package_docs/ex/F/noSuchMethod.html @@ -94,6 +94,7 @@
    F
  • operator ==
  • Methods
  • +
  • abstractMethod
  • foo
  • getClassA
  • methodWithGenericParam
  • diff --git a/testing/test_package_docs/ex/F/runtimeType.html b/testing/test_package_docs/ex/F/runtimeType.html index db1afd4846..f70d3cef42 100644 --- a/testing/test_package_docs/ex/F/runtimeType.html +++ b/testing/test_package_docs/ex/F/runtimeType.html @@ -94,6 +94,7 @@
    F
  • operator ==
  • Methods
  • +
  • abstractMethod
  • foo
  • getClassA
  • methodWithGenericParam
  • diff --git a/testing/test_package_docs/ex/F/test.html b/testing/test_package_docs/ex/F/test.html index 39c5c425f3..44f6a28189 100644 --- a/testing/test_package_docs/ex/F/test.html +++ b/testing/test_package_docs/ex/F/test.html @@ -94,6 +94,7 @@
    F
  • operator ==
  • Methods
  • +
  • abstractMethod
  • foo
  • getClassA
  • methodWithGenericParam
  • diff --git a/testing/test_package_docs/ex/F/toString.html b/testing/test_package_docs/ex/F/toString.html index 5edb889221..6e1e9784ea 100644 --- a/testing/test_package_docs/ex/F/toString.html +++ b/testing/test_package_docs/ex/F/toString.html @@ -94,6 +94,7 @@
    F
  • operator ==
  • Methods
  • +
  • abstractMethod
  • foo
  • getClassA
  • methodWithGenericParam
  • diff --git a/testing/test_package_docs/index.json b/testing/test_package_docs/index.json index 01561c0f0f..df6d5855e9 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"},{"name":"doesStuff","qualifiedName":"anonymous_library.doesStuff","href":"anonymous_library/doesStuff.html","type":"function","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"},{"name":"greeting","qualifiedName":"another_anonymous_lib.greeting","href":"another_anonymous_lib/greeting.html","type":"function","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"},{"name":"css","qualifiedName":"css","href":"css/css-library.html","type":"library"},{"name":"theOnlyThingInTheLibrary","qualifiedName":"css.theOnlyThingInTheLibrary","href":"css/theOnlyThingInTheLibrary.html","type":"top-level property","enclosedBy":{"name":"css","type":"library"}},{"name":"ex","qualifiedName":"ex","href":"ex/ex-library.html","type":"library"},{"name":"Apple","qualifiedName":"ex.Apple","href":"ex/Apple-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"Apple","qualifiedName":"ex.Apple","href":"ex/Apple/Apple.html","type":"constructor","enclosedBy":{"name":"Apple","type":"class"}},{"name":"Apple.fromString","qualifiedName":"ex.Apple.fromString","href":"ex/Apple/Apple.fromString.html","type":"constructor","enclosedBy":{"name":"Apple","type":"class"}},{"name":"n","qualifiedName":"ex.Apple.n","href":"ex/Apple/n-constant.html","type":"property","enclosedBy":{"name":"Apple","type":"class"}},{"name":"string","qualifiedName":"ex.Apple.string","href":"ex/Apple/string.html","type":"property","enclosedBy":{"name":"Apple","type":"class"}},{"name":"m","qualifiedName":"ex.Apple.m","href":"ex/Apple/m.html","type":"property","enclosedBy":{"name":"Apple","type":"class"}},{"name":"s","qualifiedName":"ex.Apple.s","href":"ex/Apple/s.html","type":"property","enclosedBy":{"name":"Apple","type":"class"}},{"name":"hashCode","qualifiedName":"ex.Apple.hashCode","href":"ex/Apple/hashCode.html","type":"property","enclosedBy":{"name":"Apple","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.Apple.runtimeType","href":"ex/Apple/runtimeType.html","type":"property","enclosedBy":{"name":"Apple","type":"class"}},{"name":"isGreaterThan","qualifiedName":"ex.Apple.isGreaterThan","href":"ex/Apple/isGreaterThan.html","type":"method","enclosedBy":{"name":"Apple","type":"class"}},{"name":"m1","qualifiedName":"ex.Apple.m1","href":"ex/Apple/m1.html","type":"method","enclosedBy":{"name":"Apple","type":"class"}},{"name":"methodWithTypedefParam","qualifiedName":"ex.Apple.methodWithTypedefParam","href":"ex/Apple/methodWithTypedefParam.html","type":"method","enclosedBy":{"name":"Apple","type":"class"}},{"name":"paramFromExportLib","qualifiedName":"ex.Apple.paramFromExportLib","href":"ex/Apple/paramFromExportLib.html","type":"method","enclosedBy":{"name":"Apple","type":"class"}},{"name":"printMsg","qualifiedName":"ex.Apple.printMsg","href":"ex/Apple/printMsg.html","type":"method","enclosedBy":{"name":"Apple","type":"class"}},{"name":"toString","qualifiedName":"ex.Apple.toString","href":"ex/Apple/toString.html","type":"method","enclosedBy":{"name":"Apple","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.Apple.noSuchMethod","href":"ex/Apple/noSuchMethod.html","type":"method","enclosedBy":{"name":"Apple","type":"class"}},{"name":"operator *","qualifiedName":"ex.Apple.*","href":"ex/Apple/operator_multiply.html","type":"method","enclosedBy":{"name":"Apple","type":"class"}},{"name":"operator ==","qualifiedName":"ex.Apple.==","href":"ex/Apple/operator_equals.html","type":"method","enclosedBy":{"name":"Apple","type":"class"}},{"name":"B","qualifiedName":"ex.B","href":"ex/B-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"B","qualifiedName":"ex.B","href":"ex/B/B.html","type":"constructor","enclosedBy":{"name":"B","type":"class"}},{"name":"autoCompress","qualifiedName":"ex.B.autoCompress","href":"ex/B/autoCompress.html","type":"property","enclosedBy":{"name":"B","type":"class"}},{"name":"isImplemented","qualifiedName":"ex.B.isImplemented","href":"ex/B/isImplemented.html","type":"property","enclosedBy":{"name":"B","type":"class"}},{"name":"list","qualifiedName":"ex.B.list","href":"ex/B/list.html","type":"property","enclosedBy":{"name":"B","type":"class"}},{"name":"hashCode","qualifiedName":"ex.B.hashCode","href":"ex/B/hashCode.html","type":"property","enclosedBy":{"name":"B","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.B.runtimeType","href":"ex/B/runtimeType.html","type":"property","enclosedBy":{"name":"B","type":"class"}},{"name":"doNothing","qualifiedName":"ex.B.doNothing","href":"ex/B/doNothing.html","type":"method","enclosedBy":{"name":"B","type":"class"}},{"name":"m1","qualifiedName":"ex.B.m1","href":"ex/B/m1.html","type":"method","enclosedBy":{"name":"B","type":"class"}},{"name":"writeMsg","qualifiedName":"ex.B.writeMsg","href":"ex/B/writeMsg.html","type":"method","enclosedBy":{"name":"B","type":"class"}},{"name":"toString","qualifiedName":"ex.B.toString","href":"ex/B/toString.html","type":"method","enclosedBy":{"name":"B","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.B.noSuchMethod","href":"ex/B/noSuchMethod.html","type":"method","enclosedBy":{"name":"B","type":"class"}},{"name":"operator ==","qualifiedName":"ex.B.==","href":"ex/B/operator_equals.html","type":"method","enclosedBy":{"name":"B","type":"class"}},{"name":"Cat","qualifiedName":"ex.Cat","href":"ex/Cat-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"Cat","qualifiedName":"ex.Cat","href":"ex/Cat/Cat.html","type":"constructor","enclosedBy":{"name":"Cat","type":"class"}},{"name":"isImplemented","qualifiedName":"ex.Cat.isImplemented","href":"ex/Cat/isImplemented.html","type":"property","enclosedBy":{"name":"Cat","type":"class"}},{"name":"hashCode","qualifiedName":"ex.Cat.hashCode","href":"ex/Cat/hashCode.html","type":"property","enclosedBy":{"name":"Cat","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.Cat.runtimeType","href":"ex/Cat/runtimeType.html","type":"property","enclosedBy":{"name":"Cat","type":"class"}},{"name":"toString","qualifiedName":"ex.Cat.toString","href":"ex/Cat/toString.html","type":"method","enclosedBy":{"name":"Cat","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.Cat.noSuchMethod","href":"ex/Cat/noSuchMethod.html","type":"method","enclosedBy":{"name":"Cat","type":"class"}},{"name":"operator ==","qualifiedName":"ex.Cat.==","href":"ex/Cat/operator_equals.html","type":"method","enclosedBy":{"name":"Cat","type":"class"}},{"name":"CatString","qualifiedName":"ex.CatString","href":"ex/CatString-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"CatString","qualifiedName":"ex.CatString","href":"ex/CatString/CatString.html","type":"constructor","enclosedBy":{"name":"CatString","type":"class"}},{"name":"hashCode","qualifiedName":"ex.CatString.hashCode","href":"ex/CatString/hashCode.html","type":"property","enclosedBy":{"name":"CatString","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.CatString.runtimeType","href":"ex/CatString/runtimeType.html","type":"property","enclosedBy":{"name":"CatString","type":"class"}},{"name":"length","qualifiedName":"ex.CatString.length","href":"ex/CatString/length.html","type":"property","enclosedBy":{"name":"CatString","type":"class"}},{"name":"isEmpty","qualifiedName":"ex.CatString.isEmpty","href":"ex/CatString/isEmpty.html","type":"property","enclosedBy":{"name":"CatString","type":"class"}},{"name":"isNotEmpty","qualifiedName":"ex.CatString.isNotEmpty","href":"ex/CatString/isNotEmpty.html","type":"property","enclosedBy":{"name":"CatString","type":"class"}},{"name":"toString","qualifiedName":"ex.CatString.toString","href":"ex/CatString/toString.html","type":"method","enclosedBy":{"name":"CatString","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.CatString.noSuchMethod","href":"ex/CatString/noSuchMethod.html","type":"method","enclosedBy":{"name":"CatString","type":"class"}},{"name":"write","qualifiedName":"ex.CatString.write","href":"ex/CatString/write.html","type":"method","enclosedBy":{"name":"CatString","type":"class"}},{"name":"writeCharCode","qualifiedName":"ex.CatString.writeCharCode","href":"ex/CatString/writeCharCode.html","type":"method","enclosedBy":{"name":"CatString","type":"class"}},{"name":"writeAll","qualifiedName":"ex.CatString.writeAll","href":"ex/CatString/writeAll.html","type":"method","enclosedBy":{"name":"CatString","type":"class"}},{"name":"writeln","qualifiedName":"ex.CatString.writeln","href":"ex/CatString/writeln.html","type":"method","enclosedBy":{"name":"CatString","type":"class"}},{"name":"clear","qualifiedName":"ex.CatString.clear","href":"ex/CatString/clear.html","type":"method","enclosedBy":{"name":"CatString","type":"class"}},{"name":"operator ==","qualifiedName":"ex.CatString.==","href":"ex/CatString/operator_equals.html","type":"method","enclosedBy":{"name":"CatString","type":"class"}},{"name":"ConstantCat","qualifiedName":"ex.ConstantCat","href":"ex/ConstantCat-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"ConstantCat","qualifiedName":"ex.ConstantCat","href":"ex/ConstantCat/ConstantCat.html","type":"constructor","enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"isImplemented","qualifiedName":"ex.ConstantCat.isImplemented","href":"ex/ConstantCat/isImplemented.html","type":"property","enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"name","qualifiedName":"ex.ConstantCat.name","href":"ex/ConstantCat/name.html","type":"property","enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"hashCode","qualifiedName":"ex.ConstantCat.hashCode","href":"ex/ConstantCat/hashCode.html","type":"property","enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.ConstantCat.runtimeType","href":"ex/ConstantCat/runtimeType.html","type":"property","enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"toString","qualifiedName":"ex.ConstantCat.toString","href":"ex/ConstantCat/toString.html","type":"method","enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.ConstantCat.noSuchMethod","href":"ex/ConstantCat/noSuchMethod.html","type":"method","enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"operator ==","qualifiedName":"ex.ConstantCat.==","href":"ex/ConstantCat/operator_equals.html","type":"method","enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"Cool","qualifiedName":"ex.Cool","href":"ex/Cool-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"Cool","qualifiedName":"ex.Cool","href":"ex/Cool/Cool.html","type":"constructor","enclosedBy":{"name":"Cool","type":"class"}},{"name":"hashCode","qualifiedName":"ex.Cool.hashCode","href":"ex/Cool/hashCode.html","type":"property","enclosedBy":{"name":"Cool","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.Cool.runtimeType","href":"ex/Cool/runtimeType.html","type":"property","enclosedBy":{"name":"Cool","type":"class"}},{"name":"returnCool","qualifiedName":"ex.Cool.returnCool","href":"ex/Cool/returnCool.html","type":"method","enclosedBy":{"name":"Cool","type":"class"}},{"name":"toString","qualifiedName":"ex.Cool.toString","href":"ex/Cool/toString.html","type":"method","enclosedBy":{"name":"Cool","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.Cool.noSuchMethod","href":"ex/Cool/noSuchMethod.html","type":"method","enclosedBy":{"name":"Cool","type":"class"}},{"name":"operator ==","qualifiedName":"ex.Cool.==","href":"ex/Cool/operator_equals.html","type":"method","enclosedBy":{"name":"Cool","type":"class"}},{"name":"Deprecated","qualifiedName":"ex.Deprecated","href":"ex/Deprecated-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"Deprecated","qualifiedName":"ex.Deprecated","href":"ex/Deprecated/Deprecated.html","type":"constructor","enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"expires","qualifiedName":"ex.Deprecated.expires","href":"ex/Deprecated/expires.html","type":"property","enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"hashCode","qualifiedName":"ex.Deprecated.hashCode","href":"ex/Deprecated/hashCode.html","type":"property","enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.Deprecated.runtimeType","href":"ex/Deprecated/runtimeType.html","type":"property","enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"toString","qualifiedName":"ex.Deprecated.toString","href":"ex/Deprecated/toString.html","type":"method","enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.Deprecated.noSuchMethod","href":"ex/Deprecated/noSuchMethod.html","type":"method","enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"operator ==","qualifiedName":"ex.Deprecated.==","href":"ex/Deprecated/operator_equals.html","type":"method","enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"Dog","qualifiedName":"ex.Dog","href":"ex/Dog-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"Dog","qualifiedName":"ex.Dog","href":"ex/Dog/Dog.html","type":"constructor","enclosedBy":{"name":"Dog","type":"class"}},{"name":"Dog.deprecatedCreate","qualifiedName":"ex.Dog.deprecatedCreate","href":"ex/Dog/Dog.deprecatedCreate.html","type":"constructor","enclosedBy":{"name":"Dog","type":"class"}},{"name":"deprecatedField","qualifiedName":"ex.Dog.deprecatedField","href":"ex/Dog/deprecatedField.html","type":"property","enclosedBy":{"name":"Dog","type":"class"}},{"name":"deprecatedGetter","qualifiedName":"ex.Dog.deprecatedGetter","href":"ex/Dog/deprecatedGetter.html","type":"property","enclosedBy":{"name":"Dog","type":"class"}},{"name":"deprecatedSetter","qualifiedName":"ex.Dog.deprecatedSetter","href":"ex/Dog/deprecatedSetter.html","type":"property","enclosedBy":{"name":"Dog","type":"class"}},{"name":"isImplemented","qualifiedName":"ex.Dog.isImplemented","href":"ex/Dog/isImplemented.html","type":"property","enclosedBy":{"name":"Dog","type":"class"}},{"name":"name","qualifiedName":"ex.Dog.name","href":"ex/Dog/name.html","type":"property","enclosedBy":{"name":"Dog","type":"class"}},{"name":"hashCode","qualifiedName":"ex.Dog.hashCode","href":"ex/Dog/hashCode.html","type":"property","enclosedBy":{"name":"Dog","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.Dog.runtimeType","href":"ex/Dog/runtimeType.html","type":"property","enclosedBy":{"name":"Dog","type":"class"}},{"name":"foo","qualifiedName":"ex.Dog.foo","href":"ex/Dog/foo.html","type":"method","enclosedBy":{"name":"Dog","type":"class"}},{"name":"getClassA","qualifiedName":"ex.Dog.getClassA","href":"ex/Dog/getClassA.html","type":"method","enclosedBy":{"name":"Dog","type":"class"}},{"name":"testGeneric","qualifiedName":"ex.Dog.testGeneric","href":"ex/Dog/testGeneric.html","type":"method","enclosedBy":{"name":"Dog","type":"class"}},{"name":"testMethod","qualifiedName":"ex.Dog.testMethod","href":"ex/Dog/testMethod.html","type":"method","enclosedBy":{"name":"Dog","type":"class"}},{"name":"toString","qualifiedName":"ex.Dog.toString","href":"ex/Dog/toString.html","type":"method","enclosedBy":{"name":"Dog","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.Dog.noSuchMethod","href":"ex/Dog/noSuchMethod.html","type":"method","enclosedBy":{"name":"Dog","type":"class"}},{"name":"operator ==","qualifiedName":"ex.Dog.==","href":"ex/Dog/operator_equals.html","type":"method","enclosedBy":{"name":"Dog","type":"class"}},{"name":"createDog","qualifiedName":"ex.Dog.createDog","href":"ex/Dog/createDog.html","type":"method","enclosedBy":{"name":"Dog","type":"class"}},{"name":"E","qualifiedName":"ex.E","href":"ex/E-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"E","qualifiedName":"ex.E","href":"ex/E/E.html","type":"constructor","enclosedBy":{"name":"E","type":"class"}},{"name":"hashCode","qualifiedName":"ex.E.hashCode","href":"ex/E/hashCode.html","type":"property","enclosedBy":{"name":"E","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.E.runtimeType","href":"ex/E/runtimeType.html","type":"property","enclosedBy":{"name":"E","type":"class"}},{"name":"toString","qualifiedName":"ex.E.toString","href":"ex/E/toString.html","type":"method","enclosedBy":{"name":"E","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.E.noSuchMethod","href":"ex/E/noSuchMethod.html","type":"method","enclosedBy":{"name":"E","type":"class"}},{"name":"operator ==","qualifiedName":"ex.E.==","href":"ex/E/operator_equals.html","type":"method","enclosedBy":{"name":"E","type":"class"}},{"name":"F","qualifiedName":"ex.F","href":"ex/F-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"F","qualifiedName":"ex.F","href":"ex/F/F.html","type":"constructor","enclosedBy":{"name":"F","type":"class"}},{"name":"hashCode","qualifiedName":"ex.F.hashCode","href":"ex/F/hashCode.html","type":"property","enclosedBy":{"name":"F","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.F.runtimeType","href":"ex/F/runtimeType.html","type":"property","enclosedBy":{"name":"F","type":"class"}},{"name":"methodWithGenericParam","qualifiedName":"ex.F.methodWithGenericParam","href":"ex/F/methodWithGenericParam.html","type":"method","enclosedBy":{"name":"F","type":"class"}},{"name":"toString","qualifiedName":"ex.F.toString","href":"ex/F/toString.html","type":"method","enclosedBy":{"name":"F","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.F.noSuchMethod","href":"ex/F/noSuchMethod.html","type":"method","enclosedBy":{"name":"F","type":"class"}},{"name":"test","qualifiedName":"ex.F.test","href":"ex/F/test.html","type":"method","enclosedBy":{"name":"F","type":"class"}},{"name":"ForAnnotation","qualifiedName":"ex.ForAnnotation","href":"ex/ForAnnotation-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"ForAnnotation","qualifiedName":"ex.ForAnnotation","href":"ex/ForAnnotation/ForAnnotation.html","type":"constructor","enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"value","qualifiedName":"ex.ForAnnotation.value","href":"ex/ForAnnotation/value.html","type":"property","enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"hashCode","qualifiedName":"ex.ForAnnotation.hashCode","href":"ex/ForAnnotation/hashCode.html","type":"property","enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.ForAnnotation.runtimeType","href":"ex/ForAnnotation/runtimeType.html","type":"property","enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"toString","qualifiedName":"ex.ForAnnotation.toString","href":"ex/ForAnnotation/toString.html","type":"method","enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.ForAnnotation.noSuchMethod","href":"ex/ForAnnotation/noSuchMethod.html","type":"method","enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"operator ==","qualifiedName":"ex.ForAnnotation.==","href":"ex/ForAnnotation/operator_equals.html","type":"method","enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"HasAnnotation","qualifiedName":"ex.HasAnnotation","href":"ex/HasAnnotation-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"HasAnnotation","qualifiedName":"ex.HasAnnotation","href":"ex/HasAnnotation/HasAnnotation.html","type":"constructor","enclosedBy":{"name":"HasAnnotation","type":"class"}},{"name":"hashCode","qualifiedName":"ex.HasAnnotation.hashCode","href":"ex/HasAnnotation/hashCode.html","type":"property","enclosedBy":{"name":"HasAnnotation","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.HasAnnotation.runtimeType","href":"ex/HasAnnotation/runtimeType.html","type":"property","enclosedBy":{"name":"HasAnnotation","type":"class"}},{"name":"toString","qualifiedName":"ex.HasAnnotation.toString","href":"ex/HasAnnotation/toString.html","type":"method","enclosedBy":{"name":"HasAnnotation","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.HasAnnotation.noSuchMethod","href":"ex/HasAnnotation/noSuchMethod.html","type":"method","enclosedBy":{"name":"HasAnnotation","type":"class"}},{"name":"operator ==","qualifiedName":"ex.HasAnnotation.==","href":"ex/HasAnnotation/operator_equals.html","type":"method","enclosedBy":{"name":"HasAnnotation","type":"class"}},{"name":"Helper","qualifiedName":"ex.Helper","href":"ex/Helper-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"Helper","qualifiedName":"ex.Helper","href":"ex/Helper/Helper.html","type":"constructor","enclosedBy":{"name":"Helper","type":"class"}},{"name":"hashCode","qualifiedName":"ex.Helper.hashCode","href":"ex/Helper/hashCode.html","type":"property","enclosedBy":{"name":"Helper","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.Helper.runtimeType","href":"ex/Helper/runtimeType.html","type":"property","enclosedBy":{"name":"Helper","type":"class"}},{"name":"getContents","qualifiedName":"ex.Helper.getContents","href":"ex/Helper/getContents.html","type":"method","enclosedBy":{"name":"Helper","type":"class"}},{"name":"toString","qualifiedName":"ex.Helper.toString","href":"ex/Helper/toString.html","type":"method","enclosedBy":{"name":"Helper","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.Helper.noSuchMethod","href":"ex/Helper/noSuchMethod.html","type":"method","enclosedBy":{"name":"Helper","type":"class"}},{"name":"operator ==","qualifiedName":"ex.Helper.==","href":"ex/Helper/operator_equals.html","type":"method","enclosedBy":{"name":"Helper","type":"class"}},{"name":"Klass","qualifiedName":"ex.Klass","href":"ex/Klass-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"Klass","qualifiedName":"ex.Klass","href":"ex/Klass/Klass.html","type":"constructor","enclosedBy":{"name":"Klass","type":"class"}},{"name":"hashCode","qualifiedName":"ex.Klass.hashCode","href":"ex/Klass/hashCode.html","type":"property","enclosedBy":{"name":"Klass","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.Klass.runtimeType","href":"ex/Klass/runtimeType.html","type":"property","enclosedBy":{"name":"Klass","type":"class"}},{"name":"another","qualifiedName":"ex.Klass.another","href":"ex/Klass/another.html","type":"method","enclosedBy":{"name":"Klass","type":"class"}},{"name":"method","qualifiedName":"ex.Klass.method","href":"ex/Klass/method.html","type":"method","enclosedBy":{"name":"Klass","type":"class"}},{"name":"toString","qualifiedName":"ex.Klass.toString","href":"ex/Klass/toString.html","type":"method","enclosedBy":{"name":"Klass","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.Klass.noSuchMethod","href":"ex/Klass/noSuchMethod.html","type":"method","enclosedBy":{"name":"Klass","type":"class"}},{"name":"operator ==","qualifiedName":"ex.Klass.==","href":"ex/Klass/operator_equals.html","type":"method","enclosedBy":{"name":"Klass","type":"class"}},{"name":"MyError","qualifiedName":"ex.MyError","href":"ex/MyError-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"MyError","qualifiedName":"ex.MyError","href":"ex/MyError/MyError.html","type":"constructor","enclosedBy":{"name":"MyError","type":"class"}},{"name":"hashCode","qualifiedName":"ex.MyError.hashCode","href":"ex/MyError/hashCode.html","type":"property","enclosedBy":{"name":"MyError","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.MyError.runtimeType","href":"ex/MyError/runtimeType.html","type":"property","enclosedBy":{"name":"MyError","type":"class"}},{"name":"stackTrace","qualifiedName":"ex.MyError.stackTrace","href":"ex/MyError/stackTrace.html","type":"property","enclosedBy":{"name":"MyError","type":"class"}},{"name":"toString","qualifiedName":"ex.MyError.toString","href":"ex/MyError/toString.html","type":"method","enclosedBy":{"name":"MyError","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.MyError.noSuchMethod","href":"ex/MyError/noSuchMethod.html","type":"method","enclosedBy":{"name":"MyError","type":"class"}},{"name":"operator ==","qualifiedName":"ex.MyError.==","href":"ex/MyError/operator_equals.html","type":"method","enclosedBy":{"name":"MyError","type":"class"}},{"name":"MyErrorImplements","qualifiedName":"ex.MyErrorImplements","href":"ex/MyErrorImplements-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"MyErrorImplements","qualifiedName":"ex.MyErrorImplements","href":"ex/MyErrorImplements/MyErrorImplements.html","type":"constructor","enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"stackTrace","qualifiedName":"ex.MyErrorImplements.stackTrace","href":"ex/MyErrorImplements/stackTrace.html","type":"property","enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"hashCode","qualifiedName":"ex.MyErrorImplements.hashCode","href":"ex/MyErrorImplements/hashCode.html","type":"property","enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.MyErrorImplements.runtimeType","href":"ex/MyErrorImplements/runtimeType.html","type":"property","enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"toString","qualifiedName":"ex.MyErrorImplements.toString","href":"ex/MyErrorImplements/toString.html","type":"method","enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.MyErrorImplements.noSuchMethod","href":"ex/MyErrorImplements/noSuchMethod.html","type":"method","enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"operator ==","qualifiedName":"ex.MyErrorImplements.==","href":"ex/MyErrorImplements/operator_equals.html","type":"method","enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"MyException","qualifiedName":"ex.MyException","href":"ex/MyException-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"MyException","qualifiedName":"ex.MyException","href":"ex/MyException/MyException.html","type":"constructor","enclosedBy":{"name":"MyException","type":"class"}},{"name":"hashCode","qualifiedName":"ex.MyException.hashCode","href":"ex/MyException/hashCode.html","type":"property","enclosedBy":{"name":"MyException","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.MyException.runtimeType","href":"ex/MyException/runtimeType.html","type":"property","enclosedBy":{"name":"MyException","type":"class"}},{"name":"toString","qualifiedName":"ex.MyException.toString","href":"ex/MyException/toString.html","type":"method","enclosedBy":{"name":"MyException","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.MyException.noSuchMethod","href":"ex/MyException/noSuchMethod.html","type":"method","enclosedBy":{"name":"MyException","type":"class"}},{"name":"operator ==","qualifiedName":"ex.MyException.==","href":"ex/MyException/operator_equals.html","type":"method","enclosedBy":{"name":"MyException","type":"class"}},{"name":"MyExceptionImplements","qualifiedName":"ex.MyExceptionImplements","href":"ex/MyExceptionImplements-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"MyExceptionImplements","qualifiedName":"ex.MyExceptionImplements","href":"ex/MyExceptionImplements/MyExceptionImplements.html","type":"constructor","enclosedBy":{"name":"MyExceptionImplements","type":"class"}},{"name":"hashCode","qualifiedName":"ex.MyExceptionImplements.hashCode","href":"ex/MyExceptionImplements/hashCode.html","type":"property","enclosedBy":{"name":"MyExceptionImplements","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.MyExceptionImplements.runtimeType","href":"ex/MyExceptionImplements/runtimeType.html","type":"property","enclosedBy":{"name":"MyExceptionImplements","type":"class"}},{"name":"toString","qualifiedName":"ex.MyExceptionImplements.toString","href":"ex/MyExceptionImplements/toString.html","type":"method","enclosedBy":{"name":"MyExceptionImplements","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.MyExceptionImplements.noSuchMethod","href":"ex/MyExceptionImplements/noSuchMethod.html","type":"method","enclosedBy":{"name":"MyExceptionImplements","type":"class"}},{"name":"operator ==","qualifiedName":"ex.MyExceptionImplements.==","href":"ex/MyExceptionImplements/operator_equals.html","type":"method","enclosedBy":{"name":"MyExceptionImplements","type":"class"}},{"name":"PublicClassExtendsPrivateClass","qualifiedName":"ex.PublicClassExtendsPrivateClass","href":"ex/PublicClassExtendsPrivateClass-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"PublicClassExtendsPrivateClass","qualifiedName":"ex.PublicClassExtendsPrivateClass","href":"ex/PublicClassExtendsPrivateClass/PublicClassExtendsPrivateClass.html","type":"constructor","enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"hashCode","qualifiedName":"ex.PublicClassExtendsPrivateClass.hashCode","href":"ex/PublicClassExtendsPrivateClass/hashCode.html","type":"property","enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.PublicClassExtendsPrivateClass.runtimeType","href":"ex/PublicClassExtendsPrivateClass/runtimeType.html","type":"property","enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"toString","qualifiedName":"ex.PublicClassExtendsPrivateClass.toString","href":"ex/PublicClassExtendsPrivateClass/toString.html","type":"method","enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.PublicClassExtendsPrivateClass.noSuchMethod","href":"ex/PublicClassExtendsPrivateClass/noSuchMethod.html","type":"method","enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"test","qualifiedName":"ex.PublicClassExtendsPrivateClass.test","href":"ex/PublicClassExtendsPrivateClass/test.html","type":"method","enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"operator ==","qualifiedName":"ex.PublicClassExtendsPrivateClass.==","href":"ex/PublicClassExtendsPrivateClass/operator_equals.html","type":"method","enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"PublicClassImplementsPrivateInterface","qualifiedName":"ex.PublicClassImplementsPrivateInterface","href":"ex/PublicClassImplementsPrivateInterface-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"PublicClassImplementsPrivateInterface","qualifiedName":"ex.PublicClassImplementsPrivateInterface","href":"ex/PublicClassImplementsPrivateInterface/PublicClassImplementsPrivateInterface.html","type":"constructor","enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"hashCode","qualifiedName":"ex.PublicClassImplementsPrivateInterface.hashCode","href":"ex/PublicClassImplementsPrivateInterface/hashCode.html","type":"property","enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.PublicClassImplementsPrivateInterface.runtimeType","href":"ex/PublicClassImplementsPrivateInterface/runtimeType.html","type":"property","enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"test","qualifiedName":"ex.PublicClassImplementsPrivateInterface.test","href":"ex/PublicClassImplementsPrivateInterface/test.html","type":"method","enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"toString","qualifiedName":"ex.PublicClassImplementsPrivateInterface.toString","href":"ex/PublicClassImplementsPrivateInterface/toString.html","type":"method","enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.PublicClassImplementsPrivateInterface.noSuchMethod","href":"ex/PublicClassImplementsPrivateInterface/noSuchMethod.html","type":"method","enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"operator ==","qualifiedName":"ex.PublicClassImplementsPrivateInterface.==","href":"ex/PublicClassImplementsPrivateInterface/operator_equals.html","type":"method","enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"ShapeType","qualifiedName":"ex.ShapeType","href":"ex/ShapeType-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"ellipse","qualifiedName":"ex.ShapeType.ellipse","href":"ex/ShapeType/ellipse-constant.html","type":"property","enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"rect","qualifiedName":"ex.ShapeType.rect","href":"ex/ShapeType/rect-constant.html","type":"property","enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"hashCode","qualifiedName":"ex.ShapeType.hashCode","href":"ex/ShapeType/hashCode.html","type":"property","enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.ShapeType.runtimeType","href":"ex/ShapeType/runtimeType.html","type":"property","enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"name","qualifiedName":"ex.ShapeType.name","href":"ex/ShapeType/name.html","type":"property","enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"toString","qualifiedName":"ex.ShapeType.toString","href":"ex/ShapeType/toString.html","type":"method","enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.ShapeType.noSuchMethod","href":"ex/ShapeType/noSuchMethod.html","type":"method","enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"operator ==","qualifiedName":"ex.ShapeType.==","href":"ex/ShapeType/operator_equals.html","type":"method","enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"SpecializedDuration","qualifiedName":"ex.SpecializedDuration","href":"ex/SpecializedDuration-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"SpecializedDuration","qualifiedName":"ex.SpecializedDuration","href":"ex/SpecializedDuration/SpecializedDuration.html","type":"constructor","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"hashCode","qualifiedName":"ex.SpecializedDuration.hashCode","href":"ex/SpecializedDuration/hashCode.html","type":"property","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.SpecializedDuration.runtimeType","href":"ex/SpecializedDuration/runtimeType.html","type":"property","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"inDays","qualifiedName":"ex.SpecializedDuration.inDays","href":"ex/SpecializedDuration/inDays.html","type":"property","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"inHours","qualifiedName":"ex.SpecializedDuration.inHours","href":"ex/SpecializedDuration/inHours.html","type":"property","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"inMinutes","qualifiedName":"ex.SpecializedDuration.inMinutes","href":"ex/SpecializedDuration/inMinutes.html","type":"property","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"inSeconds","qualifiedName":"ex.SpecializedDuration.inSeconds","href":"ex/SpecializedDuration/inSeconds.html","type":"property","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"inMilliseconds","qualifiedName":"ex.SpecializedDuration.inMilliseconds","href":"ex/SpecializedDuration/inMilliseconds.html","type":"property","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"inMicroseconds","qualifiedName":"ex.SpecializedDuration.inMicroseconds","href":"ex/SpecializedDuration/inMicroseconds.html","type":"property","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"isNegative","qualifiedName":"ex.SpecializedDuration.isNegative","href":"ex/SpecializedDuration/isNegative.html","type":"property","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"toString","qualifiedName":"ex.SpecializedDuration.toString","href":"ex/SpecializedDuration/toString.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.SpecializedDuration.noSuchMethod","href":"ex/SpecializedDuration/noSuchMethod.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"compareTo","qualifiedName":"ex.SpecializedDuration.compareTo","href":"ex/SpecializedDuration/compareTo.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"abs","qualifiedName":"ex.SpecializedDuration.abs","href":"ex/SpecializedDuration/abs.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator ~/","qualifiedName":"ex.SpecializedDuration.~/","href":"ex/SpecializedDuration/operator_truncate_divide.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator *","qualifiedName":"ex.SpecializedDuration.*","href":"ex/SpecializedDuration/operator_multiply.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator -","qualifiedName":"ex.SpecializedDuration.-","href":"ex/SpecializedDuration/operator_minus.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator <","qualifiedName":"ex.SpecializedDuration.<","href":"ex/SpecializedDuration/operator_less.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator >=","qualifiedName":"ex.SpecializedDuration.>=","href":"ex/SpecializedDuration/operator_greater_equal.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator ==","qualifiedName":"ex.SpecializedDuration.==","href":"ex/SpecializedDuration/operator_equals.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator <=","qualifiedName":"ex.SpecializedDuration.<=","href":"ex/SpecializedDuration/operator_less_equal.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator >","qualifiedName":"ex.SpecializedDuration.>","href":"ex/SpecializedDuration/operator_greater.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator +","qualifiedName":"ex.SpecializedDuration.+","href":"ex/SpecializedDuration/operator_plus.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator unary-","qualifiedName":"ex.SpecializedDuration.unary-","href":"ex/SpecializedDuration/operator_unary_minus.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"Animal","qualifiedName":"ex.Animal","href":"ex/Animal-class.html","type":"enum","enclosedBy":{"name":"ex","type":"library"}},{"name":"COLOR","qualifiedName":"ex.COLOR","href":"ex/COLOR-constant.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"COLOR_GREEN","qualifiedName":"ex.COLOR_GREEN","href":"ex/COLOR_GREEN-constant.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"COLOR_ORANGE","qualifiedName":"ex.COLOR_ORANGE","href":"ex/COLOR_ORANGE-constant.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"COMPLEX_COLOR","qualifiedName":"ex.COMPLEX_COLOR","href":"ex/COMPLEX_COLOR-constant.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"deprecated","qualifiedName":"ex.deprecated","href":"ex/deprecated-constant.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"incorrectDocReference","qualifiedName":"ex.incorrectDocReference","href":"ex/incorrectDocReference-constant.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"incorrectDocReferenceFromEx","qualifiedName":"ex.incorrectDocReferenceFromEx","href":"ex/incorrectDocReferenceFromEx-constant.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"MY_CAT","qualifiedName":"ex.MY_CAT","href":"ex/MY_CAT-constant.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"PRETTY_COLORS","qualifiedName":"ex.PRETTY_COLORS","href":"ex/PRETTY_COLORS-constant.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"deprecatedField","qualifiedName":"ex.deprecatedField","href":"ex/deprecatedField.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"deprecatedGetter","qualifiedName":"ex.deprecatedGetter","href":"ex/deprecatedGetter.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"deprecatedSetter","qualifiedName":"ex.deprecatedSetter","href":"ex/deprecatedSetter.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"number","qualifiedName":"ex.number","href":"ex/number.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"y","qualifiedName":"ex.y","href":"ex/y.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"function1","qualifiedName":"ex.function1","href":"ex/function1.html","type":"function","enclosedBy":{"name":"ex","type":"library"}},{"name":"processMessage","qualifiedName":"ex.processMessage","href":"ex/processMessage.html","type":"typedef","enclosedBy":{"name":"ex","type":"library"}},{"name":"fake","qualifiedName":"fake","href":"fake/fake-library.html","type":"library"},{"name":"Annotation","qualifiedName":"fake.Annotation","href":"fake/Annotation-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"Annotation","qualifiedName":"fake.Annotation","href":"fake/Annotation/Annotation.html","type":"constructor","enclosedBy":{"name":"Annotation","type":"class"}},{"name":"value","qualifiedName":"fake.Annotation.value","href":"fake/Annotation/value.html","type":"property","enclosedBy":{"name":"Annotation","type":"class"}},{"name":"hashCode","qualifiedName":"fake.Annotation.hashCode","href":"fake/Annotation/hashCode.html","type":"property","enclosedBy":{"name":"Annotation","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.Annotation.runtimeType","href":"fake/Annotation/runtimeType.html","type":"property","enclosedBy":{"name":"Annotation","type":"class"}},{"name":"toString","qualifiedName":"fake.Annotation.toString","href":"fake/Annotation/toString.html","type":"method","enclosedBy":{"name":"Annotation","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.Annotation.noSuchMethod","href":"fake/Annotation/noSuchMethod.html","type":"method","enclosedBy":{"name":"Annotation","type":"class"}},{"name":"operator ==","qualifiedName":"fake.Annotation.==","href":"fake/Annotation/operator_equals.html","type":"method","enclosedBy":{"name":"Annotation","type":"class"}},{"name":"AnotherInterface","qualifiedName":"fake.AnotherInterface","href":"fake/AnotherInterface-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"AnotherInterface","qualifiedName":"fake.AnotherInterface","href":"fake/AnotherInterface/AnotherInterface.html","type":"constructor","enclosedBy":{"name":"AnotherInterface","type":"class"}},{"name":"hashCode","qualifiedName":"fake.AnotherInterface.hashCode","href":"fake/AnotherInterface/hashCode.html","type":"property","enclosedBy":{"name":"AnotherInterface","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.AnotherInterface.runtimeType","href":"fake/AnotherInterface/runtimeType.html","type":"property","enclosedBy":{"name":"AnotherInterface","type":"class"}},{"name":"toString","qualifiedName":"fake.AnotherInterface.toString","href":"fake/AnotherInterface/toString.html","type":"method","enclosedBy":{"name":"AnotherInterface","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.AnotherInterface.noSuchMethod","href":"fake/AnotherInterface/noSuchMethod.html","type":"method","enclosedBy":{"name":"AnotherInterface","type":"class"}},{"name":"operator ==","qualifiedName":"fake.AnotherInterface.==","href":"fake/AnotherInterface/operator_equals.html","type":"method","enclosedBy":{"name":"AnotherInterface","type":"class"}},{"name":"BaseForDocComments","qualifiedName":"fake.BaseForDocComments","href":"fake/BaseForDocComments-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"BaseForDocComments","qualifiedName":"fake.BaseForDocComments","href":"fake/BaseForDocComments/BaseForDocComments.html","type":"constructor","enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"hashCode","qualifiedName":"fake.BaseForDocComments.hashCode","href":"fake/BaseForDocComments/hashCode.html","type":"property","enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.BaseForDocComments.runtimeType","href":"fake/BaseForDocComments/runtimeType.html","type":"property","enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"anotherMethod","qualifiedName":"fake.BaseForDocComments.anotherMethod","href":"fake/BaseForDocComments/anotherMethod.html","type":"method","enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"doAwesomeStuff","qualifiedName":"fake.BaseForDocComments.doAwesomeStuff","href":"fake/BaseForDocComments/doAwesomeStuff.html","type":"method","enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"toString","qualifiedName":"fake.BaseForDocComments.toString","href":"fake/BaseForDocComments/toString.html","type":"method","enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.BaseForDocComments.noSuchMethod","href":"fake/BaseForDocComments/noSuchMethod.html","type":"method","enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"operator ==","qualifiedName":"fake.BaseForDocComments.==","href":"fake/BaseForDocComments/operator_equals.html","type":"method","enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"ConstantClass","qualifiedName":"fake.ConstantClass","href":"fake/ConstantClass-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"ConstantClass","qualifiedName":"fake.ConstantClass","href":"fake/ConstantClass/ConstantClass.html","type":"constructor","enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"ConstantClass.isVeryConstant","qualifiedName":"fake.ConstantClass.isVeryConstant","href":"fake/ConstantClass/ConstantClass.isVeryConstant.html","type":"constructor","enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"ConstantClass.notConstant","qualifiedName":"fake.ConstantClass.notConstant","href":"fake/ConstantClass/ConstantClass.notConstant.html","type":"constructor","enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"value","qualifiedName":"fake.ConstantClass.value","href":"fake/ConstantClass/value.html","type":"property","enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"hashCode","qualifiedName":"fake.ConstantClass.hashCode","href":"fake/ConstantClass/hashCode.html","type":"property","enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.ConstantClass.runtimeType","href":"fake/ConstantClass/runtimeType.html","type":"property","enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"toString","qualifiedName":"fake.ConstantClass.toString","href":"fake/ConstantClass/toString.html","type":"method","enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.ConstantClass.noSuchMethod","href":"fake/ConstantClass/noSuchMethod.html","type":"method","enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"operator ==","qualifiedName":"fake.ConstantClass.==","href":"fake/ConstantClass/operator_equals.html","type":"method","enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"Cool","qualifiedName":"fake.Cool","href":"fake/Cool-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"Cool","qualifiedName":"fake.Cool","href":"fake/Cool/Cool.html","type":"constructor","enclosedBy":{"name":"Cool","type":"class"}},{"name":"hashCode","qualifiedName":"fake.Cool.hashCode","href":"fake/Cool/hashCode.html","type":"property","enclosedBy":{"name":"Cool","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.Cool.runtimeType","href":"fake/Cool/runtimeType.html","type":"property","enclosedBy":{"name":"Cool","type":"class"}},{"name":"returnCool","qualifiedName":"fake.Cool.returnCool","href":"fake/Cool/returnCool.html","type":"method","enclosedBy":{"name":"Cool","type":"class"}},{"name":"toString","qualifiedName":"fake.Cool.toString","href":"fake/Cool/toString.html","type":"method","enclosedBy":{"name":"Cool","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.Cool.noSuchMethod","href":"fake/Cool/noSuchMethod.html","type":"method","enclosedBy":{"name":"Cool","type":"class"}},{"name":"operator ==","qualifiedName":"fake.Cool.==","href":"fake/Cool/operator_equals.html","type":"method","enclosedBy":{"name":"Cool","type":"class"}},{"name":"Doh","qualifiedName":"fake.Doh","href":"fake/Doh-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"Doh","qualifiedName":"fake.Doh","href":"fake/Doh/Doh.html","type":"constructor","enclosedBy":{"name":"Doh","type":"class"}},{"name":"hashCode","qualifiedName":"fake.Doh.hashCode","href":"fake/Doh/hashCode.html","type":"property","enclosedBy":{"name":"Doh","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.Doh.runtimeType","href":"fake/Doh/runtimeType.html","type":"property","enclosedBy":{"name":"Doh","type":"class"}},{"name":"stackTrace","qualifiedName":"fake.Doh.stackTrace","href":"fake/Doh/stackTrace.html","type":"property","enclosedBy":{"name":"Doh","type":"class"}},{"name":"toString","qualifiedName":"fake.Doh.toString","href":"fake/Doh/toString.html","type":"method","enclosedBy":{"name":"Doh","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.Doh.noSuchMethod","href":"fake/Doh/noSuchMethod.html","type":"method","enclosedBy":{"name":"Doh","type":"class"}},{"name":"operator ==","qualifiedName":"fake.Doh.==","href":"fake/Doh/operator_equals.html","type":"method","enclosedBy":{"name":"Doh","type":"class"}},{"name":"ExtraSpecialList","qualifiedName":"fake.ExtraSpecialList","href":"fake/ExtraSpecialList-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"ExtraSpecialList","qualifiedName":"fake.ExtraSpecialList","href":"fake/ExtraSpecialList/ExtraSpecialList.html","type":"constructor","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"hashCode","qualifiedName":"fake.ExtraSpecialList.hashCode","href":"fake/ExtraSpecialList/hashCode.html","type":"property","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.ExtraSpecialList.runtimeType","href":"fake/ExtraSpecialList/runtimeType.html","type":"property","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"iterator","qualifiedName":"fake.ExtraSpecialList.iterator","href":"fake/ExtraSpecialList/iterator.html","type":"property","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"isEmpty","qualifiedName":"fake.ExtraSpecialList.isEmpty","href":"fake/ExtraSpecialList/isEmpty.html","type":"property","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"isNotEmpty","qualifiedName":"fake.ExtraSpecialList.isNotEmpty","href":"fake/ExtraSpecialList/isNotEmpty.html","type":"property","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"first","qualifiedName":"fake.ExtraSpecialList.first","href":"fake/ExtraSpecialList/first.html","type":"property","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"last","qualifiedName":"fake.ExtraSpecialList.last","href":"fake/ExtraSpecialList/last.html","type":"property","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"single","qualifiedName":"fake.ExtraSpecialList.single","href":"fake/ExtraSpecialList/single.html","type":"property","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"reversed","qualifiedName":"fake.ExtraSpecialList.reversed","href":"fake/ExtraSpecialList/reversed.html","type":"property","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"toString","qualifiedName":"fake.ExtraSpecialList.toString","href":"fake/ExtraSpecialList/toString.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.ExtraSpecialList.noSuchMethod","href":"fake/ExtraSpecialList/noSuchMethod.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"elementAt","qualifiedName":"fake.ExtraSpecialList.elementAt","href":"fake/ExtraSpecialList/elementAt.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"forEach","qualifiedName":"fake.ExtraSpecialList.forEach","href":"fake/ExtraSpecialList/forEach.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"contains","qualifiedName":"fake.ExtraSpecialList.contains","href":"fake/ExtraSpecialList/contains.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"every","qualifiedName":"fake.ExtraSpecialList.every","href":"fake/ExtraSpecialList/every.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"any","qualifiedName":"fake.ExtraSpecialList.any","href":"fake/ExtraSpecialList/any.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"firstWhere","qualifiedName":"fake.ExtraSpecialList.firstWhere","href":"fake/ExtraSpecialList/firstWhere.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"lastWhere","qualifiedName":"fake.ExtraSpecialList.lastWhere","href":"fake/ExtraSpecialList/lastWhere.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"singleWhere","qualifiedName":"fake.ExtraSpecialList.singleWhere","href":"fake/ExtraSpecialList/singleWhere.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"join","qualifiedName":"fake.ExtraSpecialList.join","href":"fake/ExtraSpecialList/join.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"where","qualifiedName":"fake.ExtraSpecialList.where","href":"fake/ExtraSpecialList/where.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"map","qualifiedName":"fake.ExtraSpecialList.map","href":"fake/ExtraSpecialList/map.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"expand","qualifiedName":"fake.ExtraSpecialList.expand","href":"fake/ExtraSpecialList/expand.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"reduce","qualifiedName":"fake.ExtraSpecialList.reduce","href":"fake/ExtraSpecialList/reduce.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"fold","qualifiedName":"fake.ExtraSpecialList.fold","href":"fake/ExtraSpecialList/fold.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"skip","qualifiedName":"fake.ExtraSpecialList.skip","href":"fake/ExtraSpecialList/skip.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"skipWhile","qualifiedName":"fake.ExtraSpecialList.skipWhile","href":"fake/ExtraSpecialList/skipWhile.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"take","qualifiedName":"fake.ExtraSpecialList.take","href":"fake/ExtraSpecialList/take.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"takeWhile","qualifiedName":"fake.ExtraSpecialList.takeWhile","href":"fake/ExtraSpecialList/takeWhile.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"toList","qualifiedName":"fake.ExtraSpecialList.toList","href":"fake/ExtraSpecialList/toList.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"toSet","qualifiedName":"fake.ExtraSpecialList.toSet","href":"fake/ExtraSpecialList/toSet.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"add","qualifiedName":"fake.ExtraSpecialList.add","href":"fake/ExtraSpecialList/add.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"addAll","qualifiedName":"fake.ExtraSpecialList.addAll","href":"fake/ExtraSpecialList/addAll.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"remove","qualifiedName":"fake.ExtraSpecialList.remove","href":"fake/ExtraSpecialList/remove.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"removeWhere","qualifiedName":"fake.ExtraSpecialList.removeWhere","href":"fake/ExtraSpecialList/removeWhere.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"retainWhere","qualifiedName":"fake.ExtraSpecialList.retainWhere","href":"fake/ExtraSpecialList/retainWhere.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"clear","qualifiedName":"fake.ExtraSpecialList.clear","href":"fake/ExtraSpecialList/clear.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"removeLast","qualifiedName":"fake.ExtraSpecialList.removeLast","href":"fake/ExtraSpecialList/removeLast.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"sort","qualifiedName":"fake.ExtraSpecialList.sort","href":"fake/ExtraSpecialList/sort.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"shuffle","qualifiedName":"fake.ExtraSpecialList.shuffle","href":"fake/ExtraSpecialList/shuffle.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"asMap","qualifiedName":"fake.ExtraSpecialList.asMap","href":"fake/ExtraSpecialList/asMap.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"sublist","qualifiedName":"fake.ExtraSpecialList.sublist","href":"fake/ExtraSpecialList/sublist.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"getRange","qualifiedName":"fake.ExtraSpecialList.getRange","href":"fake/ExtraSpecialList/getRange.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"removeRange","qualifiedName":"fake.ExtraSpecialList.removeRange","href":"fake/ExtraSpecialList/removeRange.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"fillRange","qualifiedName":"fake.ExtraSpecialList.fillRange","href":"fake/ExtraSpecialList/fillRange.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"setRange","qualifiedName":"fake.ExtraSpecialList.setRange","href":"fake/ExtraSpecialList/setRange.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"replaceRange","qualifiedName":"fake.ExtraSpecialList.replaceRange","href":"fake/ExtraSpecialList/replaceRange.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"indexOf","qualifiedName":"fake.ExtraSpecialList.indexOf","href":"fake/ExtraSpecialList/indexOf.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"lastIndexOf","qualifiedName":"fake.ExtraSpecialList.lastIndexOf","href":"fake/ExtraSpecialList/lastIndexOf.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"insert","qualifiedName":"fake.ExtraSpecialList.insert","href":"fake/ExtraSpecialList/insert.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"removeAt","qualifiedName":"fake.ExtraSpecialList.removeAt","href":"fake/ExtraSpecialList/removeAt.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"insertAll","qualifiedName":"fake.ExtraSpecialList.insertAll","href":"fake/ExtraSpecialList/insertAll.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"setAll","qualifiedName":"fake.ExtraSpecialList.setAll","href":"fake/ExtraSpecialList/setAll.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"operator ==","qualifiedName":"fake.ExtraSpecialList.==","href":"fake/ExtraSpecialList/operator_equals.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"Foo2","qualifiedName":"fake.Foo2","href":"fake/Foo2-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"Foo2","qualifiedName":"fake.Foo2","href":"fake/Foo2/Foo2.html","type":"constructor","enclosedBy":{"name":"Foo2","type":"class"}},{"name":"BAR","qualifiedName":"fake.Foo2.BAR","href":"fake/Foo2/BAR-constant.html","type":"property","enclosedBy":{"name":"Foo2","type":"class"}},{"name":"BAZ","qualifiedName":"fake.Foo2.BAZ","href":"fake/Foo2/BAZ-constant.html","type":"property","enclosedBy":{"name":"Foo2","type":"class"}},{"name":"index","qualifiedName":"fake.Foo2.index","href":"fake/Foo2/index.html","type":"property","enclosedBy":{"name":"Foo2","type":"class"}},{"name":"hashCode","qualifiedName":"fake.Foo2.hashCode","href":"fake/Foo2/hashCode.html","type":"property","enclosedBy":{"name":"Foo2","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.Foo2.runtimeType","href":"fake/Foo2/runtimeType.html","type":"property","enclosedBy":{"name":"Foo2","type":"class"}},{"name":"toString","qualifiedName":"fake.Foo2.toString","href":"fake/Foo2/toString.html","type":"method","enclosedBy":{"name":"Foo2","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.Foo2.noSuchMethod","href":"fake/Foo2/noSuchMethod.html","type":"method","enclosedBy":{"name":"Foo2","type":"class"}},{"name":"operator ==","qualifiedName":"fake.Foo2.==","href":"fake/Foo2/operator_equals.html","type":"method","enclosedBy":{"name":"Foo2","type":"class"}},{"name":"HasGenerics","qualifiedName":"fake.HasGenerics","href":"fake/HasGenerics-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"HasGenerics","qualifiedName":"fake.HasGenerics","href":"fake/HasGenerics/HasGenerics.html","type":"constructor","enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"hashCode","qualifiedName":"fake.HasGenerics.hashCode","href":"fake/HasGenerics/hashCode.html","type":"property","enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.HasGenerics.runtimeType","href":"fake/HasGenerics/runtimeType.html","type":"property","enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"convertToMap","qualifiedName":"fake.HasGenerics.convertToMap","href":"fake/HasGenerics/convertToMap.html","type":"method","enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"doStuff","qualifiedName":"fake.HasGenerics.doStuff","href":"fake/HasGenerics/doStuff.html","type":"method","enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"returnX","qualifiedName":"fake.HasGenerics.returnX","href":"fake/HasGenerics/returnX.html","type":"method","enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"returnZ","qualifiedName":"fake.HasGenerics.returnZ","href":"fake/HasGenerics/returnZ.html","type":"method","enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"toString","qualifiedName":"fake.HasGenerics.toString","href":"fake/HasGenerics/toString.html","type":"method","enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.HasGenerics.noSuchMethod","href":"fake/HasGenerics/noSuchMethod.html","type":"method","enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"operator ==","qualifiedName":"fake.HasGenerics.==","href":"fake/HasGenerics/operator_equals.html","type":"method","enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"HasGenericWithExtends","qualifiedName":"fake.HasGenericWithExtends","href":"fake/HasGenericWithExtends-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"HasGenericWithExtends","qualifiedName":"fake.HasGenericWithExtends","href":"fake/HasGenericWithExtends/HasGenericWithExtends.html","type":"constructor","enclosedBy":{"name":"HasGenericWithExtends","type":"class"}},{"name":"hashCode","qualifiedName":"fake.HasGenericWithExtends.hashCode","href":"fake/HasGenericWithExtends/hashCode.html","type":"property","enclosedBy":{"name":"HasGenericWithExtends","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.HasGenericWithExtends.runtimeType","href":"fake/HasGenericWithExtends/runtimeType.html","type":"property","enclosedBy":{"name":"HasGenericWithExtends","type":"class"}},{"name":"toString","qualifiedName":"fake.HasGenericWithExtends.toString","href":"fake/HasGenericWithExtends/toString.html","type":"method","enclosedBy":{"name":"HasGenericWithExtends","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.HasGenericWithExtends.noSuchMethod","href":"fake/HasGenericWithExtends/noSuchMethod.html","type":"method","enclosedBy":{"name":"HasGenericWithExtends","type":"class"}},{"name":"operator ==","qualifiedName":"fake.HasGenericWithExtends.==","href":"fake/HasGenericWithExtends/operator_equals.html","type":"method","enclosedBy":{"name":"HasGenericWithExtends","type":"class"}},{"name":"Interface","qualifiedName":"fake.Interface","href":"fake/Interface-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"Interface","qualifiedName":"fake.Interface","href":"fake/Interface/Interface.html","type":"constructor","enclosedBy":{"name":"Interface","type":"class"}},{"name":"hashCode","qualifiedName":"fake.Interface.hashCode","href":"fake/Interface/hashCode.html","type":"property","enclosedBy":{"name":"Interface","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.Interface.runtimeType","href":"fake/Interface/runtimeType.html","type":"property","enclosedBy":{"name":"Interface","type":"class"}},{"name":"toString","qualifiedName":"fake.Interface.toString","href":"fake/Interface/toString.html","type":"method","enclosedBy":{"name":"Interface","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.Interface.noSuchMethod","href":"fake/Interface/noSuchMethod.html","type":"method","enclosedBy":{"name":"Interface","type":"class"}},{"name":"operator ==","qualifiedName":"fake.Interface.==","href":"fake/Interface/operator_equals.html","type":"method","enclosedBy":{"name":"Interface","type":"class"}},{"name":"LongFirstLine","qualifiedName":"fake.LongFirstLine","href":"fake/LongFirstLine-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"LongFirstLine","qualifiedName":"fake.LongFirstLine","href":"fake/LongFirstLine/LongFirstLine.html","type":"constructor","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"LongFirstLine.fromHasGenerics","qualifiedName":"fake.LongFirstLine.fromHasGenerics","href":"fake/LongFirstLine/LongFirstLine.fromHasGenerics.html","type":"constructor","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"LongFirstLine.fromMap","qualifiedName":"fake.LongFirstLine.fromMap","href":"fake/LongFirstLine/LongFirstLine.fromMap.html","type":"constructor","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"ANSWER","qualifiedName":"fake.LongFirstLine.ANSWER","href":"fake/LongFirstLine/ANSWER-constant.html","type":"property","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"THING","qualifiedName":"fake.LongFirstLine.THING","href":"fake/LongFirstLine/THING-constant.html","type":"property","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"meaningOfLife","qualifiedName":"fake.LongFirstLine.meaningOfLife","href":"fake/LongFirstLine/meaningOfLife.html","type":"property","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"staticGetter","qualifiedName":"fake.LongFirstLine.staticGetter","href":"fake/LongFirstLine/staticGetter.html","type":"property","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"staticOnlySetter","qualifiedName":"fake.LongFirstLine.staticOnlySetter","href":"fake/LongFirstLine/staticOnlySetter.html","type":"property","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"aStringProperty","qualifiedName":"fake.LongFirstLine.aStringProperty","href":"fake/LongFirstLine/aStringProperty.html","type":"property","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"dynamicGetter","qualifiedName":"fake.LongFirstLine.dynamicGetter","href":"fake/LongFirstLine/dynamicGetter.html","type":"property","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"onlySetter","qualifiedName":"fake.LongFirstLine.onlySetter","href":"fake/LongFirstLine/onlySetter.html","type":"property","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"hashCode","qualifiedName":"fake.LongFirstLine.hashCode","href":"fake/LongFirstLine/hashCode.html","type":"property","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.LongFirstLine.runtimeType","href":"fake/LongFirstLine/runtimeType.html","type":"property","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"noParams","qualifiedName":"fake.LongFirstLine.noParams","href":"fake/LongFirstLine/noParams.html","type":"method","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"optionalParams","qualifiedName":"fake.LongFirstLine.optionalParams","href":"fake/LongFirstLine/optionalParams.html","type":"method","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"returnString","qualifiedName":"fake.LongFirstLine.returnString","href":"fake/LongFirstLine/returnString.html","type":"method","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"twoParams","qualifiedName":"fake.LongFirstLine.twoParams","href":"fake/LongFirstLine/twoParams.html","type":"method","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"toString","qualifiedName":"fake.LongFirstLine.toString","href":"fake/LongFirstLine/toString.html","type":"method","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.LongFirstLine.noSuchMethod","href":"fake/LongFirstLine/noSuchMethod.html","type":"method","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"operator *","qualifiedName":"fake.LongFirstLine.*","href":"fake/LongFirstLine/operator_multiply.html","type":"method","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"operator +","qualifiedName":"fake.LongFirstLine.+","href":"fake/LongFirstLine/operator_plus.html","type":"method","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"operator ==","qualifiedName":"fake.LongFirstLine.==","href":"fake/LongFirstLine/operator_equals.html","type":"method","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"staticMethodNoParams","qualifiedName":"fake.LongFirstLine.staticMethodNoParams","href":"fake/LongFirstLine/staticMethodNoParams.html","type":"method","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"staticMethodReturnsVoid","qualifiedName":"fake.LongFirstLine.staticMethodReturnsVoid","href":"fake/LongFirstLine/staticMethodReturnsVoid.html","type":"method","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"MixMeIn","qualifiedName":"fake.MixMeIn","href":"fake/MixMeIn-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"MixMeIn","qualifiedName":"fake.MixMeIn","href":"fake/MixMeIn/MixMeIn.html","type":"constructor","enclosedBy":{"name":"MixMeIn","type":"class"}},{"name":"hashCode","qualifiedName":"fake.MixMeIn.hashCode","href":"fake/MixMeIn/hashCode.html","type":"property","enclosedBy":{"name":"MixMeIn","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.MixMeIn.runtimeType","href":"fake/MixMeIn/runtimeType.html","type":"property","enclosedBy":{"name":"MixMeIn","type":"class"}},{"name":"toString","qualifiedName":"fake.MixMeIn.toString","href":"fake/MixMeIn/toString.html","type":"method","enclosedBy":{"name":"MixMeIn","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.MixMeIn.noSuchMethod","href":"fake/MixMeIn/noSuchMethod.html","type":"method","enclosedBy":{"name":"MixMeIn","type":"class"}},{"name":"operator ==","qualifiedName":"fake.MixMeIn.==","href":"fake/MixMeIn/operator_equals.html","type":"method","enclosedBy":{"name":"MixMeIn","type":"class"}},{"name":"Oops","qualifiedName":"fake.Oops","href":"fake/Oops-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"Oops","qualifiedName":"fake.Oops","href":"fake/Oops/Oops.html","type":"constructor","enclosedBy":{"name":"Oops","type":"class"}},{"name":"message","qualifiedName":"fake.Oops.message","href":"fake/Oops/message.html","type":"property","enclosedBy":{"name":"Oops","type":"class"}},{"name":"hashCode","qualifiedName":"fake.Oops.hashCode","href":"fake/Oops/hashCode.html","type":"property","enclosedBy":{"name":"Oops","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.Oops.runtimeType","href":"fake/Oops/runtimeType.html","type":"property","enclosedBy":{"name":"Oops","type":"class"}},{"name":"toString","qualifiedName":"fake.Oops.toString","href":"fake/Oops/toString.html","type":"method","enclosedBy":{"name":"Oops","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.Oops.noSuchMethod","href":"fake/Oops/noSuchMethod.html","type":"method","enclosedBy":{"name":"Oops","type":"class"}},{"name":"operator ==","qualifiedName":"fake.Oops.==","href":"fake/Oops/operator_equals.html","type":"method","enclosedBy":{"name":"Oops","type":"class"}},{"name":"OtherGenericsThing","qualifiedName":"fake.OtherGenericsThing","href":"fake/OtherGenericsThing-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"OtherGenericsThing","qualifiedName":"fake.OtherGenericsThing","href":"fake/OtherGenericsThing/OtherGenericsThing.html","type":"constructor","enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"hashCode","qualifiedName":"fake.OtherGenericsThing.hashCode","href":"fake/OtherGenericsThing/hashCode.html","type":"property","enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.OtherGenericsThing.runtimeType","href":"fake/OtherGenericsThing/runtimeType.html","type":"property","enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"convert","qualifiedName":"fake.OtherGenericsThing.convert","href":"fake/OtherGenericsThing/convert.html","type":"method","enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"toString","qualifiedName":"fake.OtherGenericsThing.toString","href":"fake/OtherGenericsThing/toString.html","type":"method","enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.OtherGenericsThing.noSuchMethod","href":"fake/OtherGenericsThing/noSuchMethod.html","type":"method","enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"operator ==","qualifiedName":"fake.OtherGenericsThing.==","href":"fake/OtherGenericsThing/operator_equals.html","type":"method","enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"SpecialList","qualifiedName":"fake.SpecialList","href":"fake/SpecialList-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"SpecialList","qualifiedName":"fake.SpecialList","href":"fake/SpecialList/SpecialList.html","type":"constructor","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"length","qualifiedName":"fake.SpecialList.length","href":"fake/SpecialList/length.html","type":"property","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"hashCode","qualifiedName":"fake.SpecialList.hashCode","href":"fake/SpecialList/hashCode.html","type":"property","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.SpecialList.runtimeType","href":"fake/SpecialList/runtimeType.html","type":"property","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"iterator","qualifiedName":"fake.SpecialList.iterator","href":"fake/SpecialList/iterator.html","type":"property","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"isEmpty","qualifiedName":"fake.SpecialList.isEmpty","href":"fake/SpecialList/isEmpty.html","type":"property","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"isNotEmpty","qualifiedName":"fake.SpecialList.isNotEmpty","href":"fake/SpecialList/isNotEmpty.html","type":"property","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"first","qualifiedName":"fake.SpecialList.first","href":"fake/SpecialList/first.html","type":"property","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"last","qualifiedName":"fake.SpecialList.last","href":"fake/SpecialList/last.html","type":"property","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"single","qualifiedName":"fake.SpecialList.single","href":"fake/SpecialList/single.html","type":"property","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"reversed","qualifiedName":"fake.SpecialList.reversed","href":"fake/SpecialList/reversed.html","type":"property","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"toString","qualifiedName":"fake.SpecialList.toString","href":"fake/SpecialList/toString.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.SpecialList.noSuchMethod","href":"fake/SpecialList/noSuchMethod.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"elementAt","qualifiedName":"fake.SpecialList.elementAt","href":"fake/SpecialList/elementAt.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"forEach","qualifiedName":"fake.SpecialList.forEach","href":"fake/SpecialList/forEach.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"contains","qualifiedName":"fake.SpecialList.contains","href":"fake/SpecialList/contains.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"every","qualifiedName":"fake.SpecialList.every","href":"fake/SpecialList/every.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"any","qualifiedName":"fake.SpecialList.any","href":"fake/SpecialList/any.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"firstWhere","qualifiedName":"fake.SpecialList.firstWhere","href":"fake/SpecialList/firstWhere.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"lastWhere","qualifiedName":"fake.SpecialList.lastWhere","href":"fake/SpecialList/lastWhere.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"singleWhere","qualifiedName":"fake.SpecialList.singleWhere","href":"fake/SpecialList/singleWhere.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"join","qualifiedName":"fake.SpecialList.join","href":"fake/SpecialList/join.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"where","qualifiedName":"fake.SpecialList.where","href":"fake/SpecialList/where.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"map","qualifiedName":"fake.SpecialList.map","href":"fake/SpecialList/map.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"expand","qualifiedName":"fake.SpecialList.expand","href":"fake/SpecialList/expand.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"reduce","qualifiedName":"fake.SpecialList.reduce","href":"fake/SpecialList/reduce.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"fold","qualifiedName":"fake.SpecialList.fold","href":"fake/SpecialList/fold.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"skip","qualifiedName":"fake.SpecialList.skip","href":"fake/SpecialList/skip.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"skipWhile","qualifiedName":"fake.SpecialList.skipWhile","href":"fake/SpecialList/skipWhile.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"take","qualifiedName":"fake.SpecialList.take","href":"fake/SpecialList/take.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"takeWhile","qualifiedName":"fake.SpecialList.takeWhile","href":"fake/SpecialList/takeWhile.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"toList","qualifiedName":"fake.SpecialList.toList","href":"fake/SpecialList/toList.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"toSet","qualifiedName":"fake.SpecialList.toSet","href":"fake/SpecialList/toSet.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"add","qualifiedName":"fake.SpecialList.add","href":"fake/SpecialList/add.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"addAll","qualifiedName":"fake.SpecialList.addAll","href":"fake/SpecialList/addAll.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"remove","qualifiedName":"fake.SpecialList.remove","href":"fake/SpecialList/remove.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"removeWhere","qualifiedName":"fake.SpecialList.removeWhere","href":"fake/SpecialList/removeWhere.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"retainWhere","qualifiedName":"fake.SpecialList.retainWhere","href":"fake/SpecialList/retainWhere.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"clear","qualifiedName":"fake.SpecialList.clear","href":"fake/SpecialList/clear.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"removeLast","qualifiedName":"fake.SpecialList.removeLast","href":"fake/SpecialList/removeLast.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"sort","qualifiedName":"fake.SpecialList.sort","href":"fake/SpecialList/sort.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"shuffle","qualifiedName":"fake.SpecialList.shuffle","href":"fake/SpecialList/shuffle.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"asMap","qualifiedName":"fake.SpecialList.asMap","href":"fake/SpecialList/asMap.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"sublist","qualifiedName":"fake.SpecialList.sublist","href":"fake/SpecialList/sublist.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"getRange","qualifiedName":"fake.SpecialList.getRange","href":"fake/SpecialList/getRange.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"removeRange","qualifiedName":"fake.SpecialList.removeRange","href":"fake/SpecialList/removeRange.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"fillRange","qualifiedName":"fake.SpecialList.fillRange","href":"fake/SpecialList/fillRange.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"setRange","qualifiedName":"fake.SpecialList.setRange","href":"fake/SpecialList/setRange.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"replaceRange","qualifiedName":"fake.SpecialList.replaceRange","href":"fake/SpecialList/replaceRange.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"indexOf","qualifiedName":"fake.SpecialList.indexOf","href":"fake/SpecialList/indexOf.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"lastIndexOf","qualifiedName":"fake.SpecialList.lastIndexOf","href":"fake/SpecialList/lastIndexOf.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"insert","qualifiedName":"fake.SpecialList.insert","href":"fake/SpecialList/insert.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"removeAt","qualifiedName":"fake.SpecialList.removeAt","href":"fake/SpecialList/removeAt.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"insertAll","qualifiedName":"fake.SpecialList.insertAll","href":"fake/SpecialList/insertAll.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"setAll","qualifiedName":"fake.SpecialList.setAll","href":"fake/SpecialList/setAll.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"operator []","qualifiedName":"fake.SpecialList.[]","href":"fake/SpecialList/operator_get.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"operator []=","qualifiedName":"fake.SpecialList.[]=","href":"fake/SpecialList/operator_put.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"operator ==","qualifiedName":"fake.SpecialList.==","href":"fake/SpecialList/operator_equals.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"SubForDocComments","qualifiedName":"fake.SubForDocComments","href":"fake/SubForDocComments-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"SubForDocComments","qualifiedName":"fake.SubForDocComments","href":"fake/SubForDocComments/SubForDocComments.html","type":"constructor","enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"hashCode","qualifiedName":"fake.SubForDocComments.hashCode","href":"fake/SubForDocComments/hashCode.html","type":"property","enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.SubForDocComments.runtimeType","href":"fake/SubForDocComments/runtimeType.html","type":"property","enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"localMethod","qualifiedName":"fake.SubForDocComments.localMethod","href":"fake/SubForDocComments/localMethod.html","type":"method","enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"toString","qualifiedName":"fake.SubForDocComments.toString","href":"fake/SubForDocComments/toString.html","type":"method","enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.SubForDocComments.noSuchMethod","href":"fake/SubForDocComments/noSuchMethod.html","type":"method","enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"operator ==","qualifiedName":"fake.SubForDocComments.==","href":"fake/SubForDocComments/operator_equals.html","type":"method","enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"SuperAwesomeClass","qualifiedName":"fake.SuperAwesomeClass","href":"fake/SuperAwesomeClass-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"SuperAwesomeClass","qualifiedName":"fake.SuperAwesomeClass","href":"fake/SuperAwesomeClass/SuperAwesomeClass.html","type":"constructor","enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"powers","qualifiedName":"fake.SuperAwesomeClass.powers","href":"fake/SuperAwesomeClass/powers.html","type":"property","enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"hashCode","qualifiedName":"fake.SuperAwesomeClass.hashCode","href":"fake/SuperAwesomeClass/hashCode.html","type":"property","enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.SuperAwesomeClass.runtimeType","href":"fake/SuperAwesomeClass/runtimeType.html","type":"property","enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"fly","qualifiedName":"fake.SuperAwesomeClass.fly","href":"fake/SuperAwesomeClass/fly.html","type":"method","enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"toString","qualifiedName":"fake.SuperAwesomeClass.toString","href":"fake/SuperAwesomeClass/toString.html","type":"method","enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.SuperAwesomeClass.noSuchMethod","href":"fake/SuperAwesomeClass/noSuchMethod.html","type":"method","enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"operator -","qualifiedName":"fake.SuperAwesomeClass.-","href":"fake/SuperAwesomeClass/operator_minus.html","type":"method","enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"operator ==","qualifiedName":"fake.SuperAwesomeClass.==","href":"fake/SuperAwesomeClass/operator_equals.html","type":"method","enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"WithGetterAndSetter","qualifiedName":"fake.WithGetterAndSetter","href":"fake/WithGetterAndSetter-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"WithGetterAndSetter","qualifiedName":"fake.WithGetterAndSetter","href":"fake/WithGetterAndSetter/WithGetterAndSetter.html","type":"constructor","enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"lengthX","qualifiedName":"fake.WithGetterAndSetter.lengthX","href":"fake/WithGetterAndSetter/lengthX.html","type":"property","enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"hashCode","qualifiedName":"fake.WithGetterAndSetter.hashCode","href":"fake/WithGetterAndSetter/hashCode.html","type":"property","enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.WithGetterAndSetter.runtimeType","href":"fake/WithGetterAndSetter/runtimeType.html","type":"property","enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"toString","qualifiedName":"fake.WithGetterAndSetter.toString","href":"fake/WithGetterAndSetter/toString.html","type":"method","enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.WithGetterAndSetter.noSuchMethod","href":"fake/WithGetterAndSetter/noSuchMethod.html","type":"method","enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"operator ==","qualifiedName":"fake.WithGetterAndSetter.==","href":"fake/WithGetterAndSetter/operator_equals.html","type":"method","enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"Color","qualifiedName":"fake.Color","href":"fake/Color-class.html","type":"enum","enclosedBy":{"name":"fake","type":"library"}},{"name":"CUSTOM_CLASS","qualifiedName":"fake.CUSTOM_CLASS","href":"fake/CUSTOM_CLASS-constant.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"DOWN","qualifiedName":"fake.DOWN","href":"fake/DOWN-constant.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"greatAnnotation","qualifiedName":"fake.greatAnnotation","href":"fake/greatAnnotation-constant.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"greatestAnnotation","qualifiedName":"fake.greatestAnnotation","href":"fake/greatestAnnotation-constant.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"incorrectDocReference","qualifiedName":"fake.incorrectDocReference","href":"fake/incorrectDocReference-constant.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"NAME_SINGLEUNDERSCORE","qualifiedName":"fake.NAME_SINGLEUNDERSCORE","href":"fake/NAME_SINGLEUNDERSCORE-constant.html","type":"top-level property","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","enclosedBy":{"name":"fake","type":"library"}},{"name":"PI","qualifiedName":"fake.PI","href":"fake/PI-constant.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"testingCodeSyntaxInOneLiners","qualifiedName":"fake.testingCodeSyntaxInOneLiners","href":"fake/testingCodeSyntaxInOneLiners-constant.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"UP","qualifiedName":"fake.UP","href":"fake/UP-constant.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"ZERO","qualifiedName":"fake.ZERO","href":"fake/ZERO-constant.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"dynamicGetter","qualifiedName":"fake.dynamicGetter","href":"fake/dynamicGetter.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"justGetter","qualifiedName":"fake.justGetter","href":"fake/justGetter.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"justSetter","qualifiedName":"fake.justSetter","href":"fake/justSetter.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"mapWithDynamicKeys","qualifiedName":"fake.mapWithDynamicKeys","href":"fake/mapWithDynamicKeys.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"meaningOfLife","qualifiedName":"fake.meaningOfLife","href":"fake/meaningOfLife.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"setAndGet","qualifiedName":"fake.setAndGet","href":"fake/setAndGet.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"simpleProperty","qualifiedName":"fake.simpleProperty","href":"fake/simpleProperty.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"functionWithFunctionParameters","qualifiedName":"fake.functionWithFunctionParameters","href":"fake/functionWithFunctionParameters.html","type":"function","enclosedBy":{"name":"fake","type":"library"}},{"name":"onlyPositionalWithNoDefaultNoType","qualifiedName":"fake.onlyPositionalWithNoDefaultNoType","href":"fake/onlyPositionalWithNoDefaultNoType.html","type":"function","enclosedBy":{"name":"fake","type":"library"}},{"name":"paramFromAnotherLib","qualifiedName":"fake.paramFromAnotherLib","href":"fake/paramFromAnotherLib.html","type":"function","enclosedBy":{"name":"fake","type":"library"}},{"name":"short","qualifiedName":"fake.short","href":"fake/short.html","type":"function","enclosedBy":{"name":"fake","type":"library"}},{"name":"soIntense","qualifiedName":"fake.soIntense","href":"fake/soIntense.html","type":"function","enclosedBy":{"name":"fake","type":"library"}},{"name":"thisIsAlsoAsync","qualifiedName":"fake.thisIsAlsoAsync","href":"fake/thisIsAlsoAsync.html","type":"function","enclosedBy":{"name":"fake","type":"library"}},{"name":"thisIsAsync","qualifiedName":"fake.thisIsAsync","href":"fake/thisIsAsync.html","type":"function","enclosedBy":{"name":"fake","type":"library"}},{"name":"topLevelFunction","qualifiedName":"fake.topLevelFunction","href":"fake/topLevelFunction.html","type":"function","enclosedBy":{"name":"fake","type":"library"}},{"name":"FakeProcesses","qualifiedName":"fake.FakeProcesses","href":"fake/FakeProcesses.html","type":"typedef","enclosedBy":{"name":"fake","type":"library"}},{"name":"GenericTypedef","qualifiedName":"fake.GenericTypedef","href":"fake/GenericTypedef.html","type":"typedef","enclosedBy":{"name":"fake","type":"library"}},{"name":"LotsAndLotsOfParameters","qualifiedName":"fake.LotsAndLotsOfParameters","href":"fake/LotsAndLotsOfParameters.html","type":"typedef","enclosedBy":{"name":"fake","type":"library"}},{"name":"is_deprecated","qualifiedName":"is_deprecated","href":"is_deprecated/is_deprecated-library.html","type":"library"},{"name":"two_exports","qualifiedName":"two_exports","href":"two_exports/two_exports-library.html","type":"library"},{"name":"BaseClass","qualifiedName":"two_exports.BaseClass","href":"two_exports/BaseClass-class.html","type":"class","enclosedBy":{"name":"two_exports","type":"library"}},{"name":"BaseClass","qualifiedName":"two_exports.BaseClass","href":"two_exports/BaseClass/BaseClass.html","type":"constructor","enclosedBy":{"name":"BaseClass","type":"class"}},{"name":"hashCode","qualifiedName":"two_exports.BaseClass.hashCode","href":"two_exports/BaseClass/hashCode.html","type":"property","enclosedBy":{"name":"BaseClass","type":"class"}},{"name":"runtimeType","qualifiedName":"two_exports.BaseClass.runtimeType","href":"two_exports/BaseClass/runtimeType.html","type":"property","enclosedBy":{"name":"BaseClass","type":"class"}},{"name":"toString","qualifiedName":"two_exports.BaseClass.toString","href":"two_exports/BaseClass/toString.html","type":"method","enclosedBy":{"name":"BaseClass","type":"class"}},{"name":"noSuchMethod","qualifiedName":"two_exports.BaseClass.noSuchMethod","href":"two_exports/BaseClass/noSuchMethod.html","type":"method","enclosedBy":{"name":"BaseClass","type":"class"}},{"name":"operator ==","qualifiedName":"two_exports.BaseClass.==","href":"two_exports/BaseClass/operator_equals.html","type":"method","enclosedBy":{"name":"BaseClass","type":"class"}},{"name":"ExtendingClass","qualifiedName":"two_exports.ExtendingClass","href":"two_exports/ExtendingClass-class.html","type":"class","enclosedBy":{"name":"two_exports","type":"library"}},{"name":"ExtendingClass","qualifiedName":"two_exports.ExtendingClass","href":"two_exports/ExtendingClass/ExtendingClass.html","type":"constructor","enclosedBy":{"name":"ExtendingClass","type":"class"}},{"name":"hashCode","qualifiedName":"two_exports.ExtendingClass.hashCode","href":"two_exports/ExtendingClass/hashCode.html","type":"property","enclosedBy":{"name":"ExtendingClass","type":"class"}},{"name":"runtimeType","qualifiedName":"two_exports.ExtendingClass.runtimeType","href":"two_exports/ExtendingClass/runtimeType.html","type":"property","enclosedBy":{"name":"ExtendingClass","type":"class"}},{"name":"toString","qualifiedName":"two_exports.ExtendingClass.toString","href":"two_exports/ExtendingClass/toString.html","type":"method","enclosedBy":{"name":"ExtendingClass","type":"class"}},{"name":"noSuchMethod","qualifiedName":"two_exports.ExtendingClass.noSuchMethod","href":"two_exports/ExtendingClass/noSuchMethod.html","type":"method","enclosedBy":{"name":"ExtendingClass","type":"class"}},{"name":"operator ==","qualifiedName":"two_exports.ExtendingClass.==","href":"two_exports/ExtendingClass/operator_equals.html","type":"method","enclosedBy":{"name":"ExtendingClass","type":"class"}},{"name":"topLevelVariable","qualifiedName":"two_exports.topLevelVariable","href":"two_exports/topLevelVariable.html","type":"top-level property","enclosedBy":{"name":"two_exports","type":"library"}}] \ No newline at end of file +[{"name":"anonymous_library","qualifiedName":"anonymous_library","href":"anonymous_library/anonymous_library-library.html","type":"library"},{"name":"doesStuff","qualifiedName":"anonymous_library.doesStuff","href":"anonymous_library/doesStuff.html","type":"function","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"},{"name":"greeting","qualifiedName":"another_anonymous_lib.greeting","href":"another_anonymous_lib/greeting.html","type":"function","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"},{"name":"css","qualifiedName":"css","href":"css/css-library.html","type":"library"},{"name":"theOnlyThingInTheLibrary","qualifiedName":"css.theOnlyThingInTheLibrary","href":"css/theOnlyThingInTheLibrary.html","type":"top-level property","enclosedBy":{"name":"css","type":"library"}},{"name":"ex","qualifiedName":"ex","href":"ex/ex-library.html","type":"library"},{"name":"Apple","qualifiedName":"ex.Apple","href":"ex/Apple-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"Apple","qualifiedName":"ex.Apple","href":"ex/Apple/Apple.html","type":"constructor","enclosedBy":{"name":"Apple","type":"class"}},{"name":"Apple.fromString","qualifiedName":"ex.Apple.fromString","href":"ex/Apple/Apple.fromString.html","type":"constructor","enclosedBy":{"name":"Apple","type":"class"}},{"name":"n","qualifiedName":"ex.Apple.n","href":"ex/Apple/n-constant.html","type":"property","enclosedBy":{"name":"Apple","type":"class"}},{"name":"string","qualifiedName":"ex.Apple.string","href":"ex/Apple/string.html","type":"property","enclosedBy":{"name":"Apple","type":"class"}},{"name":"m","qualifiedName":"ex.Apple.m","href":"ex/Apple/m.html","type":"property","enclosedBy":{"name":"Apple","type":"class"}},{"name":"s","qualifiedName":"ex.Apple.s","href":"ex/Apple/s.html","type":"property","enclosedBy":{"name":"Apple","type":"class"}},{"name":"hashCode","qualifiedName":"ex.Apple.hashCode","href":"ex/Apple/hashCode.html","type":"property","enclosedBy":{"name":"Apple","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.Apple.runtimeType","href":"ex/Apple/runtimeType.html","type":"property","enclosedBy":{"name":"Apple","type":"class"}},{"name":"isGreaterThan","qualifiedName":"ex.Apple.isGreaterThan","href":"ex/Apple/isGreaterThan.html","type":"method","enclosedBy":{"name":"Apple","type":"class"}},{"name":"m1","qualifiedName":"ex.Apple.m1","href":"ex/Apple/m1.html","type":"method","enclosedBy":{"name":"Apple","type":"class"}},{"name":"methodWithTypedefParam","qualifiedName":"ex.Apple.methodWithTypedefParam","href":"ex/Apple/methodWithTypedefParam.html","type":"method","enclosedBy":{"name":"Apple","type":"class"}},{"name":"paramFromExportLib","qualifiedName":"ex.Apple.paramFromExportLib","href":"ex/Apple/paramFromExportLib.html","type":"method","enclosedBy":{"name":"Apple","type":"class"}},{"name":"printMsg","qualifiedName":"ex.Apple.printMsg","href":"ex/Apple/printMsg.html","type":"method","enclosedBy":{"name":"Apple","type":"class"}},{"name":"toString","qualifiedName":"ex.Apple.toString","href":"ex/Apple/toString.html","type":"method","enclosedBy":{"name":"Apple","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.Apple.noSuchMethod","href":"ex/Apple/noSuchMethod.html","type":"method","enclosedBy":{"name":"Apple","type":"class"}},{"name":"operator *","qualifiedName":"ex.Apple.*","href":"ex/Apple/operator_multiply.html","type":"method","enclosedBy":{"name":"Apple","type":"class"}},{"name":"operator ==","qualifiedName":"ex.Apple.==","href":"ex/Apple/operator_equals.html","type":"method","enclosedBy":{"name":"Apple","type":"class"}},{"name":"B","qualifiedName":"ex.B","href":"ex/B-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"B","qualifiedName":"ex.B","href":"ex/B/B.html","type":"constructor","enclosedBy":{"name":"B","type":"class"}},{"name":"autoCompress","qualifiedName":"ex.B.autoCompress","href":"ex/B/autoCompress.html","type":"property","enclosedBy":{"name":"B","type":"class"}},{"name":"isImplemented","qualifiedName":"ex.B.isImplemented","href":"ex/B/isImplemented.html","type":"property","enclosedBy":{"name":"B","type":"class"}},{"name":"list","qualifiedName":"ex.B.list","href":"ex/B/list.html","type":"property","enclosedBy":{"name":"B","type":"class"}},{"name":"hashCode","qualifiedName":"ex.B.hashCode","href":"ex/B/hashCode.html","type":"property","enclosedBy":{"name":"B","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.B.runtimeType","href":"ex/B/runtimeType.html","type":"property","enclosedBy":{"name":"B","type":"class"}},{"name":"doNothing","qualifiedName":"ex.B.doNothing","href":"ex/B/doNothing.html","type":"method","enclosedBy":{"name":"B","type":"class"}},{"name":"m1","qualifiedName":"ex.B.m1","href":"ex/B/m1.html","type":"method","enclosedBy":{"name":"B","type":"class"}},{"name":"writeMsg","qualifiedName":"ex.B.writeMsg","href":"ex/B/writeMsg.html","type":"method","enclosedBy":{"name":"B","type":"class"}},{"name":"toString","qualifiedName":"ex.B.toString","href":"ex/B/toString.html","type":"method","enclosedBy":{"name":"B","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.B.noSuchMethod","href":"ex/B/noSuchMethod.html","type":"method","enclosedBy":{"name":"B","type":"class"}},{"name":"operator ==","qualifiedName":"ex.B.==","href":"ex/B/operator_equals.html","type":"method","enclosedBy":{"name":"B","type":"class"}},{"name":"Cat","qualifiedName":"ex.Cat","href":"ex/Cat-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"Cat","qualifiedName":"ex.Cat","href":"ex/Cat/Cat.html","type":"constructor","enclosedBy":{"name":"Cat","type":"class"}},{"name":"isImplemented","qualifiedName":"ex.Cat.isImplemented","href":"ex/Cat/isImplemented.html","type":"property","enclosedBy":{"name":"Cat","type":"class"}},{"name":"hashCode","qualifiedName":"ex.Cat.hashCode","href":"ex/Cat/hashCode.html","type":"property","enclosedBy":{"name":"Cat","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.Cat.runtimeType","href":"ex/Cat/runtimeType.html","type":"property","enclosedBy":{"name":"Cat","type":"class"}},{"name":"abstractMethod","qualifiedName":"ex.Cat.abstractMethod","href":"ex/Cat/abstractMethod.html","type":"method","enclosedBy":{"name":"Cat","type":"class"}},{"name":"toString","qualifiedName":"ex.Cat.toString","href":"ex/Cat/toString.html","type":"method","enclosedBy":{"name":"Cat","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.Cat.noSuchMethod","href":"ex/Cat/noSuchMethod.html","type":"method","enclosedBy":{"name":"Cat","type":"class"}},{"name":"operator ==","qualifiedName":"ex.Cat.==","href":"ex/Cat/operator_equals.html","type":"method","enclosedBy":{"name":"Cat","type":"class"}},{"name":"CatString","qualifiedName":"ex.CatString","href":"ex/CatString-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"CatString","qualifiedName":"ex.CatString","href":"ex/CatString/CatString.html","type":"constructor","enclosedBy":{"name":"CatString","type":"class"}},{"name":"hashCode","qualifiedName":"ex.CatString.hashCode","href":"ex/CatString/hashCode.html","type":"property","enclosedBy":{"name":"CatString","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.CatString.runtimeType","href":"ex/CatString/runtimeType.html","type":"property","enclosedBy":{"name":"CatString","type":"class"}},{"name":"length","qualifiedName":"ex.CatString.length","href":"ex/CatString/length.html","type":"property","enclosedBy":{"name":"CatString","type":"class"}},{"name":"isEmpty","qualifiedName":"ex.CatString.isEmpty","href":"ex/CatString/isEmpty.html","type":"property","enclosedBy":{"name":"CatString","type":"class"}},{"name":"isNotEmpty","qualifiedName":"ex.CatString.isNotEmpty","href":"ex/CatString/isNotEmpty.html","type":"property","enclosedBy":{"name":"CatString","type":"class"}},{"name":"toString","qualifiedName":"ex.CatString.toString","href":"ex/CatString/toString.html","type":"method","enclosedBy":{"name":"CatString","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.CatString.noSuchMethod","href":"ex/CatString/noSuchMethod.html","type":"method","enclosedBy":{"name":"CatString","type":"class"}},{"name":"write","qualifiedName":"ex.CatString.write","href":"ex/CatString/write.html","type":"method","enclosedBy":{"name":"CatString","type":"class"}},{"name":"writeCharCode","qualifiedName":"ex.CatString.writeCharCode","href":"ex/CatString/writeCharCode.html","type":"method","enclosedBy":{"name":"CatString","type":"class"}},{"name":"writeAll","qualifiedName":"ex.CatString.writeAll","href":"ex/CatString/writeAll.html","type":"method","enclosedBy":{"name":"CatString","type":"class"}},{"name":"writeln","qualifiedName":"ex.CatString.writeln","href":"ex/CatString/writeln.html","type":"method","enclosedBy":{"name":"CatString","type":"class"}},{"name":"clear","qualifiedName":"ex.CatString.clear","href":"ex/CatString/clear.html","type":"method","enclosedBy":{"name":"CatString","type":"class"}},{"name":"operator ==","qualifiedName":"ex.CatString.==","href":"ex/CatString/operator_equals.html","type":"method","enclosedBy":{"name":"CatString","type":"class"}},{"name":"ConstantCat","qualifiedName":"ex.ConstantCat","href":"ex/ConstantCat-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"ConstantCat","qualifiedName":"ex.ConstantCat","href":"ex/ConstantCat/ConstantCat.html","type":"constructor","enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"isImplemented","qualifiedName":"ex.ConstantCat.isImplemented","href":"ex/ConstantCat/isImplemented.html","type":"property","enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"name","qualifiedName":"ex.ConstantCat.name","href":"ex/ConstantCat/name.html","type":"property","enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"hashCode","qualifiedName":"ex.ConstantCat.hashCode","href":"ex/ConstantCat/hashCode.html","type":"property","enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.ConstantCat.runtimeType","href":"ex/ConstantCat/runtimeType.html","type":"property","enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"abstractMethod","qualifiedName":"ex.ConstantCat.abstractMethod","href":"ex/ConstantCat/abstractMethod.html","type":"method","enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"toString","qualifiedName":"ex.ConstantCat.toString","href":"ex/ConstantCat/toString.html","type":"method","enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.ConstantCat.noSuchMethod","href":"ex/ConstantCat/noSuchMethod.html","type":"method","enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"operator ==","qualifiedName":"ex.ConstantCat.==","href":"ex/ConstantCat/operator_equals.html","type":"method","enclosedBy":{"name":"ConstantCat","type":"class"}},{"name":"Cool","qualifiedName":"ex.Cool","href":"ex/Cool-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"Cool","qualifiedName":"ex.Cool","href":"ex/Cool/Cool.html","type":"constructor","enclosedBy":{"name":"Cool","type":"class"}},{"name":"hashCode","qualifiedName":"ex.Cool.hashCode","href":"ex/Cool/hashCode.html","type":"property","enclosedBy":{"name":"Cool","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.Cool.runtimeType","href":"ex/Cool/runtimeType.html","type":"property","enclosedBy":{"name":"Cool","type":"class"}},{"name":"returnCool","qualifiedName":"ex.Cool.returnCool","href":"ex/Cool/returnCool.html","type":"method","enclosedBy":{"name":"Cool","type":"class"}},{"name":"toString","qualifiedName":"ex.Cool.toString","href":"ex/Cool/toString.html","type":"method","enclosedBy":{"name":"Cool","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.Cool.noSuchMethod","href":"ex/Cool/noSuchMethod.html","type":"method","enclosedBy":{"name":"Cool","type":"class"}},{"name":"operator ==","qualifiedName":"ex.Cool.==","href":"ex/Cool/operator_equals.html","type":"method","enclosedBy":{"name":"Cool","type":"class"}},{"name":"Deprecated","qualifiedName":"ex.Deprecated","href":"ex/Deprecated-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"Deprecated","qualifiedName":"ex.Deprecated","href":"ex/Deprecated/Deprecated.html","type":"constructor","enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"expires","qualifiedName":"ex.Deprecated.expires","href":"ex/Deprecated/expires.html","type":"property","enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"hashCode","qualifiedName":"ex.Deprecated.hashCode","href":"ex/Deprecated/hashCode.html","type":"property","enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.Deprecated.runtimeType","href":"ex/Deprecated/runtimeType.html","type":"property","enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"toString","qualifiedName":"ex.Deprecated.toString","href":"ex/Deprecated/toString.html","type":"method","enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.Deprecated.noSuchMethod","href":"ex/Deprecated/noSuchMethod.html","type":"method","enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"operator ==","qualifiedName":"ex.Deprecated.==","href":"ex/Deprecated/operator_equals.html","type":"method","enclosedBy":{"name":"Deprecated","type":"class"}},{"name":"Dog","qualifiedName":"ex.Dog","href":"ex/Dog-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"Dog","qualifiedName":"ex.Dog","href":"ex/Dog/Dog.html","type":"constructor","enclosedBy":{"name":"Dog","type":"class"}},{"name":"Dog.deprecatedCreate","qualifiedName":"ex.Dog.deprecatedCreate","href":"ex/Dog/Dog.deprecatedCreate.html","type":"constructor","enclosedBy":{"name":"Dog","type":"class"}},{"name":"deprecatedField","qualifiedName":"ex.Dog.deprecatedField","href":"ex/Dog/deprecatedField.html","type":"property","enclosedBy":{"name":"Dog","type":"class"}},{"name":"deprecatedGetter","qualifiedName":"ex.Dog.deprecatedGetter","href":"ex/Dog/deprecatedGetter.html","type":"property","enclosedBy":{"name":"Dog","type":"class"}},{"name":"deprecatedSetter","qualifiedName":"ex.Dog.deprecatedSetter","href":"ex/Dog/deprecatedSetter.html","type":"property","enclosedBy":{"name":"Dog","type":"class"}},{"name":"isImplemented","qualifiedName":"ex.Dog.isImplemented","href":"ex/Dog/isImplemented.html","type":"property","enclosedBy":{"name":"Dog","type":"class"}},{"name":"name","qualifiedName":"ex.Dog.name","href":"ex/Dog/name.html","type":"property","enclosedBy":{"name":"Dog","type":"class"}},{"name":"hashCode","qualifiedName":"ex.Dog.hashCode","href":"ex/Dog/hashCode.html","type":"property","enclosedBy":{"name":"Dog","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.Dog.runtimeType","href":"ex/Dog/runtimeType.html","type":"property","enclosedBy":{"name":"Dog","type":"class"}},{"name":"foo","qualifiedName":"ex.Dog.foo","href":"ex/Dog/foo.html","type":"method","enclosedBy":{"name":"Dog","type":"class"}},{"name":"getClassA","qualifiedName":"ex.Dog.getClassA","href":"ex/Dog/getClassA.html","type":"method","enclosedBy":{"name":"Dog","type":"class"}},{"name":"testGeneric","qualifiedName":"ex.Dog.testGeneric","href":"ex/Dog/testGeneric.html","type":"method","enclosedBy":{"name":"Dog","type":"class"}},{"name":"testMethod","qualifiedName":"ex.Dog.testMethod","href":"ex/Dog/testMethod.html","type":"method","enclosedBy":{"name":"Dog","type":"class"}},{"name":"toString","qualifiedName":"ex.Dog.toString","href":"ex/Dog/toString.html","type":"method","enclosedBy":{"name":"Dog","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.Dog.noSuchMethod","href":"ex/Dog/noSuchMethod.html","type":"method","enclosedBy":{"name":"Dog","type":"class"}},{"name":"operator ==","qualifiedName":"ex.Dog.==","href":"ex/Dog/operator_equals.html","type":"method","enclosedBy":{"name":"Dog","type":"class"}},{"name":"createDog","qualifiedName":"ex.Dog.createDog","href":"ex/Dog/createDog.html","type":"method","enclosedBy":{"name":"Dog","type":"class"}},{"name":"E","qualifiedName":"ex.E","href":"ex/E-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"E","qualifiedName":"ex.E","href":"ex/E/E.html","type":"constructor","enclosedBy":{"name":"E","type":"class"}},{"name":"hashCode","qualifiedName":"ex.E.hashCode","href":"ex/E/hashCode.html","type":"property","enclosedBy":{"name":"E","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.E.runtimeType","href":"ex/E/runtimeType.html","type":"property","enclosedBy":{"name":"E","type":"class"}},{"name":"toString","qualifiedName":"ex.E.toString","href":"ex/E/toString.html","type":"method","enclosedBy":{"name":"E","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.E.noSuchMethod","href":"ex/E/noSuchMethod.html","type":"method","enclosedBy":{"name":"E","type":"class"}},{"name":"operator ==","qualifiedName":"ex.E.==","href":"ex/E/operator_equals.html","type":"method","enclosedBy":{"name":"E","type":"class"}},{"name":"F","qualifiedName":"ex.F","href":"ex/F-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"F","qualifiedName":"ex.F","href":"ex/F/F.html","type":"constructor","enclosedBy":{"name":"F","type":"class"}},{"name":"hashCode","qualifiedName":"ex.F.hashCode","href":"ex/F/hashCode.html","type":"property","enclosedBy":{"name":"F","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.F.runtimeType","href":"ex/F/runtimeType.html","type":"property","enclosedBy":{"name":"F","type":"class"}},{"name":"methodWithGenericParam","qualifiedName":"ex.F.methodWithGenericParam","href":"ex/F/methodWithGenericParam.html","type":"method","enclosedBy":{"name":"F","type":"class"}},{"name":"toString","qualifiedName":"ex.F.toString","href":"ex/F/toString.html","type":"method","enclosedBy":{"name":"F","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.F.noSuchMethod","href":"ex/F/noSuchMethod.html","type":"method","enclosedBy":{"name":"F","type":"class"}},{"name":"test","qualifiedName":"ex.F.test","href":"ex/F/test.html","type":"method","enclosedBy":{"name":"F","type":"class"}},{"name":"ForAnnotation","qualifiedName":"ex.ForAnnotation","href":"ex/ForAnnotation-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"ForAnnotation","qualifiedName":"ex.ForAnnotation","href":"ex/ForAnnotation/ForAnnotation.html","type":"constructor","enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"value","qualifiedName":"ex.ForAnnotation.value","href":"ex/ForAnnotation/value.html","type":"property","enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"hashCode","qualifiedName":"ex.ForAnnotation.hashCode","href":"ex/ForAnnotation/hashCode.html","type":"property","enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.ForAnnotation.runtimeType","href":"ex/ForAnnotation/runtimeType.html","type":"property","enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"toString","qualifiedName":"ex.ForAnnotation.toString","href":"ex/ForAnnotation/toString.html","type":"method","enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.ForAnnotation.noSuchMethod","href":"ex/ForAnnotation/noSuchMethod.html","type":"method","enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"operator ==","qualifiedName":"ex.ForAnnotation.==","href":"ex/ForAnnotation/operator_equals.html","type":"method","enclosedBy":{"name":"ForAnnotation","type":"class"}},{"name":"HasAnnotation","qualifiedName":"ex.HasAnnotation","href":"ex/HasAnnotation-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"HasAnnotation","qualifiedName":"ex.HasAnnotation","href":"ex/HasAnnotation/HasAnnotation.html","type":"constructor","enclosedBy":{"name":"HasAnnotation","type":"class"}},{"name":"hashCode","qualifiedName":"ex.HasAnnotation.hashCode","href":"ex/HasAnnotation/hashCode.html","type":"property","enclosedBy":{"name":"HasAnnotation","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.HasAnnotation.runtimeType","href":"ex/HasAnnotation/runtimeType.html","type":"property","enclosedBy":{"name":"HasAnnotation","type":"class"}},{"name":"toString","qualifiedName":"ex.HasAnnotation.toString","href":"ex/HasAnnotation/toString.html","type":"method","enclosedBy":{"name":"HasAnnotation","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.HasAnnotation.noSuchMethod","href":"ex/HasAnnotation/noSuchMethod.html","type":"method","enclosedBy":{"name":"HasAnnotation","type":"class"}},{"name":"operator ==","qualifiedName":"ex.HasAnnotation.==","href":"ex/HasAnnotation/operator_equals.html","type":"method","enclosedBy":{"name":"HasAnnotation","type":"class"}},{"name":"Helper","qualifiedName":"ex.Helper","href":"ex/Helper-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"Helper","qualifiedName":"ex.Helper","href":"ex/Helper/Helper.html","type":"constructor","enclosedBy":{"name":"Helper","type":"class"}},{"name":"hashCode","qualifiedName":"ex.Helper.hashCode","href":"ex/Helper/hashCode.html","type":"property","enclosedBy":{"name":"Helper","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.Helper.runtimeType","href":"ex/Helper/runtimeType.html","type":"property","enclosedBy":{"name":"Helper","type":"class"}},{"name":"getContents","qualifiedName":"ex.Helper.getContents","href":"ex/Helper/getContents.html","type":"method","enclosedBy":{"name":"Helper","type":"class"}},{"name":"toString","qualifiedName":"ex.Helper.toString","href":"ex/Helper/toString.html","type":"method","enclosedBy":{"name":"Helper","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.Helper.noSuchMethod","href":"ex/Helper/noSuchMethod.html","type":"method","enclosedBy":{"name":"Helper","type":"class"}},{"name":"operator ==","qualifiedName":"ex.Helper.==","href":"ex/Helper/operator_equals.html","type":"method","enclosedBy":{"name":"Helper","type":"class"}},{"name":"Klass","qualifiedName":"ex.Klass","href":"ex/Klass-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"Klass","qualifiedName":"ex.Klass","href":"ex/Klass/Klass.html","type":"constructor","enclosedBy":{"name":"Klass","type":"class"}},{"name":"hashCode","qualifiedName":"ex.Klass.hashCode","href":"ex/Klass/hashCode.html","type":"property","enclosedBy":{"name":"Klass","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.Klass.runtimeType","href":"ex/Klass/runtimeType.html","type":"property","enclosedBy":{"name":"Klass","type":"class"}},{"name":"another","qualifiedName":"ex.Klass.another","href":"ex/Klass/another.html","type":"method","enclosedBy":{"name":"Klass","type":"class"}},{"name":"method","qualifiedName":"ex.Klass.method","href":"ex/Klass/method.html","type":"method","enclosedBy":{"name":"Klass","type":"class"}},{"name":"toString","qualifiedName":"ex.Klass.toString","href":"ex/Klass/toString.html","type":"method","enclosedBy":{"name":"Klass","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.Klass.noSuchMethod","href":"ex/Klass/noSuchMethod.html","type":"method","enclosedBy":{"name":"Klass","type":"class"}},{"name":"operator ==","qualifiedName":"ex.Klass.==","href":"ex/Klass/operator_equals.html","type":"method","enclosedBy":{"name":"Klass","type":"class"}},{"name":"MyError","qualifiedName":"ex.MyError","href":"ex/MyError-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"MyError","qualifiedName":"ex.MyError","href":"ex/MyError/MyError.html","type":"constructor","enclosedBy":{"name":"MyError","type":"class"}},{"name":"hashCode","qualifiedName":"ex.MyError.hashCode","href":"ex/MyError/hashCode.html","type":"property","enclosedBy":{"name":"MyError","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.MyError.runtimeType","href":"ex/MyError/runtimeType.html","type":"property","enclosedBy":{"name":"MyError","type":"class"}},{"name":"stackTrace","qualifiedName":"ex.MyError.stackTrace","href":"ex/MyError/stackTrace.html","type":"property","enclosedBy":{"name":"MyError","type":"class"}},{"name":"toString","qualifiedName":"ex.MyError.toString","href":"ex/MyError/toString.html","type":"method","enclosedBy":{"name":"MyError","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.MyError.noSuchMethod","href":"ex/MyError/noSuchMethod.html","type":"method","enclosedBy":{"name":"MyError","type":"class"}},{"name":"operator ==","qualifiedName":"ex.MyError.==","href":"ex/MyError/operator_equals.html","type":"method","enclosedBy":{"name":"MyError","type":"class"}},{"name":"MyErrorImplements","qualifiedName":"ex.MyErrorImplements","href":"ex/MyErrorImplements-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"MyErrorImplements","qualifiedName":"ex.MyErrorImplements","href":"ex/MyErrorImplements/MyErrorImplements.html","type":"constructor","enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"stackTrace","qualifiedName":"ex.MyErrorImplements.stackTrace","href":"ex/MyErrorImplements/stackTrace.html","type":"property","enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"hashCode","qualifiedName":"ex.MyErrorImplements.hashCode","href":"ex/MyErrorImplements/hashCode.html","type":"property","enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.MyErrorImplements.runtimeType","href":"ex/MyErrorImplements/runtimeType.html","type":"property","enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"toString","qualifiedName":"ex.MyErrorImplements.toString","href":"ex/MyErrorImplements/toString.html","type":"method","enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.MyErrorImplements.noSuchMethod","href":"ex/MyErrorImplements/noSuchMethod.html","type":"method","enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"operator ==","qualifiedName":"ex.MyErrorImplements.==","href":"ex/MyErrorImplements/operator_equals.html","type":"method","enclosedBy":{"name":"MyErrorImplements","type":"class"}},{"name":"MyException","qualifiedName":"ex.MyException","href":"ex/MyException-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"MyException","qualifiedName":"ex.MyException","href":"ex/MyException/MyException.html","type":"constructor","enclosedBy":{"name":"MyException","type":"class"}},{"name":"hashCode","qualifiedName":"ex.MyException.hashCode","href":"ex/MyException/hashCode.html","type":"property","enclosedBy":{"name":"MyException","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.MyException.runtimeType","href":"ex/MyException/runtimeType.html","type":"property","enclosedBy":{"name":"MyException","type":"class"}},{"name":"toString","qualifiedName":"ex.MyException.toString","href":"ex/MyException/toString.html","type":"method","enclosedBy":{"name":"MyException","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.MyException.noSuchMethod","href":"ex/MyException/noSuchMethod.html","type":"method","enclosedBy":{"name":"MyException","type":"class"}},{"name":"operator ==","qualifiedName":"ex.MyException.==","href":"ex/MyException/operator_equals.html","type":"method","enclosedBy":{"name":"MyException","type":"class"}},{"name":"MyExceptionImplements","qualifiedName":"ex.MyExceptionImplements","href":"ex/MyExceptionImplements-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"MyExceptionImplements","qualifiedName":"ex.MyExceptionImplements","href":"ex/MyExceptionImplements/MyExceptionImplements.html","type":"constructor","enclosedBy":{"name":"MyExceptionImplements","type":"class"}},{"name":"hashCode","qualifiedName":"ex.MyExceptionImplements.hashCode","href":"ex/MyExceptionImplements/hashCode.html","type":"property","enclosedBy":{"name":"MyExceptionImplements","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.MyExceptionImplements.runtimeType","href":"ex/MyExceptionImplements/runtimeType.html","type":"property","enclosedBy":{"name":"MyExceptionImplements","type":"class"}},{"name":"toString","qualifiedName":"ex.MyExceptionImplements.toString","href":"ex/MyExceptionImplements/toString.html","type":"method","enclosedBy":{"name":"MyExceptionImplements","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.MyExceptionImplements.noSuchMethod","href":"ex/MyExceptionImplements/noSuchMethod.html","type":"method","enclosedBy":{"name":"MyExceptionImplements","type":"class"}},{"name":"operator ==","qualifiedName":"ex.MyExceptionImplements.==","href":"ex/MyExceptionImplements/operator_equals.html","type":"method","enclosedBy":{"name":"MyExceptionImplements","type":"class"}},{"name":"PublicClassExtendsPrivateClass","qualifiedName":"ex.PublicClassExtendsPrivateClass","href":"ex/PublicClassExtendsPrivateClass-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"PublicClassExtendsPrivateClass","qualifiedName":"ex.PublicClassExtendsPrivateClass","href":"ex/PublicClassExtendsPrivateClass/PublicClassExtendsPrivateClass.html","type":"constructor","enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"hashCode","qualifiedName":"ex.PublicClassExtendsPrivateClass.hashCode","href":"ex/PublicClassExtendsPrivateClass/hashCode.html","type":"property","enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.PublicClassExtendsPrivateClass.runtimeType","href":"ex/PublicClassExtendsPrivateClass/runtimeType.html","type":"property","enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"toString","qualifiedName":"ex.PublicClassExtendsPrivateClass.toString","href":"ex/PublicClassExtendsPrivateClass/toString.html","type":"method","enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.PublicClassExtendsPrivateClass.noSuchMethod","href":"ex/PublicClassExtendsPrivateClass/noSuchMethod.html","type":"method","enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"test","qualifiedName":"ex.PublicClassExtendsPrivateClass.test","href":"ex/PublicClassExtendsPrivateClass/test.html","type":"method","enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"operator ==","qualifiedName":"ex.PublicClassExtendsPrivateClass.==","href":"ex/PublicClassExtendsPrivateClass/operator_equals.html","type":"method","enclosedBy":{"name":"PublicClassExtendsPrivateClass","type":"class"}},{"name":"PublicClassImplementsPrivateInterface","qualifiedName":"ex.PublicClassImplementsPrivateInterface","href":"ex/PublicClassImplementsPrivateInterface-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"PublicClassImplementsPrivateInterface","qualifiedName":"ex.PublicClassImplementsPrivateInterface","href":"ex/PublicClassImplementsPrivateInterface/PublicClassImplementsPrivateInterface.html","type":"constructor","enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"hashCode","qualifiedName":"ex.PublicClassImplementsPrivateInterface.hashCode","href":"ex/PublicClassImplementsPrivateInterface/hashCode.html","type":"property","enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.PublicClassImplementsPrivateInterface.runtimeType","href":"ex/PublicClassImplementsPrivateInterface/runtimeType.html","type":"property","enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"test","qualifiedName":"ex.PublicClassImplementsPrivateInterface.test","href":"ex/PublicClassImplementsPrivateInterface/test.html","type":"method","enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"toString","qualifiedName":"ex.PublicClassImplementsPrivateInterface.toString","href":"ex/PublicClassImplementsPrivateInterface/toString.html","type":"method","enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.PublicClassImplementsPrivateInterface.noSuchMethod","href":"ex/PublicClassImplementsPrivateInterface/noSuchMethod.html","type":"method","enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"operator ==","qualifiedName":"ex.PublicClassImplementsPrivateInterface.==","href":"ex/PublicClassImplementsPrivateInterface/operator_equals.html","type":"method","enclosedBy":{"name":"PublicClassImplementsPrivateInterface","type":"class"}},{"name":"ShapeType","qualifiedName":"ex.ShapeType","href":"ex/ShapeType-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"ellipse","qualifiedName":"ex.ShapeType.ellipse","href":"ex/ShapeType/ellipse-constant.html","type":"property","enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"rect","qualifiedName":"ex.ShapeType.rect","href":"ex/ShapeType/rect-constant.html","type":"property","enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"hashCode","qualifiedName":"ex.ShapeType.hashCode","href":"ex/ShapeType/hashCode.html","type":"property","enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.ShapeType.runtimeType","href":"ex/ShapeType/runtimeType.html","type":"property","enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"name","qualifiedName":"ex.ShapeType.name","href":"ex/ShapeType/name.html","type":"property","enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"toString","qualifiedName":"ex.ShapeType.toString","href":"ex/ShapeType/toString.html","type":"method","enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.ShapeType.noSuchMethod","href":"ex/ShapeType/noSuchMethod.html","type":"method","enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"operator ==","qualifiedName":"ex.ShapeType.==","href":"ex/ShapeType/operator_equals.html","type":"method","enclosedBy":{"name":"ShapeType","type":"class"}},{"name":"SpecializedDuration","qualifiedName":"ex.SpecializedDuration","href":"ex/SpecializedDuration-class.html","type":"class","enclosedBy":{"name":"ex","type":"library"}},{"name":"SpecializedDuration","qualifiedName":"ex.SpecializedDuration","href":"ex/SpecializedDuration/SpecializedDuration.html","type":"constructor","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"hashCode","qualifiedName":"ex.SpecializedDuration.hashCode","href":"ex/SpecializedDuration/hashCode.html","type":"property","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"runtimeType","qualifiedName":"ex.SpecializedDuration.runtimeType","href":"ex/SpecializedDuration/runtimeType.html","type":"property","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"inDays","qualifiedName":"ex.SpecializedDuration.inDays","href":"ex/SpecializedDuration/inDays.html","type":"property","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"inHours","qualifiedName":"ex.SpecializedDuration.inHours","href":"ex/SpecializedDuration/inHours.html","type":"property","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"inMinutes","qualifiedName":"ex.SpecializedDuration.inMinutes","href":"ex/SpecializedDuration/inMinutes.html","type":"property","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"inSeconds","qualifiedName":"ex.SpecializedDuration.inSeconds","href":"ex/SpecializedDuration/inSeconds.html","type":"property","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"inMilliseconds","qualifiedName":"ex.SpecializedDuration.inMilliseconds","href":"ex/SpecializedDuration/inMilliseconds.html","type":"property","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"inMicroseconds","qualifiedName":"ex.SpecializedDuration.inMicroseconds","href":"ex/SpecializedDuration/inMicroseconds.html","type":"property","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"isNegative","qualifiedName":"ex.SpecializedDuration.isNegative","href":"ex/SpecializedDuration/isNegative.html","type":"property","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"toString","qualifiedName":"ex.SpecializedDuration.toString","href":"ex/SpecializedDuration/toString.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"noSuchMethod","qualifiedName":"ex.SpecializedDuration.noSuchMethod","href":"ex/SpecializedDuration/noSuchMethod.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"compareTo","qualifiedName":"ex.SpecializedDuration.compareTo","href":"ex/SpecializedDuration/compareTo.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"abs","qualifiedName":"ex.SpecializedDuration.abs","href":"ex/SpecializedDuration/abs.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator ~/","qualifiedName":"ex.SpecializedDuration.~/","href":"ex/SpecializedDuration/operator_truncate_divide.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator *","qualifiedName":"ex.SpecializedDuration.*","href":"ex/SpecializedDuration/operator_multiply.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator -","qualifiedName":"ex.SpecializedDuration.-","href":"ex/SpecializedDuration/operator_minus.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator <","qualifiedName":"ex.SpecializedDuration.<","href":"ex/SpecializedDuration/operator_less.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator >=","qualifiedName":"ex.SpecializedDuration.>=","href":"ex/SpecializedDuration/operator_greater_equal.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator ==","qualifiedName":"ex.SpecializedDuration.==","href":"ex/SpecializedDuration/operator_equals.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator <=","qualifiedName":"ex.SpecializedDuration.<=","href":"ex/SpecializedDuration/operator_less_equal.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator >","qualifiedName":"ex.SpecializedDuration.>","href":"ex/SpecializedDuration/operator_greater.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator +","qualifiedName":"ex.SpecializedDuration.+","href":"ex/SpecializedDuration/operator_plus.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"operator unary-","qualifiedName":"ex.SpecializedDuration.unary-","href":"ex/SpecializedDuration/operator_unary_minus.html","type":"method","enclosedBy":{"name":"SpecializedDuration","type":"class"}},{"name":"Animal","qualifiedName":"ex.Animal","href":"ex/Animal-class.html","type":"enum","enclosedBy":{"name":"ex","type":"library"}},{"name":"COLOR","qualifiedName":"ex.COLOR","href":"ex/COLOR-constant.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"COLOR_GREEN","qualifiedName":"ex.COLOR_GREEN","href":"ex/COLOR_GREEN-constant.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"COLOR_ORANGE","qualifiedName":"ex.COLOR_ORANGE","href":"ex/COLOR_ORANGE-constant.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"COMPLEX_COLOR","qualifiedName":"ex.COMPLEX_COLOR","href":"ex/COMPLEX_COLOR-constant.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"deprecated","qualifiedName":"ex.deprecated","href":"ex/deprecated-constant.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"incorrectDocReference","qualifiedName":"ex.incorrectDocReference","href":"ex/incorrectDocReference-constant.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"incorrectDocReferenceFromEx","qualifiedName":"ex.incorrectDocReferenceFromEx","href":"ex/incorrectDocReferenceFromEx-constant.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"MY_CAT","qualifiedName":"ex.MY_CAT","href":"ex/MY_CAT-constant.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"PRETTY_COLORS","qualifiedName":"ex.PRETTY_COLORS","href":"ex/PRETTY_COLORS-constant.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"deprecatedField","qualifiedName":"ex.deprecatedField","href":"ex/deprecatedField.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"deprecatedGetter","qualifiedName":"ex.deprecatedGetter","href":"ex/deprecatedGetter.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"deprecatedSetter","qualifiedName":"ex.deprecatedSetter","href":"ex/deprecatedSetter.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"number","qualifiedName":"ex.number","href":"ex/number.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"y","qualifiedName":"ex.y","href":"ex/y.html","type":"top-level property","enclosedBy":{"name":"ex","type":"library"}},{"name":"function1","qualifiedName":"ex.function1","href":"ex/function1.html","type":"function","enclosedBy":{"name":"ex","type":"library"}},{"name":"processMessage","qualifiedName":"ex.processMessage","href":"ex/processMessage.html","type":"typedef","enclosedBy":{"name":"ex","type":"library"}},{"name":"fake","qualifiedName":"fake","href":"fake/fake-library.html","type":"library"},{"name":"Annotation","qualifiedName":"fake.Annotation","href":"fake/Annotation-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"Annotation","qualifiedName":"fake.Annotation","href":"fake/Annotation/Annotation.html","type":"constructor","enclosedBy":{"name":"Annotation","type":"class"}},{"name":"value","qualifiedName":"fake.Annotation.value","href":"fake/Annotation/value.html","type":"property","enclosedBy":{"name":"Annotation","type":"class"}},{"name":"hashCode","qualifiedName":"fake.Annotation.hashCode","href":"fake/Annotation/hashCode.html","type":"property","enclosedBy":{"name":"Annotation","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.Annotation.runtimeType","href":"fake/Annotation/runtimeType.html","type":"property","enclosedBy":{"name":"Annotation","type":"class"}},{"name":"toString","qualifiedName":"fake.Annotation.toString","href":"fake/Annotation/toString.html","type":"method","enclosedBy":{"name":"Annotation","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.Annotation.noSuchMethod","href":"fake/Annotation/noSuchMethod.html","type":"method","enclosedBy":{"name":"Annotation","type":"class"}},{"name":"operator ==","qualifiedName":"fake.Annotation.==","href":"fake/Annotation/operator_equals.html","type":"method","enclosedBy":{"name":"Annotation","type":"class"}},{"name":"AnotherInterface","qualifiedName":"fake.AnotherInterface","href":"fake/AnotherInterface-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"AnotherInterface","qualifiedName":"fake.AnotherInterface","href":"fake/AnotherInterface/AnotherInterface.html","type":"constructor","enclosedBy":{"name":"AnotherInterface","type":"class"}},{"name":"hashCode","qualifiedName":"fake.AnotherInterface.hashCode","href":"fake/AnotherInterface/hashCode.html","type":"property","enclosedBy":{"name":"AnotherInterface","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.AnotherInterface.runtimeType","href":"fake/AnotherInterface/runtimeType.html","type":"property","enclosedBy":{"name":"AnotherInterface","type":"class"}},{"name":"toString","qualifiedName":"fake.AnotherInterface.toString","href":"fake/AnotherInterface/toString.html","type":"method","enclosedBy":{"name":"AnotherInterface","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.AnotherInterface.noSuchMethod","href":"fake/AnotherInterface/noSuchMethod.html","type":"method","enclosedBy":{"name":"AnotherInterface","type":"class"}},{"name":"operator ==","qualifiedName":"fake.AnotherInterface.==","href":"fake/AnotherInterface/operator_equals.html","type":"method","enclosedBy":{"name":"AnotherInterface","type":"class"}},{"name":"BaseForDocComments","qualifiedName":"fake.BaseForDocComments","href":"fake/BaseForDocComments-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"BaseForDocComments","qualifiedName":"fake.BaseForDocComments","href":"fake/BaseForDocComments/BaseForDocComments.html","type":"constructor","enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"hashCode","qualifiedName":"fake.BaseForDocComments.hashCode","href":"fake/BaseForDocComments/hashCode.html","type":"property","enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.BaseForDocComments.runtimeType","href":"fake/BaseForDocComments/runtimeType.html","type":"property","enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"anotherMethod","qualifiedName":"fake.BaseForDocComments.anotherMethod","href":"fake/BaseForDocComments/anotherMethod.html","type":"method","enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"doAwesomeStuff","qualifiedName":"fake.BaseForDocComments.doAwesomeStuff","href":"fake/BaseForDocComments/doAwesomeStuff.html","type":"method","enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"toString","qualifiedName":"fake.BaseForDocComments.toString","href":"fake/BaseForDocComments/toString.html","type":"method","enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.BaseForDocComments.noSuchMethod","href":"fake/BaseForDocComments/noSuchMethod.html","type":"method","enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"operator ==","qualifiedName":"fake.BaseForDocComments.==","href":"fake/BaseForDocComments/operator_equals.html","type":"method","enclosedBy":{"name":"BaseForDocComments","type":"class"}},{"name":"ConstantClass","qualifiedName":"fake.ConstantClass","href":"fake/ConstantClass-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"ConstantClass","qualifiedName":"fake.ConstantClass","href":"fake/ConstantClass/ConstantClass.html","type":"constructor","enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"ConstantClass.isVeryConstant","qualifiedName":"fake.ConstantClass.isVeryConstant","href":"fake/ConstantClass/ConstantClass.isVeryConstant.html","type":"constructor","enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"ConstantClass.notConstant","qualifiedName":"fake.ConstantClass.notConstant","href":"fake/ConstantClass/ConstantClass.notConstant.html","type":"constructor","enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"value","qualifiedName":"fake.ConstantClass.value","href":"fake/ConstantClass/value.html","type":"property","enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"hashCode","qualifiedName":"fake.ConstantClass.hashCode","href":"fake/ConstantClass/hashCode.html","type":"property","enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.ConstantClass.runtimeType","href":"fake/ConstantClass/runtimeType.html","type":"property","enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"toString","qualifiedName":"fake.ConstantClass.toString","href":"fake/ConstantClass/toString.html","type":"method","enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.ConstantClass.noSuchMethod","href":"fake/ConstantClass/noSuchMethod.html","type":"method","enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"operator ==","qualifiedName":"fake.ConstantClass.==","href":"fake/ConstantClass/operator_equals.html","type":"method","enclosedBy":{"name":"ConstantClass","type":"class"}},{"name":"Cool","qualifiedName":"fake.Cool","href":"fake/Cool-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"Cool","qualifiedName":"fake.Cool","href":"fake/Cool/Cool.html","type":"constructor","enclosedBy":{"name":"Cool","type":"class"}},{"name":"hashCode","qualifiedName":"fake.Cool.hashCode","href":"fake/Cool/hashCode.html","type":"property","enclosedBy":{"name":"Cool","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.Cool.runtimeType","href":"fake/Cool/runtimeType.html","type":"property","enclosedBy":{"name":"Cool","type":"class"}},{"name":"returnCool","qualifiedName":"fake.Cool.returnCool","href":"fake/Cool/returnCool.html","type":"method","enclosedBy":{"name":"Cool","type":"class"}},{"name":"toString","qualifiedName":"fake.Cool.toString","href":"fake/Cool/toString.html","type":"method","enclosedBy":{"name":"Cool","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.Cool.noSuchMethod","href":"fake/Cool/noSuchMethod.html","type":"method","enclosedBy":{"name":"Cool","type":"class"}},{"name":"operator ==","qualifiedName":"fake.Cool.==","href":"fake/Cool/operator_equals.html","type":"method","enclosedBy":{"name":"Cool","type":"class"}},{"name":"Doh","qualifiedName":"fake.Doh","href":"fake/Doh-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"Doh","qualifiedName":"fake.Doh","href":"fake/Doh/Doh.html","type":"constructor","enclosedBy":{"name":"Doh","type":"class"}},{"name":"hashCode","qualifiedName":"fake.Doh.hashCode","href":"fake/Doh/hashCode.html","type":"property","enclosedBy":{"name":"Doh","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.Doh.runtimeType","href":"fake/Doh/runtimeType.html","type":"property","enclosedBy":{"name":"Doh","type":"class"}},{"name":"stackTrace","qualifiedName":"fake.Doh.stackTrace","href":"fake/Doh/stackTrace.html","type":"property","enclosedBy":{"name":"Doh","type":"class"}},{"name":"toString","qualifiedName":"fake.Doh.toString","href":"fake/Doh/toString.html","type":"method","enclosedBy":{"name":"Doh","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.Doh.noSuchMethod","href":"fake/Doh/noSuchMethod.html","type":"method","enclosedBy":{"name":"Doh","type":"class"}},{"name":"operator ==","qualifiedName":"fake.Doh.==","href":"fake/Doh/operator_equals.html","type":"method","enclosedBy":{"name":"Doh","type":"class"}},{"name":"ExtraSpecialList","qualifiedName":"fake.ExtraSpecialList","href":"fake/ExtraSpecialList-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"ExtraSpecialList","qualifiedName":"fake.ExtraSpecialList","href":"fake/ExtraSpecialList/ExtraSpecialList.html","type":"constructor","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"hashCode","qualifiedName":"fake.ExtraSpecialList.hashCode","href":"fake/ExtraSpecialList/hashCode.html","type":"property","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.ExtraSpecialList.runtimeType","href":"fake/ExtraSpecialList/runtimeType.html","type":"property","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"iterator","qualifiedName":"fake.ExtraSpecialList.iterator","href":"fake/ExtraSpecialList/iterator.html","type":"property","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"isEmpty","qualifiedName":"fake.ExtraSpecialList.isEmpty","href":"fake/ExtraSpecialList/isEmpty.html","type":"property","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"isNotEmpty","qualifiedName":"fake.ExtraSpecialList.isNotEmpty","href":"fake/ExtraSpecialList/isNotEmpty.html","type":"property","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"first","qualifiedName":"fake.ExtraSpecialList.first","href":"fake/ExtraSpecialList/first.html","type":"property","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"last","qualifiedName":"fake.ExtraSpecialList.last","href":"fake/ExtraSpecialList/last.html","type":"property","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"single","qualifiedName":"fake.ExtraSpecialList.single","href":"fake/ExtraSpecialList/single.html","type":"property","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"reversed","qualifiedName":"fake.ExtraSpecialList.reversed","href":"fake/ExtraSpecialList/reversed.html","type":"property","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"toString","qualifiedName":"fake.ExtraSpecialList.toString","href":"fake/ExtraSpecialList/toString.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.ExtraSpecialList.noSuchMethod","href":"fake/ExtraSpecialList/noSuchMethod.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"elementAt","qualifiedName":"fake.ExtraSpecialList.elementAt","href":"fake/ExtraSpecialList/elementAt.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"forEach","qualifiedName":"fake.ExtraSpecialList.forEach","href":"fake/ExtraSpecialList/forEach.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"contains","qualifiedName":"fake.ExtraSpecialList.contains","href":"fake/ExtraSpecialList/contains.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"every","qualifiedName":"fake.ExtraSpecialList.every","href":"fake/ExtraSpecialList/every.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"any","qualifiedName":"fake.ExtraSpecialList.any","href":"fake/ExtraSpecialList/any.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"firstWhere","qualifiedName":"fake.ExtraSpecialList.firstWhere","href":"fake/ExtraSpecialList/firstWhere.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"lastWhere","qualifiedName":"fake.ExtraSpecialList.lastWhere","href":"fake/ExtraSpecialList/lastWhere.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"singleWhere","qualifiedName":"fake.ExtraSpecialList.singleWhere","href":"fake/ExtraSpecialList/singleWhere.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"join","qualifiedName":"fake.ExtraSpecialList.join","href":"fake/ExtraSpecialList/join.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"where","qualifiedName":"fake.ExtraSpecialList.where","href":"fake/ExtraSpecialList/where.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"map","qualifiedName":"fake.ExtraSpecialList.map","href":"fake/ExtraSpecialList/map.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"expand","qualifiedName":"fake.ExtraSpecialList.expand","href":"fake/ExtraSpecialList/expand.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"reduce","qualifiedName":"fake.ExtraSpecialList.reduce","href":"fake/ExtraSpecialList/reduce.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"fold","qualifiedName":"fake.ExtraSpecialList.fold","href":"fake/ExtraSpecialList/fold.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"skip","qualifiedName":"fake.ExtraSpecialList.skip","href":"fake/ExtraSpecialList/skip.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"skipWhile","qualifiedName":"fake.ExtraSpecialList.skipWhile","href":"fake/ExtraSpecialList/skipWhile.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"take","qualifiedName":"fake.ExtraSpecialList.take","href":"fake/ExtraSpecialList/take.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"takeWhile","qualifiedName":"fake.ExtraSpecialList.takeWhile","href":"fake/ExtraSpecialList/takeWhile.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"toList","qualifiedName":"fake.ExtraSpecialList.toList","href":"fake/ExtraSpecialList/toList.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"toSet","qualifiedName":"fake.ExtraSpecialList.toSet","href":"fake/ExtraSpecialList/toSet.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"add","qualifiedName":"fake.ExtraSpecialList.add","href":"fake/ExtraSpecialList/add.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"addAll","qualifiedName":"fake.ExtraSpecialList.addAll","href":"fake/ExtraSpecialList/addAll.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"remove","qualifiedName":"fake.ExtraSpecialList.remove","href":"fake/ExtraSpecialList/remove.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"removeWhere","qualifiedName":"fake.ExtraSpecialList.removeWhere","href":"fake/ExtraSpecialList/removeWhere.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"retainWhere","qualifiedName":"fake.ExtraSpecialList.retainWhere","href":"fake/ExtraSpecialList/retainWhere.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"clear","qualifiedName":"fake.ExtraSpecialList.clear","href":"fake/ExtraSpecialList/clear.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"removeLast","qualifiedName":"fake.ExtraSpecialList.removeLast","href":"fake/ExtraSpecialList/removeLast.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"sort","qualifiedName":"fake.ExtraSpecialList.sort","href":"fake/ExtraSpecialList/sort.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"shuffle","qualifiedName":"fake.ExtraSpecialList.shuffle","href":"fake/ExtraSpecialList/shuffle.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"asMap","qualifiedName":"fake.ExtraSpecialList.asMap","href":"fake/ExtraSpecialList/asMap.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"sublist","qualifiedName":"fake.ExtraSpecialList.sublist","href":"fake/ExtraSpecialList/sublist.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"getRange","qualifiedName":"fake.ExtraSpecialList.getRange","href":"fake/ExtraSpecialList/getRange.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"removeRange","qualifiedName":"fake.ExtraSpecialList.removeRange","href":"fake/ExtraSpecialList/removeRange.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"fillRange","qualifiedName":"fake.ExtraSpecialList.fillRange","href":"fake/ExtraSpecialList/fillRange.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"setRange","qualifiedName":"fake.ExtraSpecialList.setRange","href":"fake/ExtraSpecialList/setRange.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"replaceRange","qualifiedName":"fake.ExtraSpecialList.replaceRange","href":"fake/ExtraSpecialList/replaceRange.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"indexOf","qualifiedName":"fake.ExtraSpecialList.indexOf","href":"fake/ExtraSpecialList/indexOf.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"lastIndexOf","qualifiedName":"fake.ExtraSpecialList.lastIndexOf","href":"fake/ExtraSpecialList/lastIndexOf.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"insert","qualifiedName":"fake.ExtraSpecialList.insert","href":"fake/ExtraSpecialList/insert.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"removeAt","qualifiedName":"fake.ExtraSpecialList.removeAt","href":"fake/ExtraSpecialList/removeAt.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"insertAll","qualifiedName":"fake.ExtraSpecialList.insertAll","href":"fake/ExtraSpecialList/insertAll.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"setAll","qualifiedName":"fake.ExtraSpecialList.setAll","href":"fake/ExtraSpecialList/setAll.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"operator ==","qualifiedName":"fake.ExtraSpecialList.==","href":"fake/ExtraSpecialList/operator_equals.html","type":"method","enclosedBy":{"name":"ExtraSpecialList","type":"class"}},{"name":"Foo2","qualifiedName":"fake.Foo2","href":"fake/Foo2-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"Foo2","qualifiedName":"fake.Foo2","href":"fake/Foo2/Foo2.html","type":"constructor","enclosedBy":{"name":"Foo2","type":"class"}},{"name":"BAR","qualifiedName":"fake.Foo2.BAR","href":"fake/Foo2/BAR-constant.html","type":"property","enclosedBy":{"name":"Foo2","type":"class"}},{"name":"BAZ","qualifiedName":"fake.Foo2.BAZ","href":"fake/Foo2/BAZ-constant.html","type":"property","enclosedBy":{"name":"Foo2","type":"class"}},{"name":"index","qualifiedName":"fake.Foo2.index","href":"fake/Foo2/index.html","type":"property","enclosedBy":{"name":"Foo2","type":"class"}},{"name":"hashCode","qualifiedName":"fake.Foo2.hashCode","href":"fake/Foo2/hashCode.html","type":"property","enclosedBy":{"name":"Foo2","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.Foo2.runtimeType","href":"fake/Foo2/runtimeType.html","type":"property","enclosedBy":{"name":"Foo2","type":"class"}},{"name":"toString","qualifiedName":"fake.Foo2.toString","href":"fake/Foo2/toString.html","type":"method","enclosedBy":{"name":"Foo2","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.Foo2.noSuchMethod","href":"fake/Foo2/noSuchMethod.html","type":"method","enclosedBy":{"name":"Foo2","type":"class"}},{"name":"operator ==","qualifiedName":"fake.Foo2.==","href":"fake/Foo2/operator_equals.html","type":"method","enclosedBy":{"name":"Foo2","type":"class"}},{"name":"HasGenerics","qualifiedName":"fake.HasGenerics","href":"fake/HasGenerics-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"HasGenerics","qualifiedName":"fake.HasGenerics","href":"fake/HasGenerics/HasGenerics.html","type":"constructor","enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"hashCode","qualifiedName":"fake.HasGenerics.hashCode","href":"fake/HasGenerics/hashCode.html","type":"property","enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.HasGenerics.runtimeType","href":"fake/HasGenerics/runtimeType.html","type":"property","enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"convertToMap","qualifiedName":"fake.HasGenerics.convertToMap","href":"fake/HasGenerics/convertToMap.html","type":"method","enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"doStuff","qualifiedName":"fake.HasGenerics.doStuff","href":"fake/HasGenerics/doStuff.html","type":"method","enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"returnX","qualifiedName":"fake.HasGenerics.returnX","href":"fake/HasGenerics/returnX.html","type":"method","enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"returnZ","qualifiedName":"fake.HasGenerics.returnZ","href":"fake/HasGenerics/returnZ.html","type":"method","enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"toString","qualifiedName":"fake.HasGenerics.toString","href":"fake/HasGenerics/toString.html","type":"method","enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.HasGenerics.noSuchMethod","href":"fake/HasGenerics/noSuchMethod.html","type":"method","enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"operator ==","qualifiedName":"fake.HasGenerics.==","href":"fake/HasGenerics/operator_equals.html","type":"method","enclosedBy":{"name":"HasGenerics","type":"class"}},{"name":"HasGenericWithExtends","qualifiedName":"fake.HasGenericWithExtends","href":"fake/HasGenericWithExtends-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"HasGenericWithExtends","qualifiedName":"fake.HasGenericWithExtends","href":"fake/HasGenericWithExtends/HasGenericWithExtends.html","type":"constructor","enclosedBy":{"name":"HasGenericWithExtends","type":"class"}},{"name":"hashCode","qualifiedName":"fake.HasGenericWithExtends.hashCode","href":"fake/HasGenericWithExtends/hashCode.html","type":"property","enclosedBy":{"name":"HasGenericWithExtends","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.HasGenericWithExtends.runtimeType","href":"fake/HasGenericWithExtends/runtimeType.html","type":"property","enclosedBy":{"name":"HasGenericWithExtends","type":"class"}},{"name":"toString","qualifiedName":"fake.HasGenericWithExtends.toString","href":"fake/HasGenericWithExtends/toString.html","type":"method","enclosedBy":{"name":"HasGenericWithExtends","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.HasGenericWithExtends.noSuchMethod","href":"fake/HasGenericWithExtends/noSuchMethod.html","type":"method","enclosedBy":{"name":"HasGenericWithExtends","type":"class"}},{"name":"operator ==","qualifiedName":"fake.HasGenericWithExtends.==","href":"fake/HasGenericWithExtends/operator_equals.html","type":"method","enclosedBy":{"name":"HasGenericWithExtends","type":"class"}},{"name":"Interface","qualifiedName":"fake.Interface","href":"fake/Interface-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"Interface","qualifiedName":"fake.Interface","href":"fake/Interface/Interface.html","type":"constructor","enclosedBy":{"name":"Interface","type":"class"}},{"name":"hashCode","qualifiedName":"fake.Interface.hashCode","href":"fake/Interface/hashCode.html","type":"property","enclosedBy":{"name":"Interface","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.Interface.runtimeType","href":"fake/Interface/runtimeType.html","type":"property","enclosedBy":{"name":"Interface","type":"class"}},{"name":"toString","qualifiedName":"fake.Interface.toString","href":"fake/Interface/toString.html","type":"method","enclosedBy":{"name":"Interface","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.Interface.noSuchMethod","href":"fake/Interface/noSuchMethod.html","type":"method","enclosedBy":{"name":"Interface","type":"class"}},{"name":"operator ==","qualifiedName":"fake.Interface.==","href":"fake/Interface/operator_equals.html","type":"method","enclosedBy":{"name":"Interface","type":"class"}},{"name":"LongFirstLine","qualifiedName":"fake.LongFirstLine","href":"fake/LongFirstLine-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"LongFirstLine","qualifiedName":"fake.LongFirstLine","href":"fake/LongFirstLine/LongFirstLine.html","type":"constructor","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"LongFirstLine.fromHasGenerics","qualifiedName":"fake.LongFirstLine.fromHasGenerics","href":"fake/LongFirstLine/LongFirstLine.fromHasGenerics.html","type":"constructor","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"LongFirstLine.fromMap","qualifiedName":"fake.LongFirstLine.fromMap","href":"fake/LongFirstLine/LongFirstLine.fromMap.html","type":"constructor","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"ANSWER","qualifiedName":"fake.LongFirstLine.ANSWER","href":"fake/LongFirstLine/ANSWER-constant.html","type":"property","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"THING","qualifiedName":"fake.LongFirstLine.THING","href":"fake/LongFirstLine/THING-constant.html","type":"property","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"meaningOfLife","qualifiedName":"fake.LongFirstLine.meaningOfLife","href":"fake/LongFirstLine/meaningOfLife.html","type":"property","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"staticGetter","qualifiedName":"fake.LongFirstLine.staticGetter","href":"fake/LongFirstLine/staticGetter.html","type":"property","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"staticOnlySetter","qualifiedName":"fake.LongFirstLine.staticOnlySetter","href":"fake/LongFirstLine/staticOnlySetter.html","type":"property","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"aStringProperty","qualifiedName":"fake.LongFirstLine.aStringProperty","href":"fake/LongFirstLine/aStringProperty.html","type":"property","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"dynamicGetter","qualifiedName":"fake.LongFirstLine.dynamicGetter","href":"fake/LongFirstLine/dynamicGetter.html","type":"property","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"onlySetter","qualifiedName":"fake.LongFirstLine.onlySetter","href":"fake/LongFirstLine/onlySetter.html","type":"property","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"hashCode","qualifiedName":"fake.LongFirstLine.hashCode","href":"fake/LongFirstLine/hashCode.html","type":"property","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.LongFirstLine.runtimeType","href":"fake/LongFirstLine/runtimeType.html","type":"property","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"noParams","qualifiedName":"fake.LongFirstLine.noParams","href":"fake/LongFirstLine/noParams.html","type":"method","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"optionalParams","qualifiedName":"fake.LongFirstLine.optionalParams","href":"fake/LongFirstLine/optionalParams.html","type":"method","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"returnString","qualifiedName":"fake.LongFirstLine.returnString","href":"fake/LongFirstLine/returnString.html","type":"method","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"twoParams","qualifiedName":"fake.LongFirstLine.twoParams","href":"fake/LongFirstLine/twoParams.html","type":"method","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"toString","qualifiedName":"fake.LongFirstLine.toString","href":"fake/LongFirstLine/toString.html","type":"method","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.LongFirstLine.noSuchMethod","href":"fake/LongFirstLine/noSuchMethod.html","type":"method","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"operator *","qualifiedName":"fake.LongFirstLine.*","href":"fake/LongFirstLine/operator_multiply.html","type":"method","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"operator +","qualifiedName":"fake.LongFirstLine.+","href":"fake/LongFirstLine/operator_plus.html","type":"method","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"operator ==","qualifiedName":"fake.LongFirstLine.==","href":"fake/LongFirstLine/operator_equals.html","type":"method","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"staticMethodNoParams","qualifiedName":"fake.LongFirstLine.staticMethodNoParams","href":"fake/LongFirstLine/staticMethodNoParams.html","type":"method","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"staticMethodReturnsVoid","qualifiedName":"fake.LongFirstLine.staticMethodReturnsVoid","href":"fake/LongFirstLine/staticMethodReturnsVoid.html","type":"method","enclosedBy":{"name":"LongFirstLine","type":"class"}},{"name":"MixMeIn","qualifiedName":"fake.MixMeIn","href":"fake/MixMeIn-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"MixMeIn","qualifiedName":"fake.MixMeIn","href":"fake/MixMeIn/MixMeIn.html","type":"constructor","enclosedBy":{"name":"MixMeIn","type":"class"}},{"name":"hashCode","qualifiedName":"fake.MixMeIn.hashCode","href":"fake/MixMeIn/hashCode.html","type":"property","enclosedBy":{"name":"MixMeIn","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.MixMeIn.runtimeType","href":"fake/MixMeIn/runtimeType.html","type":"property","enclosedBy":{"name":"MixMeIn","type":"class"}},{"name":"toString","qualifiedName":"fake.MixMeIn.toString","href":"fake/MixMeIn/toString.html","type":"method","enclosedBy":{"name":"MixMeIn","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.MixMeIn.noSuchMethod","href":"fake/MixMeIn/noSuchMethod.html","type":"method","enclosedBy":{"name":"MixMeIn","type":"class"}},{"name":"operator ==","qualifiedName":"fake.MixMeIn.==","href":"fake/MixMeIn/operator_equals.html","type":"method","enclosedBy":{"name":"MixMeIn","type":"class"}},{"name":"Oops","qualifiedName":"fake.Oops","href":"fake/Oops-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"Oops","qualifiedName":"fake.Oops","href":"fake/Oops/Oops.html","type":"constructor","enclosedBy":{"name":"Oops","type":"class"}},{"name":"message","qualifiedName":"fake.Oops.message","href":"fake/Oops/message.html","type":"property","enclosedBy":{"name":"Oops","type":"class"}},{"name":"hashCode","qualifiedName":"fake.Oops.hashCode","href":"fake/Oops/hashCode.html","type":"property","enclosedBy":{"name":"Oops","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.Oops.runtimeType","href":"fake/Oops/runtimeType.html","type":"property","enclosedBy":{"name":"Oops","type":"class"}},{"name":"toString","qualifiedName":"fake.Oops.toString","href":"fake/Oops/toString.html","type":"method","enclosedBy":{"name":"Oops","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.Oops.noSuchMethod","href":"fake/Oops/noSuchMethod.html","type":"method","enclosedBy":{"name":"Oops","type":"class"}},{"name":"operator ==","qualifiedName":"fake.Oops.==","href":"fake/Oops/operator_equals.html","type":"method","enclosedBy":{"name":"Oops","type":"class"}},{"name":"OtherGenericsThing","qualifiedName":"fake.OtherGenericsThing","href":"fake/OtherGenericsThing-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"OtherGenericsThing","qualifiedName":"fake.OtherGenericsThing","href":"fake/OtherGenericsThing/OtherGenericsThing.html","type":"constructor","enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"hashCode","qualifiedName":"fake.OtherGenericsThing.hashCode","href":"fake/OtherGenericsThing/hashCode.html","type":"property","enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.OtherGenericsThing.runtimeType","href":"fake/OtherGenericsThing/runtimeType.html","type":"property","enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"convert","qualifiedName":"fake.OtherGenericsThing.convert","href":"fake/OtherGenericsThing/convert.html","type":"method","enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"toString","qualifiedName":"fake.OtherGenericsThing.toString","href":"fake/OtherGenericsThing/toString.html","type":"method","enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.OtherGenericsThing.noSuchMethod","href":"fake/OtherGenericsThing/noSuchMethod.html","type":"method","enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"operator ==","qualifiedName":"fake.OtherGenericsThing.==","href":"fake/OtherGenericsThing/operator_equals.html","type":"method","enclosedBy":{"name":"OtherGenericsThing","type":"class"}},{"name":"SpecialList","qualifiedName":"fake.SpecialList","href":"fake/SpecialList-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"SpecialList","qualifiedName":"fake.SpecialList","href":"fake/SpecialList/SpecialList.html","type":"constructor","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"length","qualifiedName":"fake.SpecialList.length","href":"fake/SpecialList/length.html","type":"property","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"hashCode","qualifiedName":"fake.SpecialList.hashCode","href":"fake/SpecialList/hashCode.html","type":"property","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.SpecialList.runtimeType","href":"fake/SpecialList/runtimeType.html","type":"property","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"iterator","qualifiedName":"fake.SpecialList.iterator","href":"fake/SpecialList/iterator.html","type":"property","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"isEmpty","qualifiedName":"fake.SpecialList.isEmpty","href":"fake/SpecialList/isEmpty.html","type":"property","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"isNotEmpty","qualifiedName":"fake.SpecialList.isNotEmpty","href":"fake/SpecialList/isNotEmpty.html","type":"property","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"first","qualifiedName":"fake.SpecialList.first","href":"fake/SpecialList/first.html","type":"property","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"last","qualifiedName":"fake.SpecialList.last","href":"fake/SpecialList/last.html","type":"property","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"single","qualifiedName":"fake.SpecialList.single","href":"fake/SpecialList/single.html","type":"property","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"reversed","qualifiedName":"fake.SpecialList.reversed","href":"fake/SpecialList/reversed.html","type":"property","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"toString","qualifiedName":"fake.SpecialList.toString","href":"fake/SpecialList/toString.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.SpecialList.noSuchMethod","href":"fake/SpecialList/noSuchMethod.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"elementAt","qualifiedName":"fake.SpecialList.elementAt","href":"fake/SpecialList/elementAt.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"forEach","qualifiedName":"fake.SpecialList.forEach","href":"fake/SpecialList/forEach.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"contains","qualifiedName":"fake.SpecialList.contains","href":"fake/SpecialList/contains.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"every","qualifiedName":"fake.SpecialList.every","href":"fake/SpecialList/every.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"any","qualifiedName":"fake.SpecialList.any","href":"fake/SpecialList/any.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"firstWhere","qualifiedName":"fake.SpecialList.firstWhere","href":"fake/SpecialList/firstWhere.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"lastWhere","qualifiedName":"fake.SpecialList.lastWhere","href":"fake/SpecialList/lastWhere.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"singleWhere","qualifiedName":"fake.SpecialList.singleWhere","href":"fake/SpecialList/singleWhere.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"join","qualifiedName":"fake.SpecialList.join","href":"fake/SpecialList/join.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"where","qualifiedName":"fake.SpecialList.where","href":"fake/SpecialList/where.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"map","qualifiedName":"fake.SpecialList.map","href":"fake/SpecialList/map.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"expand","qualifiedName":"fake.SpecialList.expand","href":"fake/SpecialList/expand.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"reduce","qualifiedName":"fake.SpecialList.reduce","href":"fake/SpecialList/reduce.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"fold","qualifiedName":"fake.SpecialList.fold","href":"fake/SpecialList/fold.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"skip","qualifiedName":"fake.SpecialList.skip","href":"fake/SpecialList/skip.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"skipWhile","qualifiedName":"fake.SpecialList.skipWhile","href":"fake/SpecialList/skipWhile.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"take","qualifiedName":"fake.SpecialList.take","href":"fake/SpecialList/take.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"takeWhile","qualifiedName":"fake.SpecialList.takeWhile","href":"fake/SpecialList/takeWhile.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"toList","qualifiedName":"fake.SpecialList.toList","href":"fake/SpecialList/toList.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"toSet","qualifiedName":"fake.SpecialList.toSet","href":"fake/SpecialList/toSet.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"add","qualifiedName":"fake.SpecialList.add","href":"fake/SpecialList/add.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"addAll","qualifiedName":"fake.SpecialList.addAll","href":"fake/SpecialList/addAll.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"remove","qualifiedName":"fake.SpecialList.remove","href":"fake/SpecialList/remove.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"removeWhere","qualifiedName":"fake.SpecialList.removeWhere","href":"fake/SpecialList/removeWhere.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"retainWhere","qualifiedName":"fake.SpecialList.retainWhere","href":"fake/SpecialList/retainWhere.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"clear","qualifiedName":"fake.SpecialList.clear","href":"fake/SpecialList/clear.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"removeLast","qualifiedName":"fake.SpecialList.removeLast","href":"fake/SpecialList/removeLast.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"sort","qualifiedName":"fake.SpecialList.sort","href":"fake/SpecialList/sort.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"shuffle","qualifiedName":"fake.SpecialList.shuffle","href":"fake/SpecialList/shuffle.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"asMap","qualifiedName":"fake.SpecialList.asMap","href":"fake/SpecialList/asMap.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"sublist","qualifiedName":"fake.SpecialList.sublist","href":"fake/SpecialList/sublist.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"getRange","qualifiedName":"fake.SpecialList.getRange","href":"fake/SpecialList/getRange.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"removeRange","qualifiedName":"fake.SpecialList.removeRange","href":"fake/SpecialList/removeRange.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"fillRange","qualifiedName":"fake.SpecialList.fillRange","href":"fake/SpecialList/fillRange.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"setRange","qualifiedName":"fake.SpecialList.setRange","href":"fake/SpecialList/setRange.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"replaceRange","qualifiedName":"fake.SpecialList.replaceRange","href":"fake/SpecialList/replaceRange.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"indexOf","qualifiedName":"fake.SpecialList.indexOf","href":"fake/SpecialList/indexOf.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"lastIndexOf","qualifiedName":"fake.SpecialList.lastIndexOf","href":"fake/SpecialList/lastIndexOf.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"insert","qualifiedName":"fake.SpecialList.insert","href":"fake/SpecialList/insert.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"removeAt","qualifiedName":"fake.SpecialList.removeAt","href":"fake/SpecialList/removeAt.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"insertAll","qualifiedName":"fake.SpecialList.insertAll","href":"fake/SpecialList/insertAll.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"setAll","qualifiedName":"fake.SpecialList.setAll","href":"fake/SpecialList/setAll.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"operator []","qualifiedName":"fake.SpecialList.[]","href":"fake/SpecialList/operator_get.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"operator []=","qualifiedName":"fake.SpecialList.[]=","href":"fake/SpecialList/operator_put.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"operator ==","qualifiedName":"fake.SpecialList.==","href":"fake/SpecialList/operator_equals.html","type":"method","enclosedBy":{"name":"SpecialList","type":"class"}},{"name":"SubForDocComments","qualifiedName":"fake.SubForDocComments","href":"fake/SubForDocComments-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"SubForDocComments","qualifiedName":"fake.SubForDocComments","href":"fake/SubForDocComments/SubForDocComments.html","type":"constructor","enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"hashCode","qualifiedName":"fake.SubForDocComments.hashCode","href":"fake/SubForDocComments/hashCode.html","type":"property","enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.SubForDocComments.runtimeType","href":"fake/SubForDocComments/runtimeType.html","type":"property","enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"localMethod","qualifiedName":"fake.SubForDocComments.localMethod","href":"fake/SubForDocComments/localMethod.html","type":"method","enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"toString","qualifiedName":"fake.SubForDocComments.toString","href":"fake/SubForDocComments/toString.html","type":"method","enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.SubForDocComments.noSuchMethod","href":"fake/SubForDocComments/noSuchMethod.html","type":"method","enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"operator ==","qualifiedName":"fake.SubForDocComments.==","href":"fake/SubForDocComments/operator_equals.html","type":"method","enclosedBy":{"name":"SubForDocComments","type":"class"}},{"name":"SuperAwesomeClass","qualifiedName":"fake.SuperAwesomeClass","href":"fake/SuperAwesomeClass-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"SuperAwesomeClass","qualifiedName":"fake.SuperAwesomeClass","href":"fake/SuperAwesomeClass/SuperAwesomeClass.html","type":"constructor","enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"powers","qualifiedName":"fake.SuperAwesomeClass.powers","href":"fake/SuperAwesomeClass/powers.html","type":"property","enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"hashCode","qualifiedName":"fake.SuperAwesomeClass.hashCode","href":"fake/SuperAwesomeClass/hashCode.html","type":"property","enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.SuperAwesomeClass.runtimeType","href":"fake/SuperAwesomeClass/runtimeType.html","type":"property","enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"fly","qualifiedName":"fake.SuperAwesomeClass.fly","href":"fake/SuperAwesomeClass/fly.html","type":"method","enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"toString","qualifiedName":"fake.SuperAwesomeClass.toString","href":"fake/SuperAwesomeClass/toString.html","type":"method","enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.SuperAwesomeClass.noSuchMethod","href":"fake/SuperAwesomeClass/noSuchMethod.html","type":"method","enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"operator -","qualifiedName":"fake.SuperAwesomeClass.-","href":"fake/SuperAwesomeClass/operator_minus.html","type":"method","enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"operator ==","qualifiedName":"fake.SuperAwesomeClass.==","href":"fake/SuperAwesomeClass/operator_equals.html","type":"method","enclosedBy":{"name":"SuperAwesomeClass","type":"class"}},{"name":"WithGetterAndSetter","qualifiedName":"fake.WithGetterAndSetter","href":"fake/WithGetterAndSetter-class.html","type":"class","enclosedBy":{"name":"fake","type":"library"}},{"name":"WithGetterAndSetter","qualifiedName":"fake.WithGetterAndSetter","href":"fake/WithGetterAndSetter/WithGetterAndSetter.html","type":"constructor","enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"lengthX","qualifiedName":"fake.WithGetterAndSetter.lengthX","href":"fake/WithGetterAndSetter/lengthX.html","type":"property","enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"hashCode","qualifiedName":"fake.WithGetterAndSetter.hashCode","href":"fake/WithGetterAndSetter/hashCode.html","type":"property","enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"runtimeType","qualifiedName":"fake.WithGetterAndSetter.runtimeType","href":"fake/WithGetterAndSetter/runtimeType.html","type":"property","enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"toString","qualifiedName":"fake.WithGetterAndSetter.toString","href":"fake/WithGetterAndSetter/toString.html","type":"method","enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"noSuchMethod","qualifiedName":"fake.WithGetterAndSetter.noSuchMethod","href":"fake/WithGetterAndSetter/noSuchMethod.html","type":"method","enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"operator ==","qualifiedName":"fake.WithGetterAndSetter.==","href":"fake/WithGetterAndSetter/operator_equals.html","type":"method","enclosedBy":{"name":"WithGetterAndSetter","type":"class"}},{"name":"Color","qualifiedName":"fake.Color","href":"fake/Color-class.html","type":"enum","enclosedBy":{"name":"fake","type":"library"}},{"name":"CUSTOM_CLASS","qualifiedName":"fake.CUSTOM_CLASS","href":"fake/CUSTOM_CLASS-constant.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"DOWN","qualifiedName":"fake.DOWN","href":"fake/DOWN-constant.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"greatAnnotation","qualifiedName":"fake.greatAnnotation","href":"fake/greatAnnotation-constant.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"greatestAnnotation","qualifiedName":"fake.greatestAnnotation","href":"fake/greatestAnnotation-constant.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"incorrectDocReference","qualifiedName":"fake.incorrectDocReference","href":"fake/incorrectDocReference-constant.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"NAME_SINGLEUNDERSCORE","qualifiedName":"fake.NAME_SINGLEUNDERSCORE","href":"fake/NAME_SINGLEUNDERSCORE-constant.html","type":"top-level property","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","enclosedBy":{"name":"fake","type":"library"}},{"name":"PI","qualifiedName":"fake.PI","href":"fake/PI-constant.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"testingCodeSyntaxInOneLiners","qualifiedName":"fake.testingCodeSyntaxInOneLiners","href":"fake/testingCodeSyntaxInOneLiners-constant.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"UP","qualifiedName":"fake.UP","href":"fake/UP-constant.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"ZERO","qualifiedName":"fake.ZERO","href":"fake/ZERO-constant.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"dynamicGetter","qualifiedName":"fake.dynamicGetter","href":"fake/dynamicGetter.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"justGetter","qualifiedName":"fake.justGetter","href":"fake/justGetter.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"justSetter","qualifiedName":"fake.justSetter","href":"fake/justSetter.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"mapWithDynamicKeys","qualifiedName":"fake.mapWithDynamicKeys","href":"fake/mapWithDynamicKeys.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"meaningOfLife","qualifiedName":"fake.meaningOfLife","href":"fake/meaningOfLife.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"setAndGet","qualifiedName":"fake.setAndGet","href":"fake/setAndGet.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"simpleProperty","qualifiedName":"fake.simpleProperty","href":"fake/simpleProperty.html","type":"top-level property","enclosedBy":{"name":"fake","type":"library"}},{"name":"functionWithFunctionParameters","qualifiedName":"fake.functionWithFunctionParameters","href":"fake/functionWithFunctionParameters.html","type":"function","enclosedBy":{"name":"fake","type":"library"}},{"name":"onlyPositionalWithNoDefaultNoType","qualifiedName":"fake.onlyPositionalWithNoDefaultNoType","href":"fake/onlyPositionalWithNoDefaultNoType.html","type":"function","enclosedBy":{"name":"fake","type":"library"}},{"name":"paramFromAnotherLib","qualifiedName":"fake.paramFromAnotherLib","href":"fake/paramFromAnotherLib.html","type":"function","enclosedBy":{"name":"fake","type":"library"}},{"name":"short","qualifiedName":"fake.short","href":"fake/short.html","type":"function","enclosedBy":{"name":"fake","type":"library"}},{"name":"soIntense","qualifiedName":"fake.soIntense","href":"fake/soIntense.html","type":"function","enclosedBy":{"name":"fake","type":"library"}},{"name":"thisIsAlsoAsync","qualifiedName":"fake.thisIsAlsoAsync","href":"fake/thisIsAlsoAsync.html","type":"function","enclosedBy":{"name":"fake","type":"library"}},{"name":"thisIsAsync","qualifiedName":"fake.thisIsAsync","href":"fake/thisIsAsync.html","type":"function","enclosedBy":{"name":"fake","type":"library"}},{"name":"topLevelFunction","qualifiedName":"fake.topLevelFunction","href":"fake/topLevelFunction.html","type":"function","enclosedBy":{"name":"fake","type":"library"}},{"name":"FakeProcesses","qualifiedName":"fake.FakeProcesses","href":"fake/FakeProcesses.html","type":"typedef","enclosedBy":{"name":"fake","type":"library"}},{"name":"GenericTypedef","qualifiedName":"fake.GenericTypedef","href":"fake/GenericTypedef.html","type":"typedef","enclosedBy":{"name":"fake","type":"library"}},{"name":"LotsAndLotsOfParameters","qualifiedName":"fake.LotsAndLotsOfParameters","href":"fake/LotsAndLotsOfParameters.html","type":"typedef","enclosedBy":{"name":"fake","type":"library"}},{"name":"is_deprecated","qualifiedName":"is_deprecated","href":"is_deprecated/is_deprecated-library.html","type":"library"},{"name":"two_exports","qualifiedName":"two_exports","href":"two_exports/two_exports-library.html","type":"library"},{"name":"BaseClass","qualifiedName":"two_exports.BaseClass","href":"two_exports/BaseClass-class.html","type":"class","enclosedBy":{"name":"two_exports","type":"library"}},{"name":"BaseClass","qualifiedName":"two_exports.BaseClass","href":"two_exports/BaseClass/BaseClass.html","type":"constructor","enclosedBy":{"name":"BaseClass","type":"class"}},{"name":"hashCode","qualifiedName":"two_exports.BaseClass.hashCode","href":"two_exports/BaseClass/hashCode.html","type":"property","enclosedBy":{"name":"BaseClass","type":"class"}},{"name":"runtimeType","qualifiedName":"two_exports.BaseClass.runtimeType","href":"two_exports/BaseClass/runtimeType.html","type":"property","enclosedBy":{"name":"BaseClass","type":"class"}},{"name":"toString","qualifiedName":"two_exports.BaseClass.toString","href":"two_exports/BaseClass/toString.html","type":"method","enclosedBy":{"name":"BaseClass","type":"class"}},{"name":"noSuchMethod","qualifiedName":"two_exports.BaseClass.noSuchMethod","href":"two_exports/BaseClass/noSuchMethod.html","type":"method","enclosedBy":{"name":"BaseClass","type":"class"}},{"name":"operator ==","qualifiedName":"two_exports.BaseClass.==","href":"two_exports/BaseClass/operator_equals.html","type":"method","enclosedBy":{"name":"BaseClass","type":"class"}},{"name":"ExtendingClass","qualifiedName":"two_exports.ExtendingClass","href":"two_exports/ExtendingClass-class.html","type":"class","enclosedBy":{"name":"two_exports","type":"library"}},{"name":"ExtendingClass","qualifiedName":"two_exports.ExtendingClass","href":"two_exports/ExtendingClass/ExtendingClass.html","type":"constructor","enclosedBy":{"name":"ExtendingClass","type":"class"}},{"name":"hashCode","qualifiedName":"two_exports.ExtendingClass.hashCode","href":"two_exports/ExtendingClass/hashCode.html","type":"property","enclosedBy":{"name":"ExtendingClass","type":"class"}},{"name":"runtimeType","qualifiedName":"two_exports.ExtendingClass.runtimeType","href":"two_exports/ExtendingClass/runtimeType.html","type":"property","enclosedBy":{"name":"ExtendingClass","type":"class"}},{"name":"toString","qualifiedName":"two_exports.ExtendingClass.toString","href":"two_exports/ExtendingClass/toString.html","type":"method","enclosedBy":{"name":"ExtendingClass","type":"class"}},{"name":"noSuchMethod","qualifiedName":"two_exports.ExtendingClass.noSuchMethod","href":"two_exports/ExtendingClass/noSuchMethod.html","type":"method","enclosedBy":{"name":"ExtendingClass","type":"class"}},{"name":"operator ==","qualifiedName":"two_exports.ExtendingClass.==","href":"two_exports/ExtendingClass/operator_equals.html","type":"method","enclosedBy":{"name":"ExtendingClass","type":"class"}},{"name":"topLevelVariable","qualifiedName":"two_exports.topLevelVariable","href":"two_exports/topLevelVariable.html","type":"top-level property","enclosedBy":{"name":"two_exports","type":"library"}}] \ No newline at end of file