From 27b46be3b1324bbfd60da34c088b66f30dec599a Mon Sep 17 00:00:00 2001 From: Janice Collins Date: Thu, 27 Sep 2018 15:06:32 -0700 Subject: [PATCH 1/7] Implement new-style mixin support --- .travis.yml | 1 - lib/src/html/html_generator_instance.dart | 45 ++++++ lib/src/html/template_data.dart | 38 ++--- lib/src/html/templates.dart | 9 +- lib/src/markdown_processor.dart | 100 +++--------- lib/src/model.dart | 186 ++++++++++++++++++---- lib/templates/_mixin.html | 6 + lib/templates/_sidebar_for_category.html | 7 + lib/templates/_sidebar_for_library.html | 7 + lib/templates/category.html | 12 ++ lib/templates/library.html | 12 ++ lib/templates/mixin.html | 179 +++++++++++++++++++++ pubspec.lock | 40 ++--- pubspec.yaml | 10 +- test/model_test.dart | 130 +++++++++++++++ 15 files changed, 632 insertions(+), 150 deletions(-) create mode 100644 lib/templates/_mixin.html create mode 100644 lib/templates/mixin.html diff --git a/.travis.yml b/.travis.yml index 3f0c780c80..25364dcef3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,6 @@ language: dart sudo: false dart: - "dev/raw/latest" - - stable env: - DARTDOC_BOT=main - DARTDOC_BOT=packages diff --git a/lib/src/html/html_generator_instance.dart b/lib/src/html/html_generator_instance.dart index 7d1a2b3b2e..134fe5adcd 100644 --- a/lib/src/html/html_generator_instance.dart +++ b/lib/src/html/html_generator_instance.dart @@ -169,6 +169,44 @@ class HtmlGeneratorInstance { } } + for (var mixin in filterNonDocumented(lib.mixins)) { + generateMixins(_packageGraph, lib, mixin); + for (var constructor in filterNonDocumented(mixin.constructors)) { + if (!constructor.isCanonical) continue; + generateConstructor(_packageGraph, lib, mixin, constructor); + } + + for (var constant in filterNonDocumented(mixin.constants)) { + if (!constant.isCanonical) continue; + generateConstant(_packageGraph, lib, mixin, constant); + } + + for (var property in filterNonDocumented(mixin.staticProperties)) { + if (!property.isCanonical) continue; + generateProperty(_packageGraph, lib, mixin, property); + } + + for (var property in filterNonDocumented(mixin.propertiesForPages)) { + if (!property.isCanonical) continue; + generateProperty(_packageGraph, lib, mixin, property); + } + + for (var method in filterNonDocumented(mixin.methodsForPages)) { + if (!method.isCanonical) continue; + generateMethod(_packageGraph, lib, mixin, method); + } + + for (var operator in filterNonDocumented(mixin.operatorsForPages)) { + if (!operator.isCanonical) continue; + generateMethod(_packageGraph, lib, mixin, operator); + } + + for (var method in filterNonDocumented(mixin.staticMethods)) { + if (!method.isCanonical) continue; + generateMethod(_packageGraph, lib, mixin, method); + } + } + for (var eNum in filterNonDocumented(lib.enums)) { generateEnum(_packageGraph, lib, eNum); for (var property in filterNonDocumented(eNum.propertiesForPages)) { @@ -239,6 +277,13 @@ class HtmlGeneratorInstance { pathLib.joinAll(clazz.href.split('/')), _templates.classTemplate, data); } + void generateMixins(PackageGraph packageGraph, Library lib, Mixin mixin) { + TemplateData data = + new MixinTemplateData(_options, packageGraph, lib, mixin); + _build( + pathLib.joinAll(mixin.href.split('/')), _templates.mixinTemplate, data); + } + void generateConstructor(PackageGraph packageGraph, Library lib, Class clazz, Constructor constructor) { TemplateData data = new ConstructorTemplateData( diff --git a/lib/src/html/template_data.dart b/lib/src/html/template_data.dart index 6c7a8491b5..ced3611cc8 100644 --- a/lib/src/html/template_data.dart +++ b/lib/src/html/template_data.dart @@ -209,7 +209,20 @@ class LibraryTemplateData extends TemplateData { Library get self => library; } -class ClassTemplateData extends TemplateData { +/// Template data for Dart 2.1-style mixin declarations. +class MixinTemplateData extends ClassTemplateData { + final Mixin mixin; + + MixinTemplateData(HtmlOptions htmlOptions, PackageGraph packageGraph, + Library library, this.mixin) + : super(htmlOptions, packageGraph, library, mixin); + + @override + Mixin get self => mixin; +} + +/// Base template data class for [Class], [Enum], and [Mixin]. +class ClassTemplateData extends TemplateData { final Class clazz; final Library library; Class _objectType; @@ -219,7 +232,7 @@ class ClassTemplateData extends TemplateData { : super(htmlOptions, packageGraph); @override - Class get self => clazz; + T get self => clazz; String get linkedObjectType => objectType == null ? 'Object' : objectType.linkedName; @override @@ -303,28 +316,15 @@ class ConstructorTemplateData extends TemplateData { 'for the Dart programming language.'; } -class EnumTemplateData extends TemplateData { +class EnumTemplateData extends ClassTemplateData { EnumTemplateData(HtmlOptions htmlOptions, PackageGraph packageGraph, - this.library, this.eNum) - : super(htmlOptions, packageGraph); + Library library, Enum eNum) + : super(htmlOptions, packageGraph, library, eNum); - final Library library; - final Enum eNum; + Enum get eNum => clazz; @override Enum get self => eNum; @override - String get layoutTitle => _layoutTitle(eNum.name, 'enum', eNum.isDeprecated); - @override - String get title => '${self.name} enum - ${library.name} library - Dart API'; - @override - String get metaDescription => - 'API docs for the ${eNum.name} enum from the ${library.name} library, ' - 'for the Dart programming language.'; - @override - List get navLinks => [packageGraph.defaultPackage, library]; - @override - String get htmlBase => '..'; - @override Iterable getSubNavItems() => [ new Subnav('Constants', '${eNum.href}#constants'), new Subnav('Properties', '${eNum.href}#instance-properties'), diff --git a/lib/src/html/templates.dart b/lib/src/html/templates.dart index b6627edd75..138494b2a3 100644 --- a/lib/src/html/templates.dart +++ b/lib/src/html/templates.dart @@ -19,6 +19,7 @@ const _partials = const [ 'footer', 'head', 'library', + 'mixin', 'packages', 'property', 'features', @@ -91,6 +92,7 @@ class Templates { final TemplateRenderer indexTemplate; final TemplateRenderer libraryTemplate; final TemplateRenderer methodTemplate; + final TemplateRenderer mixinTemplate; final TemplateRenderer propertyTemplate; final TemplateRenderer topLevelConstantTemplate; final TemplateRenderer topLevelPropertyTemplate; @@ -132,6 +134,7 @@ class Templates { var topLevelPropertyTemplate = await _loadTemplate('top_level_property.html'); var typeDefTemplate = await _loadTemplate('typedef.html'); + var mixinTemplate = await _loadTemplate('mixin.html'); return new Templates._( indexTemplate, @@ -147,7 +150,8 @@ class Templates { constantTemplate, topLevelConstantTemplate, topLevelPropertyTemplate, - typeDefTemplate); + typeDefTemplate, + mixinTemplate); } Templates._( @@ -164,5 +168,6 @@ class Templates { this.constantTemplate, this.topLevelConstantTemplate, this.topLevelPropertyTemplate, - this.typeDefTemplate); + this.typeDefTemplate, + this.mixinTemplate); } diff --git a/lib/src/markdown_processor.dart b/lib/src/markdown_processor.dart index f108cc9060..0d20fc6674 100644 --- a/lib/src/markdown_processor.dart +++ b/lib/src/markdown_processor.dart @@ -185,66 +185,9 @@ ModelElement _getPreferredClass(ModelElement modelElement) { return null; } -// TODO: this is in the wrong place -NodeList _getCommentRefs(Documentable documentable) { - // Documentable items that aren't related to analyzer elements have no - // CommentReference list. - if (documentable is! ModelElement) return null; - ModelElement modelElement = documentable; - - if (modelElement.element.documentationComment == null && - modelElement.canOverride()) { - var node = modelElement.overriddenElement?.element?.computeNode(); - if (node is AnnotatedNode) { - if (node.documentationComment != null) { - return node.documentationComment.references; - } - } - } - - if (modelElement.element.computeNode() is AnnotatedNode) { - final AnnotatedNode annotatedNode = modelElement.element.computeNode(); - if (annotatedNode.documentationComment != null) { - return annotatedNode.documentationComment.references; - } - } else if (modelElement.element is LibraryElement) { - // handle anonymous libraries - if (modelElement.element.computeNode() == null || - modelElement.element.computeNode().parent == null) { - return null; - } - var node = modelElement.element.computeNode().parent.parent; - if (node is AnnotatedNode) { - if (node.documentationComment != null) { - return node.documentationComment.references; - } - } - } - - // Our references might come from somewhere up in the inheritance chain. - // TODO(jcollins-g): rationalize this and all other places where docs are - // inherited to be consistent. - if (modelElement.element is ClassMemberElement) { - var node = modelElement.element - .getAncestor((e) => e is ClassElement) - .computeNode(); - if (node is AnnotatedNode) { - if (node.documentationComment != null) { - return node.documentationComment.references; - } - } - } - return null; -} - /// Returns null if element is a parameter. MatchingLinkResult _getMatchingLinkElement( String codeRef, Warnable element, List commentRefs) { - // By debugging inspection, it seems correct to not warn when we don't have - // CommentReferences; there's actually nothing that needs resolving in - // that case. - if (commentRefs == null) return new MatchingLinkResult(null, warn: false); - if (!codeRef.contains(isConstructor) && codeRef.contains(notARealDocReference)) { // Don't waste our time on things we won't ever find. @@ -254,7 +197,7 @@ MatchingLinkResult _getMatchingLinkElement( ModelElement refModelElement; // Try expensive not-scoped lookup. - if (refModelElement == null) { + if (refModelElement == null && element is ModelElement) { Class preferredClass = _getPreferredClass(element); refModelElement = _findRefElementInLibrary(codeRef, element, commentRefs, preferredClass); @@ -318,22 +261,25 @@ MatchingLinkResult _getMatchingLinkElement( /// Given a set of commentRefs, return the one whose name matches the codeRef. Element _getRefElementFromCommentRefs( List commentRefs, String codeRef) { - for (CommentReference ref in commentRefs) { - if (ref.identifier.name == codeRef) { - bool isConstrElement = ref.identifier.staticElement is ConstructorElement; - // Constructors are now handled by library search. - if (!isConstrElement) { - Element refElement = ref.identifier.staticElement; - if (refElement is PropertyAccessorElement) { - // yay we found an accessor that wraps a const, but we really - // want the top-level field itself - refElement = (refElement as PropertyAccessorElement).variable; - } - if (refElement is PrefixElement) { - // We found a prefix element, but what we really want is the library element. - refElement = (refElement as PrefixElement).enclosingElement; + if (commentRefs != null) { + for (CommentReference ref in commentRefs) { + if (ref.identifier.name == codeRef) { + bool isConstrElement = + ref.identifier.staticElement is ConstructorElement; + // Constructors are now handled by library search. + if (!isConstrElement) { + Element refElement = ref.identifier.staticElement; + if (refElement is PropertyAccessorElement) { + // yay we found an accessor that wraps a const, but we really + // want the top-level field itself + refElement = (refElement as PropertyAccessorElement).variable; + } + if (refElement is PrefixElement) { + // We found a prefix element, but what we really want is the library element. + refElement = (refElement as PrefixElement).enclosingElement; + } + return refElement; } - return refElement; } } } @@ -719,7 +665,7 @@ void _getResultsForClass(Class tryClass, String codeRefChomped, } String _linkDocReference( - String codeRef, Warnable warnable, NodeList commentRefs) { + String codeRef, Warnable warnable, List commentRefs) { MatchingLinkResult result; result = _getMatchingLinkElement(codeRef, warnable, commentRefs); final ModelElement linkedElement = result.element; @@ -942,11 +888,7 @@ class Documentation { return _asOneLiner; } - NodeList _commentRefs; - NodeList get commentRefs { - if (_commentRefs == null) _commentRefs = _getCommentRefs(_element); - return _commentRefs; - } + List get commentRefs => _element.commentRefs; void _renderHtmlForDartdoc(bool processAllDocs) { Tuple3 renderResults = diff --git a/lib/src/model.dart b/lib/src/model.dart index 3e8b95a4f1..e791aebec6 100644 --- a/lib/src/model.dart +++ b/lib/src/model.dart @@ -285,20 +285,19 @@ class Accessor extends ModelElement implements EnclosedElement { @override String get sourceCode { - if (_sourceCodeCache == null) { + if (_sourceCode == null) { if (isSynthetic) { - _sourceCodeCache = + _sourceCode = sourceCodeFor((element as PropertyAccessorElement).variable); } else { - _sourceCodeCache = super.sourceCode; + _sourceCode = super.sourceCode; } } - return _sourceCodeCache; + return _sourceCode; } @override List get computeDocumentationFrom { - if (isSynthetic) return [this]; return super.computeDocumentationFrom; } @@ -416,6 +415,62 @@ class Accessor extends ModelElement implements EnclosedElement { PropertyAccessorElement get _accessor => (element as PropertyAccessorElement); } +/// Implements the Dart 2.1 "mixin" style of mixin declarations. +class Mixin extends Class { + Mixin(MixinElementImpl element, Library library, PackageGraph packageGraph) + : super(element, library, packageGraph) {} + + @override + bool get isAbstract => false; + + @override + List get inheritanceChain { + if (_inheritanceChain == null) { + _inheritanceChain = []; + _inheritanceChain.add(this); + + // Mix-in interfaces come before other interfaces. + _inheritanceChain.addAll(superclassConstraints.expand( + (ParameterizedElementType i) => + (i.element as Class).inheritanceChain)); + + // Interfaces need to come last, because classes in the superChain might + // implement them even when they aren't mentioned. + _inheritanceChain.addAll( + interfaces.expand((e) => (e.element as Class).inheritanceChain)); + } + return _inheritanceChain.toList(growable: false); + } + + List _superclassConstraints; + + /// Returns a list of superclass constraints for this mixin. + Iterable get superclassConstraints { + if (_superclassConstraints == null) { + _superclassConstraints = (element as MixinElementImpl) + .superclassConstraints + .map( + (InterfaceType i) => new ElementType.from(i, packageGraph)) + .toList(); + } + return _superclassConstraints; + } + + bool get hasPublicSuperclassConstraints => + publicSuperclassConstraints.isNotEmpty; + Iterable get publicSuperclassConstraints => + filterNonPublic(superclassConstraints); + + @override + bool get hasModifiers => super.hasModifiers || hasPublicSuperclassConstraints; + + @override + String get fileName => "${name}-mixin.html"; + + @override + String get kind => 'mixin'; +} + class Class extends ModelElement with TypeParameters, Categorization implements EnclosedElement { @@ -906,10 +961,21 @@ class Class extends ModelElement List get superChain { List typeChain = []; - var parent = _supertype; + DefinedElementType parent = _supertype; while (parent != null) { typeChain.add(parent); - parent = (parent.element as Class)._supertype; + if (parent.type is InterfaceType) { + // Avoid adding [Object] to the superChain (_supertype already has this + // check) + if ((parent.type as InterfaceType)?.superclass?.superclass == null) { + parent = null; + } else { + parent = new ElementType.from( + (parent.type as InterfaceType).superclass, packageGraph); + } + } else { + parent = (parent.element as Class)._supertype; + } } return typeChain; } @@ -1304,6 +1370,9 @@ abstract class Canonicalization extends Object bool get isCanonical; Library get canonicalLibrary; + List _commentRefs; + List get commentRefs => _commentRefs; + /// Pieces of the location split by [locationSplitter] (removing package: and /// slashes). Set get locationPieces; @@ -1609,7 +1678,7 @@ class Field extends ModelElement @override String get sourceCode { - if (_sourceCodeCache == null) { + if (_sourceCode == null) { // We could use a set to figure the dupes out, but that would lose ordering. String fieldSourceCode = sourceCodeFor(element) ?? ''; String getterSourceCode = getter?.sourceCode ?? ''; @@ -1628,9 +1697,9 @@ class Field extends ModelElement if (fieldSourceCode != setterSourceCode) { buffer.write(setterSourceCode); } - _sourceCodeCache = buffer.toString(); + _sourceCode = buffer.toString(); } - return _sourceCodeCache; + return _sourceCode; } void _setModelType() { @@ -1723,9 +1792,12 @@ abstract class GetterSetterCombo implements ModelElement { return _documentationFrom; } - bool get hasAccessorsWithDocs => - (hasPublicGetter && getter.documentation.isNotEmpty || - hasPublicSetter && setter.documentation.isNotEmpty); + bool get hasAccessorsWithDocs => (hasPublicGetter && + !getter.isSynthetic && + getter.documentation.isNotEmpty || + hasPublicSetter && + !setter.isSynthetic && + setter.documentation.isNotEmpty); bool get getterSetterBothAvailable => (hasPublicGetter && getter.documentation.isNotEmpty && hasPublicSetter && @@ -1735,7 +1807,7 @@ abstract class GetterSetterCombo implements ModelElement { String get oneLineDoc { if (_oneLineDoc == null) { if (!hasAccessorsWithDocs) { - _oneLineDoc = _documentation.asOneLiner; + _oneLineDoc = computeOneLineDoc(); } else { StringBuffer buffer = new StringBuffer(); if (hasPublicGetter && getter.oneLineDoc.isNotEmpty) { @@ -2056,6 +2128,19 @@ class Library extends ModelElement with Categorization, TopLevelContainer { return _enums; } + @override + List get mixins { + if (_mixins != null) return _mixins; + List mixinClasses = []; + mixinClasses.addAll( + _exportedNamespace.definedNames.values.whereType()); + _mixins = mixinClasses + .map((e) => new ModelElement.from(e, this, packageGraph) as Mixin) + .toList(growable: false) + ..sort(byName); + return _mixins; + } + @override List get exceptions { return _allClasses @@ -2197,7 +2282,7 @@ class Library extends ModelElement with Categorization, TopLevelContainer { } types.addAll(_exportedNamespace.definedNames.values - .where((e) => e is ClassElement) + .where((e) => e is ClassElement && e is! MixinElementImpl) .cast() .where((element) => !element.isEnum)); @@ -2340,6 +2425,7 @@ class Library extends ModelElement with Categorization, TopLevelContainer { ..addAll(library.constants) ..addAll(library.enums) ..addAll(library.functions) + ..addAll(library.mixins) ..addAll(library.properties) ..addAll(library.typedefs); @@ -2679,7 +2765,11 @@ abstract class ModelElement extends Canonicalization // Also handles enums if (e is ClassElement) { if (!e.isEnum) { - newModelElement = new Class(e, library, packageGraph); + if (e is MixinElementImpl) { + newModelElement = new Mixin(e, library, packageGraph); + } else { + newModelElement = new Class(e, library, packageGraph); + } } else { newModelElement = new Enum(e, library, packageGraph); } @@ -2813,8 +2903,14 @@ abstract class ModelElement extends Canonicalization .packageGraph.libraryElementReexportedBy[this.element.library]; } - // TODO(jcollins-g): annotations should now be able to use the utility - // functions in package for finding elements and avoid using computeNode(). + AstNode _astNode; + AstNode get astNode { + if (_astNode == null) { + _astNode = element?.computeNode(); + } + return _astNode; + } + List get annotations => annotationsFromMetadata(element.metadata); /// Returns linked annotations from a given metadata set, with escaping. @@ -2882,6 +2978,27 @@ abstract class ModelElement extends Canonicalization return _isPublic; } + @override + List get commentRefs { + if (_commentRefs == null) { + _commentRefs = []; + for (ModelElement from in documentationFrom) { + List checkReferences = [from]; + if (from is Accessor) { + checkReferences.add(from.enclosingCombo); + } + for (ModelElement e in checkReferences) { + AstNode node = e.astNode; + if (node is AnnotatedNode && + node?.documentationComment?.references != null) { + _commentRefs.addAll(node.documentationComment.references); + } + } + } + } + return _commentRefs; + } + DartdocOptionContext _config; @override DartdocOptionContext get config { @@ -2959,10 +3076,11 @@ abstract class ModelElement extends Canonicalization /// for this element. List get computeDocumentationFrom { List docFrom; + if (computeDocumentationComment == null && canOverride() && overriddenElement != null) { - docFrom = [overriddenElement]; + docFrom = overriddenElement.documentationFrom; } else if (this is Inheritable && (this as Inheritable).isInherited) { Inheritable thisInheritable = (this as Inheritable); Class definingEnclosingClass = @@ -3310,12 +3428,14 @@ abstract class ModelElement extends Canonicalization @override String get name => element.name; + // TODO(jcollins-g): refactor once mixins can call super + String computeOneLineDoc() => + '${_documentation.asOneLiner}${extendedDocLink.isEmpty ? "" : " $extendedDocLink"}'; String _oneLineDoc; @override String get oneLineDoc { if (_oneLineDoc == null) { - _oneLineDoc = - '${_documentation.asOneLiner}${extendedDocLink.isEmpty ? "" : " $extendedDocLink"}'; + _oneLineDoc = computeOneLineDoc(); } return _oneLineDoc; } @@ -3448,7 +3568,12 @@ abstract class ModelElement extends Canonicalization }); } if (paramModelType is CallableElementTypeMixin) { - var returnTypeName = paramModelType.createLinkedReturnTypeName(); + String returnTypeName; + if (paramModelType.isTypedef) { + returnTypeName = paramModelType.linkedName; + } else { + returnTypeName = paramModelType.createLinkedReturnTypeName(); + } buf.write('${returnTypeName}'); if (showNames) { buf.write(' ${param.name}'); @@ -4928,6 +5053,7 @@ class PackageGraph { abstract class TopLevelContainer extends Nameable { List _classes; List _enums; + List _mixins; List _exceptions; List _constants; List _properties; @@ -4936,6 +5062,7 @@ abstract class TopLevelContainer extends Nameable { Iterable get classes => _classes; Iterable get enums => _enums; + Iterable get mixins => _mixins; Iterable get exceptions => _exceptions; Iterable get constants => _constants; Iterable get properties => _properties; @@ -4947,14 +5074,16 @@ abstract class TopLevelContainer extends Nameable { bool get hasPublicEnums => publicEnums.isNotEmpty; bool get hasPublicExceptions => publicExceptions.isNotEmpty; bool get hasPublicFunctions => publicFunctions.isNotEmpty; + bool get hasPublicMixins => publicMixins.isNotEmpty; bool get hasPublicProperties => publicProperties.isNotEmpty; bool get hasPublicTypedefs => publicTypedefs.isNotEmpty; Iterable get publicClasses => filterNonPublic(classes); Iterable get publicConstants => filterNonPublic(constants); - Iterable get publicEnums => filterNonPublic(enums); + Iterable get publicEnums => filterNonPublic(enums); Iterable get publicExceptions => filterNonPublic(exceptions); Iterable get publicFunctions => filterNonPublic(functions); + Iterable get publicMixins => filterNonPublic(mixins); Iterable get publicProperties => filterNonPublic(properties); Iterable get publicTypedefs => filterNonPublic(typedefs); @@ -5085,6 +5214,7 @@ class Category extends Nameable _constants = []; _properties = []; _functions = []; + _mixins = []; _typedefs = []; } @@ -5093,6 +5223,8 @@ class Category extends Nameable _allItems.add(c); if (c is Library) { _libraries.add(c); + } else if (c is Mixin) { + _mixins.add(c); } else if (c is Enum) { _enums.add(c); } else if (c is Class) { @@ -5564,7 +5696,6 @@ class Parameter extends ModelElement implements EnclosedElement { } abstract class SourceCodeMixin implements Documentable { - String _sourceCodeCache; String get crossdartHtmlTag { if (config.addCrossdart && _crossdartUrl != null) { return "Link to Crossdart"; @@ -5614,11 +5745,12 @@ abstract class SourceCodeMixin implements Documentable { } } + String _sourceCode; String get sourceCode { - if (_sourceCodeCache == null) { - _sourceCodeCache = sourceCodeFor(element); + if (_sourceCode == null) { + _sourceCode = sourceCodeFor(element); } - return _sourceCodeCache; + return _sourceCode; } String get _crossdartPath { diff --git a/lib/templates/_mixin.html b/lib/templates/_mixin.html new file mode 100644 index 0000000000..883309d075 --- /dev/null +++ b/lib/templates/_mixin.html @@ -0,0 +1,6 @@ +
+ {{{linkedName}}}{{{linkedGenericParameters}}} {{>categorization}} +
+
+ {{{ oneLineDoc }}} +
diff --git a/lib/templates/_sidebar_for_category.html b/lib/templates/_sidebar_for_category.html index 4be63996ab..3ba54d1bd4 100644 --- a/lib/templates/_sidebar_for_category.html +++ b/lib/templates/_sidebar_for_category.html @@ -6,6 +6,13 @@ {{/self.publicLibraries}} {{/self.hasPublicLibraries}} + {{#self.hasPublicMixins}} +
  • Mixins
  • + {{#self.publicMixins}} +
  • {{{ linkedName }}}
  • + {{/self.publicMixins}} + {{/self.hasPublicMixins}} + {{#self.hasPublicClasses}}
  • Classes
  • {{#self.publicClasses}} diff --git a/lib/templates/_sidebar_for_library.html b/lib/templates/_sidebar_for_library.html index c9eea573fe..04d15c3d47 100644 --- a/lib/templates/_sidebar_for_library.html +++ b/lib/templates/_sidebar_for_library.html @@ -6,6 +6,13 @@ {{/library.publicClasses}} {{/library.hasPublicClasses}} + {{#library.hasPublicMixins}} +
  • Mixins
  • + {{#library.publicMixins}} +
  • {{{ linkedName }}}
  • + {{/library.publicMixins}} + {{/library.hasPublicMixins}} + {{#library.hasPublicConstants}}
  • Constants
  • {{#library.publicConstants}} diff --git a/lib/templates/category.html b/lib/templates/category.html index 69a6ccf6f1..a29ce66dd7 100644 --- a/lib/templates/category.html +++ b/lib/templates/category.html @@ -34,6 +34,18 @@

    Classes

    {{/hasPublicClasses}} + {{#hasPublicMixins}} +
    +

    Mixins

    + +
    + {{#publicMixins}} + {{>mixin}} + {{/publicMixins}} +
    +
    + {{/hasPublicMixins}} + {{#hasPublicConstants}}

    Constants

    diff --git a/lib/templates/library.html b/lib/templates/library.html index de8b414f95..d78e758cf8 100644 --- a/lib/templates/library.html +++ b/lib/templates/library.html @@ -26,6 +26,18 @@

    Classes

    {{/library.hasPublicClasses}} + {{#library.hasPublicMixins}} +
    +

    Mixins

    + +
    + {{#library.publicMixins}} + {{>mixin}} + {{/library.publicMixins}} +
    +
    + {{/library.hasPublicMixins}} + {{#library.hasPublicConstants}}

    Constants

    diff --git a/lib/templates/mixin.html b/lib/templates/mixin.html new file mode 100644 index 0000000000..4987610270 --- /dev/null +++ b/lib/templates/mixin.html @@ -0,0 +1,179 @@ +{{>head}} + + + +
    + {{#self}} +

    {{{nameWithGenerics}}} {{kind}} {{>categorization}}

    + {{/self}} + + {{#mixin}} + {{>documentation}} + {{/mixin}} + + {{#mixin.hasModifiers}} +
    +
    + {{#mixin.hasPublicSuperclassConstraints}} +
    Superclass Constraints
    +
      + {{#mixin.publicSuperclassConstraints}} +
    • {{{linkedName}}}
    • + {{/mixin.publicSuperclassConstraints}} +
    + {{/mixin.hasPublicSuperclassConstraints}} + + {{#mixin.hasPublicSuperChainReversed}} +
    Inheritance
    +
      +
    • {{{linkedObjectType}}}
    • + {{#mixin.publicSuperChainReversed}} +
    • {{{linkedName}}}
    • + {{/mixin.publicSuperChainReversed}} +
    • {{{name}}}
    • +
    + {{/mixin.hasPublicSuperChainReversed}} + + {{#mixin.hasPublicInterfaces}} +
    Implements
    +
    +
      + {{#mixin.publicInterfaces}} +
    • {{{linkedName}}}
    • + {{/mixin.publicInterfaces}} +
    +
    + {{/mixin.hasPublicInterfaces}} + + {{#mixin.hasPublicMixins}} +
    Mixes-in
    +
      + {{#mixin.publicMixins}} +
    • {{{linkedName}}}
    • + {{/mixin.publicMixins}} +
    + {{/mixin.hasPublicMixins}} + + {{#mixin.hasPublicImplementors}} +
    Implemented by
    +
      + {{#mixin.publicImplementors}} +
    • {{{linkedName}}}
    • + {{/mixin.publicImplementors}} +
    + {{/mixin.hasPublicImplementors}} + + {{#mixin.hasAnnotations}} +
    Annotations
    +
      + {{#mixin.annotations}} +
    • {{{.}}}
    • + {{/mixin.annotations}} +
    + {{/mixin.hasAnnotations}} +
    +
    + {{/mixin.hasModifiers}} + + {{#mixin.hasPublicConstructors}} +
    +

    Constructors

    + +
    + {{#mixin.publicConstructors}} +
    + {{{linkedName}}}({{{ linkedParams }}}) +
    +
    + {{{ oneLineDoc }}} + {{#isConst}} +
    const
    + {{/isConst}} + {{#isFactory}} +
    factory
    + {{/isFactory}} +
    + {{/mixin.publicConstructors}} +
    +
    + {{/mixin.hasPublicConstructors}} + + {{#mixin.hasPublicProperties}} +
    +

    Properties

    + +
    + {{#mixin.allPublicInstanceProperties}} + {{>property}} + {{/mixin.allPublicInstanceProperties}} +
    +
    + {{/mixin.hasPublicProperties}} + + {{#mixin.hasPublicMethods}} +
    +

    Methods

    +
    + {{#mixin.allPublicInstanceMethods}} + {{>callable}} + {{/mixin.allPublicInstanceMethods}} +
    +
    + {{/mixin.hasPublicMethods}} + + {{#mixin.hasPublicOperators}} +
    +

    Operators

    +
    + {{#mixin.allPublicOperators}} + {{>callable}} + {{/mixin.allPublicOperators}} +
    +
    + {{/mixin.hasPublicOperators}} + + {{#mixin.hasPublicStaticProperties}} +
    +

    Static Properties

    + +
    + {{#mixin.publicStaticProperties}} + {{>property}} + {{/mixin.publicStaticProperties}} +
    +
    + {{/mixin.hasPublicStaticProperties}} + + {{#mixin.hasPublicStaticMethods}} +
    +

    Static Methods

    +
    + {{#mixin.publicStaticMethods}} + {{>callable}} + {{/mixin.publicStaticMethods}} +
    +
    + {{/mixin.hasPublicStaticMethods}} + + {{#mixin.hasPublicConstants}} +
    +

    Constants

    + +
    + {{#mixin.publicConstants}} + {{>constant}} + {{/mixin.publicConstants}} +
    +
    + {{/mixin.hasPublicConstants}} + +
    + + + +{{>footer}} diff --git a/pubspec.lock b/pubspec.lock index 468b1cb13c..9eef350667 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -4,10 +4,10 @@ packages: analyzer: dependency: "direct main" description: - name: analyzer - url: "https://pub.dartlang.org" - source: hosted - version: "0.32.4" + path: "../sdk/sdk/pkg/analyzer" + relative: true + source: path + version: "0.33.0-alpha.0" args: dependency: "direct main" description: @@ -35,7 +35,7 @@ packages: name: build url: "https://pub.dartlang.org" source: hosted - version: "0.12.7+2" + version: "0.12.7+3" build_cli_annotations: dependency: transitive description: @@ -49,14 +49,14 @@ packages: name: build_config url: "https://pub.dartlang.org" source: hosted - version: "0.3.1+2" + version: "0.3.1+3" build_resolvers: dependency: transitive description: name: build_resolvers url: "https://pub.dartlang.org" source: hosted - version: "0.2.1+1" + version: "0.2.2+5" build_runner: dependency: "direct dev" description: @@ -77,7 +77,7 @@ packages: name: build_version url: "https://pub.dartlang.org" source: hosted - version: "1.0.0" + version: "1.0.1" built_collection: dependency: transitive description: @@ -147,7 +147,7 @@ packages: name: dart_style url: "https://pub.dartlang.org" source: hosted - version: "1.1.3" + version: "1.2.0" dhttpd: dependency: "direct dev" description: @@ -165,10 +165,10 @@ packages: front_end: dependency: "direct main" description: - name: front_end - url: "https://pub.dartlang.org" - source: hosted - version: "0.1.4" + path: "../sdk/sdk/pkg/front_end" + relative: true + source: path + version: "0.1.5" glob: dependency: "direct dev" description: @@ -249,10 +249,10 @@ packages: kernel: dependency: transitive description: - name: kernel - url: "https://pub.dartlang.org" - source: hosted - version: "0.3.4" + path: "../sdk/sdk/pkg/kernel" + relative: true + source: path + version: "0.3.5" logging: dependency: "direct main" description: @@ -392,7 +392,7 @@ packages: name: shelf_web_socket url: "https://pub.dartlang.org" source: hosted - version: "0.2.2+3" + version: "0.2.2+4" source_map_stack_trace: dependency: transitive description: @@ -455,7 +455,7 @@ packages: name: test url: "https://pub.dartlang.org" source: hosted - version: "1.3.0" + version: "1.3.3" typed_data: dependency: transitive description: @@ -499,4 +499,4 @@ packages: source: hosted version: "2.1.15" sdks: - dart: ">=2.0.0 <3.0.0" + dart: ">=2.1.0-dev.5 <3.0.0" diff --git a/pubspec.yaml b/pubspec.yaml index f2fbf5a945..fc4c5a2ac5 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -5,10 +5,10 @@ author: Dart Team description: A documentation generator for Dart. homepage: https://github.com/dart-lang/dartdoc environment: - sdk: '>=2.0.0-dev.68 <3.0.0' + sdk: '>=2.1.0-dev.5 <3.0.0' dependencies: - analyzer: ^0.32.4 + analyzer: ^0.33.0 args: '>=1.4.1 <2.0.0' collection: ^1.2.0 front_end: ^0.1.1 @@ -41,5 +41,11 @@ dev_dependencies: meta: ^1.0.0 test: ^1.3.0 +dependency_overrides: + analyzer: + path: '../sdk/sdk/pkg/analyzer' + front_end: + path: '../sdk/sdk/pkg/front_end' + executables: dartdoc: null diff --git a/test/model_test.dart b/test/model_test.dart index 4df7d30f3d..c6f4821dec 100644 --- a/test/model_test.dart +++ b/test/model_test.dart @@ -1174,6 +1174,8 @@ void main() { }); test('bullet points work in top level variables', () { + expect(bulletDoced.oneLineDoc, + contains('[...]')); expect(bulletDoced.documentationAsHtml, contains('
  • ')); }); }); @@ -1193,6 +1195,134 @@ void main() { }); }); + group('Mixin', () { + Mixin GenericMixin; + Class GenericClass, ModifierClass, TypeInferenceMixedIn; + Field overrideByEverything, + overrideByGenericMixin, + overrideByBoth, + overrideByModifierClass; + + setUp(() { + Iterable classes = fakeLibrary.publicClasses; + GenericClass = classes.firstWhere((c) => c.name == 'GenericClass'); + ModifierClass = classes.firstWhere((c) => c.name == 'ModifierClass'); + GenericMixin = + fakeLibrary.publicMixins.firstWhere((m) => m.name == 'GenericMixin'); + TypeInferenceMixedIn = + classes.firstWhere((c) => c.name == 'TypeInferenceMixedIn'); + overrideByEverything = TypeInferenceMixedIn.allFields + .firstWhere((f) => f.name == 'overrideByEverything'); + overrideByGenericMixin = TypeInferenceMixedIn.allFields + .firstWhere((f) => f.name == 'overrideByGenericMixin'); + overrideByBoth = TypeInferenceMixedIn.allFields + .firstWhere((f) => f.name == 'overrideByBoth'); + overrideByModifierClass = TypeInferenceMixedIn.allFields + .firstWhere((f) => f.name == 'overrideByModifierClass'); + }); + + test(('Verify inheritance/mixin structure and type inference'), () { + expect( + TypeInferenceMixedIn.mixins + .map((DefinedElementType t) => t.element.name), + orderedEquals(['GenericMixin'])); + expect( + TypeInferenceMixedIn.mixins.first.typeArguments + .map((ElementType t) => t.name), + orderedEquals(['int'])); + + expect(TypeInferenceMixedIn.superChain.length, equals(2)); + final ParameterizedElementType firstType = + TypeInferenceMixedIn.superChain.first; + final ParameterizedElementType lastType = + TypeInferenceMixedIn.superChain.last; + expect(firstType.name, equals('ModifierClass')); + expect(firstType.typeArguments.map((ElementType t) => t.name), + orderedEquals(['int'])); + expect(lastType.name, equals('GenericClass')); + expect(lastType.typeArguments.map((ElementType t) => t.name), + orderedEquals(['int'])); + }); + + test(('Verify non-overridden members have right canonical classes'), () { + final Field member = + TypeInferenceMixedIn.allFields.firstWhere((f) => f.name == 'member'); + final Field modifierMember = TypeInferenceMixedIn.allFields + .firstWhere((f) => f.name == 'modifierMember'); + final Field mixinMember = TypeInferenceMixedIn.allFields + .firstWhere((f) => f.name == 'mixinMember'); + expect(member.canonicalEnclosingElement, equals(GenericClass)); + expect(modifierMember.canonicalEnclosingElement, equals(ModifierClass)); + expect(mixinMember.canonicalEnclosingElement, equals(GenericMixin)); + }); + + test(('Verify overrides & documentation inheritance work as intended'), () { + expect(overrideByEverything.canonicalEnclosingElement, + equals(TypeInferenceMixedIn)); + expect(overrideByGenericMixin.canonicalEnclosingElement, + equals(GenericMixin)); + expect(overrideByBoth.canonicalEnclosingElement, equals(GenericMixin)); + expect(overrideByModifierClass.canonicalEnclosingElement, + equals(ModifierClass)); + expect( + overrideByEverything.documentationFrom.first, + equals(GenericClass.allFields + .firstWhere((f) => f.name == 'overrideByEverything') + .getter)); + expect( + overrideByGenericMixin.documentationFrom.first, + equals(GenericClass.allFields + .firstWhere((f) => f.name == 'overrideByGenericMixin') + .getter)); + expect( + overrideByBoth.documentationFrom.first, + equals(GenericClass.allFields + .firstWhere((f) => f.name == 'overrideByBoth') + .getter)); + expect( + overrideByModifierClass.documentationFrom.first, + equals(GenericClass.allFields + .firstWhere((f) => f.name == 'overrideByModifierClass') + .getter)); + }); + + test(('Verify that documentation for mixin applications contains links'), + () { + expect( + overrideByModifierClass.oneLineDoc, + contains( + 'ModifierClass')); + expect( + overrideByModifierClass.canonicalModelElement.documentationAsHtml, + contains( + 'ModifierClass')); + expect( + overrideByGenericMixin.oneLineDoc, + contains( + 'GenericMixin')); + expect( + overrideByGenericMixin.canonicalModelElement.documentationAsHtml, + contains( + 'GenericMixin')); + expect( + overrideByBoth.oneLineDoc, + contains( + 'ModifierClass')); + expect( + overrideByBoth.oneLineDoc, + contains( + 'GenericMixin')); + expect( + overrideByBoth.canonicalModelElement.documentationAsHtml, + contains( + 'ModifierClass')); + expect( + overrideByBoth.canonicalModelElement.documentationAsHtml, + contains( + 'GenericMixin')); + }); + }); + group('Class', () { List classes; Class Apple, B, Cat, Cool, Dog, F, Dep, SpecialList; From b79e4154a0ff04abef3dfd19491e112801c0c531 Mon Sep 17 00:00:00 2001 From: Janice Collins Date: Thu, 27 Sep 2018 15:07:12 -0700 Subject: [PATCH 2/7] Regenerate package documentation, dropping stable --- testing/test_package/lib/fake.dart | 65 + testing/test_package_docs/__404error.html | 95 - .../anonymous_library-library.html | 125 - .../anonymous_library/doesStuff.html | 86 - .../another_anonymous_lib-library.html | 125 - .../another_anonymous_lib/greeting.html | 86 - testing/test_package_docs/categories.json | 91 - .../IAmAClassWithCategories-class.html | 181 - .../IAmAClassWithCategories.html | 97 - .../IAmAClassWithCategories/hashCode.html | 101 - .../IAmAClassWithCategories/noSuchMethod.html | 97 - .../operator_equals.html | 97 - .../IAmAClassWithCategories/runtimeType.html | 101 - .../IAmAClassWithCategories/toString.html | 97 - .../categoriesExported-library.html | 122 - .../code_in_comments-library.html | 119 - .../test_package_docs/css/css-library.html | 128 - .../css/theOnlyThingInTheLibrary.html | 86 - .../test_package_docs/ex/Animal-class.html | 290 - .../test_package_docs/ex/Animal/hashCode.html | 105 - .../ex/Animal/noSuchMethod.html | 101 - .../ex/Animal/operator_equals.html | 101 - .../ex/Animal/runtimeType.html | 105 - .../test_package_docs/ex/Animal/toString.html | 101 - .../ex/AnotherParameterizedClass-class.html | 235 - .../AnotherParameterizedClass.html | 97 - .../AnotherParameterizedClass/hashCode.html | 101 - .../noSuchMethod.html | 97 - .../operator_equals.html | 97 - .../runtimeType.html | 101 - .../AnotherParameterizedClass/toString.html | 97 - testing/test_package_docs/ex/Apple-class.html | 392 - .../ex/Apple/Apple.fromString.html | 112 - testing/test_package_docs/ex/Apple/Apple.html | 115 - .../ex/Apple/fieldWithTypedef.html | 114 - .../test_package_docs/ex/Apple/hashCode.html | 116 - .../ex/Apple/isGreaterThan.html | 112 - testing/test_package_docs/ex/Apple/m.html | 114 - testing/test_package_docs/ex/Apple/m1.html | 117 - .../ex/Apple/methodWithTypedefParam.html | 112 - .../ex/Apple/n-constant.html | 113 - .../ex/Apple/noSuchMethod.html | 112 - .../ex/Apple/operator_equals.html | 112 - .../ex/Apple/operator_multiply.html | 112 - .../ex/Apple/paramFromExportLib.html | 112 - .../test_package_docs/ex/Apple/printMsg.html | 112 - .../ex/Apple/runtimeType.html | 116 - testing/test_package_docs/ex/Apple/s.html | 133 - .../test_package_docs/ex/Apple/string.html | 111 - .../test_package_docs/ex/Apple/toString.html | 112 - .../ex/Apple/whataclass.html | 115 - testing/test_package_docs/ex/B-class.html | 413 - testing/test_package_docs/ex/B/B.html | 113 - .../ex/B/abstractMethod.html | 118 - .../test_package_docs/ex/B/autoCompress.html | 116 - testing/test_package_docs/ex/B/doNothing.html | 118 - .../test_package_docs/ex/B/isImplemented.html | 117 - testing/test_package_docs/ex/B/list.html | 115 - testing/test_package_docs/ex/B/m1.html | 123 - testing/test_package_docs/ex/B/s.html | 134 - testing/test_package_docs/ex/B/writeMsg.html | 113 - .../test_package_docs/ex/COLOR-constant.html | 144 - .../ex/COLOR_GREEN-constant.html | 144 - .../ex/COLOR_ORANGE-constant.html | 144 - .../ex/COMPLEX_COLOR-constant.html | 144 - testing/test_package_docs/ex/Cat-class.html | 268 - testing/test_package_docs/ex/Cat/Cat.html | 99 - .../ex/Cat/abstractMethod.html | 99 - .../test_package_docs/ex/Cat/hashCode.html | 103 - .../ex/Cat/isImplemented.html | 103 - .../ex/Cat/noSuchMethod.html | 99 - .../ex/Cat/operator_equals.html | 99 - .../test_package_docs/ex/Cat/runtimeType.html | 103 - .../test_package_docs/ex/Cat/toString.html | 99 - .../test_package_docs/ex/CatString-class.html | 326 - .../ex/CatString/CatString.html | 105 - .../test_package_docs/ex/CatString/clear.html | 105 - .../ex/CatString/hashCode.html | 109 - .../ex/CatString/isEmpty.html | 109 - .../ex/CatString/isNotEmpty.html | 109 - .../ex/CatString/length.html | 109 - .../ex/CatString/noSuchMethod.html | 105 - .../ex/CatString/operator_equals.html | 105 - .../ex/CatString/runtimeType.html | 109 - .../ex/CatString/toString.html | 105 - .../test_package_docs/ex/CatString/write.html | 105 - .../ex/CatString/writeAll.html | 105 - .../ex/CatString/writeCharCode.html | 105 - .../ex/CatString/writeln.html | 105 - .../ex/ConstantCat-class.html | 278 - .../ex/ConstantCat/ConstantCat.html | 100 - .../ex/ConstantCat/abstractMethod.html | 105 - .../ex/ConstantCat/isImplemented.html | 104 - .../ex/ConstantCat/name.html | 99 - .../ex/Deprecated-class.html | 245 - .../ex/Deprecated/Deprecated.html | 98 - .../ex/Deprecated/expires.html | 97 - .../ex/Deprecated/hashCode.html | 102 - .../ex/Deprecated/noSuchMethod.html | 98 - .../ex/Deprecated/operator_equals.html | 98 - .../ex/Deprecated/runtimeType.html | 102 - .../ex/Deprecated/toString.html | 98 - testing/test_package_docs/ex/Dog-class.html | 666 -- .../ex/Dog/Dog.deprecatedCreate.html | 144 - testing/test_package_docs/ex/Dog/Dog.html | 139 - .../test_package_docs/ex/Dog/aFinalField.html | 138 - .../ex/Dog/aGetterReturningRandomThings.html | 143 - .../ex/Dog/aName-constant.html | 143 - .../ex/Dog/aProtectedFinalField.html | 138 - .../ex/Dog/aStaticConstField-constant.html | 140 - .../ex/Dog/abstractMethod.html | 144 - .../test_package_docs/ex/Dog/createDog.html | 144 - .../ex/Dog/deprecatedField.html | 138 - .../ex/Dog/deprecatedGetter.html | 143 - .../ex/Dog/deprecatedSetter.html | 144 - testing/test_package_docs/ex/Dog/foo.html | 139 - .../ex/Dog/getAnotherClassD.html | 144 - .../test_package_docs/ex/Dog/getClassA.html | 144 - .../ex/Dog/isImplemented.html | 143 - testing/test_package_docs/ex/Dog/name.html | 138 - .../ex/Dog/operator_equals.html | 144 - .../ex/Dog/somethingTasty.html | 141 - .../ex/Dog/staticGetterSetter.html | 154 - .../test_package_docs/ex/Dog/testGeneric.html | 139 - .../ex/Dog/testGenericMethod.html | 139 - .../test_package_docs/ex/Dog/testMethod.html | 139 - .../ex/Dog/withAnimation.html | 167 - .../ex/Dog/withAnimationBadHeight.html | 143 - .../ex/Dog/withAnimationBadWidth.html | 143 - .../ex/Dog/withAnimationInOneLineDoc.html | 168 - .../ex/Dog/withAnimationInline.html | 168 - .../ex/Dog/withAnimationNonUnique.html | 167 - .../Dog/withAnimationNonUniqueDeprecated.html | 167 - .../ex/Dog/withAnimationOutOfOrder.html | 168 - .../ex/Dog/withAnimationUnknownArg.html | 144 - .../ex/Dog/withAnimationWrongParams.html | 143 - .../ex/Dog/withDeprecatedAnimation.html | 167 - .../ex/Dog/withInvalidNamedAnimation.html | 143 - .../test_package_docs/ex/Dog/withMacro.html | 144 - .../test_package_docs/ex/Dog/withMacro2.html | 142 - .../ex/Dog/withNamedAnimation.html | 167 - .../ex/Dog/withPrivateMacro.html | 142 - .../ex/Dog/withQuotedNamedAnimation.html | 191 - .../ex/Dog/withUndefinedMacro.html | 142 - testing/test_package_docs/ex/E-class.html | 247 - testing/test_package_docs/ex/E/E.html | 97 - testing/test_package_docs/ex/E/hashCode.html | 101 - .../test_package_docs/ex/E/noSuchMethod.html | 97 - .../ex/E/operator_equals.html | 97 - .../test_package_docs/ex/E/runtimeType.html | 101 - testing/test_package_docs/ex/E/toString.html | 97 - .../ex/ExtendedShortName-class.html | 259 - .../ExtendedShortName/ExtendedShortName.html | 98 - testing/test_package_docs/ex/F-class.html | 591 - testing/test_package_docs/ex/F/F.html | 132 - .../ex/F/methodWithGenericParam.html | 132 - testing/test_package_docs/ex/F/test.html | 132 - .../ex/ForAnnotation-class.html | 245 - .../ex/ForAnnotation/ForAnnotation.html | 98 - .../ex/ForAnnotation/hashCode.html | 102 - .../ex/ForAnnotation/noSuchMethod.html | 98 - .../ex/ForAnnotation/operator_equals.html | 98 - .../ex/ForAnnotation/runtimeType.html | 102 - .../ex/ForAnnotation/toString.html | 98 - .../ex/ForAnnotation/value.html | 97 - .../ex/HasAnnotation-class.html | 247 - .../ex/HasAnnotation/HasAnnotation.html | 97 - .../ex/HasAnnotation/hashCode.html | 101 - .../ex/HasAnnotation/noSuchMethod.html | 97 - .../ex/HasAnnotation/operator_equals.html | 97 - .../ex/HasAnnotation/runtimeType.html | 101 - .../ex/HasAnnotation/toString.html | 97 - .../test_package_docs/ex/Helper-class.html | 250 - .../test_package_docs/ex/Helper/Helper.html | 98 - .../ex/Helper/getContents.html | 98 - .../test_package_docs/ex/Helper/hashCode.html | 102 - .../ex/Helper/noSuchMethod.html | 98 - .../ex/Helper/operator_equals.html | 98 - .../ex/Helper/runtimeType.html | 102 - .../test_package_docs/ex/Helper/toString.html | 98 - testing/test_package_docs/ex/Klass-class.html | 288 - testing/test_package_docs/ex/Klass/Klass.html | 102 - .../test_package_docs/ex/Klass/another.html | 105 - .../ex/Klass/anotherMethod.html | 110 - .../test_package_docs/ex/Klass/hashCode.html | 106 - .../ex/Klass/imAFactoryNoReally.html | 110 - .../ex/Klass/imProtected.html | 110 - .../test_package_docs/ex/Klass/method.html | 105 - .../ex/Klass/noSuchMethod.html | 102 - .../ex/Klass/operator_equals.html | 102 - .../ex/Klass/runtimeType.html | 106 - .../test_package_docs/ex/Klass/toString.html | 110 - .../test_package_docs/ex/MY_CAT-constant.html | 144 - .../test_package_docs/ex/MyError-class.html | 258 - .../test_package_docs/ex/MyError/MyError.html | 98 - .../ex/MyError/hashCode.html | 102 - .../ex/MyError/noSuchMethod.html | 98 - .../ex/MyError/operator_equals.html | 98 - .../ex/MyError/runtimeType.html | 102 - .../ex/MyError/stackTrace.html | 102 - .../ex/MyError/toString.html | 98 - .../ex/MyErrorImplements-class.html | 258 - .../MyErrorImplements/MyErrorImplements.html | 98 - .../ex/MyErrorImplements/hashCode.html | 102 - .../ex/MyErrorImplements/noSuchMethod.html | 98 - .../ex/MyErrorImplements/operator_equals.html | 98 - .../ex/MyErrorImplements/runtimeType.html | 102 - .../ex/MyErrorImplements/stackTrace.html | 102 - .../ex/MyErrorImplements/toString.html | 98 - .../ex/MyException-class.html | 249 - .../ex/MyException/MyException.html | 97 - .../ex/MyException/hashCode.html | 101 - .../ex/MyException/noSuchMethod.html | 97 - .../ex/MyException/operator_equals.html | 97 - .../ex/MyException/runtimeType.html | 101 - .../ex/MyException/toString.html | 97 - .../ex/MyExceptionImplements-class.html | 249 - .../MyExceptionImplements.html | 97 - .../ex/MyExceptionImplements/hashCode.html | 101 - .../MyExceptionImplements/noSuchMethod.html | 97 - .../operator_equals.html | 97 - .../ex/MyExceptionImplements/runtimeType.html | 101 - .../ex/MyExceptionImplements/toString.html | 97 - .../ex/PRETTY_COLORS-constant.html | 144 - .../ex/ParameterizedClass-class.html | 307 - .../ParameterizedClass.html | 103 - .../ParameterizedClass/aInheritedField.html | 102 - .../ParameterizedClass/aInheritedGetter.html | 107 - .../ParameterizedClass/aInheritedMethod.html | 103 - .../ParameterizedClass/aInheritedSetter.html | 108 - .../aInheritedTypedefReturningMethod.html | 103 - .../ex/ParameterizedClass/hashCode.html | 107 - .../ex/ParameterizedClass/noSuchMethod.html | 103 - .../ParameterizedClass/operator_equals.html | 103 - .../ex/ParameterizedClass/operator_plus.html | 103 - .../ex/ParameterizedClass/runtimeType.html | 107 - .../ex/ParameterizedClass/toString.html | 103 - .../ex/ParameterizedTypedef.html | 143 - .../PublicClassExtendsPrivateClass-class.html | 245 - .../PublicClassExtendsPrivateClass.html | 98 - .../hashCode.html | 102 - .../noSuchMethod.html | 98 - .../operator_equals.html | 98 - .../runtimeType.html | 102 - .../PublicClassExtendsPrivateClass/test.html | 98 - .../toString.html | 98 - ...ClassImplementsPrivateInterface-class.html | 245 - ...PublicClassImplementsPrivateInterface.html | 98 - .../hashCode.html | 102 - .../noSuchMethod.html | 98 - .../operator_equals.html | 98 - .../runtimeType.html | 102 - .../test.html | 103 - .../toString.html | 98 - .../test_package_docs/ex/ShapeType-class.html | 267 - .../ex/ShapeType/ellipse-constant.html | 100 - .../ex/ShapeType/hashCode.html | 103 - .../test_package_docs/ex/ShapeType/name.html | 98 - .../ex/ShapeType/noSuchMethod.html | 99 - .../ex/ShapeType/operator_equals.html | 99 - .../ex/ShapeType/rect-constant.html | 100 - .../ex/ShapeType/runtimeType.html | 103 - .../ex/ShapeType/toString.html | 104 - .../test_package_docs/ex/ShortName-class.html | 257 - .../ex/ShortName/ShortName.html | 98 - .../ex/ShortName/aParameter.html | 97 - .../ex/ShortName/hashCode.html | 102 - .../ex/ShortName/noSuchMethod.html | 98 - .../ex/ShortName/operator_equals.html | 98 - .../ex/ShortName/runtimeType.html | 102 - .../ex/ShortName/toString.html | 98 - .../ex/SpecializedDuration-class.html | 426 - .../SpecializedDuration.html | 115 - .../ex/SpecializedDuration/abs.html | 115 - .../ex/SpecializedDuration/compareTo.html | 115 - .../ex/SpecializedDuration/hashCode.html | 119 - .../ex/SpecializedDuration/inDays.html | 119 - .../ex/SpecializedDuration/inHours.html | 119 - .../SpecializedDuration/inMicroseconds.html | 119 - .../SpecializedDuration/inMilliseconds.html | 119 - .../ex/SpecializedDuration/inMinutes.html | 119 - .../ex/SpecializedDuration/inSeconds.html | 119 - .../ex/SpecializedDuration/isNegative.html | 119 - .../ex/SpecializedDuration/noSuchMethod.html | 115 - .../SpecializedDuration/operator_equals.html | 115 - .../SpecializedDuration/operator_greater.html | 115 - .../operator_greater_equal.html | 115 - .../ex/SpecializedDuration/operator_less.html | 115 - .../operator_less_equal.html | 115 - .../SpecializedDuration/operator_minus.html | 115 - .../operator_multiply.html | 115 - .../ex/SpecializedDuration/operator_plus.html | 115 - .../operator_truncate_divide.html | 115 - .../operator_unary_minus.html | 115 - .../ex/SpecializedDuration/runtimeType.html | 119 - .../ex/SpecializedDuration/toString.html | 115 - .../ex/TemplatedClass-class.html | 245 - .../ex/TemplatedClass/aMethod.html | 98 - .../ex/TemplatedInterface-class.html | 356 - .../TemplatedInterface.html | 108 - .../ex/TemplatedInterface/aField.html | 107 - .../ex/TemplatedInterface/aGetter.html | 112 - .../TemplatedInterface/aMethodInterface.html | 108 - .../ex/TemplatedInterface/aSetter.html | 113 - .../aTypedefReturningMethodInterface.html | 108 - .../TypedFunctionsWithoutTypedefs-class.html | 269 - .../TypedFunctionsWithoutTypedefs.html | 100 - .../getAComplexTypedef.html | 103 - .../getAFunctionReturningBool.html | 104 - .../getAFunctionReturningVoid.html | 103 - .../hashCode.html | 104 - .../noSuchMethod.html | 100 - .../operator_equals.html | 100 - .../runtimeType.html | 104 - .../toString.html | 100 - .../ex/WithGeneric-class.html | 256 - .../ex/WithGeneric/WithGeneric.html | 98 - .../ex/WithGeneric/hashCode.html | 102 - .../ex/WithGeneric/noSuchMethod.html | 98 - .../ex/WithGeneric/operator_equals.html | 98 - .../ex/WithGeneric/prop.html | 97 - .../ex/WithGeneric/runtimeType.html | 102 - .../ex/WithGeneric/toString.html | 98 - .../ex/WithGenericSub-class.html | 258 - .../ex/WithGenericSub/WithGenericSub.html | 98 - .../test_package_docs/ex/aComplexTypedef.html | 146 - .../ex/aThingToDo-class.html | 257 - .../ex/aThingToDo/aThingToDo.html | 99 - .../ex/aThingToDo/hashCode.html | 103 - .../ex/aThingToDo/noSuchMethod.html | 99 - .../ex/aThingToDo/operator_equals.html | 99 - .../ex/aThingToDo/runtimeType.html | 103 - .../ex/aThingToDo/toString.html | 99 - .../test_package_docs/ex/aThingToDo/what.html | 98 - .../test_package_docs/ex/aThingToDo/who.html | 98 - .../ex/deprecated-constant.html | 144 - .../test_package_docs/ex/deprecatedField.html | 143 - .../ex/deprecatedGetter.html | 147 - .../ex/deprecatedSetter.html | 148 - testing/test_package_docs/ex/ex-library.html | 598 -- testing/test_package_docs/ex/function1.html | 143 - .../test_package_docs/ex/genericFunction.html | 143 - .../ex/incorrectDocReference-constant.html | 147 - .../incorrectDocReferenceFromEx-constant.html | 147 - testing/test_package_docs/ex/number.html | 143 - .../test_package_docs/ex/processMessage.html | 143 - testing/test_package_docs/ex/y.html | 147 - .../fake/ABaseClass-class.html | 300 - .../fake/ABaseClass/ABaseClass.html | 97 - .../fake/ABaseClass/hashCode.html | 101 - .../fake/ABaseClass/noSuchMethod.html | 97 - .../fake/ABaseClass/operator_equals.html | 97 - .../fake/ABaseClass/runtimeType.html | 101 - .../fake/ABaseClass/toString.html | 97 - .../fake/AClassUsingASuperMixin-class.html | 318 - .../AClassUsingASuperMixin.html | 98 - .../fake/AClassWithFancyProperties-class.html | 297 - .../AClassWithFancyProperties.html | 98 - .../AClassWithFancyProperties/hashCode.html | 102 - .../noSuchMethod.html | 98 - .../operator_equals.html | 98 - .../runtimeType.html | 102 - .../AClassWithFancyProperties/toString.html | 98 - .../fake/ATypeTakingClass-class.html | 313 - .../ATypeTakingClass/ATypeTakingClass.html | 98 - .../aMethodMaybeReturningVoid.html | 98 - .../fake/ATypeTakingClass/hashCode.html | 102 - .../fake/ATypeTakingClass/noSuchMethod.html | 98 - .../ATypeTakingClass/operator_equals.html | 98 - .../fake/ATypeTakingClass/runtimeType.html | 102 - .../fake/ATypeTakingClass/toString.html | 98 - .../fake/ATypeTakingClassMixedIn-class.html | 316 - .../ATypeTakingClassMixedIn.html | 98 - .../fake/Annotation-class.html | 301 - .../fake/Annotation/Annotation.html | 98 - .../fake/Annotation/hashCode.html | 102 - .../fake/Annotation/noSuchMethod.html | 98 - .../fake/Annotation/operator_equals.html | 98 - .../fake/Annotation/runtimeType.html | 102 - .../fake/Annotation/toString.html | 98 - .../fake/Annotation/value.html | 97 - .../fake/AnotherInterface-class.html | 304 - .../AnotherInterface/AnotherInterface.html | 97 - .../fake/AnotherInterface/hashCode.html | 101 - .../fake/AnotherInterface/noSuchMethod.html | 97 - .../AnotherInterface/operator_equals.html | 97 - .../fake/AnotherInterface/runtimeType.html | 101 - .../fake/AnotherInterface/toString.html | 97 - .../fake/BaseForDocComments-class.html | 335 - .../BaseForDocComments.html | 100 - .../BaseForDocComments/anotherMethod.html | 100 - .../BaseForDocComments/doAwesomeStuff.html | 123 - .../fake/BaseForDocComments/hashCode.html | 104 - .../fake/BaseForDocComments/noSuchMethod.html | 100 - .../BaseForDocComments/operator_equals.html | 100 - .../fake/BaseForDocComments/operator_get.html | 100 - .../fake/BaseForDocComments/runtimeType.html | 104 - .../fake/BaseForDocComments/toString.html | 100 - .../fake/BaseThingy-class.html | 329 - .../fake/BaseThingy/BaseThingy.html | 100 - .../fake/BaseThingy/aImplementingThingy.html | 104 - .../BaseThingy/aImplementingThingyField.html | 99 - .../BaseThingy/aImplementingThingyMethod.html | 100 - .../fake/BaseThingy/hashCode.html | 104 - .../fake/BaseThingy/noSuchMethod.html | 100 - .../fake/BaseThingy/operator_equals.html | 100 - .../fake/BaseThingy/runtimeType.html | 104 - .../fake/BaseThingy/toString.html | 100 - .../fake/BaseThingy2/BaseThingy2.html | 100 - .../fake/BaseThingy2/aImplementingThingy.html | 107 - .../fake/CUSTOM_CLASS-constant.html | 197 - .../fake/CUSTOM_CLASS_PRIVATE-constant.html | 197 - testing/test_package_docs/fake/Callback2.html | 196 - .../ClassWithUnusualProperties-class.html | 425 - .../ClassWithUnusualProperties.html | 110 - .../ClassWithUnusualProperties/aMethod.html | 113 - .../documentedPartialFieldInSubclassOnly.html | 131 - .../explicitGetter.html | 117 - .../explicitGetterImplicitSetter.html | 131 - .../explicitGetterSetter.html | 131 - ...xplicitNonDocumentedInBaseClassGetter.html | 117 - .../explicitSetter.html | 118 - .../finalProperty.html | 112 - .../implicitGetterExplicitSetter.html | 131 - .../implicitReadWrite.html | 109 - .../test_package_docs/fake/Color-class.html | 391 - .../fake/Color/hashCode.html | 109 - .../fake/Color/noSuchMethod.html | 105 - .../fake/Color/operator_equals.html | 105 - .../fake/Color/runtimeType.html | 109 - .../fake/Color/toString.html | 105 - .../fake/ConstantClass-class.html | 323 - .../ConstantClass.isVeryConstant.html | 103 - .../ConstantClass.notConstant.html | 103 - .../fake/ConstantClass/hashCode.html | 104 - .../fake/ConstantClass/noSuchMethod.html | 100 - .../fake/ConstantClass/operator_equals.html | 100 - .../fake/ConstantClass/runtimeType.html | 104 - .../fake/ConstantClass/toString.html | 100 - .../fake/ConstructorTester-class.html | 295 - .../ConstructorTester.fromSomething.html | 98 - .../ConstructorTester/ConstructorTester.html | 98 - .../fake/ConstructorTester/hashCode.html | 102 - .../fake/ConstructorTester/noSuchMethod.html | 98 - .../ConstructorTester/operator_equals.html | 98 - .../fake/ConstructorTester/runtimeType.html | 102 - .../fake/ConstructorTester/toString.html | 98 - .../test_package_docs/fake/Cool-class.html | 301 - testing/test_package_docs/fake/Cool/Cool.html | 98 - .../test_package_docs/fake/Cool/hashCode.html | 102 - .../fake/Cool/noSuchMethod.html | 98 - .../fake/Cool/operator_equals.html | 98 - .../fake/Cool/returnCool.html | 98 - .../fake/Cool/runtimeType.html | 102 - .../test_package_docs/fake/Cool/toString.html | 98 - .../test_package_docs/fake/DOWN-constant.html | 200 - .../fake/DocumentWithATable-class.html | 336 - .../DocumentWithATable.html | 101 - .../fake/DocumentWithATable/aMethod.html | 101 - .../fake/DocumentWithATable/bar-constant.html | 102 - .../fake/DocumentWithATable/foo-constant.html | 102 - .../fake/DocumentWithATable/hashCode.html | 105 - .../fake/DocumentWithATable/noSuchMethod.html | 101 - .../DocumentWithATable/operator_equals.html | 101 - .../fake/DocumentWithATable/runtimeType.html | 105 - .../fake/DocumentWithATable/toString.html | 101 - testing/test_package_docs/fake/Doh-class.html | 318 - testing/test_package_docs/fake/Doh/Doh.html | 98 - .../test_package_docs/fake/Doh/hashCode.html | 102 - .../fake/Doh/noSuchMethod.html | 98 - .../fake/Doh/operator_equals.html | 98 - .../fake/Doh/runtimeType.html | 102 - .../fake/Doh/stackTrace.html | 102 - .../test_package_docs/fake/Doh/toString.html | 98 - .../fake/ExtendsFutureVoid-class.html | 356 - .../ExtendsFutureVoid/ExtendsFutureVoid.html | 102 - .../fake/ExtendsFutureVoid/asStream.html | 102 - .../fake/ExtendsFutureVoid/catchError.html | 102 - .../fake/ExtendsFutureVoid/hashCode.html | 106 - .../fake/ExtendsFutureVoid/noSuchMethod.html | 102 - .../ExtendsFutureVoid/operator_equals.html | 102 - .../fake/ExtendsFutureVoid/runtimeType.html | 106 - .../fake/ExtendsFutureVoid/then.html | 102 - .../fake/ExtendsFutureVoid/timeout.html | 102 - .../fake/ExtendsFutureVoid/toString.html | 102 - .../fake/ExtendsFutureVoid/whenComplete.html | 102 - .../fake/ExtraSpecialList-class.html | 878 -- .../ExtraSpecialList/ExtraSpecialList.html | 155 - .../test_package_docs/fake/FakeProcesses.html | 204 - .../test_package_docs/fake/Foo2-class.html | 332 - .../fake/Foo2/BAR-constant.html | 102 - .../fake/Foo2/BAZ-constant.html | 102 - testing/test_package_docs/fake/Foo2/Foo2.html | 101 - .../test_package_docs/fake/Foo2/hashCode.html | 105 - .../test_package_docs/fake/Foo2/index.html | 100 - .../fake/Foo2/noSuchMethod.html | 101 - .../fake/Foo2/operator_equals.html | 101 - .../fake/Foo2/runtimeType.html | 105 - .../test_package_docs/fake/Foo2/toString.html | 101 - .../fake/GenericTypedef.html | 199 - .../fake/HasGenericWithExtends-class.html | 291 - .../HasGenericWithExtends.html | 97 - .../fake/HasGenericWithExtends/hashCode.html | 101 - .../HasGenericWithExtends/noSuchMethod.html | 97 - .../operator_equals.html | 97 - .../HasGenericWithExtends/runtimeType.html | 101 - .../fake/HasGenericWithExtends/toString.html | 97 - .../fake/HasGenerics-class.html | 328 - .../fake/HasGenerics/HasGenerics.html | 101 - .../fake/HasGenerics/convertToMap.html | 104 - .../fake/HasGenerics/doStuff.html | 101 - .../fake/HasGenerics/hashCode.html | 105 - .../fake/HasGenerics/noSuchMethod.html | 101 - .../fake/HasGenerics/operator_equals.html | 101 - .../fake/HasGenerics/returnX.html | 101 - .../fake/HasGenerics/returnZ.html | 101 - .../fake/HasGenerics/runtimeType.html | 105 - .../fake/HasGenerics/toString.html | 101 - .../fake/HasPragma-class.html | 291 - .../fake/HasPragma/HasPragma.html | 97 - .../fake/HasPragma/hashCode.html | 101 - .../fake/HasPragma/noSuchMethod.html | 97 - .../fake/HasPragma/operator_equals.html | 97 - .../fake/HasPragma/runtimeType.html | 101 - .../fake/HasPragma/toString.html | 97 - .../fake/ImplementingThingy-class.html | 334 - .../ImplementingThingy.html | 100 - .../fake/ImplementingThingy2-class.html | 331 - .../ImplementingThingy2.html | 100 - .../fake/ImplementsFutureVoid-class.html | 355 - .../ImplementsFutureVoid.html | 102 - .../fake/ImplementsFutureVoid/asStream.html | 102 - .../fake/ImplementsFutureVoid/catchError.html | 102 - .../fake/ImplementsFutureVoid/hashCode.html | 106 - .../ImplementsFutureVoid/noSuchMethod.html | 102 - .../ImplementsFutureVoid/operator_equals.html | 102 - .../ImplementsFutureVoid/runtimeType.html | 106 - .../fake/ImplementsFutureVoid/then.html | 102 - .../fake/ImplementsFutureVoid/timeout.html | 102 - .../fake/ImplementsFutureVoid/toString.html | 102 - .../ImplementsFutureVoid/whenComplete.html | 102 - .../ImplicitProperties.html | 102 - .../explicitGetterImplicitSetter.html | 104 - .../explicitGetterSetterForInheriting.html | 123 - .../explicitPartiallyDocumentedField.html | 123 - .../ImplicitProperties/forInheriting.html | 104 - .../fake/ImplicitProperties/hashCode.html | 106 - .../implicitGetterExplicitSetter.html | 104 - .../fake/ImplicitProperties/noSuchMethod.html | 102 - .../ImplicitProperties/operator_equals.html | 102 - .../fake/ImplicitProperties/runtimeType.html | 106 - .../fake/ImplicitProperties/toString.html | 102 - .../fake/InheritingClassOne-class.html | 298 - .../InheritingClassOne.html | 98 - .../fake/InheritingClassOne/aMethod.html | 98 - .../fake/InheritingClassOne/hashCode.html | 102 - .../fake/InheritingClassOne/noSuchMethod.html | 98 - .../InheritingClassOne/operator_equals.html | 98 - .../fake/InheritingClassOne/runtimeType.html | 102 - .../fake/InheritingClassOne/toString.html | 98 - .../fake/InheritingClassTwo-class.html | 298 - .../InheritingClassTwo.html | 98 - .../fake/InheritingClassTwo/aMethod.html | 98 - .../fake/InheritingClassTwo/hashCode.html | 102 - .../fake/InheritingClassTwo/noSuchMethod.html | 98 - .../InheritingClassTwo/operator_equals.html | 98 - .../fake/InheritingClassTwo/runtimeType.html | 102 - .../fake/InheritingClassTwo/toString.html | 98 - .../fake/Interface-class.html | 303 - .../fake/Interface/Interface.html | 97 - .../fake/Interface/hashCode.html | 101 - .../fake/Interface/noSuchMethod.html | 97 - .../fake/Interface/operator_equals.html | 97 - .../fake/Interface/runtimeType.html | 101 - .../fake/Interface/toString.html | 97 - .../fake/LongFirstLine-class.html | 543 - .../fake/LongFirstLine/ANSWER-constant.html | 122 - .../LongFirstLine.fromHasGenerics.html | 121 - .../LongFirstLine/LongFirstLine.fromMap.html | 125 - .../fake/LongFirstLine/LongFirstLine.html | 129 - .../fake/LongFirstLine/THING-constant.html | 122 - .../fake/LongFirstLine/aStringProperty.html | 123 - .../fake/LongFirstLine/dynamicGetter.html | 128 - .../fake/LongFirstLine/meaningOfLife.html | 123 - .../fake/LongFirstLine/noParams.html | 129 - .../fake/LongFirstLine/onlySetter.html | 129 - .../fake/LongFirstLine/operator_multiply.html | 124 - .../fake/LongFirstLine/operator_plus.html | 124 - .../fake/LongFirstLine/optionalParams.html | 124 - .../fake/LongFirstLine/returnString.html | 124 - .../fake/LongFirstLine/staticGetter.html | 125 - .../LongFirstLine/staticMethodNoParams.html | 125 - .../staticMethodReturnsVoid.html | 124 - .../fake/LongFirstLine/staticOnlySetter.html | 126 - .../fake/LongFirstLine/twoParams.html | 124 - .../fake/LotsAndLotsOfParameters.html | 199 - .../fake/MIEEBase-class.html | 316 - .../fake/MIEEBase/MIEEBase.html | 98 - .../fake/MIEEMixin-class.html | 316 - .../fake/MIEEMixin/MIEEMixin.html | 98 - .../fake/MIEEMixin/operator_put.html | 98 - .../fake/MIEEMixinWithOverride-class.html | 318 - .../MIEEMixinWithOverride.html | 98 - .../MIEEMixinWithOverride/operator_put.html | 98 - .../fake/MIEEThing-class.html | 310 - .../fake/MIEEThing/MIEEThing.html | 98 - .../fake/MIEEThing/hashCode.html | 102 - .../fake/MIEEThing/noSuchMethod.html | 98 - .../fake/MIEEThing/operator_equals.html | 98 - .../fake/MIEEThing/operator_put.html | 98 - .../fake/MIEEThing/runtimeType.html | 102 - .../fake/MIEEThing/toString.html | 98 - .../test_package_docs/fake/MixMeIn-class.html | 303 - .../fake/MixMeIn/MixMeIn.html | 97 - .../fake/MixMeIn/hashCode.html | 101 - .../fake/MixMeIn/noSuchMethod.html | 97 - .../fake/MixMeIn/operator_equals.html | 97 - .../fake/MixMeIn/runtimeType.html | 101 - .../fake/MixMeIn/toString.html | 97 - .../fake/NAME_SINGLEUNDERSCORE-constant.html | 197 - .../NAME_WITH_TWO_UNDERSCORES-constant.html | 197 - .../fake/NewGenericTypedef.html | 199 - .../fake/NotAMixin/hashCode.html | 102 - .../fake/NotAMixin/noSuchMethod.html | 98 - .../fake/NotAMixin/operator_equals.html | 98 - .../fake/NotAMixin/runtimeType.html | 102 - .../fake/NotAMixin/superString.html | 102 - .../fake/NotAMixin/toString.html | 98 - .../test_package_docs/fake/Oops-class.html | 314 - testing/test_package_docs/fake/Oops/Oops.html | 98 - .../test_package_docs/fake/Oops/hashCode.html | 102 - .../test_package_docs/fake/Oops/message.html | 97 - .../fake/Oops/noSuchMethod.html | 98 - .../fake/Oops/operator_equals.html | 98 - .../fake/Oops/runtimeType.html | 102 - .../test_package_docs/fake/Oops/toString.html | 98 - .../fake/OperatorReferenceClass-class.html | 291 - .../OperatorReferenceClass.html | 97 - .../fake/OperatorReferenceClass/hashCode.html | 101 - .../OperatorReferenceClass/noSuchMethod.html | 97 - .../operator_equals.html | 102 - .../OperatorReferenceClass/runtimeType.html | 101 - .../fake/OperatorReferenceClass/toString.html | 97 - .../fake/OtherGenericsThing-class.html | 298 - .../OtherGenericsThing.html | 98 - .../fake/OtherGenericsThing/convert.html | 98 - .../fake/OtherGenericsThing/hashCode.html | 102 - .../fake/OtherGenericsThing/noSuchMethod.html | 98 - .../OtherGenericsThing/operator_equals.html | 98 - .../fake/OtherGenericsThing/runtimeType.html | 102 - .../fake/OtherGenericsThing/toString.html | 98 - .../test_package_docs/fake/PI-constant.html | 200 - .../fake/ReferringClass-class.html | 300 - .../fake/ReferringClass/ReferringClass.html | 98 - .../fake/ReferringClass/hashCode.html | 102 - .../fake/ReferringClass/noSuchMethod.html | 98 - .../notAMethodFromPrivateClass.html | 103 - .../fake/ReferringClass/operator_equals.html | 98 - .../fake/ReferringClass/runtimeType.html | 102 - .../fake/ReferringClass/toString.html | 98 - .../fake/SpecialList-class.html | 881 -- .../fake/SpecialList/SpecialList.html | 155 - .../fake/SpecialList/add.html | 155 - .../fake/SpecialList/addAll.html | 155 - .../fake/SpecialList/any.html | 155 - .../fake/SpecialList/asMap.html | 155 - .../fake/SpecialList/cast.html | 155 - .../fake/SpecialList/clear.html | 155 - .../fake/SpecialList/contains.html | 155 - .../fake/SpecialList/elementAt.html | 155 - .../fake/SpecialList/every.html | 155 - .../fake/SpecialList/expand.html | 155 - .../fake/SpecialList/fillRange.html | 155 - .../fake/SpecialList/first.html | 170 - .../fake/SpecialList/firstWhere.html | 155 - .../fake/SpecialList/fold.html | 155 - .../fake/SpecialList/followedBy.html | 155 - .../fake/SpecialList/forEach.html | 155 - .../fake/SpecialList/getRange.html | 155 - .../fake/SpecialList/hashCode.html | 159 - .../fake/SpecialList/indexOf.html | 155 - .../fake/SpecialList/indexWhere.html | 155 - .../fake/SpecialList/insert.html | 155 - .../fake/SpecialList/insertAll.html | 155 - .../fake/SpecialList/isEmpty.html | 159 - .../fake/SpecialList/isNotEmpty.html | 159 - .../fake/SpecialList/iterator.html | 159 - .../fake/SpecialList/join.html | 155 - .../fake/SpecialList/last.html | 170 - .../fake/SpecialList/lastIndexOf.html | 155 - .../fake/SpecialList/lastIndexWhere.html | 155 - .../fake/SpecialList/lastWhere.html | 155 - .../fake/SpecialList/length.html | 170 - .../fake/SpecialList/map.html | 155 - .../fake/SpecialList/noSuchMethod.html | 155 - .../fake/SpecialList/operator_equals.html | 155 - .../fake/SpecialList/operator_get.html | 155 - .../fake/SpecialList/operator_plus.html | 155 - .../fake/SpecialList/operator_put.html | 155 - .../fake/SpecialList/reduce.html | 155 - .../fake/SpecialList/remove.html | 155 - .../fake/SpecialList/removeAt.html | 155 - .../fake/SpecialList/removeLast.html | 155 - .../fake/SpecialList/removeRange.html | 155 - .../fake/SpecialList/removeWhere.html | 155 - .../fake/SpecialList/replaceRange.html | 155 - .../fake/SpecialList/retainWhere.html | 155 - .../fake/SpecialList/reversed.html | 159 - .../fake/SpecialList/runtimeType.html | 159 - .../fake/SpecialList/setAll.html | 155 - .../fake/SpecialList/setRange.html | 155 - .../fake/SpecialList/shuffle.html | 155 - .../fake/SpecialList/single.html | 159 - .../fake/SpecialList/singleWhere.html | 155 - .../fake/SpecialList/skip.html | 155 - .../fake/SpecialList/skipWhile.html | 155 - .../fake/SpecialList/sort.html | 155 - .../fake/SpecialList/sublist.html | 155 - .../fake/SpecialList/take.html | 155 - .../fake/SpecialList/takeWhile.html | 155 - .../fake/SpecialList/toList.html | 155 - .../fake/SpecialList/toSet.html | 155 - .../fake/SpecialList/toString.html | 155 - .../fake/SpecialList/where.html | 155 - .../fake/SpecialList/whereType.html | 155 - .../fake/SubForDocComments-class.html | 345 - .../SubForDocComments/SubForDocComments.html | 101 - .../fake/SubForDocComments/localMethod.html | 104 - .../fake/SuperAwesomeClass-class.html | 336 - .../SuperAwesomeClass/SuperAwesomeClass.html | 100 - .../fake/SuperAwesomeClass/fly.html | 104 - .../fake/SuperAwesomeClass/hashCode.html | 104 - .../fake/SuperAwesomeClass/noSuchMethod.html | 100 - .../SuperAwesomeClass/operator_equals.html | 100 - .../SuperAwesomeClass/operator_minus.html | 100 - .../fake/SuperAwesomeClass/powers.html | 102 - .../fake/SuperAwesomeClass/runtimeType.html | 104 - .../fake/SuperAwesomeClass/toString.html | 100 - .../fake/TypedefUsingClass-class.html | 297 - .../TypedefUsingClass/TypedefUsingClass.html | 98 - .../fake/TypedefUsingClass/hashCode.html | 102 - .../fake/TypedefUsingClass/noSuchMethod.html | 98 - .../TypedefUsingClass/operator_equals.html | 98 - .../fake/TypedefUsingClass/runtimeType.html | 102 - .../fake/TypedefUsingClass/toString.html | 98 - .../fake/TypedefUsingClass/x.html | 97 - .../test_package_docs/fake/UP-constant.html | 201 - .../test_package_docs/fake/VoidCallback.html | 196 - .../WithGetterAndSetter.html | 98 - .../fake/WithGetterAndSetter/hashCode.html | 102 - .../fake/WithGetterAndSetter/lengthX.html | 121 - .../WithGetterAndSetter/noSuchMethod.html | 98 - .../WithGetterAndSetter/operator_equals.html | 98 - .../fake/WithGetterAndSetter/runtimeType.html | 102 - .../fake/WithGetterAndSetter/toString.html | 98 - .../test_package_docs/fake/ZERO-constant.html | 201 - .../test_package_docs/fake/aCoolVariable.html | 199 - .../fake/aVoidParameter.html | 199 - .../test_package_docs/fake/addCallback.html | 199 - .../test_package_docs/fake/addCallback2.html | 199 - .../fake/bulletDoced-constant.html | 202 - .../fake/complicatedReturn.html | 203 - .../test_package_docs/fake/dynamicGetter.html | 203 - .../test_package_docs/fake/fake-library.html | 1109 -- .../fake/functionWithFunctionParameters.html | 200 - .../fake/getterSetterNodocGetter.html | 204 - .../fake/getterSetterNodocSetter.html | 203 - .../fake/greatAnnotation-constant.html | 200 - .../fake/greatestAnnotation-constant.html | 200 - .../fake/importantComputations.html | 199 - .../fake/incorrectDocReference-constant.html | 200 - .../test_package_docs/fake/justGetter.html | 203 - .../test_package_docs/fake/justSetter.html | 204 - .../fake/mapWithDynamicKeys.html | 196 - .../test_package_docs/fake/meaningOfLife.html | 199 - .../test_package_docs/fake/mustGetThis.html | 203 - .../test_package_docs/fake/myCoolTypedef.html | 196 - .../fake/myGenericFunction.html | 199 - .../fake/myMap-constant.html | 200 - .../onlyPositionalWithNoDefaultNoType.html | 204 - .../test_package_docs/fake/paintImage1.html | 199 - .../test_package_docs/fake/paintImage2.html | 199 - .../fake/paramFromAnotherLib.html | 199 - .../fake/paramOfFutureOrNull.html | 199 - .../fake/required-constant.html | 197 - .../fake/returningFutureVoid.html | 199 - testing/test_package_docs/fake/setAndGet.html | 217 - testing/test_package_docs/fake/short.html | 200 - .../fake/simpleProperty.html | 199 - testing/test_package_docs/fake/soIntense.html | 200 - ...testingCodeSyntaxInOneLiners-constant.html | 200 - .../fake/thisIsAlsoAsync.html | 199 - .../test_package_docs/fake/thisIsAsync.html | 199 - .../fake/thisIsFutureOr.html | 199 - .../fake/thisIsFutureOrNull.html | 199 - .../fake/thisIsFutureOrT.html | 199 - .../fake/topLevelFunction.html | 214 - .../fake/typeParamOfFutureOr.html | 199 - .../fake/useSomethingInAnotherPackage.html | 196 - .../fake/useSomethingInTheSdk.html | 196 - testing/test_package_docs/index.html | 216 - testing/test_package_docs/index.json | 9494 ----------------- .../is_deprecated/is_deprecated-library.html | 111 - .../reexport_one/SomeOtherClass-class.html | 181 - .../SomeOtherClass/SomeOtherClass.html | 97 - .../reexport_one/SomeOtherClass/hashCode.html | 101 - .../SomeOtherClass/noSuchMethod.html | 97 - .../SomeOtherClass/operator_equals.html | 97 - .../SomeOtherClass/runtimeType.html | 101 - .../reexport_one/SomeOtherClass/toString.html | 97 - .../reexport_one/reexport_one-library.html | 147 - .../reexport_two/AUnicornClass-class.html | 181 - .../AUnicornClass/AUnicornClass.html | 97 - .../reexport_two/AUnicornClass/hashCode.html | 101 - .../AUnicornClass/noSuchMethod.html | 97 - .../AUnicornClass/operator_equals.html | 97 - .../AUnicornClass/runtimeType.html | 101 - .../reexport_two/AUnicornClass/toString.html | 97 - .../reexport_two/SomeClass-class.html | 181 - .../reexport_two/SomeClass/SomeClass.html | 97 - .../reexport_two/SomeClass/hashCode.html | 101 - .../reexport_two/SomeClass/noSuchMethod.html | 97 - .../SomeClass/operator_equals.html | 97 - .../reexport_two/SomeClass/runtimeType.html | 101 - .../reexport_two/SomeClass/toString.html | 97 - .../reexport_two/YetAnotherClass-class.html | 181 - .../YetAnotherClass/YetAnotherClass.html | 97 - .../YetAnotherClass/hashCode.html | 101 - .../YetAnotherClass/noSuchMethod.html | 97 - .../YetAnotherClass/operator_equals.html | 97 - .../YetAnotherClass/runtimeType.html | 101 - .../YetAnotherClass/toString.html | 97 - .../reexport_two/reexport_two-library.html | 147 - .../test_package_docs/static-assets/URI.js | 56 - .../static-assets/css/bootstrap.css | 6584 ------------ .../static-assets/css/bootstrap.css.map | 1 - .../static-assets/css/bootstrap.min.css | 5 - .../static-assets/favicon.png | Bin 916 -> 0 bytes .../static-assets/github.css | 99 - .../static-assets/highlight.pack.js | 2 - .../static-assets/play_button.svg | 1 - .../test_package_docs/static-assets/readme.md | 19 - .../test_package_docs/static-assets/script.js | 200 - .../static-assets/sdk_footer_text.html | 4 - .../static-assets/styles.css | 922 -- .../static-assets/typeahead.bundle.min.js | 8 - .../Whataclass-class.html | 182 - .../Whataclass/Whataclass.html | 97 - .../Whataclass/hashCode.html | 101 - .../Whataclass/noSuchMethod.html | 97 - .../Whataclass/operator_equals.html | 97 - .../Whataclass/runtimeType.html | 101 - .../Whataclass/toString.html | 97 - .../Whataclass2-class.html | 182 - .../Whataclass2/Whataclass2.html | 97 - .../Whataclass2/hashCode.html | 101 - .../Whataclass2/noSuchMethod.html | 97 - .../Whataclass2/operator_equals.html | 97 - .../Whataclass2/runtimeType.html | 101 - .../Whataclass2/toString.html | 97 - .../test_package_imported.main-library.html | 129 - .../topics/Superb-topic.html | 127 - .../topics/Unreal-topic.html | 149 - .../two_exports/BaseClass-class.html | 208 - .../two_exports/BaseClass/BaseClass.html | 98 - .../two_exports/ExtendingClass-class.html | 210 - .../ExtendingClass/ExtendingClass.html | 98 - .../two_exports/topLevelVariable.html | 89 - .../two_exports/two_exports-library.html | 145 - .../anonymous_library-library.html | 2 + .../anonymous_library/doesStuff.html | 1 + .../another_anonymous_lib-library.html | 2 + .../another_anonymous_lib/greeting.html | 1 + .../IAmAClassWithCategories-class.html | 1 + .../categoriesExported-library.html | 2 + .../code_in_comments-library.html | 2 + .../css/css-library.html | 2 + .../css/theOnlyThingInTheLibrary.html | 1 + .../ex/Animal-class.html | 1 + .../ex/AnotherParameterizedClass-class.html | 1 + .../test_package_docs_dev/ex/Apple-class.html | 1 + testing/test_package_docs_dev/ex/B-class.html | 1 + .../ex/COLOR-constant.html | 1 + .../ex/COLOR_GREEN-constant.html | 1 + .../ex/COLOR_ORANGE-constant.html | 1 + .../ex/COMPLEX_COLOR-constant.html | 1 + .../test_package_docs_dev/ex/Cat-class.html | 1 + .../ex/CatString-class.html | 1 + .../ex/ConstantCat-class.html | 1 + .../ex/Deprecated-class.html | 1 + .../test_package_docs_dev/ex/Dog-class.html | 1 + testing/test_package_docs_dev/ex/E-class.html | 1 + .../ex/ExtendedShortName-class.html | 1 + testing/test_package_docs_dev/ex/F-class.html | 1 + .../ex/ForAnnotation-class.html | 1 + .../ex/HasAnnotation-class.html | 1 + .../ex/Helper-class.html | 1 + .../test_package_docs_dev/ex/Klass-class.html | 1 + .../ex/MY_CAT-constant.html | 1 + .../ex/MyError-class.html | 1 + .../ex/MyErrorImplements-class.html | 1 + .../ex/MyException-class.html | 1 + .../ex/MyExceptionImplements-class.html | 1 + .../ex/PRETTY_COLORS-constant.html | 1 + .../ex/ParameterizedClass-class.html | 1 + .../ex/ParameterizedTypedef.html | 1 + .../PublicClassExtendsPrivateClass-class.html | 1 + ...ClassImplementsPrivateInterface-class.html | 1 + .../ex/ShapeType-class.html | 1 + .../ex/ShortName-class.html | 1 + .../ex/SpecializedDuration-class.html | 1 + .../ex/TemplatedClass-class.html | 1 + .../ex/TemplatedInterface-class.html | 1 + .../TypedFunctionsWithoutTypedefs-class.html | 1 + .../ex/WithGeneric-class.html | 1 + .../ex/WithGenericSub-class.html | 1 + .../ex/aComplexTypedef.html | 1 + .../ex/aThingToDo-class.html | 1 + .../ex/deprecated-constant.html | 1 + .../ex/deprecatedField.html | 1 + .../ex/deprecatedGetter.html | 1 + .../ex/deprecatedSetter.html | 1 + .../test_package_docs_dev/ex/ex-library.html | 2 + .../test_package_docs_dev/ex/function1.html | 1 + .../ex/genericFunction.html | 1 + .../ex/incorrectDocReference-constant.html | 1 + .../incorrectDocReferenceFromEx-constant.html | 1 + testing/test_package_docs_dev/ex/number.html | 1 + .../ex/processMessage.html | 1 + testing/test_package_docs_dev/ex/y.html | 1 + .../fake/ABaseClass-class.html | 8 + .../fake/AClassUsingASuperMixin-class.html | 8 + .../fake/AClassUsingNewStyleMixin-class.html} | 70 +- .../AClassUsingNewStyleMixin.html} | 30 +- .../fake/AClassWithFancyProperties-class.html | 8 + .../fake/AMixinCallingSuper-class.html | 8 + .../fake/ATypeTakingClass-class.html | 8 + .../fake/ATypeTakingClassMixedIn-class.html | 8 + .../fake/Annotation-class.html | 8 + .../fake/AnotherInterface-class.html | 8 + .../fake/BaseForDocComments-class.html | 8 + .../fake/BaseThingy-class.html | 8 + .../fake/BaseThingy2-class.html | 8 + .../fake/CUSTOM_CLASS-constant.html | 8 + .../fake/CUSTOM_CLASS_PRIVATE-constant.html | 8 + .../test_package_docs_dev/fake/Callback2.html | 8 + .../ClassWithUnusualProperties-class.html | 8 + .../fake/Color-class.html | 8 + .../fake/ConstantClass-class.html | 8 + .../fake/ConstructorTester-class.html | 8 + .../fake/Cool-class.html | 8 + .../fake/DOWN-constant.html | 8 + .../fake/DocumentWithATable-class.html | 8 + .../test_package_docs_dev/fake/Doh-class.html | 8 + .../fake/ExtendsFutureVoid-class.html | 8 + .../fake/ExtraSpecialList-class.html | 10 +- .../fake/FakeProcesses.html | 8 + .../fake/Foo2-class.html | 8 + .../fake/GenericClass-class.html} | 109 +- .../fake/GenericClass/GenericClass.html} | 46 +- .../fake/GenericClass}/hashCode.html | 38 +- .../fake/GenericClass/member.html | 101 + .../fake/GenericClass}/noSuchMethod.html | 38 +- .../fake/GenericClass}/operator_equals.html | 38 +- .../fake/GenericClass/overrideByBoth.html | 104 + .../GenericClass/overrideByEverything.html | 104 + .../GenericClass/overrideByGenericMixin.html} | 55 +- .../GenericClass/overrideByModifierClass.html | 104 + .../fake/GenericClass}/runtimeType.html | 38 +- .../fake/GenericClass}/toString.html | 38 +- .../fake/GenericMixin-mixin.html} | 118 +- .../fake/GenericMixin/GenericMixin.html | 103 + .../fake/GenericMixin/mixinMember.html | 102 + .../fake/GenericMixin/overrideByBoth.html | 105 + .../GenericMixin/overrideByEverything.html | 105 + .../GenericMixin/overrideByGenericMixin.html | 105 + .../fake/GenericTypedef.html | 8 + .../fake/HasGenericWithExtends-class.html | 8 + .../fake/HasGenerics-class.html | 8 + .../fake/HasPragma-class.html | 8 + .../fake/ImplementingThingy-class.html | 8 + .../fake/ImplementingThingy2-class.html | 8 + .../fake/ImplementsFutureVoid-class.html | 8 + .../fake/ImplicitProperties-class.html | 8 + .../fake/InheritingClassOne-class.html | 8 + .../fake/InheritingClassTwo-class.html | 8 + .../fake/Interface-class.html | 8 + .../fake/LongFirstLine-class.html | 8 + .../fake/LotsAndLotsOfParameters.html | 8 + .../fake/MIEEBase-class.html | 8 + .../fake/MIEEMixin-class.html | 8 + .../fake/MIEEMixinWithOverride-class.html | 8 + .../fake/MIEEThing-class.html | 8 + .../fake/MixMeIn-class.html | 8 + .../fake/ModifierClass-class.html} | 140 +- .../fake/ModifierClass/ModifierClass.html} | 51 +- .../fake/ModifierClass/modifierMember.html} | 49 +- .../fake/ModifierClass/overrideByBoth.html | 105 + .../ModifierClass/overrideByEverything.html | 105 + .../overrideByModifierClass.html | 105 + .../fake/NAME_SINGLEUNDERSCORE-constant.html | 8 + .../NAME_WITH_TWO_UNDERSCORES-constant.html | 8 + .../fake/NewGenericTypedef.html | 8 + .../NewStyleMixinCallingSuper-mixin.html} | 53 +- .../NewStyleMixinCallingSuper.html} | 28 +- .../superString.html | 26 +- .../fake/NotAMixin-class.html | 9 + .../fake/Oops-class.html | 8 + .../fake/OperatorReferenceClass-class.html | 8 + .../fake/OtherGenericsThing-class.html | 8 + .../fake/PI-constant.html | 8 + .../fake/ReferringClass-class.html | 8 + .../fake/SpecialList-class.html | 8 + .../fake/SubForDocComments-class.html | 8 + .../fake/SuperAwesomeClass-class.html | 8 + .../fake/TypeInferenceMixedIn-class.html | 381 + .../TypeInferenceMixedIn.html | 104 + .../overrideByEverything.html | 106 + .../fake/TypedefUsingClass-class.html | 8 + .../fake/UP-constant.html | 8 + .../fake/VoidCallback.html | 8 + .../fake/WithGetterAndSetter-class.html | 8 + .../fake/ZERO-constant.html | 8 + .../fake/aCoolVariable.html | 8 + .../fake/aVoidParameter.html | 8 + .../fake/addCallback.html | 8 + .../fake/addCallback2.html | 8 + .../fake/bulletDoced-constant.html | 8 + .../fake/complicatedReturn.html | 8 + .../fake/dynamicGetter.html | 8 + .../fake/fake-library.html | 51 + .../fake/functionWithFunctionParameters.html | 8 + .../fake/getterSetterNodocGetter.html | 8 + .../fake/getterSetterNodocSetter.html | 8 + .../fake/greatAnnotation-constant.html | 8 + .../fake/greatestAnnotation-constant.html | 8 + .../fake/importantComputations.html | 8 + .../fake/incorrectDocReference-constant.html | 8 + .../fake/justGetter.html | 8 + .../fake/justSetter.html | 8 + .../fake/mapWithDynamicKeys.html | 8 + .../fake/meaningOfLife.html | 8 + .../fake/mustGetThis.html | 8 + .../fake/myCoolTypedef.html | 8 + .../fake/myGenericFunction.html | 8 + .../fake/myMap-constant.html | 8 + .../onlyPositionalWithNoDefaultNoType.html | 8 + .../fake/paintImage1.html | 8 + .../fake/paintImage2.html | 8 + .../fake/paramFromAnotherLib.html | 8 + .../fake/paramOfFutureOrNull.html | 8 + .../fake/required-constant.html | 8 + .../fake/returningFutureVoid.html | 8 + .../test_package_docs_dev/fake/setAndGet.html | 8 + testing/test_package_docs_dev/fake/short.html | 8 + .../fake/simpleProperty.html | 8 + .../test_package_docs_dev/fake/soIntense.html | 8 + ...testingCodeSyntaxInOneLiners-constant.html | 8 + .../fake/thisIsAlsoAsync.html | 8 + .../fake/thisIsAsync.html | 8 + .../fake/thisIsFutureOr.html | 8 + .../fake/thisIsFutureOrNull.html | 8 + .../fake/thisIsFutureOrT.html | 8 + .../fake/topLevelFunction.html | 8 + .../fake/typeParamOfFutureOr.html | 8 + .../fake/useSomethingInAnotherPackage.html | 8 + .../fake/useSomethingInTheSdk.html | 8 + testing/test_package_docs_dev/index.json | 352 + .../is_deprecated/is_deprecated-library.html | 2 + .../reexport_one/SomeOtherClass-class.html | 1 + .../reexport_one/reexport_one-library.html | 2 + .../reexport_two/AUnicornClass-class.html | 1 + .../reexport_two/SomeClass-class.html | 1 + .../reexport_two/YetAnotherClass-class.html | 1 + .../reexport_two/reexport_two-library.html | 2 + .../Whataclass-class.html | 1 + .../Whataclass2-class.html | 1 + .../test_package_imported.main-library.html | 2 + .../topics/Superb-topic.html | 2 + .../topics/Unreal-topic.html | 2 + .../two_exports/BaseClass-class.html | 1 + .../two_exports/ExtendingClass-class.html | 1 + .../two_exports/topLevelVariable.html | 1 + .../two_exports/two_exports-library.html | 2 + 1084 files changed, 3790 insertions(+), 137044 deletions(-) delete mode 100644 testing/test_package_docs/__404error.html delete mode 100644 testing/test_package_docs/anonymous_library/anonymous_library-library.html delete mode 100644 testing/test_package_docs/anonymous_library/doesStuff.html delete mode 100644 testing/test_package_docs/another_anonymous_lib/another_anonymous_lib-library.html delete mode 100644 testing/test_package_docs/another_anonymous_lib/greeting.html delete mode 100644 testing/test_package_docs/categories.json delete mode 100644 testing/test_package_docs/categoriesExported/IAmAClassWithCategories-class.html delete mode 100644 testing/test_package_docs/categoriesExported/IAmAClassWithCategories/IAmAClassWithCategories.html delete mode 100644 testing/test_package_docs/categoriesExported/IAmAClassWithCategories/hashCode.html delete mode 100644 testing/test_package_docs/categoriesExported/IAmAClassWithCategories/noSuchMethod.html delete mode 100644 testing/test_package_docs/categoriesExported/IAmAClassWithCategories/operator_equals.html delete mode 100644 testing/test_package_docs/categoriesExported/IAmAClassWithCategories/runtimeType.html delete mode 100644 testing/test_package_docs/categoriesExported/IAmAClassWithCategories/toString.html delete mode 100644 testing/test_package_docs/categoriesExported/categoriesExported-library.html delete mode 100644 testing/test_package_docs/code_in_comments/code_in_comments-library.html delete mode 100644 testing/test_package_docs/css/css-library.html delete mode 100644 testing/test_package_docs/css/theOnlyThingInTheLibrary.html delete mode 100644 testing/test_package_docs/ex/Animal-class.html delete mode 100644 testing/test_package_docs/ex/Animal/hashCode.html delete mode 100644 testing/test_package_docs/ex/Animal/noSuchMethod.html delete mode 100644 testing/test_package_docs/ex/Animal/operator_equals.html delete mode 100644 testing/test_package_docs/ex/Animal/runtimeType.html delete mode 100644 testing/test_package_docs/ex/Animal/toString.html delete mode 100644 testing/test_package_docs/ex/AnotherParameterizedClass-class.html delete mode 100644 testing/test_package_docs/ex/AnotherParameterizedClass/AnotherParameterizedClass.html delete mode 100644 testing/test_package_docs/ex/AnotherParameterizedClass/hashCode.html delete mode 100644 testing/test_package_docs/ex/AnotherParameterizedClass/noSuchMethod.html delete mode 100644 testing/test_package_docs/ex/AnotherParameterizedClass/operator_equals.html delete mode 100644 testing/test_package_docs/ex/AnotherParameterizedClass/runtimeType.html delete mode 100644 testing/test_package_docs/ex/AnotherParameterizedClass/toString.html delete mode 100644 testing/test_package_docs/ex/Apple-class.html delete mode 100644 testing/test_package_docs/ex/Apple/Apple.fromString.html delete mode 100644 testing/test_package_docs/ex/Apple/Apple.html delete mode 100644 testing/test_package_docs/ex/Apple/fieldWithTypedef.html delete mode 100644 testing/test_package_docs/ex/Apple/hashCode.html delete mode 100644 testing/test_package_docs/ex/Apple/isGreaterThan.html delete mode 100644 testing/test_package_docs/ex/Apple/m.html delete mode 100644 testing/test_package_docs/ex/Apple/m1.html delete mode 100644 testing/test_package_docs/ex/Apple/methodWithTypedefParam.html delete mode 100644 testing/test_package_docs/ex/Apple/n-constant.html delete mode 100644 testing/test_package_docs/ex/Apple/noSuchMethod.html delete mode 100644 testing/test_package_docs/ex/Apple/operator_equals.html delete mode 100644 testing/test_package_docs/ex/Apple/operator_multiply.html delete mode 100644 testing/test_package_docs/ex/Apple/paramFromExportLib.html delete mode 100644 testing/test_package_docs/ex/Apple/printMsg.html delete mode 100644 testing/test_package_docs/ex/Apple/runtimeType.html delete mode 100644 testing/test_package_docs/ex/Apple/s.html delete mode 100644 testing/test_package_docs/ex/Apple/string.html delete mode 100644 testing/test_package_docs/ex/Apple/toString.html delete mode 100644 testing/test_package_docs/ex/Apple/whataclass.html delete mode 100644 testing/test_package_docs/ex/B-class.html delete mode 100644 testing/test_package_docs/ex/B/B.html delete mode 100644 testing/test_package_docs/ex/B/abstractMethod.html delete mode 100644 testing/test_package_docs/ex/B/autoCompress.html delete mode 100644 testing/test_package_docs/ex/B/doNothing.html delete mode 100644 testing/test_package_docs/ex/B/isImplemented.html delete mode 100644 testing/test_package_docs/ex/B/list.html delete mode 100644 testing/test_package_docs/ex/B/m1.html delete mode 100644 testing/test_package_docs/ex/B/s.html delete mode 100644 testing/test_package_docs/ex/B/writeMsg.html delete mode 100644 testing/test_package_docs/ex/COLOR-constant.html delete mode 100644 testing/test_package_docs/ex/COLOR_GREEN-constant.html delete mode 100644 testing/test_package_docs/ex/COLOR_ORANGE-constant.html delete mode 100644 testing/test_package_docs/ex/COMPLEX_COLOR-constant.html delete mode 100644 testing/test_package_docs/ex/Cat-class.html delete mode 100644 testing/test_package_docs/ex/Cat/Cat.html delete mode 100644 testing/test_package_docs/ex/Cat/abstractMethod.html delete mode 100644 testing/test_package_docs/ex/Cat/hashCode.html delete mode 100644 testing/test_package_docs/ex/Cat/isImplemented.html delete mode 100644 testing/test_package_docs/ex/Cat/noSuchMethod.html delete mode 100644 testing/test_package_docs/ex/Cat/operator_equals.html delete mode 100644 testing/test_package_docs/ex/Cat/runtimeType.html delete mode 100644 testing/test_package_docs/ex/Cat/toString.html delete mode 100644 testing/test_package_docs/ex/CatString-class.html delete mode 100644 testing/test_package_docs/ex/CatString/CatString.html delete mode 100644 testing/test_package_docs/ex/CatString/clear.html delete mode 100644 testing/test_package_docs/ex/CatString/hashCode.html delete mode 100644 testing/test_package_docs/ex/CatString/isEmpty.html delete mode 100644 testing/test_package_docs/ex/CatString/isNotEmpty.html delete mode 100644 testing/test_package_docs/ex/CatString/length.html delete mode 100644 testing/test_package_docs/ex/CatString/noSuchMethod.html delete mode 100644 testing/test_package_docs/ex/CatString/operator_equals.html delete mode 100644 testing/test_package_docs/ex/CatString/runtimeType.html delete mode 100644 testing/test_package_docs/ex/CatString/toString.html delete mode 100644 testing/test_package_docs/ex/CatString/write.html delete mode 100644 testing/test_package_docs/ex/CatString/writeAll.html delete mode 100644 testing/test_package_docs/ex/CatString/writeCharCode.html delete mode 100644 testing/test_package_docs/ex/CatString/writeln.html delete mode 100644 testing/test_package_docs/ex/ConstantCat-class.html delete mode 100644 testing/test_package_docs/ex/ConstantCat/ConstantCat.html delete mode 100644 testing/test_package_docs/ex/ConstantCat/abstractMethod.html delete mode 100644 testing/test_package_docs/ex/ConstantCat/isImplemented.html delete mode 100644 testing/test_package_docs/ex/ConstantCat/name.html delete mode 100644 testing/test_package_docs/ex/Deprecated-class.html delete mode 100644 testing/test_package_docs/ex/Deprecated/Deprecated.html delete mode 100644 testing/test_package_docs/ex/Deprecated/expires.html delete mode 100644 testing/test_package_docs/ex/Deprecated/hashCode.html delete mode 100644 testing/test_package_docs/ex/Deprecated/noSuchMethod.html delete mode 100644 testing/test_package_docs/ex/Deprecated/operator_equals.html delete mode 100644 testing/test_package_docs/ex/Deprecated/runtimeType.html delete mode 100644 testing/test_package_docs/ex/Deprecated/toString.html delete mode 100644 testing/test_package_docs/ex/Dog-class.html delete mode 100644 testing/test_package_docs/ex/Dog/Dog.deprecatedCreate.html delete mode 100644 testing/test_package_docs/ex/Dog/Dog.html delete mode 100644 testing/test_package_docs/ex/Dog/aFinalField.html delete mode 100644 testing/test_package_docs/ex/Dog/aGetterReturningRandomThings.html delete mode 100644 testing/test_package_docs/ex/Dog/aName-constant.html delete mode 100644 testing/test_package_docs/ex/Dog/aProtectedFinalField.html delete mode 100644 testing/test_package_docs/ex/Dog/aStaticConstField-constant.html delete mode 100644 testing/test_package_docs/ex/Dog/abstractMethod.html delete mode 100644 testing/test_package_docs/ex/Dog/createDog.html delete mode 100644 testing/test_package_docs/ex/Dog/deprecatedField.html delete mode 100644 testing/test_package_docs/ex/Dog/deprecatedGetter.html delete mode 100644 testing/test_package_docs/ex/Dog/deprecatedSetter.html delete mode 100644 testing/test_package_docs/ex/Dog/foo.html delete mode 100644 testing/test_package_docs/ex/Dog/getAnotherClassD.html delete mode 100644 testing/test_package_docs/ex/Dog/getClassA.html delete mode 100644 testing/test_package_docs/ex/Dog/isImplemented.html delete mode 100644 testing/test_package_docs/ex/Dog/name.html delete mode 100644 testing/test_package_docs/ex/Dog/operator_equals.html delete mode 100644 testing/test_package_docs/ex/Dog/somethingTasty.html delete mode 100644 testing/test_package_docs/ex/Dog/staticGetterSetter.html delete mode 100644 testing/test_package_docs/ex/Dog/testGeneric.html delete mode 100644 testing/test_package_docs/ex/Dog/testGenericMethod.html delete mode 100644 testing/test_package_docs/ex/Dog/testMethod.html delete mode 100644 testing/test_package_docs/ex/Dog/withAnimation.html delete mode 100644 testing/test_package_docs/ex/Dog/withAnimationBadHeight.html delete mode 100644 testing/test_package_docs/ex/Dog/withAnimationBadWidth.html delete mode 100644 testing/test_package_docs/ex/Dog/withAnimationInOneLineDoc.html delete mode 100644 testing/test_package_docs/ex/Dog/withAnimationInline.html delete mode 100644 testing/test_package_docs/ex/Dog/withAnimationNonUnique.html delete mode 100644 testing/test_package_docs/ex/Dog/withAnimationNonUniqueDeprecated.html delete mode 100644 testing/test_package_docs/ex/Dog/withAnimationOutOfOrder.html delete mode 100644 testing/test_package_docs/ex/Dog/withAnimationUnknownArg.html delete mode 100644 testing/test_package_docs/ex/Dog/withAnimationWrongParams.html delete mode 100644 testing/test_package_docs/ex/Dog/withDeprecatedAnimation.html delete mode 100644 testing/test_package_docs/ex/Dog/withInvalidNamedAnimation.html delete mode 100644 testing/test_package_docs/ex/Dog/withMacro.html delete mode 100644 testing/test_package_docs/ex/Dog/withMacro2.html delete mode 100644 testing/test_package_docs/ex/Dog/withNamedAnimation.html delete mode 100644 testing/test_package_docs/ex/Dog/withPrivateMacro.html delete mode 100644 testing/test_package_docs/ex/Dog/withQuotedNamedAnimation.html delete mode 100644 testing/test_package_docs/ex/Dog/withUndefinedMacro.html delete mode 100644 testing/test_package_docs/ex/E-class.html delete mode 100644 testing/test_package_docs/ex/E/E.html delete mode 100644 testing/test_package_docs/ex/E/hashCode.html delete mode 100644 testing/test_package_docs/ex/E/noSuchMethod.html delete mode 100644 testing/test_package_docs/ex/E/operator_equals.html delete mode 100644 testing/test_package_docs/ex/E/runtimeType.html delete mode 100644 testing/test_package_docs/ex/E/toString.html delete mode 100644 testing/test_package_docs/ex/ExtendedShortName-class.html delete mode 100644 testing/test_package_docs/ex/ExtendedShortName/ExtendedShortName.html delete mode 100644 testing/test_package_docs/ex/F-class.html delete mode 100644 testing/test_package_docs/ex/F/F.html delete mode 100644 testing/test_package_docs/ex/F/methodWithGenericParam.html delete mode 100644 testing/test_package_docs/ex/F/test.html delete mode 100644 testing/test_package_docs/ex/ForAnnotation-class.html delete mode 100644 testing/test_package_docs/ex/ForAnnotation/ForAnnotation.html delete mode 100644 testing/test_package_docs/ex/ForAnnotation/hashCode.html delete mode 100644 testing/test_package_docs/ex/ForAnnotation/noSuchMethod.html delete mode 100644 testing/test_package_docs/ex/ForAnnotation/operator_equals.html delete mode 100644 testing/test_package_docs/ex/ForAnnotation/runtimeType.html delete mode 100644 testing/test_package_docs/ex/ForAnnotation/toString.html delete mode 100644 testing/test_package_docs/ex/ForAnnotation/value.html delete mode 100644 testing/test_package_docs/ex/HasAnnotation-class.html delete mode 100644 testing/test_package_docs/ex/HasAnnotation/HasAnnotation.html delete mode 100644 testing/test_package_docs/ex/HasAnnotation/hashCode.html delete mode 100644 testing/test_package_docs/ex/HasAnnotation/noSuchMethod.html delete mode 100644 testing/test_package_docs/ex/HasAnnotation/operator_equals.html delete mode 100644 testing/test_package_docs/ex/HasAnnotation/runtimeType.html delete mode 100644 testing/test_package_docs/ex/HasAnnotation/toString.html delete mode 100644 testing/test_package_docs/ex/Helper-class.html delete mode 100644 testing/test_package_docs/ex/Helper/Helper.html delete mode 100644 testing/test_package_docs/ex/Helper/getContents.html delete mode 100644 testing/test_package_docs/ex/Helper/hashCode.html delete mode 100644 testing/test_package_docs/ex/Helper/noSuchMethod.html delete mode 100644 testing/test_package_docs/ex/Helper/operator_equals.html delete mode 100644 testing/test_package_docs/ex/Helper/runtimeType.html delete mode 100644 testing/test_package_docs/ex/Helper/toString.html delete mode 100644 testing/test_package_docs/ex/Klass-class.html delete mode 100644 testing/test_package_docs/ex/Klass/Klass.html delete mode 100644 testing/test_package_docs/ex/Klass/another.html delete mode 100644 testing/test_package_docs/ex/Klass/anotherMethod.html delete mode 100644 testing/test_package_docs/ex/Klass/hashCode.html delete mode 100644 testing/test_package_docs/ex/Klass/imAFactoryNoReally.html delete mode 100644 testing/test_package_docs/ex/Klass/imProtected.html delete mode 100644 testing/test_package_docs/ex/Klass/method.html delete mode 100644 testing/test_package_docs/ex/Klass/noSuchMethod.html delete mode 100644 testing/test_package_docs/ex/Klass/operator_equals.html delete mode 100644 testing/test_package_docs/ex/Klass/runtimeType.html delete mode 100644 testing/test_package_docs/ex/Klass/toString.html delete mode 100644 testing/test_package_docs/ex/MY_CAT-constant.html delete mode 100644 testing/test_package_docs/ex/MyError-class.html delete mode 100644 testing/test_package_docs/ex/MyError/MyError.html delete mode 100644 testing/test_package_docs/ex/MyError/hashCode.html delete mode 100644 testing/test_package_docs/ex/MyError/noSuchMethod.html delete mode 100644 testing/test_package_docs/ex/MyError/operator_equals.html delete mode 100644 testing/test_package_docs/ex/MyError/runtimeType.html delete mode 100644 testing/test_package_docs/ex/MyError/stackTrace.html delete mode 100644 testing/test_package_docs/ex/MyError/toString.html delete mode 100644 testing/test_package_docs/ex/MyErrorImplements-class.html delete mode 100644 testing/test_package_docs/ex/MyErrorImplements/MyErrorImplements.html delete mode 100644 testing/test_package_docs/ex/MyErrorImplements/hashCode.html delete mode 100644 testing/test_package_docs/ex/MyErrorImplements/noSuchMethod.html delete mode 100644 testing/test_package_docs/ex/MyErrorImplements/operator_equals.html delete mode 100644 testing/test_package_docs/ex/MyErrorImplements/runtimeType.html delete mode 100644 testing/test_package_docs/ex/MyErrorImplements/stackTrace.html delete mode 100644 testing/test_package_docs/ex/MyErrorImplements/toString.html delete mode 100644 testing/test_package_docs/ex/MyException-class.html delete mode 100644 testing/test_package_docs/ex/MyException/MyException.html delete mode 100644 testing/test_package_docs/ex/MyException/hashCode.html delete mode 100644 testing/test_package_docs/ex/MyException/noSuchMethod.html delete mode 100644 testing/test_package_docs/ex/MyException/operator_equals.html delete mode 100644 testing/test_package_docs/ex/MyException/runtimeType.html delete mode 100644 testing/test_package_docs/ex/MyException/toString.html delete mode 100644 testing/test_package_docs/ex/MyExceptionImplements-class.html delete mode 100644 testing/test_package_docs/ex/MyExceptionImplements/MyExceptionImplements.html delete mode 100644 testing/test_package_docs/ex/MyExceptionImplements/hashCode.html delete mode 100644 testing/test_package_docs/ex/MyExceptionImplements/noSuchMethod.html delete mode 100644 testing/test_package_docs/ex/MyExceptionImplements/operator_equals.html delete mode 100644 testing/test_package_docs/ex/MyExceptionImplements/runtimeType.html delete mode 100644 testing/test_package_docs/ex/MyExceptionImplements/toString.html delete mode 100644 testing/test_package_docs/ex/PRETTY_COLORS-constant.html delete mode 100644 testing/test_package_docs/ex/ParameterizedClass-class.html delete mode 100644 testing/test_package_docs/ex/ParameterizedClass/ParameterizedClass.html delete mode 100644 testing/test_package_docs/ex/ParameterizedClass/aInheritedField.html delete mode 100644 testing/test_package_docs/ex/ParameterizedClass/aInheritedGetter.html delete mode 100644 testing/test_package_docs/ex/ParameterizedClass/aInheritedMethod.html delete mode 100644 testing/test_package_docs/ex/ParameterizedClass/aInheritedSetter.html delete mode 100644 testing/test_package_docs/ex/ParameterizedClass/aInheritedTypedefReturningMethod.html delete mode 100644 testing/test_package_docs/ex/ParameterizedClass/hashCode.html delete mode 100644 testing/test_package_docs/ex/ParameterizedClass/noSuchMethod.html delete mode 100644 testing/test_package_docs/ex/ParameterizedClass/operator_equals.html delete mode 100644 testing/test_package_docs/ex/ParameterizedClass/operator_plus.html delete mode 100644 testing/test_package_docs/ex/ParameterizedClass/runtimeType.html delete mode 100644 testing/test_package_docs/ex/ParameterizedClass/toString.html delete mode 100644 testing/test_package_docs/ex/ParameterizedTypedef.html delete mode 100644 testing/test_package_docs/ex/PublicClassExtendsPrivateClass-class.html delete mode 100644 testing/test_package_docs/ex/PublicClassExtendsPrivateClass/PublicClassExtendsPrivateClass.html delete mode 100644 testing/test_package_docs/ex/PublicClassExtendsPrivateClass/hashCode.html delete mode 100644 testing/test_package_docs/ex/PublicClassExtendsPrivateClass/noSuchMethod.html delete mode 100644 testing/test_package_docs/ex/PublicClassExtendsPrivateClass/operator_equals.html delete mode 100644 testing/test_package_docs/ex/PublicClassExtendsPrivateClass/runtimeType.html delete mode 100644 testing/test_package_docs/ex/PublicClassExtendsPrivateClass/test.html delete mode 100644 testing/test_package_docs/ex/PublicClassExtendsPrivateClass/toString.html delete mode 100644 testing/test_package_docs/ex/PublicClassImplementsPrivateInterface-class.html delete mode 100644 testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/PublicClassImplementsPrivateInterface.html delete mode 100644 testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/hashCode.html delete mode 100644 testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/noSuchMethod.html delete mode 100644 testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/operator_equals.html delete mode 100644 testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/runtimeType.html delete mode 100644 testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/test.html delete mode 100644 testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/toString.html delete mode 100644 testing/test_package_docs/ex/ShapeType-class.html delete mode 100644 testing/test_package_docs/ex/ShapeType/ellipse-constant.html delete mode 100644 testing/test_package_docs/ex/ShapeType/hashCode.html delete mode 100644 testing/test_package_docs/ex/ShapeType/name.html delete mode 100644 testing/test_package_docs/ex/ShapeType/noSuchMethod.html delete mode 100644 testing/test_package_docs/ex/ShapeType/operator_equals.html delete mode 100644 testing/test_package_docs/ex/ShapeType/rect-constant.html delete mode 100644 testing/test_package_docs/ex/ShapeType/runtimeType.html delete mode 100644 testing/test_package_docs/ex/ShapeType/toString.html delete mode 100644 testing/test_package_docs/ex/ShortName-class.html delete mode 100644 testing/test_package_docs/ex/ShortName/ShortName.html delete mode 100644 testing/test_package_docs/ex/ShortName/aParameter.html delete mode 100644 testing/test_package_docs/ex/ShortName/hashCode.html delete mode 100644 testing/test_package_docs/ex/ShortName/noSuchMethod.html delete mode 100644 testing/test_package_docs/ex/ShortName/operator_equals.html delete mode 100644 testing/test_package_docs/ex/ShortName/runtimeType.html delete mode 100644 testing/test_package_docs/ex/ShortName/toString.html delete mode 100644 testing/test_package_docs/ex/SpecializedDuration-class.html delete mode 100644 testing/test_package_docs/ex/SpecializedDuration/SpecializedDuration.html delete mode 100644 testing/test_package_docs/ex/SpecializedDuration/abs.html delete mode 100644 testing/test_package_docs/ex/SpecializedDuration/compareTo.html delete mode 100644 testing/test_package_docs/ex/SpecializedDuration/hashCode.html delete mode 100644 testing/test_package_docs/ex/SpecializedDuration/inDays.html delete mode 100644 testing/test_package_docs/ex/SpecializedDuration/inHours.html delete mode 100644 testing/test_package_docs/ex/SpecializedDuration/inMicroseconds.html delete mode 100644 testing/test_package_docs/ex/SpecializedDuration/inMilliseconds.html delete mode 100644 testing/test_package_docs/ex/SpecializedDuration/inMinutes.html delete mode 100644 testing/test_package_docs/ex/SpecializedDuration/inSeconds.html delete mode 100644 testing/test_package_docs/ex/SpecializedDuration/isNegative.html delete mode 100644 testing/test_package_docs/ex/SpecializedDuration/noSuchMethod.html delete mode 100644 testing/test_package_docs/ex/SpecializedDuration/operator_equals.html delete mode 100644 testing/test_package_docs/ex/SpecializedDuration/operator_greater.html delete mode 100644 testing/test_package_docs/ex/SpecializedDuration/operator_greater_equal.html delete mode 100644 testing/test_package_docs/ex/SpecializedDuration/operator_less.html delete mode 100644 testing/test_package_docs/ex/SpecializedDuration/operator_less_equal.html delete mode 100644 testing/test_package_docs/ex/SpecializedDuration/operator_minus.html delete mode 100644 testing/test_package_docs/ex/SpecializedDuration/operator_multiply.html delete mode 100644 testing/test_package_docs/ex/SpecializedDuration/operator_plus.html delete mode 100644 testing/test_package_docs/ex/SpecializedDuration/operator_truncate_divide.html delete mode 100644 testing/test_package_docs/ex/SpecializedDuration/operator_unary_minus.html delete mode 100644 testing/test_package_docs/ex/SpecializedDuration/runtimeType.html delete mode 100644 testing/test_package_docs/ex/SpecializedDuration/toString.html delete mode 100644 testing/test_package_docs/ex/TemplatedClass-class.html delete mode 100644 testing/test_package_docs/ex/TemplatedClass/aMethod.html delete mode 100644 testing/test_package_docs/ex/TemplatedInterface-class.html delete mode 100644 testing/test_package_docs/ex/TemplatedInterface/TemplatedInterface.html delete mode 100644 testing/test_package_docs/ex/TemplatedInterface/aField.html delete mode 100644 testing/test_package_docs/ex/TemplatedInterface/aGetter.html delete mode 100644 testing/test_package_docs/ex/TemplatedInterface/aMethodInterface.html delete mode 100644 testing/test_package_docs/ex/TemplatedInterface/aSetter.html delete mode 100644 testing/test_package_docs/ex/TemplatedInterface/aTypedefReturningMethodInterface.html delete mode 100644 testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs-class.html delete mode 100644 testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/TypedFunctionsWithoutTypedefs.html delete mode 100644 testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAComplexTypedef.html delete mode 100644 testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningBool.html delete mode 100644 testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningVoid.html delete mode 100644 testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/hashCode.html delete mode 100644 testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/noSuchMethod.html delete mode 100644 testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/operator_equals.html delete mode 100644 testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/runtimeType.html delete mode 100644 testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/toString.html delete mode 100644 testing/test_package_docs/ex/WithGeneric-class.html delete mode 100644 testing/test_package_docs/ex/WithGeneric/WithGeneric.html delete mode 100644 testing/test_package_docs/ex/WithGeneric/hashCode.html delete mode 100644 testing/test_package_docs/ex/WithGeneric/noSuchMethod.html delete mode 100644 testing/test_package_docs/ex/WithGeneric/operator_equals.html delete mode 100644 testing/test_package_docs/ex/WithGeneric/prop.html delete mode 100644 testing/test_package_docs/ex/WithGeneric/runtimeType.html delete mode 100644 testing/test_package_docs/ex/WithGeneric/toString.html delete mode 100644 testing/test_package_docs/ex/WithGenericSub-class.html delete mode 100644 testing/test_package_docs/ex/WithGenericSub/WithGenericSub.html delete mode 100644 testing/test_package_docs/ex/aComplexTypedef.html delete mode 100644 testing/test_package_docs/ex/aThingToDo-class.html delete mode 100644 testing/test_package_docs/ex/aThingToDo/aThingToDo.html delete mode 100644 testing/test_package_docs/ex/aThingToDo/hashCode.html delete mode 100644 testing/test_package_docs/ex/aThingToDo/noSuchMethod.html delete mode 100644 testing/test_package_docs/ex/aThingToDo/operator_equals.html delete mode 100644 testing/test_package_docs/ex/aThingToDo/runtimeType.html delete mode 100644 testing/test_package_docs/ex/aThingToDo/toString.html delete mode 100644 testing/test_package_docs/ex/aThingToDo/what.html delete mode 100644 testing/test_package_docs/ex/aThingToDo/who.html delete mode 100644 testing/test_package_docs/ex/deprecated-constant.html delete mode 100644 testing/test_package_docs/ex/deprecatedField.html delete mode 100644 testing/test_package_docs/ex/deprecatedGetter.html delete mode 100644 testing/test_package_docs/ex/deprecatedSetter.html delete mode 100644 testing/test_package_docs/ex/ex-library.html delete mode 100644 testing/test_package_docs/ex/function1.html delete mode 100644 testing/test_package_docs/ex/genericFunction.html delete mode 100644 testing/test_package_docs/ex/incorrectDocReference-constant.html delete mode 100644 testing/test_package_docs/ex/incorrectDocReferenceFromEx-constant.html delete mode 100644 testing/test_package_docs/ex/number.html delete mode 100644 testing/test_package_docs/ex/processMessage.html delete mode 100644 testing/test_package_docs/ex/y.html delete mode 100644 testing/test_package_docs/fake/ABaseClass-class.html delete mode 100644 testing/test_package_docs/fake/ABaseClass/ABaseClass.html delete mode 100644 testing/test_package_docs/fake/ABaseClass/hashCode.html delete mode 100644 testing/test_package_docs/fake/ABaseClass/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/ABaseClass/operator_equals.html delete mode 100644 testing/test_package_docs/fake/ABaseClass/runtimeType.html delete mode 100644 testing/test_package_docs/fake/ABaseClass/toString.html delete mode 100644 testing/test_package_docs/fake/AClassUsingASuperMixin-class.html delete mode 100644 testing/test_package_docs/fake/AClassUsingASuperMixin/AClassUsingASuperMixin.html delete mode 100644 testing/test_package_docs/fake/AClassWithFancyProperties-class.html delete mode 100644 testing/test_package_docs/fake/AClassWithFancyProperties/AClassWithFancyProperties.html delete mode 100644 testing/test_package_docs/fake/AClassWithFancyProperties/hashCode.html delete mode 100644 testing/test_package_docs/fake/AClassWithFancyProperties/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/AClassWithFancyProperties/operator_equals.html delete mode 100644 testing/test_package_docs/fake/AClassWithFancyProperties/runtimeType.html delete mode 100644 testing/test_package_docs/fake/AClassWithFancyProperties/toString.html delete mode 100644 testing/test_package_docs/fake/ATypeTakingClass-class.html delete mode 100644 testing/test_package_docs/fake/ATypeTakingClass/ATypeTakingClass.html delete mode 100644 testing/test_package_docs/fake/ATypeTakingClass/aMethodMaybeReturningVoid.html delete mode 100644 testing/test_package_docs/fake/ATypeTakingClass/hashCode.html delete mode 100644 testing/test_package_docs/fake/ATypeTakingClass/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/ATypeTakingClass/operator_equals.html delete mode 100644 testing/test_package_docs/fake/ATypeTakingClass/runtimeType.html delete mode 100644 testing/test_package_docs/fake/ATypeTakingClass/toString.html delete mode 100644 testing/test_package_docs/fake/ATypeTakingClassMixedIn-class.html delete mode 100644 testing/test_package_docs/fake/ATypeTakingClassMixedIn/ATypeTakingClassMixedIn.html delete mode 100644 testing/test_package_docs/fake/Annotation-class.html delete mode 100644 testing/test_package_docs/fake/Annotation/Annotation.html delete mode 100644 testing/test_package_docs/fake/Annotation/hashCode.html delete mode 100644 testing/test_package_docs/fake/Annotation/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/Annotation/operator_equals.html delete mode 100644 testing/test_package_docs/fake/Annotation/runtimeType.html delete mode 100644 testing/test_package_docs/fake/Annotation/toString.html delete mode 100644 testing/test_package_docs/fake/Annotation/value.html delete mode 100644 testing/test_package_docs/fake/AnotherInterface-class.html delete mode 100644 testing/test_package_docs/fake/AnotherInterface/AnotherInterface.html delete mode 100644 testing/test_package_docs/fake/AnotherInterface/hashCode.html delete mode 100644 testing/test_package_docs/fake/AnotherInterface/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/AnotherInterface/operator_equals.html delete mode 100644 testing/test_package_docs/fake/AnotherInterface/runtimeType.html delete mode 100644 testing/test_package_docs/fake/AnotherInterface/toString.html delete mode 100644 testing/test_package_docs/fake/BaseForDocComments-class.html delete mode 100644 testing/test_package_docs/fake/BaseForDocComments/BaseForDocComments.html delete mode 100644 testing/test_package_docs/fake/BaseForDocComments/anotherMethod.html delete mode 100644 testing/test_package_docs/fake/BaseForDocComments/doAwesomeStuff.html delete mode 100644 testing/test_package_docs/fake/BaseForDocComments/hashCode.html delete mode 100644 testing/test_package_docs/fake/BaseForDocComments/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/BaseForDocComments/operator_equals.html delete mode 100644 testing/test_package_docs/fake/BaseForDocComments/operator_get.html delete mode 100644 testing/test_package_docs/fake/BaseForDocComments/runtimeType.html delete mode 100644 testing/test_package_docs/fake/BaseForDocComments/toString.html delete mode 100644 testing/test_package_docs/fake/BaseThingy-class.html delete mode 100644 testing/test_package_docs/fake/BaseThingy/BaseThingy.html delete mode 100644 testing/test_package_docs/fake/BaseThingy/aImplementingThingy.html delete mode 100644 testing/test_package_docs/fake/BaseThingy/aImplementingThingyField.html delete mode 100644 testing/test_package_docs/fake/BaseThingy/aImplementingThingyMethod.html delete mode 100644 testing/test_package_docs/fake/BaseThingy/hashCode.html delete mode 100644 testing/test_package_docs/fake/BaseThingy/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/BaseThingy/operator_equals.html delete mode 100644 testing/test_package_docs/fake/BaseThingy/runtimeType.html delete mode 100644 testing/test_package_docs/fake/BaseThingy/toString.html delete mode 100644 testing/test_package_docs/fake/BaseThingy2/BaseThingy2.html delete mode 100644 testing/test_package_docs/fake/BaseThingy2/aImplementingThingy.html delete mode 100644 testing/test_package_docs/fake/CUSTOM_CLASS-constant.html delete mode 100644 testing/test_package_docs/fake/CUSTOM_CLASS_PRIVATE-constant.html delete mode 100644 testing/test_package_docs/fake/Callback2.html delete mode 100644 testing/test_package_docs/fake/ClassWithUnusualProperties-class.html delete mode 100644 testing/test_package_docs/fake/ClassWithUnusualProperties/ClassWithUnusualProperties.html delete mode 100644 testing/test_package_docs/fake/ClassWithUnusualProperties/aMethod.html delete mode 100644 testing/test_package_docs/fake/ClassWithUnusualProperties/documentedPartialFieldInSubclassOnly.html delete mode 100644 testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetter.html delete mode 100644 testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetterImplicitSetter.html delete mode 100644 testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetterSetter.html delete mode 100644 testing/test_package_docs/fake/ClassWithUnusualProperties/explicitNonDocumentedInBaseClassGetter.html delete mode 100644 testing/test_package_docs/fake/ClassWithUnusualProperties/explicitSetter.html delete mode 100644 testing/test_package_docs/fake/ClassWithUnusualProperties/finalProperty.html delete mode 100644 testing/test_package_docs/fake/ClassWithUnusualProperties/implicitGetterExplicitSetter.html delete mode 100644 testing/test_package_docs/fake/ClassWithUnusualProperties/implicitReadWrite.html delete mode 100644 testing/test_package_docs/fake/Color-class.html delete mode 100644 testing/test_package_docs/fake/Color/hashCode.html delete mode 100644 testing/test_package_docs/fake/Color/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/Color/operator_equals.html delete mode 100644 testing/test_package_docs/fake/Color/runtimeType.html delete mode 100644 testing/test_package_docs/fake/Color/toString.html delete mode 100644 testing/test_package_docs/fake/ConstantClass-class.html delete mode 100644 testing/test_package_docs/fake/ConstantClass/ConstantClass.isVeryConstant.html delete mode 100644 testing/test_package_docs/fake/ConstantClass/ConstantClass.notConstant.html delete mode 100644 testing/test_package_docs/fake/ConstantClass/hashCode.html delete mode 100644 testing/test_package_docs/fake/ConstantClass/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/ConstantClass/operator_equals.html delete mode 100644 testing/test_package_docs/fake/ConstantClass/runtimeType.html delete mode 100644 testing/test_package_docs/fake/ConstantClass/toString.html delete mode 100644 testing/test_package_docs/fake/ConstructorTester-class.html delete mode 100644 testing/test_package_docs/fake/ConstructorTester/ConstructorTester.fromSomething.html delete mode 100644 testing/test_package_docs/fake/ConstructorTester/ConstructorTester.html delete mode 100644 testing/test_package_docs/fake/ConstructorTester/hashCode.html delete mode 100644 testing/test_package_docs/fake/ConstructorTester/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/ConstructorTester/operator_equals.html delete mode 100644 testing/test_package_docs/fake/ConstructorTester/runtimeType.html delete mode 100644 testing/test_package_docs/fake/ConstructorTester/toString.html delete mode 100644 testing/test_package_docs/fake/Cool-class.html delete mode 100644 testing/test_package_docs/fake/Cool/Cool.html delete mode 100644 testing/test_package_docs/fake/Cool/hashCode.html delete mode 100644 testing/test_package_docs/fake/Cool/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/Cool/operator_equals.html delete mode 100644 testing/test_package_docs/fake/Cool/returnCool.html delete mode 100644 testing/test_package_docs/fake/Cool/runtimeType.html delete mode 100644 testing/test_package_docs/fake/Cool/toString.html delete mode 100644 testing/test_package_docs/fake/DOWN-constant.html delete mode 100644 testing/test_package_docs/fake/DocumentWithATable-class.html delete mode 100644 testing/test_package_docs/fake/DocumentWithATable/DocumentWithATable.html delete mode 100644 testing/test_package_docs/fake/DocumentWithATable/aMethod.html delete mode 100644 testing/test_package_docs/fake/DocumentWithATable/bar-constant.html delete mode 100644 testing/test_package_docs/fake/DocumentWithATable/foo-constant.html delete mode 100644 testing/test_package_docs/fake/DocumentWithATable/hashCode.html delete mode 100644 testing/test_package_docs/fake/DocumentWithATable/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/DocumentWithATable/operator_equals.html delete mode 100644 testing/test_package_docs/fake/DocumentWithATable/runtimeType.html delete mode 100644 testing/test_package_docs/fake/DocumentWithATable/toString.html delete mode 100644 testing/test_package_docs/fake/Doh-class.html delete mode 100644 testing/test_package_docs/fake/Doh/Doh.html delete mode 100644 testing/test_package_docs/fake/Doh/hashCode.html delete mode 100644 testing/test_package_docs/fake/Doh/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/Doh/operator_equals.html delete mode 100644 testing/test_package_docs/fake/Doh/runtimeType.html delete mode 100644 testing/test_package_docs/fake/Doh/stackTrace.html delete mode 100644 testing/test_package_docs/fake/Doh/toString.html delete mode 100644 testing/test_package_docs/fake/ExtendsFutureVoid-class.html delete mode 100644 testing/test_package_docs/fake/ExtendsFutureVoid/ExtendsFutureVoid.html delete mode 100644 testing/test_package_docs/fake/ExtendsFutureVoid/asStream.html delete mode 100644 testing/test_package_docs/fake/ExtendsFutureVoid/catchError.html delete mode 100644 testing/test_package_docs/fake/ExtendsFutureVoid/hashCode.html delete mode 100644 testing/test_package_docs/fake/ExtendsFutureVoid/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/ExtendsFutureVoid/operator_equals.html delete mode 100644 testing/test_package_docs/fake/ExtendsFutureVoid/runtimeType.html delete mode 100644 testing/test_package_docs/fake/ExtendsFutureVoid/then.html delete mode 100644 testing/test_package_docs/fake/ExtendsFutureVoid/timeout.html delete mode 100644 testing/test_package_docs/fake/ExtendsFutureVoid/toString.html delete mode 100644 testing/test_package_docs/fake/ExtendsFutureVoid/whenComplete.html delete mode 100644 testing/test_package_docs/fake/ExtraSpecialList-class.html delete mode 100644 testing/test_package_docs/fake/ExtraSpecialList/ExtraSpecialList.html delete mode 100644 testing/test_package_docs/fake/FakeProcesses.html delete mode 100644 testing/test_package_docs/fake/Foo2-class.html delete mode 100644 testing/test_package_docs/fake/Foo2/BAR-constant.html delete mode 100644 testing/test_package_docs/fake/Foo2/BAZ-constant.html delete mode 100644 testing/test_package_docs/fake/Foo2/Foo2.html delete mode 100644 testing/test_package_docs/fake/Foo2/hashCode.html delete mode 100644 testing/test_package_docs/fake/Foo2/index.html delete mode 100644 testing/test_package_docs/fake/Foo2/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/Foo2/operator_equals.html delete mode 100644 testing/test_package_docs/fake/Foo2/runtimeType.html delete mode 100644 testing/test_package_docs/fake/Foo2/toString.html delete mode 100644 testing/test_package_docs/fake/GenericTypedef.html delete mode 100644 testing/test_package_docs/fake/HasGenericWithExtends-class.html delete mode 100644 testing/test_package_docs/fake/HasGenericWithExtends/HasGenericWithExtends.html delete mode 100644 testing/test_package_docs/fake/HasGenericWithExtends/hashCode.html delete mode 100644 testing/test_package_docs/fake/HasGenericWithExtends/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/HasGenericWithExtends/operator_equals.html delete mode 100644 testing/test_package_docs/fake/HasGenericWithExtends/runtimeType.html delete mode 100644 testing/test_package_docs/fake/HasGenericWithExtends/toString.html delete mode 100644 testing/test_package_docs/fake/HasGenerics-class.html delete mode 100644 testing/test_package_docs/fake/HasGenerics/HasGenerics.html delete mode 100644 testing/test_package_docs/fake/HasGenerics/convertToMap.html delete mode 100644 testing/test_package_docs/fake/HasGenerics/doStuff.html delete mode 100644 testing/test_package_docs/fake/HasGenerics/hashCode.html delete mode 100644 testing/test_package_docs/fake/HasGenerics/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/HasGenerics/operator_equals.html delete mode 100644 testing/test_package_docs/fake/HasGenerics/returnX.html delete mode 100644 testing/test_package_docs/fake/HasGenerics/returnZ.html delete mode 100644 testing/test_package_docs/fake/HasGenerics/runtimeType.html delete mode 100644 testing/test_package_docs/fake/HasGenerics/toString.html delete mode 100644 testing/test_package_docs/fake/HasPragma-class.html delete mode 100644 testing/test_package_docs/fake/HasPragma/HasPragma.html delete mode 100644 testing/test_package_docs/fake/HasPragma/hashCode.html delete mode 100644 testing/test_package_docs/fake/HasPragma/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/HasPragma/operator_equals.html delete mode 100644 testing/test_package_docs/fake/HasPragma/runtimeType.html delete mode 100644 testing/test_package_docs/fake/HasPragma/toString.html delete mode 100644 testing/test_package_docs/fake/ImplementingThingy-class.html delete mode 100644 testing/test_package_docs/fake/ImplementingThingy/ImplementingThingy.html delete mode 100644 testing/test_package_docs/fake/ImplementingThingy2-class.html delete mode 100644 testing/test_package_docs/fake/ImplementingThingy2/ImplementingThingy2.html delete mode 100644 testing/test_package_docs/fake/ImplementsFutureVoid-class.html delete mode 100644 testing/test_package_docs/fake/ImplementsFutureVoid/ImplementsFutureVoid.html delete mode 100644 testing/test_package_docs/fake/ImplementsFutureVoid/asStream.html delete mode 100644 testing/test_package_docs/fake/ImplementsFutureVoid/catchError.html delete mode 100644 testing/test_package_docs/fake/ImplementsFutureVoid/hashCode.html delete mode 100644 testing/test_package_docs/fake/ImplementsFutureVoid/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/ImplementsFutureVoid/operator_equals.html delete mode 100644 testing/test_package_docs/fake/ImplementsFutureVoid/runtimeType.html delete mode 100644 testing/test_package_docs/fake/ImplementsFutureVoid/then.html delete mode 100644 testing/test_package_docs/fake/ImplementsFutureVoid/timeout.html delete mode 100644 testing/test_package_docs/fake/ImplementsFutureVoid/toString.html delete mode 100644 testing/test_package_docs/fake/ImplementsFutureVoid/whenComplete.html delete mode 100644 testing/test_package_docs/fake/ImplicitProperties/ImplicitProperties.html delete mode 100644 testing/test_package_docs/fake/ImplicitProperties/explicitGetterImplicitSetter.html delete mode 100644 testing/test_package_docs/fake/ImplicitProperties/explicitGetterSetterForInheriting.html delete mode 100644 testing/test_package_docs/fake/ImplicitProperties/explicitPartiallyDocumentedField.html delete mode 100644 testing/test_package_docs/fake/ImplicitProperties/forInheriting.html delete mode 100644 testing/test_package_docs/fake/ImplicitProperties/hashCode.html delete mode 100644 testing/test_package_docs/fake/ImplicitProperties/implicitGetterExplicitSetter.html delete mode 100644 testing/test_package_docs/fake/ImplicitProperties/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/ImplicitProperties/operator_equals.html delete mode 100644 testing/test_package_docs/fake/ImplicitProperties/runtimeType.html delete mode 100644 testing/test_package_docs/fake/ImplicitProperties/toString.html delete mode 100644 testing/test_package_docs/fake/InheritingClassOne-class.html delete mode 100644 testing/test_package_docs/fake/InheritingClassOne/InheritingClassOne.html delete mode 100644 testing/test_package_docs/fake/InheritingClassOne/aMethod.html delete mode 100644 testing/test_package_docs/fake/InheritingClassOne/hashCode.html delete mode 100644 testing/test_package_docs/fake/InheritingClassOne/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/InheritingClassOne/operator_equals.html delete mode 100644 testing/test_package_docs/fake/InheritingClassOne/runtimeType.html delete mode 100644 testing/test_package_docs/fake/InheritingClassOne/toString.html delete mode 100644 testing/test_package_docs/fake/InheritingClassTwo-class.html delete mode 100644 testing/test_package_docs/fake/InheritingClassTwo/InheritingClassTwo.html delete mode 100644 testing/test_package_docs/fake/InheritingClassTwo/aMethod.html delete mode 100644 testing/test_package_docs/fake/InheritingClassTwo/hashCode.html delete mode 100644 testing/test_package_docs/fake/InheritingClassTwo/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/InheritingClassTwo/operator_equals.html delete mode 100644 testing/test_package_docs/fake/InheritingClassTwo/runtimeType.html delete mode 100644 testing/test_package_docs/fake/InheritingClassTwo/toString.html delete mode 100644 testing/test_package_docs/fake/Interface-class.html delete mode 100644 testing/test_package_docs/fake/Interface/Interface.html delete mode 100644 testing/test_package_docs/fake/Interface/hashCode.html delete mode 100644 testing/test_package_docs/fake/Interface/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/Interface/operator_equals.html delete mode 100644 testing/test_package_docs/fake/Interface/runtimeType.html delete mode 100644 testing/test_package_docs/fake/Interface/toString.html delete mode 100644 testing/test_package_docs/fake/LongFirstLine-class.html delete mode 100644 testing/test_package_docs/fake/LongFirstLine/ANSWER-constant.html delete mode 100644 testing/test_package_docs/fake/LongFirstLine/LongFirstLine.fromHasGenerics.html delete mode 100644 testing/test_package_docs/fake/LongFirstLine/LongFirstLine.fromMap.html delete mode 100644 testing/test_package_docs/fake/LongFirstLine/LongFirstLine.html delete mode 100644 testing/test_package_docs/fake/LongFirstLine/THING-constant.html delete mode 100644 testing/test_package_docs/fake/LongFirstLine/aStringProperty.html delete mode 100644 testing/test_package_docs/fake/LongFirstLine/dynamicGetter.html delete mode 100644 testing/test_package_docs/fake/LongFirstLine/meaningOfLife.html delete mode 100644 testing/test_package_docs/fake/LongFirstLine/noParams.html delete mode 100644 testing/test_package_docs/fake/LongFirstLine/onlySetter.html delete mode 100644 testing/test_package_docs/fake/LongFirstLine/operator_multiply.html delete mode 100644 testing/test_package_docs/fake/LongFirstLine/operator_plus.html delete mode 100644 testing/test_package_docs/fake/LongFirstLine/optionalParams.html delete mode 100644 testing/test_package_docs/fake/LongFirstLine/returnString.html delete mode 100644 testing/test_package_docs/fake/LongFirstLine/staticGetter.html delete mode 100644 testing/test_package_docs/fake/LongFirstLine/staticMethodNoParams.html delete mode 100644 testing/test_package_docs/fake/LongFirstLine/staticMethodReturnsVoid.html delete mode 100644 testing/test_package_docs/fake/LongFirstLine/staticOnlySetter.html delete mode 100644 testing/test_package_docs/fake/LongFirstLine/twoParams.html delete mode 100644 testing/test_package_docs/fake/LotsAndLotsOfParameters.html delete mode 100644 testing/test_package_docs/fake/MIEEBase-class.html delete mode 100644 testing/test_package_docs/fake/MIEEBase/MIEEBase.html delete mode 100644 testing/test_package_docs/fake/MIEEMixin-class.html delete mode 100644 testing/test_package_docs/fake/MIEEMixin/MIEEMixin.html delete mode 100644 testing/test_package_docs/fake/MIEEMixin/operator_put.html delete mode 100644 testing/test_package_docs/fake/MIEEMixinWithOverride-class.html delete mode 100644 testing/test_package_docs/fake/MIEEMixinWithOverride/MIEEMixinWithOverride.html delete mode 100644 testing/test_package_docs/fake/MIEEMixinWithOverride/operator_put.html delete mode 100644 testing/test_package_docs/fake/MIEEThing-class.html delete mode 100644 testing/test_package_docs/fake/MIEEThing/MIEEThing.html delete mode 100644 testing/test_package_docs/fake/MIEEThing/hashCode.html delete mode 100644 testing/test_package_docs/fake/MIEEThing/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/MIEEThing/operator_equals.html delete mode 100644 testing/test_package_docs/fake/MIEEThing/operator_put.html delete mode 100644 testing/test_package_docs/fake/MIEEThing/runtimeType.html delete mode 100644 testing/test_package_docs/fake/MIEEThing/toString.html delete mode 100644 testing/test_package_docs/fake/MixMeIn-class.html delete mode 100644 testing/test_package_docs/fake/MixMeIn/MixMeIn.html delete mode 100644 testing/test_package_docs/fake/MixMeIn/hashCode.html delete mode 100644 testing/test_package_docs/fake/MixMeIn/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/MixMeIn/operator_equals.html delete mode 100644 testing/test_package_docs/fake/MixMeIn/runtimeType.html delete mode 100644 testing/test_package_docs/fake/MixMeIn/toString.html delete mode 100644 testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html delete mode 100644 testing/test_package_docs/fake/NAME_WITH_TWO_UNDERSCORES-constant.html delete mode 100644 testing/test_package_docs/fake/NewGenericTypedef.html delete mode 100644 testing/test_package_docs/fake/NotAMixin/hashCode.html delete mode 100644 testing/test_package_docs/fake/NotAMixin/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/NotAMixin/operator_equals.html delete mode 100644 testing/test_package_docs/fake/NotAMixin/runtimeType.html delete mode 100644 testing/test_package_docs/fake/NotAMixin/superString.html delete mode 100644 testing/test_package_docs/fake/NotAMixin/toString.html delete mode 100644 testing/test_package_docs/fake/Oops-class.html delete mode 100644 testing/test_package_docs/fake/Oops/Oops.html delete mode 100644 testing/test_package_docs/fake/Oops/hashCode.html delete mode 100644 testing/test_package_docs/fake/Oops/message.html delete mode 100644 testing/test_package_docs/fake/Oops/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/Oops/operator_equals.html delete mode 100644 testing/test_package_docs/fake/Oops/runtimeType.html delete mode 100644 testing/test_package_docs/fake/Oops/toString.html delete mode 100644 testing/test_package_docs/fake/OperatorReferenceClass-class.html delete mode 100644 testing/test_package_docs/fake/OperatorReferenceClass/OperatorReferenceClass.html delete mode 100644 testing/test_package_docs/fake/OperatorReferenceClass/hashCode.html delete mode 100644 testing/test_package_docs/fake/OperatorReferenceClass/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/OperatorReferenceClass/operator_equals.html delete mode 100644 testing/test_package_docs/fake/OperatorReferenceClass/runtimeType.html delete mode 100644 testing/test_package_docs/fake/OperatorReferenceClass/toString.html delete mode 100644 testing/test_package_docs/fake/OtherGenericsThing-class.html delete mode 100644 testing/test_package_docs/fake/OtherGenericsThing/OtherGenericsThing.html delete mode 100644 testing/test_package_docs/fake/OtherGenericsThing/convert.html delete mode 100644 testing/test_package_docs/fake/OtherGenericsThing/hashCode.html delete mode 100644 testing/test_package_docs/fake/OtherGenericsThing/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/OtherGenericsThing/operator_equals.html delete mode 100644 testing/test_package_docs/fake/OtherGenericsThing/runtimeType.html delete mode 100644 testing/test_package_docs/fake/OtherGenericsThing/toString.html delete mode 100644 testing/test_package_docs/fake/PI-constant.html delete mode 100644 testing/test_package_docs/fake/ReferringClass-class.html delete mode 100644 testing/test_package_docs/fake/ReferringClass/ReferringClass.html delete mode 100644 testing/test_package_docs/fake/ReferringClass/hashCode.html delete mode 100644 testing/test_package_docs/fake/ReferringClass/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/ReferringClass/notAMethodFromPrivateClass.html delete mode 100644 testing/test_package_docs/fake/ReferringClass/operator_equals.html delete mode 100644 testing/test_package_docs/fake/ReferringClass/runtimeType.html delete mode 100644 testing/test_package_docs/fake/ReferringClass/toString.html delete mode 100644 testing/test_package_docs/fake/SpecialList-class.html delete mode 100644 testing/test_package_docs/fake/SpecialList/SpecialList.html delete mode 100644 testing/test_package_docs/fake/SpecialList/add.html delete mode 100644 testing/test_package_docs/fake/SpecialList/addAll.html delete mode 100644 testing/test_package_docs/fake/SpecialList/any.html delete mode 100644 testing/test_package_docs/fake/SpecialList/asMap.html delete mode 100644 testing/test_package_docs/fake/SpecialList/cast.html delete mode 100644 testing/test_package_docs/fake/SpecialList/clear.html delete mode 100644 testing/test_package_docs/fake/SpecialList/contains.html delete mode 100644 testing/test_package_docs/fake/SpecialList/elementAt.html delete mode 100644 testing/test_package_docs/fake/SpecialList/every.html delete mode 100644 testing/test_package_docs/fake/SpecialList/expand.html delete mode 100644 testing/test_package_docs/fake/SpecialList/fillRange.html delete mode 100644 testing/test_package_docs/fake/SpecialList/first.html delete mode 100644 testing/test_package_docs/fake/SpecialList/firstWhere.html delete mode 100644 testing/test_package_docs/fake/SpecialList/fold.html delete mode 100644 testing/test_package_docs/fake/SpecialList/followedBy.html delete mode 100644 testing/test_package_docs/fake/SpecialList/forEach.html delete mode 100644 testing/test_package_docs/fake/SpecialList/getRange.html delete mode 100644 testing/test_package_docs/fake/SpecialList/hashCode.html delete mode 100644 testing/test_package_docs/fake/SpecialList/indexOf.html delete mode 100644 testing/test_package_docs/fake/SpecialList/indexWhere.html delete mode 100644 testing/test_package_docs/fake/SpecialList/insert.html delete mode 100644 testing/test_package_docs/fake/SpecialList/insertAll.html delete mode 100644 testing/test_package_docs/fake/SpecialList/isEmpty.html delete mode 100644 testing/test_package_docs/fake/SpecialList/isNotEmpty.html delete mode 100644 testing/test_package_docs/fake/SpecialList/iterator.html delete mode 100644 testing/test_package_docs/fake/SpecialList/join.html delete mode 100644 testing/test_package_docs/fake/SpecialList/last.html delete mode 100644 testing/test_package_docs/fake/SpecialList/lastIndexOf.html delete mode 100644 testing/test_package_docs/fake/SpecialList/lastIndexWhere.html delete mode 100644 testing/test_package_docs/fake/SpecialList/lastWhere.html delete mode 100644 testing/test_package_docs/fake/SpecialList/length.html delete mode 100644 testing/test_package_docs/fake/SpecialList/map.html delete mode 100644 testing/test_package_docs/fake/SpecialList/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/SpecialList/operator_equals.html delete mode 100644 testing/test_package_docs/fake/SpecialList/operator_get.html delete mode 100644 testing/test_package_docs/fake/SpecialList/operator_plus.html delete mode 100644 testing/test_package_docs/fake/SpecialList/operator_put.html delete mode 100644 testing/test_package_docs/fake/SpecialList/reduce.html delete mode 100644 testing/test_package_docs/fake/SpecialList/remove.html delete mode 100644 testing/test_package_docs/fake/SpecialList/removeAt.html delete mode 100644 testing/test_package_docs/fake/SpecialList/removeLast.html delete mode 100644 testing/test_package_docs/fake/SpecialList/removeRange.html delete mode 100644 testing/test_package_docs/fake/SpecialList/removeWhere.html delete mode 100644 testing/test_package_docs/fake/SpecialList/replaceRange.html delete mode 100644 testing/test_package_docs/fake/SpecialList/retainWhere.html delete mode 100644 testing/test_package_docs/fake/SpecialList/reversed.html delete mode 100644 testing/test_package_docs/fake/SpecialList/runtimeType.html delete mode 100644 testing/test_package_docs/fake/SpecialList/setAll.html delete mode 100644 testing/test_package_docs/fake/SpecialList/setRange.html delete mode 100644 testing/test_package_docs/fake/SpecialList/shuffle.html delete mode 100644 testing/test_package_docs/fake/SpecialList/single.html delete mode 100644 testing/test_package_docs/fake/SpecialList/singleWhere.html delete mode 100644 testing/test_package_docs/fake/SpecialList/skip.html delete mode 100644 testing/test_package_docs/fake/SpecialList/skipWhile.html delete mode 100644 testing/test_package_docs/fake/SpecialList/sort.html delete mode 100644 testing/test_package_docs/fake/SpecialList/sublist.html delete mode 100644 testing/test_package_docs/fake/SpecialList/take.html delete mode 100644 testing/test_package_docs/fake/SpecialList/takeWhile.html delete mode 100644 testing/test_package_docs/fake/SpecialList/toList.html delete mode 100644 testing/test_package_docs/fake/SpecialList/toSet.html delete mode 100644 testing/test_package_docs/fake/SpecialList/toString.html delete mode 100644 testing/test_package_docs/fake/SpecialList/where.html delete mode 100644 testing/test_package_docs/fake/SpecialList/whereType.html delete mode 100644 testing/test_package_docs/fake/SubForDocComments-class.html delete mode 100644 testing/test_package_docs/fake/SubForDocComments/SubForDocComments.html delete mode 100644 testing/test_package_docs/fake/SubForDocComments/localMethod.html delete mode 100644 testing/test_package_docs/fake/SuperAwesomeClass-class.html delete mode 100644 testing/test_package_docs/fake/SuperAwesomeClass/SuperAwesomeClass.html delete mode 100644 testing/test_package_docs/fake/SuperAwesomeClass/fly.html delete mode 100644 testing/test_package_docs/fake/SuperAwesomeClass/hashCode.html delete mode 100644 testing/test_package_docs/fake/SuperAwesomeClass/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/SuperAwesomeClass/operator_equals.html delete mode 100644 testing/test_package_docs/fake/SuperAwesomeClass/operator_minus.html delete mode 100644 testing/test_package_docs/fake/SuperAwesomeClass/powers.html delete mode 100644 testing/test_package_docs/fake/SuperAwesomeClass/runtimeType.html delete mode 100644 testing/test_package_docs/fake/SuperAwesomeClass/toString.html delete mode 100644 testing/test_package_docs/fake/TypedefUsingClass-class.html delete mode 100644 testing/test_package_docs/fake/TypedefUsingClass/TypedefUsingClass.html delete mode 100644 testing/test_package_docs/fake/TypedefUsingClass/hashCode.html delete mode 100644 testing/test_package_docs/fake/TypedefUsingClass/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/TypedefUsingClass/operator_equals.html delete mode 100644 testing/test_package_docs/fake/TypedefUsingClass/runtimeType.html delete mode 100644 testing/test_package_docs/fake/TypedefUsingClass/toString.html delete mode 100644 testing/test_package_docs/fake/TypedefUsingClass/x.html delete mode 100644 testing/test_package_docs/fake/UP-constant.html delete mode 100644 testing/test_package_docs/fake/VoidCallback.html delete mode 100644 testing/test_package_docs/fake/WithGetterAndSetter/WithGetterAndSetter.html delete mode 100644 testing/test_package_docs/fake/WithGetterAndSetter/hashCode.html delete mode 100644 testing/test_package_docs/fake/WithGetterAndSetter/lengthX.html delete mode 100644 testing/test_package_docs/fake/WithGetterAndSetter/noSuchMethod.html delete mode 100644 testing/test_package_docs/fake/WithGetterAndSetter/operator_equals.html delete mode 100644 testing/test_package_docs/fake/WithGetterAndSetter/runtimeType.html delete mode 100644 testing/test_package_docs/fake/WithGetterAndSetter/toString.html delete mode 100644 testing/test_package_docs/fake/ZERO-constant.html delete mode 100644 testing/test_package_docs/fake/aCoolVariable.html delete mode 100644 testing/test_package_docs/fake/aVoidParameter.html delete mode 100644 testing/test_package_docs/fake/addCallback.html delete mode 100644 testing/test_package_docs/fake/addCallback2.html delete mode 100644 testing/test_package_docs/fake/bulletDoced-constant.html delete mode 100644 testing/test_package_docs/fake/complicatedReturn.html delete mode 100644 testing/test_package_docs/fake/dynamicGetter.html delete mode 100644 testing/test_package_docs/fake/fake-library.html delete mode 100644 testing/test_package_docs/fake/functionWithFunctionParameters.html delete mode 100644 testing/test_package_docs/fake/getterSetterNodocGetter.html delete mode 100644 testing/test_package_docs/fake/getterSetterNodocSetter.html delete mode 100644 testing/test_package_docs/fake/greatAnnotation-constant.html delete mode 100644 testing/test_package_docs/fake/greatestAnnotation-constant.html delete mode 100644 testing/test_package_docs/fake/importantComputations.html delete mode 100644 testing/test_package_docs/fake/incorrectDocReference-constant.html delete mode 100644 testing/test_package_docs/fake/justGetter.html delete mode 100644 testing/test_package_docs/fake/justSetter.html delete mode 100644 testing/test_package_docs/fake/mapWithDynamicKeys.html delete mode 100644 testing/test_package_docs/fake/meaningOfLife.html delete mode 100644 testing/test_package_docs/fake/mustGetThis.html delete mode 100644 testing/test_package_docs/fake/myCoolTypedef.html delete mode 100644 testing/test_package_docs/fake/myGenericFunction.html delete mode 100644 testing/test_package_docs/fake/myMap-constant.html delete mode 100644 testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html delete mode 100644 testing/test_package_docs/fake/paintImage1.html delete mode 100644 testing/test_package_docs/fake/paintImage2.html delete mode 100644 testing/test_package_docs/fake/paramFromAnotherLib.html delete mode 100644 testing/test_package_docs/fake/paramOfFutureOrNull.html delete mode 100644 testing/test_package_docs/fake/required-constant.html delete mode 100644 testing/test_package_docs/fake/returningFutureVoid.html delete mode 100644 testing/test_package_docs/fake/setAndGet.html delete mode 100644 testing/test_package_docs/fake/short.html delete mode 100644 testing/test_package_docs/fake/simpleProperty.html delete mode 100644 testing/test_package_docs/fake/soIntense.html delete mode 100644 testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html delete mode 100644 testing/test_package_docs/fake/thisIsAlsoAsync.html delete mode 100644 testing/test_package_docs/fake/thisIsAsync.html delete mode 100644 testing/test_package_docs/fake/thisIsFutureOr.html delete mode 100644 testing/test_package_docs/fake/thisIsFutureOrNull.html delete mode 100644 testing/test_package_docs/fake/thisIsFutureOrT.html delete mode 100644 testing/test_package_docs/fake/topLevelFunction.html delete mode 100644 testing/test_package_docs/fake/typeParamOfFutureOr.html delete mode 100644 testing/test_package_docs/fake/useSomethingInAnotherPackage.html delete mode 100644 testing/test_package_docs/fake/useSomethingInTheSdk.html delete mode 100644 testing/test_package_docs/index.html delete mode 100644 testing/test_package_docs/index.json delete mode 100644 testing/test_package_docs/is_deprecated/is_deprecated-library.html delete mode 100644 testing/test_package_docs/reexport_one/SomeOtherClass-class.html delete mode 100644 testing/test_package_docs/reexport_one/SomeOtherClass/SomeOtherClass.html delete mode 100644 testing/test_package_docs/reexport_one/SomeOtherClass/hashCode.html delete mode 100644 testing/test_package_docs/reexport_one/SomeOtherClass/noSuchMethod.html delete mode 100644 testing/test_package_docs/reexport_one/SomeOtherClass/operator_equals.html delete mode 100644 testing/test_package_docs/reexport_one/SomeOtherClass/runtimeType.html delete mode 100644 testing/test_package_docs/reexport_one/SomeOtherClass/toString.html delete mode 100644 testing/test_package_docs/reexport_one/reexport_one-library.html delete mode 100644 testing/test_package_docs/reexport_two/AUnicornClass-class.html delete mode 100644 testing/test_package_docs/reexport_two/AUnicornClass/AUnicornClass.html delete mode 100644 testing/test_package_docs/reexport_two/AUnicornClass/hashCode.html delete mode 100644 testing/test_package_docs/reexport_two/AUnicornClass/noSuchMethod.html delete mode 100644 testing/test_package_docs/reexport_two/AUnicornClass/operator_equals.html delete mode 100644 testing/test_package_docs/reexport_two/AUnicornClass/runtimeType.html delete mode 100644 testing/test_package_docs/reexport_two/AUnicornClass/toString.html delete mode 100644 testing/test_package_docs/reexport_two/SomeClass-class.html delete mode 100644 testing/test_package_docs/reexport_two/SomeClass/SomeClass.html delete mode 100644 testing/test_package_docs/reexport_two/SomeClass/hashCode.html delete mode 100644 testing/test_package_docs/reexport_two/SomeClass/noSuchMethod.html delete mode 100644 testing/test_package_docs/reexport_two/SomeClass/operator_equals.html delete mode 100644 testing/test_package_docs/reexport_two/SomeClass/runtimeType.html delete mode 100644 testing/test_package_docs/reexport_two/SomeClass/toString.html delete mode 100644 testing/test_package_docs/reexport_two/YetAnotherClass-class.html delete mode 100644 testing/test_package_docs/reexport_two/YetAnotherClass/YetAnotherClass.html delete mode 100644 testing/test_package_docs/reexport_two/YetAnotherClass/hashCode.html delete mode 100644 testing/test_package_docs/reexport_two/YetAnotherClass/noSuchMethod.html delete mode 100644 testing/test_package_docs/reexport_two/YetAnotherClass/operator_equals.html delete mode 100644 testing/test_package_docs/reexport_two/YetAnotherClass/runtimeType.html delete mode 100644 testing/test_package_docs/reexport_two/YetAnotherClass/toString.html delete mode 100644 testing/test_package_docs/reexport_two/reexport_two-library.html delete mode 100644 testing/test_package_docs/static-assets/URI.js delete mode 100644 testing/test_package_docs/static-assets/css/bootstrap.css delete mode 100644 testing/test_package_docs/static-assets/css/bootstrap.css.map delete mode 100644 testing/test_package_docs/static-assets/css/bootstrap.min.css delete mode 100644 testing/test_package_docs/static-assets/favicon.png delete mode 100644 testing/test_package_docs/static-assets/github.css delete mode 100644 testing/test_package_docs/static-assets/highlight.pack.js delete mode 100644 testing/test_package_docs/static-assets/play_button.svg delete mode 100644 testing/test_package_docs/static-assets/readme.md delete mode 100644 testing/test_package_docs/static-assets/script.js delete mode 100644 testing/test_package_docs/static-assets/sdk_footer_text.html delete mode 100644 testing/test_package_docs/static-assets/styles.css delete mode 100644 testing/test_package_docs/static-assets/typeahead.bundle.min.js delete mode 100644 testing/test_package_docs/test_package_imported.main/Whataclass-class.html delete mode 100644 testing/test_package_docs/test_package_imported.main/Whataclass/Whataclass.html delete mode 100644 testing/test_package_docs/test_package_imported.main/Whataclass/hashCode.html delete mode 100644 testing/test_package_docs/test_package_imported.main/Whataclass/noSuchMethod.html delete mode 100644 testing/test_package_docs/test_package_imported.main/Whataclass/operator_equals.html delete mode 100644 testing/test_package_docs/test_package_imported.main/Whataclass/runtimeType.html delete mode 100644 testing/test_package_docs/test_package_imported.main/Whataclass/toString.html delete mode 100644 testing/test_package_docs/test_package_imported.main/Whataclass2-class.html delete mode 100644 testing/test_package_docs/test_package_imported.main/Whataclass2/Whataclass2.html delete mode 100644 testing/test_package_docs/test_package_imported.main/Whataclass2/hashCode.html delete mode 100644 testing/test_package_docs/test_package_imported.main/Whataclass2/noSuchMethod.html delete mode 100644 testing/test_package_docs/test_package_imported.main/Whataclass2/operator_equals.html delete mode 100644 testing/test_package_docs/test_package_imported.main/Whataclass2/runtimeType.html delete mode 100644 testing/test_package_docs/test_package_imported.main/Whataclass2/toString.html delete mode 100644 testing/test_package_docs/test_package_imported.main/test_package_imported.main-library.html delete mode 100644 testing/test_package_docs/topics/Superb-topic.html delete mode 100644 testing/test_package_docs/topics/Unreal-topic.html delete mode 100644 testing/test_package_docs/two_exports/BaseClass-class.html delete mode 100644 testing/test_package_docs/two_exports/BaseClass/BaseClass.html delete mode 100644 testing/test_package_docs/two_exports/ExtendingClass-class.html delete mode 100644 testing/test_package_docs/two_exports/ExtendingClass/ExtendingClass.html delete mode 100644 testing/test_package_docs/two_exports/topLevelVariable.html delete mode 100644 testing/test_package_docs/two_exports/two_exports-library.html rename testing/{test_package_docs/fake/NotAMixin-class.html => test_package_docs_dev/fake/AClassUsingNewStyleMixin-class.html} (82%) rename testing/{test_package_docs/fake/AMixinCallingSuper/AMixinCallingSuper.html => test_package_docs_dev/fake/AClassUsingNewStyleMixin/AClassUsingNewStyleMixin.html} (63%) rename testing/{test_package_docs/fake/ImplicitProperties-class.html => test_package_docs_dev/fake/GenericClass-class.html} (71%) rename testing/{test_package_docs/ex/TemplatedClass/TemplatedClass.html => test_package_docs_dev/fake/GenericClass/GenericClass.html} (52%) rename testing/{test_package_docs/ex/TemplatedClass => test_package_docs_dev/fake/GenericClass}/hashCode.html (62%) create mode 100644 testing/test_package_docs_dev/fake/GenericClass/member.html rename testing/{test_package_docs/ex/TemplatedClass => test_package_docs_dev/fake/GenericClass}/noSuchMethod.html (62%) rename testing/{test_package_docs/ex/TemplatedClass => test_package_docs_dev/fake/GenericClass}/operator_equals.html (62%) create mode 100644 testing/test_package_docs_dev/fake/GenericClass/overrideByBoth.html create mode 100644 testing/test_package_docs_dev/fake/GenericClass/overrideByEverything.html rename testing/{test_package_docs/fake/AClassWithFancyProperties/aProperty.html => test_package_docs_dev/fake/GenericClass/overrideByGenericMixin.html} (50%) create mode 100644 testing/test_package_docs_dev/fake/GenericClass/overrideByModifierClass.html rename testing/{test_package_docs/ex/TemplatedClass => test_package_docs_dev/fake/GenericClass}/runtimeType.html (62%) rename testing/{test_package_docs/ex/TemplatedClass => test_package_docs_dev/fake/GenericClass}/toString.html (61%) rename testing/{test_package_docs/fake/WithGetterAndSetter-class.html => test_package_docs_dev/fake/GenericMixin-mixin.html} (66%) create mode 100644 testing/test_package_docs_dev/fake/GenericMixin/GenericMixin.html create mode 100644 testing/test_package_docs_dev/fake/GenericMixin/mixinMember.html create mode 100644 testing/test_package_docs_dev/fake/GenericMixin/overrideByBoth.html create mode 100644 testing/test_package_docs_dev/fake/GenericMixin/overrideByEverything.html create mode 100644 testing/test_package_docs_dev/fake/GenericMixin/overrideByGenericMixin.html rename testing/{test_package_docs/fake/BaseThingy2-class.html => test_package_docs_dev/fake/ModifierClass-class.html} (67%) rename testing/{test_package_docs/fake/ConstantClass/ConstantClass.html => test_package_docs_dev/fake/ModifierClass/ModifierClass.html} (52%) rename testing/{test_package_docs/fake/ConstantClass/value.html => test_package_docs_dev/fake/ModifierClass/modifierMember.html} (51%) create mode 100644 testing/test_package_docs_dev/fake/ModifierClass/overrideByBoth.html create mode 100644 testing/test_package_docs_dev/fake/ModifierClass/overrideByEverything.html create mode 100644 testing/test_package_docs_dev/fake/ModifierClass/overrideByModifierClass.html rename testing/{test_package_docs/fake/AMixinCallingSuper-class.html => test_package_docs_dev/fake/NewStyleMixinCallingSuper-mixin.html} (84%) rename testing/{test_package_docs/fake/NotAMixin/NotAMixin.html => test_package_docs_dev/fake/NewStyleMixinCallingSuper/NewStyleMixinCallingSuper.html} (64%) rename testing/{test_package_docs/fake/AMixinCallingSuper => test_package_docs_dev/fake/NewStyleMixinCallingSuper}/superString.html (68%) create mode 100644 testing/test_package_docs_dev/fake/TypeInferenceMixedIn-class.html create mode 100644 testing/test_package_docs_dev/fake/TypeInferenceMixedIn/TypeInferenceMixedIn.html create mode 100644 testing/test_package_docs_dev/fake/TypeInferenceMixedIn/overrideByEverything.html diff --git a/testing/test_package/lib/fake.dart b/testing/test_package/lib/fake.dart index b4791759ad..74bb6f3f1a 100644 --- a/testing/test_package/lib/fake.dart +++ b/testing/test_package/lib/fake.dart @@ -283,9 +283,74 @@ class AMixinCallingSuper extends NotAMixin { String get superString => "${super.superString} but not as important as this"; } +/// I am a new style mixin using the new mixin syntax. +mixin NewStyleMixinCallingSuper on NotAMixin { + @override + + /// I have documentation for an overridden method named [superString], + /// different from [NotAMixin.superString]. + String get superString => + "${super.superString} but moderately less important than this"; +} + /// Verify super-mixins don't break Dartdoc. class AClassUsingASuperMixin extends AnotherInterface with AMixinCallingSuper {} +/// A class mixing in a single new-style mixin. +class AClassUsingNewStyleMixin extends NotAMixin + with NewStyleMixinCallingSuper {} + +/// A generic class for testing type inference. +class GenericClass { + T member; + + /// Destined to be overridden by [ModifierClass]. + T overrideByModifierClass; + + /// Destined to be overridden by [GenericMixin]. + T overrideByGenericMixin; + + /// Destined to be overridden by [ModifierClass] and [GenericMixin], both. + T overrideByBoth; + + /// Destined to be overridden by everything. + T overrideByEverything; +} + +/// A class extending a generic class. +class ModifierClass extends GenericClass { + T modifierMember; + + @override + T overrideByModifierClass; + + @override + T overrideByBoth; + + @override + T overrideByEverything; +} + +/// A generic mixin that requires GenericClass as a superclass. +mixin GenericMixin on GenericClass { + T mixinMember; + + @override + T overrideByGenericMixin; + + @override + T overrideByBoth; + + @override + T overrideByEverything; +} + +/// A class verifying type inference across new-style mixins. +class TypeInferenceMixedIn extends ModifierClass with GenericMixin { + @override + int overrideByEverything; +} + /// A super class, with many powers. Link to [Apple] from another library. @deprecated class SuperAwesomeClass { diff --git a/testing/test_package_docs/__404error.html b/testing/test_package_docs/__404error.html deleted file mode 100644 index 2081627f8f..0000000000 --- a/testing/test_package_docs/__404error.html +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - - - test_package - Dart API docs - - - - - - - - - - -
    - -
    - -
    test_package
    - -
    - -
    - - - -
    -

    404: Something's gone wrong :-(

    - -
    -

    You've tried to visit a page that doesn't exist. Luckily this site - has other pages.

    -

    If you were looking for something specific, try searching: -

    -

    - -
    -
    - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/anonymous_library/anonymous_library-library.html b/testing/test_package_docs/anonymous_library/anonymous_library-library.html deleted file mode 100644 index 2f0d6ef67d..0000000000 --- a/testing/test_package_docs/anonymous_library/anonymous_library-library.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - anonymous_library library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    anonymous_library
    - -
    - -
    - - - -
    -

    anonymous_library library

    - - - - - -
    -

    Functions

    - -
    -
    - doesStuff() - → String - -
    -
    - - -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/anonymous_library/doesStuff.html b/testing/test_package_docs/anonymous_library/doesStuff.html deleted file mode 100644 index 1a498697cb..0000000000 --- a/testing/test_package_docs/anonymous_library/doesStuff.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - doesStuff function - anonymous_library library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    doesStuff
    - -
    - -
    - - - -
    -

    doesStuff function

    - -
    - String - doesStuff -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/another_anonymous_lib/another_anonymous_lib-library.html b/testing/test_package_docs/another_anonymous_lib/another_anonymous_lib-library.html deleted file mode 100644 index 615dc5679e..0000000000 --- a/testing/test_package_docs/another_anonymous_lib/another_anonymous_lib-library.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - another_anonymous_lib library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    another_anonymous_lib
    - -
    - -
    - - - -
    -

    another_anonymous_lib library

    - - - - - -
    -

    Functions

    - -
    -
    - greeting() - → String - -
    -
    - - -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/another_anonymous_lib/greeting.html b/testing/test_package_docs/another_anonymous_lib/greeting.html deleted file mode 100644 index c07f32a6fd..0000000000 --- a/testing/test_package_docs/another_anonymous_lib/greeting.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - greeting function - another_anonymous_lib library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    greeting
    - -
    - -
    - - - -
    -

    greeting function

    - -
    - String - greeting -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/categories.json b/testing/test_package_docs/categories.json deleted file mode 100644 index 81c00db5bd..0000000000 --- a/testing/test_package_docs/categories.json +++ /dev/null @@ -1,91 +0,0 @@ -[ - { - "name": "IAmAClassWithCategories", - "qualifiedName": "categoriesExported.IAmAClassWithCategories", - "href": "categoriesExported/IAmAClassWithCategories-class.html", - "type": "class", - "categories": [ - "Excellent" - ] - }, - { - "name": "css", - "qualifiedName": "css", - "href": "css/css-library.html", - "type": "library", - "categories": [ - "Other" - ] - }, - { - "name": "ex", - "qualifiedName": "ex", - "href": "ex/ex-library.html", - "type": "library", - "categories": [ - "Real Libraries" - ] - }, - { - "name": "fake", - "qualifiedName": "fake", - "href": "fake/fake-library.html", - "type": "library", - "categories": [ - "Real Libraries" - ] - }, - { - "name": "BaseForDocComments", - "qualifiedName": "fake.BaseForDocComments", - "href": "fake/BaseForDocComments-class.html", - "type": "class", - "categories": [ - "Excellent", - "More Excellence", - "Unreal" - ], - "subcategories": [ - "Things and Such" - ], - "image": "https://flutter.io/images/catalog-widget-placeholder.png", - "samples": "https://flutter.io" - }, - { - "name": "SubForDocComments", - "qualifiedName": "fake.SubForDocComments", - "href": "fake/SubForDocComments-class.html", - "type": "class", - "categories": [ - "NotSoExcellent" - ] - }, - { - "name": "reexport_one", - "qualifiedName": "reexport_one", - "href": "reexport_one/reexport_one-library.html", - "type": "library", - "categories": [ - "Unreal" - ] - }, - { - "name": "reexport_two", - "qualifiedName": "reexport_two", - "href": "reexport_two/reexport_two-library.html", - "type": "library", - "categories": [ - "Unreal" - ] - }, - { - "name": "two_exports", - "qualifiedName": "two_exports", - "href": "two_exports/two_exports-library.html", - "type": "library", - "categories": [ - "Misc", - "Real Libraries" - ] - } -] diff --git a/testing/test_package_docs/categoriesExported/IAmAClassWithCategories-class.html b/testing/test_package_docs/categoriesExported/IAmAClassWithCategories-class.html deleted file mode 100644 index eec9c6368a..0000000000 --- a/testing/test_package_docs/categoriesExported/IAmAClassWithCategories-class.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - IAmAClassWithCategories class - categoriesExported library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    IAmAClassWithCategories
    - -
    - -
    - - - -
    -

    IAmAClassWithCategories class

    - -
    -

    Categories test for auto-include-dependencies (Flutter).

    -
    - - -
    -

    Constructors

    - -
    -
    - IAmAClassWithCategories() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

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

    Operators

    -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/categoriesExported/IAmAClassWithCategories/IAmAClassWithCategories.html b/testing/test_package_docs/categoriesExported/IAmAClassWithCategories/IAmAClassWithCategories.html deleted file mode 100644 index 7a6b985569..0000000000 --- a/testing/test_package_docs/categoriesExported/IAmAClassWithCategories/IAmAClassWithCategories.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - IAmAClassWithCategories constructor - IAmAClassWithCategories class - categoriesExported library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    IAmAClassWithCategories
    - -
    - -
    - - - -
    -

    IAmAClassWithCategories constructor

    - -
    - - IAmAClassWithCategories() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/categoriesExported/IAmAClassWithCategories/hashCode.html b/testing/test_package_docs/categoriesExported/IAmAClassWithCategories/hashCode.html deleted file mode 100644 index 253d785e04..0000000000 --- a/testing/test_package_docs/categoriesExported/IAmAClassWithCategories/hashCode.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - hashCode property - IAmAClassWithCategories class - categoriesExported library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

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

    noSuchMethod method

    - -
    - dynamic - noSuchMethod -(Invocation invocation) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/categoriesExported/IAmAClassWithCategories/operator_equals.html b/testing/test_package_docs/categoriesExported/IAmAClassWithCategories/operator_equals.html deleted file mode 100644 index 4dcf9dd573..0000000000 --- a/testing/test_package_docs/categoriesExported/IAmAClassWithCategories/operator_equals.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - operator == method - IAmAClassWithCategories class - categoriesExported library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator ==
    - -
    - -
    - - - -
    -

    operator == method

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

    runtimeType property

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

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/categoriesExported/categoriesExported-library.html b/testing/test_package_docs/categoriesExported/categoriesExported-library.html deleted file mode 100644 index 13bf0bb7dd..0000000000 --- a/testing/test_package_docs/categoriesExported/categoriesExported-library.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - categoriesExported library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    categoriesExported
    - -
    - -
    - - - -
    -

    categoriesExported library

    - - -
    -

    Classes

    - -
    -
    - IAmAClassWithCategories -
    -
    - Categories test for auto-include-dependencies (Flutter). -
    -
    -
    - - - - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/code_in_comments/code_in_comments-library.html b/testing/test_package_docs/code_in_comments/code_in_comments-library.html deleted file mode 100644 index 2cef34da6d..0000000000 --- a/testing/test_package_docs/code_in_comments/code_in_comments-library.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - code_in_comments library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    code_in_comments
    - -
    - -
    - - - -
    -

    code_in_comments library

    - -
    -
    void main() {
    -  // in Dart!
    -}
    -
    -
    and_yaml:
    -  - value
    -  - "value"
    -  - 3.14
    -
    -
    - - - - - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/css/css-library.html b/testing/test_package_docs/css/css-library.html deleted file mode 100644 index 76ee0edb73..0000000000 --- a/testing/test_package_docs/css/css-library.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - - css library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    css
    - -
    - -
    - - - -
    -

    css library

    - -
    -

    Testing that a library name doesn't conflict -with directories created by dartdoc.

    -
    - - - -
    -

    Properties

    - -
    -
    - theOnlyThingInTheLibrary - ↔ String -
    -
    - -
    read / write
    -
    -
    -
    - - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/css/theOnlyThingInTheLibrary.html b/testing/test_package_docs/css/theOnlyThingInTheLibrary.html deleted file mode 100644 index 7671e69e71..0000000000 --- a/testing/test_package_docs/css/theOnlyThingInTheLibrary.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - theOnlyThingInTheLibrary property - css library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    theOnlyThingInTheLibrary
    - -
    - -
    - - - -
    -

    theOnlyThingInTheLibrary top-level property

    - -
    - String - theOnlyThingInTheLibrary -
    read / write
    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Animal-class.html b/testing/test_package_docs/ex/Animal-class.html deleted file mode 100644 index 9d24ddeb30..0000000000 --- a/testing/test_package_docs/ex/Animal-class.html +++ /dev/null @@ -1,290 +0,0 @@ - - - - - - - - Animal enum - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    Animal
    - -
    - -
    - - - -
    -

    Animal enum

    - -
    -

    Referencing processMessage (or other things) here should not break -enum constants ala #1445

    -
    - - -
    -

    Constants

    - -
    -
    - CAT - → const Animal -
    -
    -

    Single line docs.

    - -
    - const Animal(0) -
    -
    -
    - DOG - → const Animal -
    -
    -

    Multi line docs.

    -

    Dog needs lots of docs.

    - -
    - const Animal(1) -
    -
    -
    - HORSE - → const Animal -
    -
    - - -
    - const Animal(2) -
    -
    -
    - values - → const List<Animal> -
    -
    -

    A constant List of the values in this enum, in order of their declaration.

    - -
    - const List<Animal> -
    -
    -
    -
    - - -
    -

    Properties

    - -
    -
    - index - → int -
    -
    -

    The integer index of this enum.

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

    Methods

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

    Operators

    -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Animal/hashCode.html b/testing/test_package_docs/ex/Animal/hashCode.html deleted file mode 100644 index 7f972a4d6b..0000000000 --- a/testing/test_package_docs/ex/Animal/hashCode.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - hashCode property - Animal class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Animal/noSuchMethod.html b/testing/test_package_docs/ex/Animal/noSuchMethod.html deleted file mode 100644 index 073febbaae..0000000000 --- a/testing/test_package_docs/ex/Animal/noSuchMethod.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - noSuchMethod method - Animal class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

    - -
    - dynamic - noSuchMethod -(Invocation invocation) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Animal/operator_equals.html b/testing/test_package_docs/ex/Animal/operator_equals.html deleted file mode 100644 index 67f7ff5cd9..0000000000 --- a/testing/test_package_docs/ex/Animal/operator_equals.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - operator == method - Animal class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator ==
    - -
    - -
    - - - -
    -

    operator == method

    - -
    - bool - operator == -(dynamic other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Animal/runtimeType.html b/testing/test_package_docs/ex/Animal/runtimeType.html deleted file mode 100644 index c6398af661..0000000000 --- a/testing/test_package_docs/ex/Animal/runtimeType.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - runtimeType property - Animal class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    runtimeType
    - -
    - -
    - - - -
    -

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Animal/toString.html b/testing/test_package_docs/ex/Animal/toString.html deleted file mode 100644 index 6ec79c6d63..0000000000 --- a/testing/test_package_docs/ex/Animal/toString.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - toString method - Animal class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/AnotherParameterizedClass-class.html b/testing/test_package_docs/ex/AnotherParameterizedClass-class.html deleted file mode 100644 index 904a00a79b..0000000000 --- a/testing/test_package_docs/ex/AnotherParameterizedClass-class.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - AnotherParameterizedClass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    AnotherParameterizedClass
    - -
    - -
    - - - -
    -

    AnotherParameterizedClass<B> class

    - - - -
    -

    Constructors

    - -
    -
    - AnotherParameterizedClass() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

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

    Operators

    -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/AnotherParameterizedClass/AnotherParameterizedClass.html b/testing/test_package_docs/ex/AnotherParameterizedClass/AnotherParameterizedClass.html deleted file mode 100644 index 3e849d7713..0000000000 --- a/testing/test_package_docs/ex/AnotherParameterizedClass/AnotherParameterizedClass.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - AnotherParameterizedClass constructor - AnotherParameterizedClass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    AnotherParameterizedClass
    - -
    - -
    - - - -
    -

    AnotherParameterizedClass<B> constructor

    - -
    - - AnotherParameterizedClass<B>() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/AnotherParameterizedClass/hashCode.html b/testing/test_package_docs/ex/AnotherParameterizedClass/hashCode.html deleted file mode 100644 index 3244d5ec13..0000000000 --- a/testing/test_package_docs/ex/AnotherParameterizedClass/hashCode.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - hashCode property - AnotherParameterizedClass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/AnotherParameterizedClass/noSuchMethod.html b/testing/test_package_docs/ex/AnotherParameterizedClass/noSuchMethod.html deleted file mode 100644 index 4894ce66ca..0000000000 --- a/testing/test_package_docs/ex/AnotherParameterizedClass/noSuchMethod.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - noSuchMethod method - AnotherParameterizedClass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

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

    operator == method

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

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/AnotherParameterizedClass/toString.html b/testing/test_package_docs/ex/AnotherParameterizedClass/toString.html deleted file mode 100644 index 6b4edb609f..0000000000 --- a/testing/test_package_docs/ex/AnotherParameterizedClass/toString.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - toString method - AnotherParameterizedClass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Apple-class.html b/testing/test_package_docs/ex/Apple-class.html deleted file mode 100644 index 6f5e8268c3..0000000000 --- a/testing/test_package_docs/ex/Apple-class.html +++ /dev/null @@ -1,392 +0,0 @@ - - - - - - - - Apple class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    Apple
    - -
    - -
    - - - -
    -

    Apple class

    - -
    -

    Sample class String

      A
    -   B
    -
    -
    - -
    -
    - - - -
    Implemented by
    -
      -
    • B
    • -
    - -
    -
    - -
    -

    Constructors

    - -
    -
    - Apple() -
    -
    - Constructor -
    -
    - Apple.fromString(String s) -
    -
    - -
    factory
    -
    -
    -
    - -
    -

    Properties

    - -
    -
    - fieldWithTypedef - ParameterizedTypedef<bool> -
    -
    - fieldWithTypedef docs here -
    final
    -
    -
    - m - ↔ int -
    -
    - The read-write field m. -
    read / write
    -
    -
    - s - ↔ String -
    -
    - The getter for s -
    read / write
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

    -
    -
    - isGreaterThan(int number, { int check: 5 }) - → bool - -
    -
    - - -
    -
    - m1() - → void - -
    -
    - This is a method. [...] - -
    -
    - methodWithTypedefParam(processMessage p) - → void - -
    -
    - - -
    -
    - paramFromExportLib(Helper helper) - → void - -
    -
    - - -
    -
    - printMsg(String msg, [ bool linebreak ]) - → void - -
    -
    - - -
    -
    - whataclass(List<Whataclass<bool>> list) - → void - -
    -
    - Apple docs for whataclass - -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

    -
    -
    - operator *(Apple other) - → dynamic - -
    -
    - - -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Static Properties

    - -
    -
    - string - ↔ String -
    -
    - -
    read / write
    -
    -
    -
    - - -
    -

    Constants

    - -
    -
    - n - → const int -
    -
    - - -
    - 5 -
    -
    -
    -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Apple/Apple.fromString.html b/testing/test_package_docs/ex/Apple/Apple.fromString.html deleted file mode 100644 index a6f703b08e..0000000000 --- a/testing/test_package_docs/ex/Apple/Apple.fromString.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - Apple.fromString constructor - Apple class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    Apple.fromString
    - -
    - -
    - - - -
    -

    Apple.fromString constructor

    - -
    - - Apple.fromString(String s) -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Apple/Apple.html b/testing/test_package_docs/ex/Apple/Apple.html deleted file mode 100644 index 762113ec04..0000000000 --- a/testing/test_package_docs/ex/Apple/Apple.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - Apple constructor - Apple class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    Apple
    - -
    - -
    - - - -
    -

    Apple constructor

    - -
    - - Apple() -
    - -
    -

    Constructor

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Apple/fieldWithTypedef.html b/testing/test_package_docs/ex/Apple/fieldWithTypedef.html deleted file mode 100644 index 4b3e83d40a..0000000000 --- a/testing/test_package_docs/ex/Apple/fieldWithTypedef.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - fieldWithTypedef property - Apple class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    fieldWithTypedef
    - -
    - -
    - - - -
    -

    fieldWithTypedef property

    - -
    - ParameterizedTypedef<bool> - fieldWithTypedef -
    final
    -
    -
    -

    fieldWithTypedef docs here

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Apple/hashCode.html b/testing/test_package_docs/ex/Apple/hashCode.html deleted file mode 100644 index fc419344db..0000000000 --- a/testing/test_package_docs/ex/Apple/hashCode.html +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - - - hashCode property - Apple class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Apple/isGreaterThan.html b/testing/test_package_docs/ex/Apple/isGreaterThan.html deleted file mode 100644 index 9028748dc8..0000000000 --- a/testing/test_package_docs/ex/Apple/isGreaterThan.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - isGreaterThan method - Apple class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    isGreaterThan
    - -
    - -
    - - - -
    -

    isGreaterThan method

    - -
    - bool - isGreaterThan -(int number, { int check: 5 }) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Apple/m.html b/testing/test_package_docs/ex/Apple/m.html deleted file mode 100644 index a2c7d7766a..0000000000 --- a/testing/test_package_docs/ex/Apple/m.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - m property - Apple class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    m
    - -
    - -
    - - - -
    -

    m property

    - -
    - int - m -
    read / write
    -
    -
    -

    The read-write field m.

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Apple/m1.html b/testing/test_package_docs/ex/Apple/m1.html deleted file mode 100644 index 091182b6ad..0000000000 --- a/testing/test_package_docs/ex/Apple/m1.html +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - m1 method - Apple class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    m1
    - -
    - -
    - - - -
    -

    m1 method

    - -
    - void - m1 -() -
    -
    -

    This is a method.

    -
    new Apple().m1();
    -
    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Apple/methodWithTypedefParam.html b/testing/test_package_docs/ex/Apple/methodWithTypedefParam.html deleted file mode 100644 index d31fa6104d..0000000000 --- a/testing/test_package_docs/ex/Apple/methodWithTypedefParam.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - methodWithTypedefParam method - Apple class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    methodWithTypedefParam
    - -
    - -
    - - - -
    -

    methodWithTypedefParam method

    - -
    - void - methodWithTypedefParam -(processMessage p) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Apple/n-constant.html b/testing/test_package_docs/ex/Apple/n-constant.html deleted file mode 100644 index d46fd21672..0000000000 --- a/testing/test_package_docs/ex/Apple/n-constant.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - - n constant - Apple class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    n
    - -
    - -
    - - - -
    -

    n constant

    - -
    - int - const n - = - 5 -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Apple/noSuchMethod.html b/testing/test_package_docs/ex/Apple/noSuchMethod.html deleted file mode 100644 index 9c21f071e1..0000000000 --- a/testing/test_package_docs/ex/Apple/noSuchMethod.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - noSuchMethod method - Apple class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

    - -
    - dynamic - noSuchMethod -(Invocation invocation) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Apple/operator_equals.html b/testing/test_package_docs/ex/Apple/operator_equals.html deleted file mode 100644 index cec29ebd05..0000000000 --- a/testing/test_package_docs/ex/Apple/operator_equals.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - operator == method - Apple class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator ==
    - -
    - -
    - - - -
    -

    operator == method

    - -
    - bool - operator == -(dynamic other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Apple/operator_multiply.html b/testing/test_package_docs/ex/Apple/operator_multiply.html deleted file mode 100644 index 80ae4c1ab1..0000000000 --- a/testing/test_package_docs/ex/Apple/operator_multiply.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - operator * method - Apple class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator *
    - -
    - -
    - - - -
    -

    operator * method

    - -
    - dynamic - operator * -(Apple other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Apple/paramFromExportLib.html b/testing/test_package_docs/ex/Apple/paramFromExportLib.html deleted file mode 100644 index 7d747fcfc4..0000000000 --- a/testing/test_package_docs/ex/Apple/paramFromExportLib.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - paramFromExportLib method - Apple class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    paramFromExportLib
    - -
    - -
    - - - -
    -

    paramFromExportLib method

    - -
    - void - paramFromExportLib -(Helper helper) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Apple/printMsg.html b/testing/test_package_docs/ex/Apple/printMsg.html deleted file mode 100644 index 16ff7af922..0000000000 --- a/testing/test_package_docs/ex/Apple/printMsg.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - printMsg method - Apple class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    printMsg
    - -
    - -
    - - - -
    -

    printMsg method

    - -
    - void - printMsg -(String msg, [ bool linebreak ]) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Apple/runtimeType.html b/testing/test_package_docs/ex/Apple/runtimeType.html deleted file mode 100644 index c9c7a02ed4..0000000000 --- a/testing/test_package_docs/ex/Apple/runtimeType.html +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - - - runtimeType property - Apple class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    runtimeType
    - -
    - -
    - - - -
    -

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Apple/s.html b/testing/test_package_docs/ex/Apple/s.html deleted file mode 100644 index 0092750046..0000000000 --- a/testing/test_package_docs/ex/Apple/s.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - - - s property - Apple class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    s
    - -
    - -
    - - - -
    -

    s property

    - - -
    - -
    - String - s - -
    - -
    -

    The getter for s

    -
    - -
    - -
    - -
    - void - s= -(String something) - -
    - -
    -

    The setter for s

    -
    - -
    -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Apple/string.html b/testing/test_package_docs/ex/Apple/string.html deleted file mode 100644 index e782ce2cef..0000000000 --- a/testing/test_package_docs/ex/Apple/string.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - string property - Apple class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    string
    - -
    - -
    - - - -
    -

    string property

    - -
    - String - string -
    read / write
    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Apple/toString.html b/testing/test_package_docs/ex/Apple/toString.html deleted file mode 100644 index fcad0a2e94..0000000000 --- a/testing/test_package_docs/ex/Apple/toString.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - toString method - Apple class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Apple/whataclass.html b/testing/test_package_docs/ex/Apple/whataclass.html deleted file mode 100644 index 316159ba9b..0000000000 --- a/testing/test_package_docs/ex/Apple/whataclass.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - whataclass method - Apple class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    whataclass
    - -
    - -
    - - - -
    -

    whataclass method

    - -
    - void - whataclass -(List<Whataclass<bool>> list) -
    -
    -

    Apple docs for whataclass

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/B-class.html b/testing/test_package_docs/ex/B-class.html deleted file mode 100644 index 627b374201..0000000000 --- a/testing/test_package_docs/ex/B-class.html +++ /dev/null @@ -1,413 +0,0 @@ - - - - - - - - B class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    B
    - -
    - -
    - - - -
    -

    B class

    - -
    -

    Extends class Apple, use new Apple or new Apple.fromString

     B extends A
    - B implements C
    - 
    -
    - -
    -
    -
    Inheritance
    -
    - - -
    Mixes-in
    -
    - - -
    -
    - -
    -

    Constructors

    - -
    -
    - B() -
    -
    - -
    -
    -
    - -
    -

    Properties

    - -
    -
    - autoCompress - ↔ bool -
    -
    - The default value is false (compression disabled). -To enable, set autoCompress to true. -
    read / write
    -
    -
    - isImplemented - → bool -
    -
    - -
    read-only
    -
    -
    - list - ↔ List<String> -
    -
    - A list of Strings -
    read / write
    -
    -
    - s - ↔ String -
    -
    - The getter for s -
    inherited-setter, read / write, inherited
    -
    -
    - fieldWithTypedef - ParameterizedTypedef<bool> -
    -
    - fieldWithTypedef docs here -
    final, inherited
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - m - ↔ int -
    -
    - The read-write field m. -
    read / write, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

    -
    -
    - abstractMethod() - → void - -
    -
    - - -
    -
    - doNothing() - → Future - -
    -
    - - -
    -
    - m1() - → void - -
    -
    - This is a method. [...] - -
    -
    - writeMsg(String msg, [ String transformMsg(String origMsg, bool flag) ]) - → void - -
    -
    - - -
    -
    - isGreaterThan(int number, { int check: 5 }) - → bool - -
    -
    - -
    inherited
    -
    -
    - methodWithTypedefParam(processMessage p) - → void - -
    -
    - -
    inherited
    -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - paramFromExportLib(Helper helper) - → void - -
    -
    - -
    inherited
    -
    -
    - printMsg(String msg, [ bool linebreak ]) - → void - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    - whataclass(List<Whataclass<bool>> list) - → void - -
    -
    - Apple docs for whataclass -
    inherited
    -
    -
    -
    - -
    -

    Operators

    -
    -
    - operator *(Apple other) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/B/B.html b/testing/test_package_docs/ex/B/B.html deleted file mode 100644 index 370e1ddecb..0000000000 --- a/testing/test_package_docs/ex/B/B.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - - B constructor - B class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    B
    - -
    - -
    - - - -
    -

    B constructor

    - -
    - - B() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/B/abstractMethod.html b/testing/test_package_docs/ex/B/abstractMethod.html deleted file mode 100644 index c48b5cd10f..0000000000 --- a/testing/test_package_docs/ex/B/abstractMethod.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - abstractMethod method - B class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    abstractMethod
    - -
    - -
    - - - -
    -

    abstractMethod method

    - -
    -
    -
      -
    1. @override
    2. -
    -
    - void - abstractMethod -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/B/autoCompress.html b/testing/test_package_docs/ex/B/autoCompress.html deleted file mode 100644 index f6bd810a37..0000000000 --- a/testing/test_package_docs/ex/B/autoCompress.html +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - - - autoCompress property - B class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    autoCompress
    - -
    - -
    - - - -
    -

    autoCompress property

    - -
    - bool - autoCompress -
    read / write
    -
    -
    -

    The default value is false (compression disabled). -To enable, set autoCompress to true.

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/B/doNothing.html b/testing/test_package_docs/ex/B/doNothing.html deleted file mode 100644 index 05a60a831f..0000000000 --- a/testing/test_package_docs/ex/B/doNothing.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - doNothing method - B class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    doNothing
    - -
    - -
    - - - -
    -

    doNothing method

    - -
    -
    -
      -
    1. @deprecated
    2. -
    -
    - Future - doNothing -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/B/isImplemented.html b/testing/test_package_docs/ex/B/isImplemented.html deleted file mode 100644 index 6d959c513c..0000000000 --- a/testing/test_package_docs/ex/B/isImplemented.html +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - isImplemented property - B class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    isImplemented
    - -
    - -
    - - - -
    -

    isImplemented property

    - - -
    - -
    - bool - isImplemented - -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/B/list.html b/testing/test_package_docs/ex/B/list.html deleted file mode 100644 index d34ab28bad..0000000000 --- a/testing/test_package_docs/ex/B/list.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - list property - B class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    list
    - -
    - -
    - - - -
    -

    list property

    - -
    - List<String> - list -
    read / write
    -
    -
    -

    A list of Strings

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/B/m1.html b/testing/test_package_docs/ex/B/m1.html deleted file mode 100644 index 5dd9fd6e9f..0000000000 --- a/testing/test_package_docs/ex/B/m1.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - m1 method - B class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    m1
    - -
    - -
    - - - -
    -

    m1 method

    - -
    -
    -
      -
    1. @override
    2. -
    -
    - void - m1 -() -
    -
    -

    This is a method.

    -
    new Apple().m1();
    -
    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/B/s.html b/testing/test_package_docs/ex/B/s.html deleted file mode 100644 index 4a7360e487..0000000000 --- a/testing/test_package_docs/ex/B/s.html +++ /dev/null @@ -1,134 +0,0 @@ - - - - - - - - s property - B class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    s
    - -
    - -
    - - - -
    -

    s property

    - - -
    - -
    - String - s - -
    - -
    -

    The getter for s

    -
    - -
    - -
    - -
    - void - s= -(String something) -
    inherited
    -
    - -
    -

    The setter for s

    -
    - -
    -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/B/writeMsg.html b/testing/test_package_docs/ex/B/writeMsg.html deleted file mode 100644 index 1a0f1f92bb..0000000000 --- a/testing/test_package_docs/ex/B/writeMsg.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - - writeMsg method - B class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    writeMsg
    - -
    - -
    - - - -
    -

    writeMsg method

    - -
    - void - writeMsg -(String msg, [ String transformMsg(String origMsg, bool flag) ]) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/COLOR-constant.html b/testing/test_package_docs/ex/COLOR-constant.html deleted file mode 100644 index b83cc9113b..0000000000 --- a/testing/test_package_docs/ex/COLOR-constant.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - COLOR constant - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    COLOR
    - -
    - -
    - - - -
    -

    COLOR top-level constant

    - -
    - const COLOR - = - 'red' - -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/COLOR_GREEN-constant.html b/testing/test_package_docs/ex/COLOR_GREEN-constant.html deleted file mode 100644 index 92612213d6..0000000000 --- a/testing/test_package_docs/ex/COLOR_GREEN-constant.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - COLOR_GREEN constant - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    COLOR_GREEN
    - -
    - -
    - - - -
    -

    COLOR_GREEN top-level constant

    - -
    - const COLOR_GREEN - = - 'green' - -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/COLOR_ORANGE-constant.html b/testing/test_package_docs/ex/COLOR_ORANGE-constant.html deleted file mode 100644 index 154ae2d942..0000000000 --- a/testing/test_package_docs/ex/COLOR_ORANGE-constant.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - COLOR_ORANGE constant - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    COLOR_ORANGE
    - -
    - -
    - - - -
    -

    COLOR_ORANGE top-level constant

    - -
    - const COLOR_ORANGE - = - 'orange' - -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/COMPLEX_COLOR-constant.html b/testing/test_package_docs/ex/COMPLEX_COLOR-constant.html deleted file mode 100644 index 4522aff681..0000000000 --- a/testing/test_package_docs/ex/COMPLEX_COLOR-constant.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - COMPLEX_COLOR constant - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    COMPLEX_COLOR
    - -
    - -
    - - - -
    -

    COMPLEX_COLOR top-level constant

    - -
    - const COMPLEX_COLOR - = - 'red' + '-' + 'green' + '-' + 'blue' - -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Cat-class.html b/testing/test_package_docs/ex/Cat-class.html deleted file mode 100644 index b0249ec9c7..0000000000 --- a/testing/test_package_docs/ex/Cat-class.html +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - - - Cat class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    Cat
    - -
    - -
    - - - -
    -

    Cat class

    - - -
    -
    - - - -
    Implemented by
    -
    - -
    -
    - -
    -

    Constructors

    - -
    -
    - Cat() -
    -
    - -
    -
    -
    - -
    -

    Properties

    - -
    -
    - isImplemented - → bool -
    -
    - -
    read-only
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

    -
    -
    - abstractMethod() - → void - -
    -
    - - -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

    -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Cat/Cat.html b/testing/test_package_docs/ex/Cat/Cat.html deleted file mode 100644 index 43177a3022..0000000000 --- a/testing/test_package_docs/ex/Cat/Cat.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - Cat constructor - Cat class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    Cat
    - -
    - -
    - - - -
    -

    Cat constructor

    - -
    - - Cat() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Cat/abstractMethod.html b/testing/test_package_docs/ex/Cat/abstractMethod.html deleted file mode 100644 index 1f5ad5129c..0000000000 --- a/testing/test_package_docs/ex/Cat/abstractMethod.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - abstractMethod method - Cat class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    abstractMethod
    - -
    - -
    - - - -
    -

    abstractMethod method

    - -
    - void - abstractMethod -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Cat/hashCode.html b/testing/test_package_docs/ex/Cat/hashCode.html deleted file mode 100644 index a83349d473..0000000000 --- a/testing/test_package_docs/ex/Cat/hashCode.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - hashCode property - Cat class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Cat/isImplemented.html b/testing/test_package_docs/ex/Cat/isImplemented.html deleted file mode 100644 index b1a38d26b5..0000000000 --- a/testing/test_package_docs/ex/Cat/isImplemented.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - isImplemented property - Cat class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    isImplemented
    - -
    - -
    - - - -
    -

    isImplemented property

    - - -
    - -
    - bool - isImplemented - -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Cat/noSuchMethod.html b/testing/test_package_docs/ex/Cat/noSuchMethod.html deleted file mode 100644 index 0442606e01..0000000000 --- a/testing/test_package_docs/ex/Cat/noSuchMethod.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - noSuchMethod method - Cat class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

    - -
    - dynamic - noSuchMethod -(Invocation invocation) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Cat/operator_equals.html b/testing/test_package_docs/ex/Cat/operator_equals.html deleted file mode 100644 index e1b43f4c67..0000000000 --- a/testing/test_package_docs/ex/Cat/operator_equals.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - operator == method - Cat class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator ==
    - -
    - -
    - - - -
    -

    operator == method

    - -
    - bool - operator == -(dynamic other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Cat/runtimeType.html b/testing/test_package_docs/ex/Cat/runtimeType.html deleted file mode 100644 index 21d29bc550..0000000000 --- a/testing/test_package_docs/ex/Cat/runtimeType.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - runtimeType property - Cat class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    runtimeType
    - -
    - -
    - - - -
    -

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Cat/toString.html b/testing/test_package_docs/ex/Cat/toString.html deleted file mode 100644 index 547b51af99..0000000000 --- a/testing/test_package_docs/ex/Cat/toString.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - toString method - Cat class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/CatString-class.html b/testing/test_package_docs/ex/CatString-class.html deleted file mode 100644 index cd86728741..0000000000 --- a/testing/test_package_docs/ex/CatString-class.html +++ /dev/null @@ -1,326 +0,0 @@ - - - - - - - - CatString class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    CatString
    - -
    - -
    - - - -
    -

    CatString class

    - - -
    -
    -
    Inheritance
    -
      -
    • Object
    • -
    • StringBuffer
    • -
    • CatString
    • -
    - - - - -
    -
    - -
    -

    Constructors

    - -
    -
    - CatString() -
    -
    - -
    -
    -
    - -
    -

    Properties

    - -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - isEmpty - → bool -
    -
    - -
    read-only, inherited
    -
    -
    - isNotEmpty - → bool -
    -
    - -
    read-only, inherited
    -
    -
    - length - → int -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

    -
    -
    - clear() - → void - -
    -
    - -
    inherited
    -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    - write(Object obj) - → void - -
    -
    - -
    inherited
    -
    -
    - writeAll(Iterable objects, [ String separator = "" ]) - → void - -
    -
    - -
    inherited
    -
    -
    - writeCharCode(int charCode) - → void - -
    -
    - -
    inherited
    -
    -
    - writeln([Object obj = "" ]) - → void - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

    -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/CatString/CatString.html b/testing/test_package_docs/ex/CatString/CatString.html deleted file mode 100644 index 0607b0594d..0000000000 --- a/testing/test_package_docs/ex/CatString/CatString.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - CatString constructor - CatString class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    CatString
    - -
    - -
    - - - -
    -

    CatString constructor

    - -
    - - CatString() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/CatString/clear.html b/testing/test_package_docs/ex/CatString/clear.html deleted file mode 100644 index fee9a0fb6b..0000000000 --- a/testing/test_package_docs/ex/CatString/clear.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - clear method - CatString class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    clear
    - -
    - -
    - - - -
    -

    clear method

    - -
    - void - clear -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/CatString/hashCode.html b/testing/test_package_docs/ex/CatString/hashCode.html deleted file mode 100644 index 4c59cb3856..0000000000 --- a/testing/test_package_docs/ex/CatString/hashCode.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - hashCode property - CatString class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/CatString/isEmpty.html b/testing/test_package_docs/ex/CatString/isEmpty.html deleted file mode 100644 index dd72848a71..0000000000 --- a/testing/test_package_docs/ex/CatString/isEmpty.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - isEmpty property - CatString class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    isEmpty
    - -
    - -
    - - - -
    -

    isEmpty property

    - - -
    - -
    - bool - isEmpty -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/CatString/isNotEmpty.html b/testing/test_package_docs/ex/CatString/isNotEmpty.html deleted file mode 100644 index a415fa5368..0000000000 --- a/testing/test_package_docs/ex/CatString/isNotEmpty.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - isNotEmpty property - CatString class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    isNotEmpty
    - -
    - -
    - - - -
    -

    isNotEmpty property

    - - -
    - -
    - bool - isNotEmpty -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/CatString/length.html b/testing/test_package_docs/ex/CatString/length.html deleted file mode 100644 index d5099f9581..0000000000 --- a/testing/test_package_docs/ex/CatString/length.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - length property - CatString class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    length
    - -
    - -
    - - - -
    -

    length property

    - - -
    - -
    - int - length -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/CatString/noSuchMethod.html b/testing/test_package_docs/ex/CatString/noSuchMethod.html deleted file mode 100644 index 7e51022336..0000000000 --- a/testing/test_package_docs/ex/CatString/noSuchMethod.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - noSuchMethod method - CatString class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

    - -
    - dynamic - noSuchMethod -(Invocation invocation) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/CatString/operator_equals.html b/testing/test_package_docs/ex/CatString/operator_equals.html deleted file mode 100644 index b34421b1f6..0000000000 --- a/testing/test_package_docs/ex/CatString/operator_equals.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - operator == method - CatString class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator ==
    - -
    - -
    - - - -
    -

    operator == method

    - -
    - bool - operator == -(dynamic other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/CatString/runtimeType.html b/testing/test_package_docs/ex/CatString/runtimeType.html deleted file mode 100644 index 78b3bb27c9..0000000000 --- a/testing/test_package_docs/ex/CatString/runtimeType.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - runtimeType property - CatString class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    runtimeType
    - -
    - -
    - - - -
    -

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/CatString/toString.html b/testing/test_package_docs/ex/CatString/toString.html deleted file mode 100644 index cbbdd9b20b..0000000000 --- a/testing/test_package_docs/ex/CatString/toString.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - toString method - CatString class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/CatString/write.html b/testing/test_package_docs/ex/CatString/write.html deleted file mode 100644 index 48706e6486..0000000000 --- a/testing/test_package_docs/ex/CatString/write.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - write method - CatString class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    write
    - -
    - -
    - - - -
    -

    write method

    - -
    - void - write -(Object obj) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/CatString/writeAll.html b/testing/test_package_docs/ex/CatString/writeAll.html deleted file mode 100644 index 72b8737222..0000000000 --- a/testing/test_package_docs/ex/CatString/writeAll.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - writeAll method - CatString class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    writeAll
    - -
    - -
    - - - -
    -

    writeAll method

    - -
    - void - writeAll -(Iterable objects, [ String separator = "" ]) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/CatString/writeCharCode.html b/testing/test_package_docs/ex/CatString/writeCharCode.html deleted file mode 100644 index 1432a34995..0000000000 --- a/testing/test_package_docs/ex/CatString/writeCharCode.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - writeCharCode method - CatString class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    writeCharCode
    - -
    - -
    - - - -
    -

    writeCharCode method

    - -
    - void - writeCharCode -(int charCode) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/CatString/writeln.html b/testing/test_package_docs/ex/CatString/writeln.html deleted file mode 100644 index d5f6f4ef9c..0000000000 --- a/testing/test_package_docs/ex/CatString/writeln.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - writeln method - CatString class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    writeln
    - -
    - -
    - - - -
    -

    writeln method

    - -
    - void - writeln -([Object obj = "" ]) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ConstantCat-class.html b/testing/test_package_docs/ex/ConstantCat-class.html deleted file mode 100644 index f7d3273a15..0000000000 --- a/testing/test_package_docs/ex/ConstantCat-class.html +++ /dev/null @@ -1,278 +0,0 @@ - - - - - - - - ConstantCat class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    ConstantCat
    - -
    - -
    - - - -
    -

    ConstantCat class

    - - -
    -
    - -
    Implements
    -
    - -
    - - - -
    -
    - -
    -

    Constructors

    - -
    -
    - ConstantCat(String name) -
    -
    - -
    const
    -
    -
    -
    - -
    -

    Properties

    - -
    -
    - isImplemented - → bool -
    -
    - -
    read-only
    -
    -
    - name - → String -
    -
    - -
    final
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

    -
    -
    - abstractMethod() - → void - -
    -
    - - -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

    -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ConstantCat/ConstantCat.html b/testing/test_package_docs/ex/ConstantCat/ConstantCat.html deleted file mode 100644 index 3ad64d9dc8..0000000000 --- a/testing/test_package_docs/ex/ConstantCat/ConstantCat.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - ConstantCat constructor - ConstantCat class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    ConstantCat
    - -
    - -
    - - - -
    -

    ConstantCat constructor

    - -
    - const - ConstantCat(String name) -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ConstantCat/abstractMethod.html b/testing/test_package_docs/ex/ConstantCat/abstractMethod.html deleted file mode 100644 index 9efd27e557..0000000000 --- a/testing/test_package_docs/ex/ConstantCat/abstractMethod.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - abstractMethod method - ConstantCat class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    abstractMethod
    - -
    - -
    - - - -
    -

    abstractMethod method

    - -
    -
    -
      -
    1. @override
    2. -
    -
    - void - abstractMethod -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ConstantCat/isImplemented.html b/testing/test_package_docs/ex/ConstantCat/isImplemented.html deleted file mode 100644 index 84eb73e10f..0000000000 --- a/testing/test_package_docs/ex/ConstantCat/isImplemented.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - isImplemented property - ConstantCat class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    isImplemented
    - -
    - -
    - - - -
    -

    isImplemented property

    - - -
    - -
    - bool - isImplemented - -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ConstantCat/name.html b/testing/test_package_docs/ex/ConstantCat/name.html deleted file mode 100644 index 58a4783e85..0000000000 --- a/testing/test_package_docs/ex/ConstantCat/name.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - name property - ConstantCat class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    name
    - -
    - -
    - - - -
    -

    name property

    - -
    - String - name -
    final
    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Deprecated-class.html b/testing/test_package_docs/ex/Deprecated-class.html deleted file mode 100644 index b343154b86..0000000000 --- a/testing/test_package_docs/ex/Deprecated-class.html +++ /dev/null @@ -1,245 +0,0 @@ - - - - - - - - Deprecated class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    Deprecated
    - -
    - -
    - - - -
    -

    Deprecated class

    - - - -
    -

    Constructors

    - -
    -
    - Deprecated(String expires) -
    -
    - -
    const
    -
    -
    -
    - -
    -

    Properties

    - -
    -
    - expires - → String -
    -
    - -
    final
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

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

    Operators

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

    Deprecated constructor

    - -
    - const - Deprecated(String expires) -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Deprecated/expires.html b/testing/test_package_docs/ex/Deprecated/expires.html deleted file mode 100644 index 6dde388d4a..0000000000 --- a/testing/test_package_docs/ex/Deprecated/expires.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - expires property - Deprecated class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    expires
    - -
    - -
    - - - -
    -

    expires property

    - -
    - String - expires -
    final
    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Deprecated/hashCode.html b/testing/test_package_docs/ex/Deprecated/hashCode.html deleted file mode 100644 index a9ea4c5800..0000000000 --- a/testing/test_package_docs/ex/Deprecated/hashCode.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - hashCode property - Deprecated class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Deprecated/noSuchMethod.html b/testing/test_package_docs/ex/Deprecated/noSuchMethod.html deleted file mode 100644 index 944d2c89bb..0000000000 --- a/testing/test_package_docs/ex/Deprecated/noSuchMethod.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - noSuchMethod method - Deprecated class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

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

    operator == method

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

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Deprecated/toString.html b/testing/test_package_docs/ex/Deprecated/toString.html deleted file mode 100644 index 894fd586a1..0000000000 --- a/testing/test_package_docs/ex/Deprecated/toString.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - toString method - Deprecated class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog-class.html b/testing/test_package_docs/ex/Dog-class.html deleted file mode 100644 index 243ebec08b..0000000000 --- a/testing/test_package_docs/ex/Dog-class.html +++ /dev/null @@ -1,666 +0,0 @@ - - - - - - - - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    Dog
    - -
    - -
    - - - -
    -

    Dog class

    - -
    -

    implements Cat, E

    -

    Some text with bold remarks. -A selection of dog flavors:

    • beef
    • poultry
    -
    <h1>Hello <b>World</b>!</h1>
    -
    -
    var test = 1;
    -
    -
    var test = 1;
    -
    -
    - -
    -
    - -
    Implements
    -
    - -
    - - -
    Implemented by
    -
      -
    • F
    • -
    - -
    -
    - -
    -

    Constructors

    - -
    -
    - Dog() -
    -
    - -
    -
    - Dog.deprecatedCreate(String name) -
    -
    - -
    -
    -
    - -
    -

    Properties

    - -
    -
    - aFinalField - → int -
    -
    - -
    final
    -
    -
    - aGetterReturningRandomThings - → int -
    -
    - -
    read-only
    -
    -
    - aProtectedFinalField - → int -
    -
    - -
    @protected, final
    -
    -
    - deprecatedField - ↔ int -
    -
    - -
    read / write
    -
    -
    - deprecatedGetter - → int -
    -
    - -
    read-only
    -
    -
    - deprecatedSetter - int -
    -
    - -
    write-only
    -
    -
    - isImplemented - → bool -
    -
    - -
    read-only
    -
    -
    - name - ↔ String -
    -
    - -
    read / write
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

    -
    -
    - abstractMethod() - → void - -
    -
    - - -
    -
    - foo() - → Future - -
    -
    - - -
    -
    - getAnotherClassD() - → List<Dog> - -
    -
    - -
    @Deprecated('before v27.3')
    -
    -
    - getClassA() - → List<Apple> - -
    -
    - - -
    -
    - testGeneric(Map<String, dynamic> args) - → void - -
    -
    - - -
    -
    - testGenericMethod<T>(T arg) - → T - -
    -
    - - -
    -
    - testMethod(Iterable it) - → void - -
    -
    - - -
    -
    - withAnimation() - → void - -
    -
    - Animation method [...] - -
    -
    - withAnimationBadHeight() - → void - -
    -
    - Malformed Animation method with non-integer height [...] - -
    -
    - withAnimationBadWidth() - → void - -
    -
    - Malformed Animation method with non-integer width [...] - -
    -
    - withAnimationInline() - → void - -
    -
    - Animation inline in text. [...] - -
    -
    - withAnimationInOneLineDoc() - → void - -
    -
    - Animation in one line doc [...] - -
    -
    - withAnimationNonUnique() - → void - -
    -
    - Non-Unique Animation method (between methods) [...] - -
    -
    - withAnimationNonUniqueDeprecated() - → void - -
    -
    - Non-Unique deprecated Animation method (between methods) [...] - -
    -
    - withAnimationOutOfOrder() - → void - -
    -
    - Animation with out-of-order id argument. [...] - -
    -
    - withAnimationUnknownArg() - → void - -
    -
    - Animation with an argument that is not the id. [...] - -
    -
    - withAnimationWrongParams() - → void - -
    -
    - Malformed Animation method with wrong parameters [...] - -
    -
    - withDeprecatedAnimation() - → void - -
    -
    - Deprecated animation method format. [...] - -
    -
    - withInvalidNamedAnimation() - → void - -
    -
    - Animation method with invalid name [...] - -
    -
    - withMacro() - → void - -
    -
    - Macro method [...] - -
    -
    - withMacro2() - → void - -
    -
    - Foo macro content - -
    -
    - withNamedAnimation() - → void - -
    -
    - Animation method with name [...] - -
    -
    - withPrivateMacro() - → void - -
    -
    - Use a privately defined macro: Private macro content - -
    -
    - withQuotedNamedAnimation() - → void - -
    -
    - Animation method with quoted name [...] - -
    -
    - withUndefinedMacro() - → void - -
    -
    - Don't define this: null - -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

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

    Static Properties

    - -
    -
    - somethingTasty - → int -
    -
    - A tasty static + final property. -
    final
    -
    -
    - staticGetterSetter - ↔ int -
    -
    - -
    read / write
    -
    -
    -
    - -
    -

    Static Methods

    -
    -
    - createDog(String s) - Dog - -
    -
    - -
    @Deprecated("Internal use")
    -
    -
    -
    - -
    -

    Constants

    - -
    -
    - aName - → const ShortName -
    -
    - Verify link substitution in constants (#1535) - -
    - const ExtendedShortName("hello there") -
    -
    -
    - aStaticConstField - → const String -
    -
    - - -
    - "A Constant Dog" -
    -
    -
    -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/Dog.deprecatedCreate.html b/testing/test_package_docs/ex/Dog/Dog.deprecatedCreate.html deleted file mode 100644 index ab3b451676..0000000000 --- a/testing/test_package_docs/ex/Dog/Dog.deprecatedCreate.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - Dog.deprecatedCreate constructor - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    Dog.deprecatedCreate
    - -
    - -
    - - - -
    -

    Dog.deprecatedCreate constructor

    - -
    -
    -
      -
    1. @deprecated
    2. -
    -
    - - Dog.deprecatedCreate(String name) -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/Dog.html b/testing/test_package_docs/ex/Dog/Dog.html deleted file mode 100644 index 4aaa985c69..0000000000 --- a/testing/test_package_docs/ex/Dog/Dog.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - - - Dog constructor - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    Dog
    - -
    - -
    - - - -
    -

    Dog constructor

    - -
    - - Dog() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/aFinalField.html b/testing/test_package_docs/ex/Dog/aFinalField.html deleted file mode 100644 index ff400f3c35..0000000000 --- a/testing/test_package_docs/ex/Dog/aFinalField.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - aFinalField property - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aFinalField
    - -
    - -
    - - - -
    -

    aFinalField property

    - -
    - int - aFinalField -
    final
    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/aGetterReturningRandomThings.html b/testing/test_package_docs/ex/Dog/aGetterReturningRandomThings.html deleted file mode 100644 index 2880b0fa46..0000000000 --- a/testing/test_package_docs/ex/Dog/aGetterReturningRandomThings.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - aGetterReturningRandomThings property - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aGetterReturningRandomThings
    - -
    - -
    - - - -
    -

    aGetterReturningRandomThings property

    - - -
    - -
    - int - aGetterReturningRandomThings - -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/aName-constant.html b/testing/test_package_docs/ex/Dog/aName-constant.html deleted file mode 100644 index bfad8a1c83..0000000000 --- a/testing/test_package_docs/ex/Dog/aName-constant.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - aName constant - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aName
    - -
    - -
    - - - -
    -

    aName constant

    - -
    - ShortName - const aName - = - const ExtendedShortName("hello there") -
    - -
    -

    Verify link substitution in constants (#1535)

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/aProtectedFinalField.html b/testing/test_package_docs/ex/Dog/aProtectedFinalField.html deleted file mode 100644 index b9a5b0cb47..0000000000 --- a/testing/test_package_docs/ex/Dog/aProtectedFinalField.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - aProtectedFinalField property - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aProtectedFinalField
    - -
    - -
    - - - -
    -

    aProtectedFinalField property

    - -
    - int - aProtectedFinalField -
    @protected, final
    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/aStaticConstField-constant.html b/testing/test_package_docs/ex/Dog/aStaticConstField-constant.html deleted file mode 100644 index 472693b709..0000000000 --- a/testing/test_package_docs/ex/Dog/aStaticConstField-constant.html +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - - - aStaticConstField constant - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aStaticConstField
    - -
    - -
    - - - -
    -

    aStaticConstField constant

    - -
    - String - const aStaticConstField - = - "A Constant Dog" -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/abstractMethod.html b/testing/test_package_docs/ex/Dog/abstractMethod.html deleted file mode 100644 index fc4fc3585c..0000000000 --- a/testing/test_package_docs/ex/Dog/abstractMethod.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - abstractMethod method - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    abstractMethod
    - -
    - -
    - - - -
    -

    abstractMethod method

    - -
    -
    -
      -
    1. @override
    2. -
    -
    - void - abstractMethod -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/createDog.html b/testing/test_package_docs/ex/Dog/createDog.html deleted file mode 100644 index a052607d39..0000000000 --- a/testing/test_package_docs/ex/Dog/createDog.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - createDog method - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    createDog
    - -
    - -
    - - - -
    -

    createDog method

    - -
    -
    -
      -
    1. @Deprecated("Internal use")
    2. -
    -
    - Dog - createDog -(String s) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/deprecatedField.html b/testing/test_package_docs/ex/Dog/deprecatedField.html deleted file mode 100644 index d64cc378a7..0000000000 --- a/testing/test_package_docs/ex/Dog/deprecatedField.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - deprecatedField property - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    deprecatedField
    - -
    - -
    - - - -
    -

    deprecatedField property

    - -
    - int - deprecatedField -
    read / write
    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/deprecatedGetter.html b/testing/test_package_docs/ex/Dog/deprecatedGetter.html deleted file mode 100644 index f7e5506cb0..0000000000 --- a/testing/test_package_docs/ex/Dog/deprecatedGetter.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - deprecatedGetter property - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    deprecatedGetter
    - -
    - -
    - - - -
    -

    deprecatedGetter property

    - - -
    - -
    - int - deprecatedGetter - -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/deprecatedSetter.html b/testing/test_package_docs/ex/Dog/deprecatedSetter.html deleted file mode 100644 index 8ca90f8bd5..0000000000 --- a/testing/test_package_docs/ex/Dog/deprecatedSetter.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - deprecatedSetter property - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    deprecatedSetter
    - -
    - -
    - - - -
    -

    deprecatedSetter property

    - - - -
    - -
    - void - deprecatedSetter= -(int value) - -
    - - -
    -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/foo.html b/testing/test_package_docs/ex/Dog/foo.html deleted file mode 100644 index c8bdf89c84..0000000000 --- a/testing/test_package_docs/ex/Dog/foo.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - - - foo method - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    foo
    - -
    - -
    - - - -
    -

    foo method

    - -
    - Future - foo -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/getAnotherClassD.html b/testing/test_package_docs/ex/Dog/getAnotherClassD.html deleted file mode 100644 index 46f21bbec5..0000000000 --- a/testing/test_package_docs/ex/Dog/getAnotherClassD.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - getAnotherClassD method - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    getAnotherClassD
    - -
    - -
    - - - -
    -

    getAnotherClassD method

    - -
    -
    -
      -
    1. @Deprecated('before v27.3')
    2. -
    -
    - List<Dog> - getAnotherClassD -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/getClassA.html b/testing/test_package_docs/ex/Dog/getClassA.html deleted file mode 100644 index b0ebe475f8..0000000000 --- a/testing/test_package_docs/ex/Dog/getClassA.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - getClassA method - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    getClassA
    - -
    - -
    - - - -
    -

    getClassA method

    - -
    -
    -
      -
    1. @deprecated
    2. -
    -
    - List<Apple> - getClassA -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/isImplemented.html b/testing/test_package_docs/ex/Dog/isImplemented.html deleted file mode 100644 index f40a8d377c..0000000000 --- a/testing/test_package_docs/ex/Dog/isImplemented.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - isImplemented property - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    isImplemented
    - -
    - -
    - - - -
    -

    isImplemented property

    - - -
    - -
    - bool - isImplemented - -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/name.html b/testing/test_package_docs/ex/Dog/name.html deleted file mode 100644 index e94d8f667e..0000000000 --- a/testing/test_package_docs/ex/Dog/name.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - name property - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    name
    - -
    - -
    - - - -
    -

    name property

    - -
    - String - name -
    read / write
    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/operator_equals.html b/testing/test_package_docs/ex/Dog/operator_equals.html deleted file mode 100644 index cd9a8ccfb3..0000000000 --- a/testing/test_package_docs/ex/Dog/operator_equals.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - operator == method - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator ==
    - -
    - -
    - - - -
    -

    operator == method

    - -
    -
    -
      -
    1. @override
    2. -
    -
    - bool - operator == -(dynamic other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/somethingTasty.html b/testing/test_package_docs/ex/Dog/somethingTasty.html deleted file mode 100644 index a14c1ac2cb..0000000000 --- a/testing/test_package_docs/ex/Dog/somethingTasty.html +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - somethingTasty property - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    somethingTasty
    - -
    - -
    - - - -
    -

    somethingTasty property

    - -
    - int - somethingTasty -
    final
    -
    -
    -

    A tasty static + final property.

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/staticGetterSetter.html b/testing/test_package_docs/ex/Dog/staticGetterSetter.html deleted file mode 100644 index e805f8e530..0000000000 --- a/testing/test_package_docs/ex/Dog/staticGetterSetter.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - - - staticGetterSetter property - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    staticGetterSetter
    - -
    - -
    - - - -
    -

    staticGetterSetter property

    - - -
    - -
    - int - staticGetterSetter - -
    - - -
    - -
    - -
    - void - staticGetterSetter= -(dynamic x) - -
    - - -
    -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/testGeneric.html b/testing/test_package_docs/ex/Dog/testGeneric.html deleted file mode 100644 index 4361ee0e1a..0000000000 --- a/testing/test_package_docs/ex/Dog/testGeneric.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - - - testGeneric method - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    testGeneric
    - -
    - -
    - - - -
    -

    testGeneric method

    - -
    - void - testGeneric -(Map<String, dynamic> args) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/testGenericMethod.html b/testing/test_package_docs/ex/Dog/testGenericMethod.html deleted file mode 100644 index cd8abf02c3..0000000000 --- a/testing/test_package_docs/ex/Dog/testGenericMethod.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - - - testGenericMethod method - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    testGenericMethod
    - -
    - -
    - - - -
    -

    testGenericMethod<T> method

    - -
    - T - testGenericMethod -<T>(T arg) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/testMethod.html b/testing/test_package_docs/ex/Dog/testMethod.html deleted file mode 100644 index 238a7f49ea..0000000000 --- a/testing/test_package_docs/ex/Dog/testMethod.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - - - testMethod method - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    testMethod
    - -
    - -
    - - - -
    -

    testMethod method

    - -
    - void - testMethod -(Iterable it) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/withAnimation.html b/testing/test_package_docs/ex/Dog/withAnimation.html deleted file mode 100644 index 847c42bc56..0000000000 --- a/testing/test_package_docs/ex/Dog/withAnimation.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - - withAnimation method - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    withAnimation
    - -
    - -
    - - - -
    -

    withAnimation method

    - -
    - void - withAnimation -() -
    -
    -

    Animation method

    -
    -
    - -
    -

    More docs

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/withAnimationBadHeight.html b/testing/test_package_docs/ex/Dog/withAnimationBadHeight.html deleted file mode 100644 index bc68eb4d88..0000000000 --- a/testing/test_package_docs/ex/Dog/withAnimationBadHeight.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - withAnimationBadHeight method - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    withAnimationBadHeight
    - -
    - -
    - - - -
    -

    withAnimationBadHeight method

    - -
    - void - withAnimationBadHeight -() -
    -
    -

    Malformed Animation method with non-integer height

    -

    More docs

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/withAnimationBadWidth.html b/testing/test_package_docs/ex/Dog/withAnimationBadWidth.html deleted file mode 100644 index 8cd75e659d..0000000000 --- a/testing/test_package_docs/ex/Dog/withAnimationBadWidth.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - withAnimationBadWidth method - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    withAnimationBadWidth
    - -
    - -
    - - - -
    -

    withAnimationBadWidth method

    - -
    - void - withAnimationBadWidth -() -
    -
    -

    Malformed Animation method with non-integer width

    -

    More docs

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/withAnimationInOneLineDoc.html b/testing/test_package_docs/ex/Dog/withAnimationInOneLineDoc.html deleted file mode 100644 index c770e41628..0000000000 --- a/testing/test_package_docs/ex/Dog/withAnimationInOneLineDoc.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - - - withAnimationInOneLineDoc method - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    withAnimationInOneLineDoc
    - -
    - -
    - - - -
    -

    withAnimationInOneLineDoc method

    - -
    - void - withAnimationInOneLineDoc -() -
    -
    -

    Animation in one line doc

    -
    -
    - -
    -

    This tests to see that we do the right thing if the animation is in -the one line doc above.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/withAnimationInline.html b/testing/test_package_docs/ex/Dog/withAnimationInline.html deleted file mode 100644 index 6d14ad44e8..0000000000 --- a/testing/test_package_docs/ex/Dog/withAnimationInline.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - - - withAnimationInline method - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    withAnimationInline
    - -
    - -
    - - - -
    -

    withAnimationInline method

    - -
    - void - withAnimationInline -() -
    -
    -

    Animation inline in text.

    -

    Tests to see that an inline

    -
    -
    - -
    -

    works as expected.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/withAnimationNonUnique.html b/testing/test_package_docs/ex/Dog/withAnimationNonUnique.html deleted file mode 100644 index 0e8e5c5af0..0000000000 --- a/testing/test_package_docs/ex/Dog/withAnimationNonUnique.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - - withAnimationNonUnique method - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    withAnimationNonUnique
    - -
    - -
    - - - -
    -

    withAnimationNonUnique method

    - -
    - void - withAnimationNonUnique -() -
    -
    -

    Non-Unique Animation method (between methods)

    -
    -
    - -
    -

    More docs

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/withAnimationNonUniqueDeprecated.html b/testing/test_package_docs/ex/Dog/withAnimationNonUniqueDeprecated.html deleted file mode 100644 index c3bdd2281c..0000000000 --- a/testing/test_package_docs/ex/Dog/withAnimationNonUniqueDeprecated.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - - withAnimationNonUniqueDeprecated method - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    withAnimationNonUniqueDeprecated
    - -
    - -
    - - - -
    -

    withAnimationNonUniqueDeprecated method

    - -
    - void - withAnimationNonUniqueDeprecated -() -
    -
    -

    Non-Unique deprecated Animation method (between methods)

    -
    -
    - -
    -

    More docs

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/withAnimationOutOfOrder.html b/testing/test_package_docs/ex/Dog/withAnimationOutOfOrder.html deleted file mode 100644 index 74c446c6a8..0000000000 --- a/testing/test_package_docs/ex/Dog/withAnimationOutOfOrder.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - - - withAnimationOutOfOrder method - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    withAnimationOutOfOrder
    - -
    - -
    - - - -
    -

    withAnimationOutOfOrder method

    - -
    - void - withAnimationOutOfOrder -() -
    -
    -

    Animation with out-of-order id argument.

    -

    Tests to see that out of order arguments work.

    -
    -
    - -
    -

    works as expected.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/withAnimationUnknownArg.html b/testing/test_package_docs/ex/Dog/withAnimationUnknownArg.html deleted file mode 100644 index cb5eac7664..0000000000 --- a/testing/test_package_docs/ex/Dog/withAnimationUnknownArg.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - withAnimationUnknownArg method - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    withAnimationUnknownArg
    - -
    - -
    - - - -
    -

    withAnimationUnknownArg method

    - -
    - void - withAnimationUnknownArg -() -
    -
    -

    Animation with an argument that is not the id.

    -

    Tests to see that it gives an error when arguments that are not -recognized are added.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/withAnimationWrongParams.html b/testing/test_package_docs/ex/Dog/withAnimationWrongParams.html deleted file mode 100644 index 2dbf951561..0000000000 --- a/testing/test_package_docs/ex/Dog/withAnimationWrongParams.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - withAnimationWrongParams method - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    withAnimationWrongParams
    - -
    - -
    - - - -
    -

    withAnimationWrongParams method

    - -
    - void - withAnimationWrongParams -() -
    -
    -

    Malformed Animation method with wrong parameters

    -

    More docs

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/withDeprecatedAnimation.html b/testing/test_package_docs/ex/Dog/withDeprecatedAnimation.html deleted file mode 100644 index ec581ee07e..0000000000 --- a/testing/test_package_docs/ex/Dog/withDeprecatedAnimation.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - - withDeprecatedAnimation method - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    withDeprecatedAnimation
    - -
    - -
    - - - -
    -

    withDeprecatedAnimation method

    - -
    - void - withDeprecatedAnimation -() -
    -
    -

    Deprecated animation method format.

    -
    -
    - -
    -

    More docs

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/withInvalidNamedAnimation.html b/testing/test_package_docs/ex/Dog/withInvalidNamedAnimation.html deleted file mode 100644 index 66e638da21..0000000000 --- a/testing/test_package_docs/ex/Dog/withInvalidNamedAnimation.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - withInvalidNamedAnimation method - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    withInvalidNamedAnimation
    - -
    - -
    - - - -
    -

    withInvalidNamedAnimation method

    - -
    - void - withInvalidNamedAnimation -() -
    -
    -

    Animation method with invalid name

    -

    More docs

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/withMacro.html b/testing/test_package_docs/ex/Dog/withMacro.html deleted file mode 100644 index 00eb28e62b..0000000000 --- a/testing/test_package_docs/ex/Dog/withMacro.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - withMacro method - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    withMacro
    - -
    - -
    - - - -
    -

    withMacro method

    - -
    - void - withMacro -() -
    -
    -

    Macro method

    -

    Foo macro content -More docs

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/withMacro2.html b/testing/test_package_docs/ex/Dog/withMacro2.html deleted file mode 100644 index ae9e49030a..0000000000 --- a/testing/test_package_docs/ex/Dog/withMacro2.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - - - withMacro2 method - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    withMacro2
    - -
    - -
    - - - -
    -

    withMacro2 method

    - -
    - void - withMacro2 -() -
    -
    -

    Foo macro content

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/withNamedAnimation.html b/testing/test_package_docs/ex/Dog/withNamedAnimation.html deleted file mode 100644 index 266e1a9d02..0000000000 --- a/testing/test_package_docs/ex/Dog/withNamedAnimation.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - - withNamedAnimation method - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    withNamedAnimation
    - -
    - -
    - - - -
    -

    withNamedAnimation method

    - -
    - void - withNamedAnimation -() -
    -
    -

    Animation method with name

    -
    -
    - -
    -

    More docs

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/withPrivateMacro.html b/testing/test_package_docs/ex/Dog/withPrivateMacro.html deleted file mode 100644 index 12915b3b1d..0000000000 --- a/testing/test_package_docs/ex/Dog/withPrivateMacro.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - - - withPrivateMacro method - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    withPrivateMacro
    - -
    - -
    - - - -
    -

    withPrivateMacro method

    - -
    - void - withPrivateMacro -() -
    -
    -

    Use a privately defined macro: Private macro content

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/withQuotedNamedAnimation.html b/testing/test_package_docs/ex/Dog/withQuotedNamedAnimation.html deleted file mode 100644 index 6c953d8eed..0000000000 --- a/testing/test_package_docs/ex/Dog/withQuotedNamedAnimation.html +++ /dev/null @@ -1,191 +0,0 @@ - - - - - - - - withQuotedNamedAnimation method - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    withQuotedNamedAnimation
    - -
    - -
    - - - -
    -

    withQuotedNamedAnimation method

    - -
    - void - withQuotedNamedAnimation -() -
    -
    -

    Animation method with quoted name

    -
    -
    - -
    -
    -
    - -
    -

    More docs

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Dog/withUndefinedMacro.html b/testing/test_package_docs/ex/Dog/withUndefinedMacro.html deleted file mode 100644 index 954405e911..0000000000 --- a/testing/test_package_docs/ex/Dog/withUndefinedMacro.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - - - withUndefinedMacro method - Dog class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    withUndefinedMacro
    - -
    - -
    - - - -
    -

    withUndefinedMacro method

    - -
    - void - withUndefinedMacro -() -
    -
    -

    Don't define this: null

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/E-class.html b/testing/test_package_docs/ex/E-class.html deleted file mode 100644 index a2a1c36a35..0000000000 --- a/testing/test_package_docs/ex/E-class.html +++ /dev/null @@ -1,247 +0,0 @@ - - - - - - - - E class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    E
    - -
    - -
    - - - -
    -

    E class

    - - -
    -
    - - - -
    Implemented by
    -
    - -
    -
    - -
    -

    Constructors

    - -
    -
    - E() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

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

    Operators

    -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/E/E.html b/testing/test_package_docs/ex/E/E.html deleted file mode 100644 index 466a581665..0000000000 --- a/testing/test_package_docs/ex/E/E.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - E constructor - E class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    E
    - -
    - -
    - - - -
    -

    E constructor

    - -
    - - E() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/E/hashCode.html b/testing/test_package_docs/ex/E/hashCode.html deleted file mode 100644 index 46e3fdb947..0000000000 --- a/testing/test_package_docs/ex/E/hashCode.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - hashCode property - E class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

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

    noSuchMethod method

    - -
    - dynamic - noSuchMethod -(Invocation invocation) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/E/operator_equals.html b/testing/test_package_docs/ex/E/operator_equals.html deleted file mode 100644 index 74551f2855..0000000000 --- a/testing/test_package_docs/ex/E/operator_equals.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - operator == method - E class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator ==
    - -
    - -
    - - - -
    -

    operator == method

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

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/E/toString.html b/testing/test_package_docs/ex/E/toString.html deleted file mode 100644 index 3c0e2891f5..0000000000 --- a/testing/test_package_docs/ex/E/toString.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - toString method - E class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ExtendedShortName-class.html b/testing/test_package_docs/ex/ExtendedShortName-class.html deleted file mode 100644 index 57078ab5b2..0000000000 --- a/testing/test_package_docs/ex/ExtendedShortName-class.html +++ /dev/null @@ -1,259 +0,0 @@ - - - - - - - - ExtendedShortName class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    ExtendedShortName
    - -
    - -
    - - - -
    -

    ExtendedShortName class

    - - -
    -
    -
    Inheritance
    -
    - - - - -
    -
    - -
    -

    Constructors

    - -
    -
    - ExtendedShortName(String aParameter) -
    -
    - -
    const
    -
    -
    -
    - -
    -

    Properties

    - -
    -
    - aParameter - → String -
    -
    - -
    final, inherited
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

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

    Operators

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

    ExtendedShortName constructor

    - -
    - const - ExtendedShortName(String aParameter) -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/F-class.html b/testing/test_package_docs/ex/F-class.html deleted file mode 100644 index f9e79ea76d..0000000000 --- a/testing/test_package_docs/ex/F-class.html +++ /dev/null @@ -1,591 +0,0 @@ - - - - - - - - F class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    F
    - -
    - -
    - - - -
    -

    F<T extends String> class

    - - -
    -
    -
    Inheritance
    -
      -
    • Object
    • -
    • Dog
    • -
    • F
    • -
    - - - - -
    -
    - -
    -

    Constructors

    - -
    -
    - F() -
    -
    - -
    -
    -
    - -
    -

    Properties

    - -
    -
    - aFinalField - → int -
    -
    - -
    final, inherited
    -
    -
    - aGetterReturningRandomThings - → int -
    -
    - -
    read-only, inherited
    -
    -
    - aProtectedFinalField - → int -
    -
    - -
    @protected, final, inherited
    -
    -
    - deprecatedField - ↔ int -
    -
    - -
    read / write, inherited
    -
    -
    - deprecatedGetter - → int -
    -
    - -
    read-only, inherited
    -
    -
    - deprecatedSetter - int -
    -
    - -
    write-only, inherited
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - isImplemented - → bool -
    -
    - -
    read-only, inherited
    -
    -
    - name - ↔ String -
    -
    - -
    read / write, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

    -
    -
    - methodWithGenericParam([List<Apple> msgs ]) - → void - -
    -
    - - -
    -
    - abstractMethod() - → void - -
    -
    - -
    inherited
    -
    -
    - foo() - → Future - -
    -
    - -
    inherited
    -
    -
    - getAnotherClassD() - → List<Dog> - -
    -
    - -
    @Deprecated('before v27.3'), inherited
    -
    -
    - getClassA() - → List<Apple> - -
    -
    - -
    inherited
    -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - test() - → void - -
    -
    - -
    inherited
    -
    -
    - testGeneric(Map<String, dynamic> args) - → void - -
    -
    - -
    inherited
    -
    -
    - testGenericMethod<T>(T arg) - → T - -
    -
    - -
    inherited
    -
    -
    - testMethod(Iterable it) - → void - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    - withAnimation() - → void - -
    -
    - Animation method [...] -
    inherited
    -
    -
    - withAnimationBadHeight() - → void - -
    -
    - Malformed Animation method with non-integer height [...] -
    inherited
    -
    -
    - withAnimationBadWidth() - → void - -
    -
    - Malformed Animation method with non-integer width [...] -
    inherited
    -
    -
    - withAnimationInline() - → void - -
    -
    - Animation inline in text. [...] -
    inherited
    -
    -
    - withAnimationInOneLineDoc() - → void - -
    -
    - Animation in one line doc [...] -
    inherited
    -
    -
    - withAnimationNonUnique() - → void - -
    -
    - Non-Unique Animation method (between methods) [...] -
    inherited
    -
    -
    - withAnimationNonUniqueDeprecated() - → void - -
    -
    - Non-Unique deprecated Animation method (between methods) [...] -
    inherited
    -
    -
    - withAnimationOutOfOrder() - → void - -
    -
    - Animation with out-of-order id argument. [...] -
    inherited
    -
    -
    - withAnimationUnknownArg() - → void - -
    -
    - Animation with an argument that is not the id. [...] -
    inherited
    -
    -
    - withAnimationWrongParams() - → void - -
    -
    - Malformed Animation method with wrong parameters [...] -
    inherited
    -
    -
    - withDeprecatedAnimation() - → void - -
    -
    - Deprecated animation method format. [...] -
    inherited
    -
    -
    - withInvalidNamedAnimation() - → void - -
    -
    - Animation method with invalid name [...] -
    inherited
    -
    -
    - withMacro() - → void - -
    -
    - Macro method [...] -
    inherited
    -
    -
    - withMacro2() - → void - -
    -
    - Foo macro content -
    inherited
    -
    -
    - withNamedAnimation() - → void - -
    -
    - Animation method with name [...] -
    inherited
    -
    -
    - withPrivateMacro() - → void - -
    -
    - Use a privately defined macro: Private macro content -
    inherited
    -
    -
    - withQuotedNamedAnimation() - → void - -
    -
    - Animation method with quoted name [...] -
    inherited
    -
    -
    - withUndefinedMacro() - → void - -
    -
    - Don't define this: null -
    inherited
    -
    -
    -
    - -
    -

    Operators

    -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/F/F.html b/testing/test_package_docs/ex/F/F.html deleted file mode 100644 index 78b5803b0e..0000000000 --- a/testing/test_package_docs/ex/F/F.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - F constructor - F class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    F
    - -
    - -
    - - - -
    -

    F<T extends String> constructor

    - -
    - - F<T extends String>() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/F/methodWithGenericParam.html b/testing/test_package_docs/ex/F/methodWithGenericParam.html deleted file mode 100644 index b2c5e7706c..0000000000 --- a/testing/test_package_docs/ex/F/methodWithGenericParam.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - methodWithGenericParam method - F class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    methodWithGenericParam
    - -
    - -
    - - - -
    -

    methodWithGenericParam method

    - -
    - void - methodWithGenericParam -([List<Apple> msgs ]) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/F/test.html b/testing/test_package_docs/ex/F/test.html deleted file mode 100644 index 41ffa99aa0..0000000000 --- a/testing/test_package_docs/ex/F/test.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - test method - F class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    test
    - -
    - -
    - - - -
    -

    test method

    - -
    - void - test -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ForAnnotation-class.html b/testing/test_package_docs/ex/ForAnnotation-class.html deleted file mode 100644 index 1883d67324..0000000000 --- a/testing/test_package_docs/ex/ForAnnotation-class.html +++ /dev/null @@ -1,245 +0,0 @@ - - - - - - - - ForAnnotation class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    ForAnnotation
    - -
    - -
    - - - -
    -

    ForAnnotation class

    - - - -
    -

    Constructors

    - -
    -
    - ForAnnotation(String value) -
    -
    - -
    const
    -
    -
    -
    - -
    -

    Properties

    - -
    -
    - value - → String -
    -
    - -
    final
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

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

    Operators

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

    ForAnnotation constructor

    - -
    - const - ForAnnotation(String value) -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ForAnnotation/hashCode.html b/testing/test_package_docs/ex/ForAnnotation/hashCode.html deleted file mode 100644 index 6dbdf2e045..0000000000 --- a/testing/test_package_docs/ex/ForAnnotation/hashCode.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - hashCode property - ForAnnotation class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ForAnnotation/noSuchMethod.html b/testing/test_package_docs/ex/ForAnnotation/noSuchMethod.html deleted file mode 100644 index 06b78bc75e..0000000000 --- a/testing/test_package_docs/ex/ForAnnotation/noSuchMethod.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - noSuchMethod method - ForAnnotation class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

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

    operator == method

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

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ForAnnotation/toString.html b/testing/test_package_docs/ex/ForAnnotation/toString.html deleted file mode 100644 index 0669659998..0000000000 --- a/testing/test_package_docs/ex/ForAnnotation/toString.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - toString method - ForAnnotation class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ForAnnotation/value.html b/testing/test_package_docs/ex/ForAnnotation/value.html deleted file mode 100644 index a53cacd35f..0000000000 --- a/testing/test_package_docs/ex/ForAnnotation/value.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - value property - ForAnnotation class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    value
    - -
    - -
    - - - -
    -

    value property

    - -
    - String - value -
    final
    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/HasAnnotation-class.html b/testing/test_package_docs/ex/HasAnnotation-class.html deleted file mode 100644 index 317e3da30b..0000000000 --- a/testing/test_package_docs/ex/HasAnnotation-class.html +++ /dev/null @@ -1,247 +0,0 @@ - - - - - - - - HasAnnotation class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    HasAnnotation
    - -
    - -
    - - - -
    -

    HasAnnotation class

    - - -
    -
    - - - - -
    Annotations
    -
    -
    -
    - -
    -

    Constructors

    - -
    -
    - HasAnnotation() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

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

    Operators

    -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/HasAnnotation/HasAnnotation.html b/testing/test_package_docs/ex/HasAnnotation/HasAnnotation.html deleted file mode 100644 index 7f7403c608..0000000000 --- a/testing/test_package_docs/ex/HasAnnotation/HasAnnotation.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - HasAnnotation constructor - HasAnnotation class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    HasAnnotation
    - -
    - -
    - - - -
    -

    HasAnnotation constructor

    - -
    - - HasAnnotation() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/HasAnnotation/hashCode.html b/testing/test_package_docs/ex/HasAnnotation/hashCode.html deleted file mode 100644 index 9a7cde75a6..0000000000 --- a/testing/test_package_docs/ex/HasAnnotation/hashCode.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - hashCode property - HasAnnotation class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/HasAnnotation/noSuchMethod.html b/testing/test_package_docs/ex/HasAnnotation/noSuchMethod.html deleted file mode 100644 index 78735699fb..0000000000 --- a/testing/test_package_docs/ex/HasAnnotation/noSuchMethod.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - noSuchMethod method - HasAnnotation class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

    - -
    - dynamic - noSuchMethod -(Invocation invocation) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/HasAnnotation/operator_equals.html b/testing/test_package_docs/ex/HasAnnotation/operator_equals.html deleted file mode 100644 index 3d50695ed3..0000000000 --- a/testing/test_package_docs/ex/HasAnnotation/operator_equals.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - operator == method - HasAnnotation class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator ==
    - -
    - -
    - - - -
    -

    operator == method

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

    runtimeType property

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

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Helper-class.html b/testing/test_package_docs/ex/Helper-class.html deleted file mode 100644 index 4ffa97fb0d..0000000000 --- a/testing/test_package_docs/ex/Helper-class.html +++ /dev/null @@ -1,250 +0,0 @@ - - - - - - - - Helper class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    Helper
    - -
    - -
    - - - -
    -

    Helper class

    - -
    -

    Even unresolved references in the same library should be resolved -Apple -ex.B

    -
    - - -
    -

    Constructors

    - -
    -
    - Helper() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

    -
    -
    - getContents() - → String - -
    -
    - - -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

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

    Helper constructor

    - -
    - - Helper() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Helper/getContents.html b/testing/test_package_docs/ex/Helper/getContents.html deleted file mode 100644 index 5ff36dbcec..0000000000 --- a/testing/test_package_docs/ex/Helper/getContents.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - getContents method - Helper class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    getContents
    - -
    - -
    - - - -
    -

    getContents method

    - -
    - String - getContents -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Helper/hashCode.html b/testing/test_package_docs/ex/Helper/hashCode.html deleted file mode 100644 index 70efde1500..0000000000 --- a/testing/test_package_docs/ex/Helper/hashCode.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - hashCode property - Helper class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

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

    noSuchMethod method

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

    operator == method

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

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Helper/toString.html b/testing/test_package_docs/ex/Helper/toString.html deleted file mode 100644 index 56ce81e67e..0000000000 --- a/testing/test_package_docs/ex/Helper/toString.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - toString method - Helper class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Klass-class.html b/testing/test_package_docs/ex/Klass-class.html deleted file mode 100644 index fd813619a1..0000000000 --- a/testing/test_package_docs/ex/Klass-class.html +++ /dev/null @@ -1,288 +0,0 @@ - - - - - - - - Klass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    Klass
    - -
    - -
    - - - -
    -

    Klass class

    - -
    -

    A class

    -
    - - -
    -

    Constructors

    - -
    -
    - Klass() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

    -
    -
    - another() - → dynamic - -
    -
    - Another method - -
    -
    - anotherMethod() - → dynamic - -
    -
    - A method with a custom annotation -
    @aThingToDo('from', 'thing')
    -
    -
    - imAFactoryNoReally() - → dynamic - -
    -
    - Not really a factory, but... -
    @factory
    -
    -
    - imProtected() - → dynamic - -
    -
    - A protected method -
    @protected
    -
    -
    - method() - → dynamic - -
    -
    - A method - -
    -
    - toString() - → String - -
    -
    - A shadowed method - -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

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

    Klass constructor

    - -
    - - Klass() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Klass/another.html b/testing/test_package_docs/ex/Klass/another.html deleted file mode 100644 index 2da4f5190b..0000000000 --- a/testing/test_package_docs/ex/Klass/another.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - another method - Klass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    another
    - -
    - -
    - - - -
    -

    another method

    - -
    - dynamic - another -() -
    -
    -

    Another method

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Klass/anotherMethod.html b/testing/test_package_docs/ex/Klass/anotherMethod.html deleted file mode 100644 index bd844cc549..0000000000 --- a/testing/test_package_docs/ex/Klass/anotherMethod.html +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - - - anotherMethod method - Klass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    anotherMethod
    - -
    - -
    - - - -
    -

    anotherMethod method

    - -
    -
    -
      -
    1. @aThingToDo('from', 'thing')
    2. -
    -
    - dynamic - anotherMethod -() -
    -
    -

    A method with a custom annotation

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Klass/hashCode.html b/testing/test_package_docs/ex/Klass/hashCode.html deleted file mode 100644 index 806743ec5f..0000000000 --- a/testing/test_package_docs/ex/Klass/hashCode.html +++ /dev/null @@ -1,106 +0,0 @@ - - - - - - - - hashCode property - Klass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Klass/imAFactoryNoReally.html b/testing/test_package_docs/ex/Klass/imAFactoryNoReally.html deleted file mode 100644 index a05b1754e9..0000000000 --- a/testing/test_package_docs/ex/Klass/imAFactoryNoReally.html +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - - - imAFactoryNoReally method - Klass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    imAFactoryNoReally
    - -
    - -
    - - - -
    -

    imAFactoryNoReally method

    - -
    -
    -
      -
    1. @factory
    2. -
    -
    - dynamic - imAFactoryNoReally -() -
    -
    -

    Not really a factory, but...

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Klass/imProtected.html b/testing/test_package_docs/ex/Klass/imProtected.html deleted file mode 100644 index 4b26488202..0000000000 --- a/testing/test_package_docs/ex/Klass/imProtected.html +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - - - imProtected method - Klass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    imProtected
    - -
    - -
    - - - -
    -

    imProtected method

    - -
    -
    -
      -
    1. @protected
    2. -
    -
    - dynamic - imProtected -() -
    -
    -

    A protected method

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Klass/method.html b/testing/test_package_docs/ex/Klass/method.html deleted file mode 100644 index 984860cc5f..0000000000 --- a/testing/test_package_docs/ex/Klass/method.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - method method - Klass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    method
    - -
    - -
    - - - -
    -

    method method

    - -
    - dynamic - method -() -
    -
    -

    A method

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Klass/noSuchMethod.html b/testing/test_package_docs/ex/Klass/noSuchMethod.html deleted file mode 100644 index bfbdf653a1..0000000000 --- a/testing/test_package_docs/ex/Klass/noSuchMethod.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - noSuchMethod method - Klass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

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

    operator == method

    - -
    - bool - operator == -(dynamic other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Klass/runtimeType.html b/testing/test_package_docs/ex/Klass/runtimeType.html deleted file mode 100644 index 9bcc75bc2d..0000000000 --- a/testing/test_package_docs/ex/Klass/runtimeType.html +++ /dev/null @@ -1,106 +0,0 @@ - - - - - - - - runtimeType property - Klass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    runtimeType
    - -
    - -
    - - - -
    -

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/Klass/toString.html b/testing/test_package_docs/ex/Klass/toString.html deleted file mode 100644 index ddfc468a18..0000000000 --- a/testing/test_package_docs/ex/Klass/toString.html +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - - - toString method - Klass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    -
    -
      -
    1. @override
    2. -
    -
    - String - toString -() -
    -
    -

    A shadowed method

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/MY_CAT-constant.html b/testing/test_package_docs/ex/MY_CAT-constant.html deleted file mode 100644 index 3c7a24ec51..0000000000 --- a/testing/test_package_docs/ex/MY_CAT-constant.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - MY_CAT constant - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    MY_CAT
    - -
    - -
    - - - -
    -

    MY_CAT top-level constant

    - -
    - const MY_CAT - = - const ConstantCat('tabby') - -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/MyError-class.html b/testing/test_package_docs/ex/MyError-class.html deleted file mode 100644 index b4158377da..0000000000 --- a/testing/test_package_docs/ex/MyError-class.html +++ /dev/null @@ -1,258 +0,0 @@ - - - - - - - - MyError class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    MyError
    - -
    - -
    - - - -
    -

    MyError class

    - - -
    -
    -
    Inheritance
    -
      -
    • Object
    • -
    • Error
    • -
    • MyError
    • -
    - - - - -
    -
    - -
    -

    Constructors

    - -
    -
    - MyError() -
    -
    - -
    -
    -
    - -
    -

    Properties

    - -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    - stackTrace - → StackTrace -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

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

    Operators

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

    MyError constructor

    - -
    - - MyError() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/MyError/hashCode.html b/testing/test_package_docs/ex/MyError/hashCode.html deleted file mode 100644 index e58a4d92d0..0000000000 --- a/testing/test_package_docs/ex/MyError/hashCode.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - hashCode property - MyError class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

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

    noSuchMethod method

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

    operator == method

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

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/MyError/stackTrace.html b/testing/test_package_docs/ex/MyError/stackTrace.html deleted file mode 100644 index 16db616a19..0000000000 --- a/testing/test_package_docs/ex/MyError/stackTrace.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - stackTrace property - MyError class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    stackTrace
    - -
    - -
    - - - -
    -

    stackTrace property

    - - -
    - -
    - StackTrace - stackTrace -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/MyError/toString.html b/testing/test_package_docs/ex/MyError/toString.html deleted file mode 100644 index 897ee1f3f1..0000000000 --- a/testing/test_package_docs/ex/MyError/toString.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - toString method - MyError class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/MyErrorImplements-class.html b/testing/test_package_docs/ex/MyErrorImplements-class.html deleted file mode 100644 index badc615e1b..0000000000 --- a/testing/test_package_docs/ex/MyErrorImplements-class.html +++ /dev/null @@ -1,258 +0,0 @@ - - - - - - - - MyErrorImplements class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    MyErrorImplements
    - -
    - -
    - - - -
    -

    MyErrorImplements class

    - - -
    -
    - -
    Implements
    -
    -
      -
    • Error
    • -
    -
    - - - -
    -
    - -
    -

    Constructors

    - -
    -
    - MyErrorImplements() -
    -
    - -
    -
    -
    - -
    -

    Properties

    - -
    -
    - stackTrace - → StackTrace -
    -
    - -
    read-only
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

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

    Operators

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

    MyErrorImplements constructor

    - -
    - - MyErrorImplements() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/MyErrorImplements/hashCode.html b/testing/test_package_docs/ex/MyErrorImplements/hashCode.html deleted file mode 100644 index 66881284ce..0000000000 --- a/testing/test_package_docs/ex/MyErrorImplements/hashCode.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - hashCode property - MyErrorImplements class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

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

    noSuchMethod method

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

    operator == method

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

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/MyErrorImplements/stackTrace.html b/testing/test_package_docs/ex/MyErrorImplements/stackTrace.html deleted file mode 100644 index 4f93034c81..0000000000 --- a/testing/test_package_docs/ex/MyErrorImplements/stackTrace.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - stackTrace property - MyErrorImplements class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    stackTrace
    - -
    - -
    - - - -
    -

    stackTrace property

    - - -
    - -
    - StackTrace - stackTrace - -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/MyErrorImplements/toString.html b/testing/test_package_docs/ex/MyErrorImplements/toString.html deleted file mode 100644 index a8251082fe..0000000000 --- a/testing/test_package_docs/ex/MyErrorImplements/toString.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - toString method - MyErrorImplements class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/MyException-class.html b/testing/test_package_docs/ex/MyException-class.html deleted file mode 100644 index c9ab300b9b..0000000000 --- a/testing/test_package_docs/ex/MyException-class.html +++ /dev/null @@ -1,249 +0,0 @@ - - - - - - - - MyException class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    MyException
    - -
    - -
    - - - -
    -

    MyException class

    - - -
    -
    - -
    Implements
    -
    -
      -
    • Exception
    • -
    -
    - - - -
    -
    - -
    -

    Constructors

    - -
    -
    - MyException() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

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

    Operators

    -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/MyException/MyException.html b/testing/test_package_docs/ex/MyException/MyException.html deleted file mode 100644 index 499a09dda4..0000000000 --- a/testing/test_package_docs/ex/MyException/MyException.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - MyException constructor - MyException class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    MyException
    - -
    - -
    - - - -
    -

    MyException constructor

    - -
    - - MyException() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/MyException/hashCode.html b/testing/test_package_docs/ex/MyException/hashCode.html deleted file mode 100644 index 40eb347779..0000000000 --- a/testing/test_package_docs/ex/MyException/hashCode.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - hashCode property - MyException class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

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

    noSuchMethod method

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

    operator == method

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

    runtimeType property

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

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/MyExceptionImplements-class.html b/testing/test_package_docs/ex/MyExceptionImplements-class.html deleted file mode 100644 index 7e2b4f2ec3..0000000000 --- a/testing/test_package_docs/ex/MyExceptionImplements-class.html +++ /dev/null @@ -1,249 +0,0 @@ - - - - - - - - MyExceptionImplements class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    MyExceptionImplements
    - -
    - -
    - - - -
    -

    MyExceptionImplements class

    - - -
    -
    - -
    Implements
    -
    -
      -
    • Exception
    • -
    -
    - - - -
    -
    - -
    -

    Constructors

    - -
    -
    - MyExceptionImplements() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

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

    Operators

    -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/MyExceptionImplements/MyExceptionImplements.html b/testing/test_package_docs/ex/MyExceptionImplements/MyExceptionImplements.html deleted file mode 100644 index 9e2a347e9c..0000000000 --- a/testing/test_package_docs/ex/MyExceptionImplements/MyExceptionImplements.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - MyExceptionImplements constructor - MyExceptionImplements class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    MyExceptionImplements
    - -
    - -
    - - - -
    -

    MyExceptionImplements constructor

    - -
    - - MyExceptionImplements() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/MyExceptionImplements/hashCode.html b/testing/test_package_docs/ex/MyExceptionImplements/hashCode.html deleted file mode 100644 index 46e0c2e5e7..0000000000 --- a/testing/test_package_docs/ex/MyExceptionImplements/hashCode.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - hashCode property - MyExceptionImplements class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/MyExceptionImplements/noSuchMethod.html b/testing/test_package_docs/ex/MyExceptionImplements/noSuchMethod.html deleted file mode 100644 index 8c0b5594de..0000000000 --- a/testing/test_package_docs/ex/MyExceptionImplements/noSuchMethod.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - noSuchMethod method - MyExceptionImplements class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

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

    operator == method

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

    runtimeType property

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

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/PRETTY_COLORS-constant.html b/testing/test_package_docs/ex/PRETTY_COLORS-constant.html deleted file mode 100644 index 1dc2dd0016..0000000000 --- a/testing/test_package_docs/ex/PRETTY_COLORS-constant.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - PRETTY_COLORS constant - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    PRETTY_COLORS
    - -
    - -
    - - - -
    -

    PRETTY_COLORS top-level constant

    - -
    - const PRETTY_COLORS - = - const <String> [COLOR_GREEN, COLOR_ORANGE, 'blue'] - -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ParameterizedClass-class.html b/testing/test_package_docs/ex/ParameterizedClass-class.html deleted file mode 100644 index 49bb70c346..0000000000 --- a/testing/test_package_docs/ex/ParameterizedClass-class.html +++ /dev/null @@ -1,307 +0,0 @@ - - - - - - - - ParameterizedClass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    ParameterizedClass
    - -
    - -
    - - - -
    -

    ParameterizedClass<T> class

    - -
    -

    Support class to test inheritance + type expansion from implements clause.

    -
    - -
    -
    - - - -
    Implemented by
    -
    - -
    -
    - -
    -

    Constructors

    - -
    -
    - ParameterizedClass() -
    -
    - -
    -
    -
    - -
    -

    Properties

    - -
    -
    - aInheritedField - AnotherParameterizedClass<T> -
    -
    - -
    read / write
    -
    -
    - aInheritedGetter - AnotherParameterizedClass<T> -
    -
    - -
    read-only
    -
    -
    - aInheritedSetter - AnotherParameterizedClass<T> -
    -
    - -
    write-only
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

    -
    -
    - aInheritedMethod(int foo) - AnotherParameterizedClass<T> - -
    -
    - - -
    -
    - aInheritedTypedefReturningMethod() - ParameterizedTypedef<T> - -
    -
    - - -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

    -
    -
    - operator +(ParameterizedClass<T> other) - ParameterizedClass<T> - -
    -
    - - -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ParameterizedClass/ParameterizedClass.html b/testing/test_package_docs/ex/ParameterizedClass/ParameterizedClass.html deleted file mode 100644 index fd8ea734b2..0000000000 --- a/testing/test_package_docs/ex/ParameterizedClass/ParameterizedClass.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - ParameterizedClass constructor - ParameterizedClass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    ParameterizedClass
    - -
    - -
    - - - -
    -

    ParameterizedClass<T> constructor

    - -
    - - ParameterizedClass<T>() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ParameterizedClass/aInheritedField.html b/testing/test_package_docs/ex/ParameterizedClass/aInheritedField.html deleted file mode 100644 index 6c1b22835d..0000000000 --- a/testing/test_package_docs/ex/ParameterizedClass/aInheritedField.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - aInheritedField property - ParameterizedClass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aInheritedField
    - -
    - -
    - - - -
    -

    aInheritedField property

    - -
    - AnotherParameterizedClass<T> - aInheritedField -
    read / write
    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ParameterizedClass/aInheritedGetter.html b/testing/test_package_docs/ex/ParameterizedClass/aInheritedGetter.html deleted file mode 100644 index acae138901..0000000000 --- a/testing/test_package_docs/ex/ParameterizedClass/aInheritedGetter.html +++ /dev/null @@ -1,107 +0,0 @@ - - - - - - - - aInheritedGetter property - ParameterizedClass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aInheritedGetter
    - -
    - -
    - - - -
    -

    aInheritedGetter property

    - - -
    - -
    - AnotherParameterizedClass<T> - aInheritedGetter - -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ParameterizedClass/aInheritedMethod.html b/testing/test_package_docs/ex/ParameterizedClass/aInheritedMethod.html deleted file mode 100644 index 0cf069c56f..0000000000 --- a/testing/test_package_docs/ex/ParameterizedClass/aInheritedMethod.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - aInheritedMethod method - ParameterizedClass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aInheritedMethod
    - -
    - -
    - - - -
    -

    aInheritedMethod method

    - -
    - AnotherParameterizedClass<T> - aInheritedMethod -(int foo) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ParameterizedClass/aInheritedSetter.html b/testing/test_package_docs/ex/ParameterizedClass/aInheritedSetter.html deleted file mode 100644 index cc1b2c0094..0000000000 --- a/testing/test_package_docs/ex/ParameterizedClass/aInheritedSetter.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - - aInheritedSetter property - ParameterizedClass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aInheritedSetter
    - -
    - -
    - - - -
    -

    aInheritedSetter property

    - - - -
    - -
    - void - aInheritedSetter= -(AnotherParameterizedClass<T> thingToSet) - -
    - - -
    -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ParameterizedClass/aInheritedTypedefReturningMethod.html b/testing/test_package_docs/ex/ParameterizedClass/aInheritedTypedefReturningMethod.html deleted file mode 100644 index 8248fa127c..0000000000 --- a/testing/test_package_docs/ex/ParameterizedClass/aInheritedTypedefReturningMethod.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - aInheritedTypedefReturningMethod method - ParameterizedClass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aInheritedTypedefReturningMethod
    - -
    - -
    - - - -
    -

    aInheritedTypedefReturningMethod method

    - -
    - ParameterizedTypedef<T> - aInheritedTypedefReturningMethod -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ParameterizedClass/hashCode.html b/testing/test_package_docs/ex/ParameterizedClass/hashCode.html deleted file mode 100644 index 487eb6d26e..0000000000 --- a/testing/test_package_docs/ex/ParameterizedClass/hashCode.html +++ /dev/null @@ -1,107 +0,0 @@ - - - - - - - - hashCode property - ParameterizedClass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ParameterizedClass/noSuchMethod.html b/testing/test_package_docs/ex/ParameterizedClass/noSuchMethod.html deleted file mode 100644 index 95ebe969c7..0000000000 --- a/testing/test_package_docs/ex/ParameterizedClass/noSuchMethod.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - noSuchMethod method - ParameterizedClass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

    - -
    - dynamic - noSuchMethod -(Invocation invocation) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ParameterizedClass/operator_equals.html b/testing/test_package_docs/ex/ParameterizedClass/operator_equals.html deleted file mode 100644 index f99c63e427..0000000000 --- a/testing/test_package_docs/ex/ParameterizedClass/operator_equals.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - operator == method - ParameterizedClass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator ==
    - -
    - -
    - - - -
    -

    operator == method

    - -
    - bool - operator == -(dynamic other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ParameterizedClass/operator_plus.html b/testing/test_package_docs/ex/ParameterizedClass/operator_plus.html deleted file mode 100644 index 3e8d9b1721..0000000000 --- a/testing/test_package_docs/ex/ParameterizedClass/operator_plus.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - operator + method - ParameterizedClass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator +
    - -
    - -
    - - - -
    -

    operator + method

    - -
    - ParameterizedClass<T> - operator + -(ParameterizedClass<T> other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ParameterizedClass/runtimeType.html b/testing/test_package_docs/ex/ParameterizedClass/runtimeType.html deleted file mode 100644 index 6cbdf5fd86..0000000000 --- a/testing/test_package_docs/ex/ParameterizedClass/runtimeType.html +++ /dev/null @@ -1,107 +0,0 @@ - - - - - - - - runtimeType property - ParameterizedClass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    runtimeType
    - -
    - -
    - - - -
    -

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ParameterizedClass/toString.html b/testing/test_package_docs/ex/ParameterizedClass/toString.html deleted file mode 100644 index e8f426fb88..0000000000 --- a/testing/test_package_docs/ex/ParameterizedClass/toString.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - toString method - ParameterizedClass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ParameterizedTypedef.html b/testing/test_package_docs/ex/ParameterizedTypedef.html deleted file mode 100644 index a95fca7dbb..0000000000 --- a/testing/test_package_docs/ex/ParameterizedTypedef.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - ParameterizedTypedef typedef - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    ParameterizedTypedef
    - -
    - -
    - - - -
    -

    ParameterizedTypedef<T> typedef

    - -
    - String - ParameterizedTypedef -(T msg, int foo) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass-class.html b/testing/test_package_docs/ex/PublicClassExtendsPrivateClass-class.html deleted file mode 100644 index 6739e0cf06..0000000000 --- a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass-class.html +++ /dev/null @@ -1,245 +0,0 @@ - - - - - - - - PublicClassExtendsPrivateClass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    PublicClassExtendsPrivateClass
    - -
    - -
    - - - -
    -

    PublicClassExtendsPrivateClass class

    - - - -
    -

    Constructors

    - -
    -
    - PublicClassExtendsPrivateClass() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

    -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - test() - → void - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

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

    PublicClassExtendsPrivateClass constructor

    - -
    - - PublicClassExtendsPrivateClass() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/hashCode.html b/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/hashCode.html deleted file mode 100644 index 6c364af888..0000000000 --- a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/hashCode.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - hashCode property - PublicClassExtendsPrivateClass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/noSuchMethod.html b/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/noSuchMethod.html deleted file mode 100644 index 7a84d0152a..0000000000 --- a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/noSuchMethod.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - noSuchMethod method - PublicClassExtendsPrivateClass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

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

    operator == method

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

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/test.html b/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/test.html deleted file mode 100644 index b13a19f894..0000000000 --- a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/test.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - test method - PublicClassExtendsPrivateClass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    test
    - -
    - -
    - - - -
    -

    test method

    - -
    - void - test -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/toString.html b/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/toString.html deleted file mode 100644 index e7b45d23c4..0000000000 --- a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/toString.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - toString method - PublicClassExtendsPrivateClass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface-class.html b/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface-class.html deleted file mode 100644 index afda9251b3..0000000000 --- a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface-class.html +++ /dev/null @@ -1,245 +0,0 @@ - - - - - - - - PublicClassImplementsPrivateInterface class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    PublicClassImplementsPrivateInterface
    - -
    - -
    - - - -
    -

    PublicClassImplementsPrivateInterface class

    - - - -
    -

    Constructors

    - -
    -
    - PublicClassImplementsPrivateInterface() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

    -
    -
    - test() - → void - -
    -
    - - -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

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

    PublicClassImplementsPrivateInterface constructor

    - -
    - - PublicClassImplementsPrivateInterface() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/hashCode.html b/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/hashCode.html deleted file mode 100644 index 33c58fca0b..0000000000 --- a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/hashCode.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - hashCode property - PublicClassImplementsPrivateInterface class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/noSuchMethod.html b/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/noSuchMethod.html deleted file mode 100644 index 57189b3b9a..0000000000 --- a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/noSuchMethod.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - noSuchMethod method - PublicClassImplementsPrivateInterface class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

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

    operator == method

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

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/test.html b/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/test.html deleted file mode 100644 index 3ee5e3d526..0000000000 --- a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/test.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - test method - PublicClassImplementsPrivateInterface class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    test
    - -
    - -
    - - - -
    -

    test method

    - -
    -
    -
      -
    1. @override
    2. -
    -
    - void - test -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/toString.html b/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/toString.html deleted file mode 100644 index 5fb600b21e..0000000000 --- a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/toString.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - toString method - PublicClassImplementsPrivateInterface class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ShapeType-class.html b/testing/test_package_docs/ex/ShapeType-class.html deleted file mode 100644 index a1105739c1..0000000000 --- a/testing/test_package_docs/ex/ShapeType-class.html +++ /dev/null @@ -1,267 +0,0 @@ - - - - - - - - ShapeType class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    ShapeType
    - -
    - -
    - - - -
    -

    ShapeType class

    - -
    -

    Foo bar.

    1. All references should be hyperlinks. MyError and -ShapeType and MyError and MyException and -MyError and MyException and -List<int> foo bar.
    -
    - - - -
    -

    Properties

    - -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - name - → String -
    -
    - -
    final, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

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

    Operators

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

    Constants

    - -
    -
    - ellipse - → const ShapeType -
    -
    - - -
    - const ShapeType._internal("Ellipse") -
    -
    -
    - rect - → const ShapeType -
    -
    - - -
    - const ShapeType._internal("Rect") -
    -
    -
    -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ShapeType/ellipse-constant.html b/testing/test_package_docs/ex/ShapeType/ellipse-constant.html deleted file mode 100644 index a50d3440bc..0000000000 --- a/testing/test_package_docs/ex/ShapeType/ellipse-constant.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - ellipse constant - ShapeType class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    ellipse
    - -
    - -
    - - - -
    -

    ellipse constant

    - -
    - ShapeType - const ellipse - = - const ShapeType._internal("Ellipse") -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ShapeType/hashCode.html b/testing/test_package_docs/ex/ShapeType/hashCode.html deleted file mode 100644 index 5c45de2dec..0000000000 --- a/testing/test_package_docs/ex/ShapeType/hashCode.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - hashCode property - ShapeType class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ShapeType/name.html b/testing/test_package_docs/ex/ShapeType/name.html deleted file mode 100644 index 31ebe55d3a..0000000000 --- a/testing/test_package_docs/ex/ShapeType/name.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - name property - ShapeType class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    name
    - -
    - -
    - - - -
    -

    name property

    - -
    - String - name -
    final, inherited
    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ShapeType/noSuchMethod.html b/testing/test_package_docs/ex/ShapeType/noSuchMethod.html deleted file mode 100644 index 7e8976f3c2..0000000000 --- a/testing/test_package_docs/ex/ShapeType/noSuchMethod.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - noSuchMethod method - ShapeType class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

    - -
    - dynamic - noSuchMethod -(Invocation invocation) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ShapeType/operator_equals.html b/testing/test_package_docs/ex/ShapeType/operator_equals.html deleted file mode 100644 index 0384afc784..0000000000 --- a/testing/test_package_docs/ex/ShapeType/operator_equals.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - operator == method - ShapeType class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator ==
    - -
    - -
    - - - -
    -

    operator == method

    - -
    - bool - operator == -(dynamic other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ShapeType/rect-constant.html b/testing/test_package_docs/ex/ShapeType/rect-constant.html deleted file mode 100644 index 4f37e3a0ad..0000000000 --- a/testing/test_package_docs/ex/ShapeType/rect-constant.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - rect constant - ShapeType class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    rect
    - -
    - -
    - - - -
    -

    rect constant

    - -
    - ShapeType - const rect - = - const ShapeType._internal("Rect") -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ShapeType/runtimeType.html b/testing/test_package_docs/ex/ShapeType/runtimeType.html deleted file mode 100644 index da878d3f13..0000000000 --- a/testing/test_package_docs/ex/ShapeType/runtimeType.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - runtimeType property - ShapeType class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    runtimeType
    - -
    - -
    - - - -
    -

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ShapeType/toString.html b/testing/test_package_docs/ex/ShapeType/toString.html deleted file mode 100644 index bd5533da0f..0000000000 --- a/testing/test_package_docs/ex/ShapeType/toString.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - toString method - ShapeType class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    -
    -
      -
    1. @override
    2. -
    -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ShortName-class.html b/testing/test_package_docs/ex/ShortName-class.html deleted file mode 100644 index b122544c4e..0000000000 --- a/testing/test_package_docs/ex/ShortName-class.html +++ /dev/null @@ -1,257 +0,0 @@ - - - - - - - - ShortName class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    ShortName
    - -
    - -
    - - - -
    -

    ShortName class

    - - -
    -
    - - - -
    Implemented by
    -
    - -
    -
    - -
    -

    Constructors

    - -
    -
    - ShortName(String aParameter) -
    -
    - -
    const
    -
    -
    -
    - -
    -

    Properties

    - -
    -
    - aParameter - → String -
    -
    - -
    final
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

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

    Operators

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

    ShortName constructor

    - -
    - const - ShortName(String aParameter) -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ShortName/aParameter.html b/testing/test_package_docs/ex/ShortName/aParameter.html deleted file mode 100644 index 40c500de73..0000000000 --- a/testing/test_package_docs/ex/ShortName/aParameter.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - aParameter property - ShortName class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aParameter
    - -
    - -
    - - - -
    -

    aParameter property

    - -
    - String - aParameter -
    final
    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ShortName/hashCode.html b/testing/test_package_docs/ex/ShortName/hashCode.html deleted file mode 100644 index c4f684b8c6..0000000000 --- a/testing/test_package_docs/ex/ShortName/hashCode.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - hashCode property - ShortName class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

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

    noSuchMethod method

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

    operator == method

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

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ShortName/toString.html b/testing/test_package_docs/ex/ShortName/toString.html deleted file mode 100644 index 68334304b7..0000000000 --- a/testing/test_package_docs/ex/ShortName/toString.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - toString method - ShortName class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/SpecializedDuration-class.html b/testing/test_package_docs/ex/SpecializedDuration-class.html deleted file mode 100644 index 611d7e2213..0000000000 --- a/testing/test_package_docs/ex/SpecializedDuration-class.html +++ /dev/null @@ -1,426 +0,0 @@ - - - - - - - - SpecializedDuration class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    SpecializedDuration
    - -
    - -
    - - - -
    -

    SpecializedDuration class

    - -
    -

    For testing a class that extends a class -that has some operators

    -
    - -
    -
    -
    Inheritance
    -
      -
    • Object
    • -
    • Duration
    • -
    • SpecializedDuration
    • -
    - - - - -
    -
    - -
    -

    Constructors

    - -
    -
    - SpecializedDuration() -
    -
    - -
    -
    -
    - -
    -

    Properties

    - -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - inDays - → int -
    -
    - -
    read-only, inherited
    -
    -
    - inHours - → int -
    -
    - -
    read-only, inherited
    -
    -
    - inMicroseconds - → int -
    -
    - -
    read-only, inherited
    -
    -
    - inMilliseconds - → int -
    -
    - -
    read-only, inherited
    -
    -
    - inMinutes - → int -
    -
    - -
    read-only, inherited
    -
    -
    - inSeconds - → int -
    -
    - -
    read-only, inherited
    -
    -
    - isNegative - → bool -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

    -
    -
    - abs() - → Duration - -
    -
    - -
    inherited
    -
    -
    - compareTo(Duration other) - → int - -
    -
    - -
    inherited
    -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

    -
    -
    - operator *(num factor) - → Duration - -
    -
    - -
    inherited
    -
    -
    - operator +(Duration other) - → Duration - -
    -
    - -
    inherited
    -
    -
    - operator -(Duration other) - → Duration - -
    -
    - -
    inherited
    -
    -
    - operator <(Duration other) - → bool - -
    -
    - -
    inherited
    -
    -
    - operator <=(Duration other) - → bool - -
    -
    - -
    inherited
    -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    - operator >(Duration other) - → bool - -
    -
    - -
    inherited
    -
    -
    - operator >=(Duration other) - → bool - -
    -
    - -
    inherited
    -
    -
    - operator unary-() - → Duration - -
    -
    - -
    inherited
    -
    -
    - operator ~/(int quotient) - → Duration - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/SpecializedDuration/SpecializedDuration.html b/testing/test_package_docs/ex/SpecializedDuration/SpecializedDuration.html deleted file mode 100644 index 153dc852df..0000000000 --- a/testing/test_package_docs/ex/SpecializedDuration/SpecializedDuration.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - SpecializedDuration constructor - SpecializedDuration class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    SpecializedDuration
    - -
    - -
    - - - -
    -

    SpecializedDuration constructor

    - -
    - - SpecializedDuration() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/SpecializedDuration/abs.html b/testing/test_package_docs/ex/SpecializedDuration/abs.html deleted file mode 100644 index 9c8bc77a7b..0000000000 --- a/testing/test_package_docs/ex/SpecializedDuration/abs.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - abs method - SpecializedDuration class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    abs
    - -
    - -
    - - - -
    -

    abs method

    - -
    - Duration - abs -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/SpecializedDuration/compareTo.html b/testing/test_package_docs/ex/SpecializedDuration/compareTo.html deleted file mode 100644 index 07c75e1e4e..0000000000 --- a/testing/test_package_docs/ex/SpecializedDuration/compareTo.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - compareTo method - SpecializedDuration class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    compareTo
    - -
    - -
    - - - -
    -

    compareTo method

    - -
    - int - compareTo -(Duration other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/SpecializedDuration/hashCode.html b/testing/test_package_docs/ex/SpecializedDuration/hashCode.html deleted file mode 100644 index a9a9b706ec..0000000000 --- a/testing/test_package_docs/ex/SpecializedDuration/hashCode.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - hashCode property - SpecializedDuration class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/SpecializedDuration/inDays.html b/testing/test_package_docs/ex/SpecializedDuration/inDays.html deleted file mode 100644 index 643ce0c0b7..0000000000 --- a/testing/test_package_docs/ex/SpecializedDuration/inDays.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - inDays property - SpecializedDuration class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    inDays
    - -
    - -
    - - - -
    -

    inDays property

    - - -
    - -
    - int - inDays -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/SpecializedDuration/inHours.html b/testing/test_package_docs/ex/SpecializedDuration/inHours.html deleted file mode 100644 index 377196d8c3..0000000000 --- a/testing/test_package_docs/ex/SpecializedDuration/inHours.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - inHours property - SpecializedDuration class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    inHours
    - -
    - -
    - - - -
    -

    inHours property

    - - -
    - -
    - int - inHours -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/SpecializedDuration/inMicroseconds.html b/testing/test_package_docs/ex/SpecializedDuration/inMicroseconds.html deleted file mode 100644 index 9693a6ff88..0000000000 --- a/testing/test_package_docs/ex/SpecializedDuration/inMicroseconds.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - inMicroseconds property - SpecializedDuration class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    inMicroseconds
    - -
    - -
    - - - -
    -

    inMicroseconds property

    - - -
    - -
    - int - inMicroseconds -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/SpecializedDuration/inMilliseconds.html b/testing/test_package_docs/ex/SpecializedDuration/inMilliseconds.html deleted file mode 100644 index 1913c38f72..0000000000 --- a/testing/test_package_docs/ex/SpecializedDuration/inMilliseconds.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - inMilliseconds property - SpecializedDuration class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    inMilliseconds
    - -
    - -
    - - - -
    -

    inMilliseconds property

    - - -
    - -
    - int - inMilliseconds -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/SpecializedDuration/inMinutes.html b/testing/test_package_docs/ex/SpecializedDuration/inMinutes.html deleted file mode 100644 index a46f2da56c..0000000000 --- a/testing/test_package_docs/ex/SpecializedDuration/inMinutes.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - inMinutes property - SpecializedDuration class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    inMinutes
    - -
    - -
    - - - -
    -

    inMinutes property

    - - -
    - -
    - int - inMinutes -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/SpecializedDuration/inSeconds.html b/testing/test_package_docs/ex/SpecializedDuration/inSeconds.html deleted file mode 100644 index 23af057ccc..0000000000 --- a/testing/test_package_docs/ex/SpecializedDuration/inSeconds.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - inSeconds property - SpecializedDuration class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    inSeconds
    - -
    - -
    - - - -
    -

    inSeconds property

    - - -
    - -
    - int - inSeconds -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/SpecializedDuration/isNegative.html b/testing/test_package_docs/ex/SpecializedDuration/isNegative.html deleted file mode 100644 index 89f096ae34..0000000000 --- a/testing/test_package_docs/ex/SpecializedDuration/isNegative.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - isNegative property - SpecializedDuration class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    isNegative
    - -
    - -
    - - - -
    -

    isNegative property

    - - -
    - -
    - bool - isNegative -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/SpecializedDuration/noSuchMethod.html b/testing/test_package_docs/ex/SpecializedDuration/noSuchMethod.html deleted file mode 100644 index fcebfb4015..0000000000 --- a/testing/test_package_docs/ex/SpecializedDuration/noSuchMethod.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - noSuchMethod method - SpecializedDuration class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

    - -
    - dynamic - noSuchMethod -(Invocation invocation) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/SpecializedDuration/operator_equals.html b/testing/test_package_docs/ex/SpecializedDuration/operator_equals.html deleted file mode 100644 index 5dd8c80570..0000000000 --- a/testing/test_package_docs/ex/SpecializedDuration/operator_equals.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - operator == method - SpecializedDuration class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator ==
    - -
    - -
    - - - -
    -

    operator == method

    - -
    - bool - operator == -(dynamic other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/SpecializedDuration/operator_greater.html b/testing/test_package_docs/ex/SpecializedDuration/operator_greater.html deleted file mode 100644 index 870dcf483f..0000000000 --- a/testing/test_package_docs/ex/SpecializedDuration/operator_greater.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - operator > method - SpecializedDuration class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator >
    - -
    - -
    - - - -
    -

    operator > method

    - -
    - bool - operator > -(Duration other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/SpecializedDuration/operator_greater_equal.html b/testing/test_package_docs/ex/SpecializedDuration/operator_greater_equal.html deleted file mode 100644 index e97ef86e00..0000000000 --- a/testing/test_package_docs/ex/SpecializedDuration/operator_greater_equal.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - operator >= method - SpecializedDuration class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator >=
    - -
    - -
    - - - -
    -

    operator >= method

    - -
    - bool - operator >= -(Duration other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/SpecializedDuration/operator_less.html b/testing/test_package_docs/ex/SpecializedDuration/operator_less.html deleted file mode 100644 index d3f22ecf55..0000000000 --- a/testing/test_package_docs/ex/SpecializedDuration/operator_less.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - operator < method - SpecializedDuration class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator <
    - -
    - -
    - - - -
    -

    operator < method

    - -
    - bool - operator < -(Duration other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/SpecializedDuration/operator_less_equal.html b/testing/test_package_docs/ex/SpecializedDuration/operator_less_equal.html deleted file mode 100644 index 9dd494f27e..0000000000 --- a/testing/test_package_docs/ex/SpecializedDuration/operator_less_equal.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - operator <= method - SpecializedDuration class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator <=
    - -
    - -
    - - - -
    -

    operator <= method

    - -
    - bool - operator <= -(Duration other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/SpecializedDuration/operator_minus.html b/testing/test_package_docs/ex/SpecializedDuration/operator_minus.html deleted file mode 100644 index cab0ae7188..0000000000 --- a/testing/test_package_docs/ex/SpecializedDuration/operator_minus.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - operator - method - SpecializedDuration class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator -
    - -
    - -
    - - - -
    -

    operator - method

    - -
    - Duration - operator - -(Duration other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/SpecializedDuration/operator_multiply.html b/testing/test_package_docs/ex/SpecializedDuration/operator_multiply.html deleted file mode 100644 index 34d7518e1a..0000000000 --- a/testing/test_package_docs/ex/SpecializedDuration/operator_multiply.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - operator * method - SpecializedDuration class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator *
    - -
    - -
    - - - -
    -

    operator * method

    - -
    - Duration - operator * -(num factor) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/SpecializedDuration/operator_plus.html b/testing/test_package_docs/ex/SpecializedDuration/operator_plus.html deleted file mode 100644 index ed3810a5bf..0000000000 --- a/testing/test_package_docs/ex/SpecializedDuration/operator_plus.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - operator + method - SpecializedDuration class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator +
    - -
    - -
    - - - -
    -

    operator + method

    - -
    - Duration - operator + -(Duration other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/SpecializedDuration/operator_truncate_divide.html b/testing/test_package_docs/ex/SpecializedDuration/operator_truncate_divide.html deleted file mode 100644 index f81f3ba8cb..0000000000 --- a/testing/test_package_docs/ex/SpecializedDuration/operator_truncate_divide.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - operator ~/ method - SpecializedDuration class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator ~/
    - -
    - -
    - - - -
    -

    operator ~/ method

    - -
    - Duration - operator ~/ -(int quotient) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/SpecializedDuration/operator_unary_minus.html b/testing/test_package_docs/ex/SpecializedDuration/operator_unary_minus.html deleted file mode 100644 index d0bacb48cc..0000000000 --- a/testing/test_package_docs/ex/SpecializedDuration/operator_unary_minus.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - operator unary- method - SpecializedDuration class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator unary-
    - -
    - -
    - - - -
    -

    operator unary- method

    - -
    - Duration - operator unary- -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/SpecializedDuration/runtimeType.html b/testing/test_package_docs/ex/SpecializedDuration/runtimeType.html deleted file mode 100644 index c07c719f96..0000000000 --- a/testing/test_package_docs/ex/SpecializedDuration/runtimeType.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - runtimeType property - SpecializedDuration class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    runtimeType
    - -
    - -
    - - - -
    -

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/SpecializedDuration/toString.html b/testing/test_package_docs/ex/SpecializedDuration/toString.html deleted file mode 100644 index ad1b038212..0000000000 --- a/testing/test_package_docs/ex/SpecializedDuration/toString.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - toString method - SpecializedDuration class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/TemplatedClass-class.html b/testing/test_package_docs/ex/TemplatedClass-class.html deleted file mode 100644 index d3cce43572..0000000000 --- a/testing/test_package_docs/ex/TemplatedClass-class.html +++ /dev/null @@ -1,245 +0,0 @@ - - - - - - - - TemplatedClass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    TemplatedClass
    - -
    - -
    - - - -
    -

    TemplatedClass<X> class

    - - - -
    -

    Constructors

    - -
    -
    - TemplatedClass() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

    -
    -
    - aMethod(X input) - → int - -
    -
    - - -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

    -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/TemplatedClass/aMethod.html b/testing/test_package_docs/ex/TemplatedClass/aMethod.html deleted file mode 100644 index b9640e6f07..0000000000 --- a/testing/test_package_docs/ex/TemplatedClass/aMethod.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - aMethod method - TemplatedClass class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aMethod
    - -
    - -
    - - - -
    -

    aMethod method

    - -
    - int - aMethod -(X input) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/TemplatedInterface-class.html b/testing/test_package_docs/ex/TemplatedInterface-class.html deleted file mode 100644 index f7b6d47e35..0000000000 --- a/testing/test_package_docs/ex/TemplatedInterface-class.html +++ /dev/null @@ -1,356 +0,0 @@ - - - - - - - - TemplatedInterface class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    TemplatedInterface
    - -
    - -
    - - - -
    -

    TemplatedInterface<A> class

    - -
    -

    Class for testing expansion of type from implements clause.

    -
    - -
    -
    - -
    Implements
    -
    - -
    - - - -
    -
    - -
    -

    Constructors

    - -
    -
    - TemplatedInterface() -
    -
    - -
    -
    -
    - -
    -

    Properties

    - -
    -
    - aField - AnotherParameterizedClass<Stream<List<int>>> -
    -
    - -
    read / write
    -
    -
    - aGetter - AnotherParameterizedClass<Map<A, List<String>>> -
    -
    - -
    read-only
    -
    -
    - aSetter - AnotherParameterizedClass<List<bool>> -
    -
    - -
    write-only
    -
    -
    - aInheritedField - AnotherParameterizedClass<List<int>> -
    -
    - -
    read / write, inherited
    -
    -
    - aInheritedGetter - AnotherParameterizedClass<List<int>> -
    -
    - -
    read-only, inherited
    -
    -
    - aInheritedSetter - AnotherParameterizedClass<List<int>> -
    -
    - -
    write-only, inherited
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

    -
    -
    - aMethodInterface(A value) - AnotherParameterizedClass<List<int>> - -
    -
    - - -
    -
    - aTypedefReturningMethodInterface() - ParameterizedTypedef<List<String>> - -
    -
    - - -
    -
    - aInheritedMethod(int foo) - AnotherParameterizedClass<List<int>> - -
    -
    - -
    inherited
    -
    -
    - aInheritedTypedefReturningMethod() - ParameterizedTypedef<List<int>> - -
    -
    - -
    inherited
    -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

    -
    -
    - operator +(ParameterizedClass<List<int>> other) - ParameterizedClass<List<int>> - -
    -
    - -
    inherited
    -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/TemplatedInterface/TemplatedInterface.html b/testing/test_package_docs/ex/TemplatedInterface/TemplatedInterface.html deleted file mode 100644 index d5cd135bfc..0000000000 --- a/testing/test_package_docs/ex/TemplatedInterface/TemplatedInterface.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - - TemplatedInterface constructor - TemplatedInterface class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    TemplatedInterface
    - -
    - -
    - - - -
    -

    TemplatedInterface<A> constructor

    - -
    - - TemplatedInterface<A>() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/TemplatedInterface/aField.html b/testing/test_package_docs/ex/TemplatedInterface/aField.html deleted file mode 100644 index 0372e91eb8..0000000000 --- a/testing/test_package_docs/ex/TemplatedInterface/aField.html +++ /dev/null @@ -1,107 +0,0 @@ - - - - - - - - aField property - TemplatedInterface class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aField
    - -
    - -
    - - - -
    -

    aField property

    - -
    - AnotherParameterizedClass<Stream<List<int>>> - aField -
    read / write
    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/TemplatedInterface/aGetter.html b/testing/test_package_docs/ex/TemplatedInterface/aGetter.html deleted file mode 100644 index 6735cc031d..0000000000 --- a/testing/test_package_docs/ex/TemplatedInterface/aGetter.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - aGetter property - TemplatedInterface class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aGetter
    - -
    - -
    - - - -
    -

    aGetter property

    - - -
    - -
    - AnotherParameterizedClass<Map<A, List<String>>> - aGetter - -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/TemplatedInterface/aMethodInterface.html b/testing/test_package_docs/ex/TemplatedInterface/aMethodInterface.html deleted file mode 100644 index 2e2f0225e5..0000000000 --- a/testing/test_package_docs/ex/TemplatedInterface/aMethodInterface.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - - aMethodInterface method - TemplatedInterface class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aMethodInterface
    - -
    - -
    - - - -
    -

    aMethodInterface method

    - -
    - AnotherParameterizedClass<List<int>> - aMethodInterface -(A value) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/TemplatedInterface/aSetter.html b/testing/test_package_docs/ex/TemplatedInterface/aSetter.html deleted file mode 100644 index c77bf2790d..0000000000 --- a/testing/test_package_docs/ex/TemplatedInterface/aSetter.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - - aSetter property - TemplatedInterface class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aSetter
    - -
    - -
    - - - -
    -

    aSetter property

    - - - -
    - -
    - void - aSetter= -(AnotherParameterizedClass<List<bool>> thingToSet) - -
    - - -
    -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/TemplatedInterface/aTypedefReturningMethodInterface.html b/testing/test_package_docs/ex/TemplatedInterface/aTypedefReturningMethodInterface.html deleted file mode 100644 index 6dd958a7c3..0000000000 --- a/testing/test_package_docs/ex/TemplatedInterface/aTypedefReturningMethodInterface.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - - aTypedefReturningMethodInterface method - TemplatedInterface class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aTypedefReturningMethodInterface
    - -
    - -
    - - - -
    -

    aTypedefReturningMethodInterface method

    - -
    - ParameterizedTypedef<List<String>> - aTypedefReturningMethodInterface -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs-class.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs-class.html deleted file mode 100644 index 115a6624db..0000000000 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs-class.html +++ /dev/null @@ -1,269 +0,0 @@ - - - - - - - - TypedFunctionsWithoutTypedefs class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    TypedFunctionsWithoutTypedefs
    - -
    - -
    - - - -
    -

    TypedFunctionsWithoutTypedefs class

    - -
    -

    This class has a complicated type situation.

    -
    - - -
    -

    Constructors

    - -
    -
    - TypedFunctionsWithoutTypedefs() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

    -
    -
    - getAComplexTypedef<A4, A5, A6>() - aComplexTypedef - -
    -
    - Returns a complex typedef that includes some anonymous typed functions. - -
    -
    - getAFunctionReturningBool<T1, T2, T3>() - → bool Function<T4>(String, T1, T4) - -
    -
    - This helps us make sure we get both the empty and the non-empty -case right for anonymous functions. - -
    -
    - getAFunctionReturningVoid<T1, T2>(void callback(T1 argument1, T2 argument2)) - → void Function(T1, T2) - -
    -
    - Returns a function that returns a void with some generic types sprinkled in. - -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

    -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/TypedFunctionsWithoutTypedefs.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/TypedFunctionsWithoutTypedefs.html deleted file mode 100644 index ee27faeb41..0000000000 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/TypedFunctionsWithoutTypedefs.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - TypedFunctionsWithoutTypedefs constructor - TypedFunctionsWithoutTypedefs class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    TypedFunctionsWithoutTypedefs
    - -
    - -
    - - - -
    -

    TypedFunctionsWithoutTypedefs constructor

    - -
    - - TypedFunctionsWithoutTypedefs() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAComplexTypedef.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAComplexTypedef.html deleted file mode 100644 index 742ae6afe9..0000000000 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAComplexTypedef.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - getAComplexTypedef method - TypedFunctionsWithoutTypedefs class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    getAComplexTypedef
    - -
    - -
    - - - -
    -

    getAComplexTypedef<A4, A5, A6> method

    - -
    - aComplexTypedef - getAComplexTypedef -<A4, A5, A6>() -
    -
    -

    Returns a complex typedef that includes some anonymous typed functions.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningBool.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningBool.html deleted file mode 100644 index a7109dd253..0000000000 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningBool.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - getAFunctionReturningBool method - TypedFunctionsWithoutTypedefs class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    getAFunctionReturningBool
    - -
    - -
    - - - -
    -

    getAFunctionReturningBool<T1, T2, T3> method

    - -
    - bool Function<T4>(String, T1, T4) - getAFunctionReturningBool -<T1, T2, T3>() -
    -
    -

    This helps us make sure we get both the empty and the non-empty -case right for anonymous functions.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningVoid.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningVoid.html deleted file mode 100644 index f5611c9f62..0000000000 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningVoid.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - getAFunctionReturningVoid method - TypedFunctionsWithoutTypedefs class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    getAFunctionReturningVoid
    - -
    - -
    - - - -
    -

    getAFunctionReturningVoid<T1, T2> method

    - -
    - void Function(T1, T2) - getAFunctionReturningVoid -<T1, T2>(void callback(T1 argument1, T2 argument2)) -
    -
    -

    Returns a function that returns a void with some generic types sprinkled in.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/hashCode.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/hashCode.html deleted file mode 100644 index 1d7a989b2e..0000000000 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/hashCode.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - hashCode property - TypedFunctionsWithoutTypedefs class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/noSuchMethod.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/noSuchMethod.html deleted file mode 100644 index 5327ccee13..0000000000 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/noSuchMethod.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - noSuchMethod method - TypedFunctionsWithoutTypedefs class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

    - -
    - dynamic - noSuchMethod -(Invocation invocation) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/operator_equals.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/operator_equals.html deleted file mode 100644 index 0703faaba0..0000000000 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/operator_equals.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - operator == method - TypedFunctionsWithoutTypedefs class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator ==
    - -
    - -
    - - - -
    -

    operator == method

    - -
    - bool - operator == -(dynamic other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/runtimeType.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/runtimeType.html deleted file mode 100644 index 1312022b58..0000000000 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/runtimeType.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - runtimeType property - TypedFunctionsWithoutTypedefs class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    runtimeType
    - -
    - -
    - - - -
    -

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/toString.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/toString.html deleted file mode 100644 index 32b26e9ff6..0000000000 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/toString.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - toString method - TypedFunctionsWithoutTypedefs class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/WithGeneric-class.html b/testing/test_package_docs/ex/WithGeneric-class.html deleted file mode 100644 index a3d0e8c4ee..0000000000 --- a/testing/test_package_docs/ex/WithGeneric-class.html +++ /dev/null @@ -1,256 +0,0 @@ - - - - - - - - WithGeneric class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    WithGeneric
    - -
    - -
    - - - -
    -

    WithGeneric<T> class

    - - -
    -
    - - - -
    Implemented by
    -
    - -
    -
    - -
    -

    Constructors

    - -
    -
    - WithGeneric(T prop) -
    -
    - -
    -
    -
    - -
    -

    Properties

    - -
    -
    - prop - ↔ T -
    -
    - -
    read / write
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

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

    Operators

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

    WithGeneric<T> constructor

    - -
    - - WithGeneric<T>(T prop) -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/WithGeneric/hashCode.html b/testing/test_package_docs/ex/WithGeneric/hashCode.html deleted file mode 100644 index 9dddcd9e73..0000000000 --- a/testing/test_package_docs/ex/WithGeneric/hashCode.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - hashCode property - WithGeneric class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

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

    noSuchMethod method

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

    operator == method

    - -
    - bool - operator == -(dynamic other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/WithGeneric/prop.html b/testing/test_package_docs/ex/WithGeneric/prop.html deleted file mode 100644 index 2c3eb600fd..0000000000 --- a/testing/test_package_docs/ex/WithGeneric/prop.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - prop property - WithGeneric class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    prop
    - -
    - -
    - - - -
    -

    prop property

    - -
    - T - prop -
    read / write
    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/WithGeneric/runtimeType.html b/testing/test_package_docs/ex/WithGeneric/runtimeType.html deleted file mode 100644 index 192840926a..0000000000 --- a/testing/test_package_docs/ex/WithGeneric/runtimeType.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - runtimeType property - WithGeneric class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    runtimeType
    - -
    - -
    - - - -
    -

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/WithGeneric/toString.html b/testing/test_package_docs/ex/WithGeneric/toString.html deleted file mode 100644 index 18f2e81a0b..0000000000 --- a/testing/test_package_docs/ex/WithGeneric/toString.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - toString method - WithGeneric class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/WithGenericSub-class.html b/testing/test_package_docs/ex/WithGenericSub-class.html deleted file mode 100644 index 42674d2882..0000000000 --- a/testing/test_package_docs/ex/WithGenericSub-class.html +++ /dev/null @@ -1,258 +0,0 @@ - - - - - - - - WithGenericSub class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    WithGenericSub
    - -
    - -
    - - - -
    -

    WithGenericSub class

    - - -
    -
    -
    Inheritance
    -
    - - - - -
    -
    - -
    -

    Constructors

    - -
    -
    - WithGenericSub(Apple prop) -
    -
    - -
    -
    -
    - -
    -

    Properties

    - -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - prop - Apple -
    -
    - -
    read / write, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

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

    Operators

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

    WithGenericSub constructor

    - -
    - - WithGenericSub(Apple prop) -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/aComplexTypedef.html b/testing/test_package_docs/ex/aComplexTypedef.html deleted file mode 100644 index 7774887cf0..0000000000 --- a/testing/test_package_docs/ex/aComplexTypedef.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - - - aComplexTypedef typedef - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aComplexTypedef
    - -
    - -
    - - - -
    -

    aComplexTypedef<A1, A2, A3> typedef

    - -
    - void Function(A1, A2, A3) - aComplexTypedef -(A3, String) -
    - -
    -

    Someone might do this some day.

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/aThingToDo-class.html b/testing/test_package_docs/ex/aThingToDo-class.html deleted file mode 100644 index 88d52faa9f..0000000000 --- a/testing/test_package_docs/ex/aThingToDo-class.html +++ /dev/null @@ -1,257 +0,0 @@ - - - - - - - - aThingToDo class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aThingToDo
    - -
    - -
    - - - -
    -

    aThingToDo class

    - -
    -

    A custom annotation.

    -
    - - -
    -

    Constructors

    - -
    -
    - aThingToDo(String who, String what) -
    -
    - -
    const
    -
    -
    -
    - -
    -

    Properties

    - -
    -
    - what - → String -
    -
    - -
    final
    -
    -
    - who - → String -
    -
    - -
    final
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

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

    Operators

    -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/aThingToDo/aThingToDo.html b/testing/test_package_docs/ex/aThingToDo/aThingToDo.html deleted file mode 100644 index b75a8f8443..0000000000 --- a/testing/test_package_docs/ex/aThingToDo/aThingToDo.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - aThingToDo constructor - aThingToDo class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aThingToDo
    - -
    - -
    - - - -
    -

    aThingToDo constructor

    - -
    - const - aThingToDo(String who, String what) -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/aThingToDo/hashCode.html b/testing/test_package_docs/ex/aThingToDo/hashCode.html deleted file mode 100644 index a113f650ae..0000000000 --- a/testing/test_package_docs/ex/aThingToDo/hashCode.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - hashCode property - aThingToDo class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/aThingToDo/noSuchMethod.html b/testing/test_package_docs/ex/aThingToDo/noSuchMethod.html deleted file mode 100644 index 8daf0b5faf..0000000000 --- a/testing/test_package_docs/ex/aThingToDo/noSuchMethod.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - noSuchMethod method - aThingToDo class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

    - -
    - dynamic - noSuchMethod -(Invocation invocation) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/aThingToDo/operator_equals.html b/testing/test_package_docs/ex/aThingToDo/operator_equals.html deleted file mode 100644 index ef68fbb7bc..0000000000 --- a/testing/test_package_docs/ex/aThingToDo/operator_equals.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - operator == method - aThingToDo class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator ==
    - -
    - -
    - - - -
    -

    operator == method

    - -
    - bool - operator == -(dynamic other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/aThingToDo/runtimeType.html b/testing/test_package_docs/ex/aThingToDo/runtimeType.html deleted file mode 100644 index 28320339c4..0000000000 --- a/testing/test_package_docs/ex/aThingToDo/runtimeType.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - runtimeType property - aThingToDo class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    runtimeType
    - -
    - -
    - - - -
    -

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/aThingToDo/toString.html b/testing/test_package_docs/ex/aThingToDo/toString.html deleted file mode 100644 index 27b9d67164..0000000000 --- a/testing/test_package_docs/ex/aThingToDo/toString.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - toString method - aThingToDo class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/aThingToDo/what.html b/testing/test_package_docs/ex/aThingToDo/what.html deleted file mode 100644 index 530926bfa9..0000000000 --- a/testing/test_package_docs/ex/aThingToDo/what.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - what property - aThingToDo class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    what
    - -
    - -
    - - - -
    -

    what property

    - -
    - String - what -
    final
    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/aThingToDo/who.html b/testing/test_package_docs/ex/aThingToDo/who.html deleted file mode 100644 index 253e91e7e6..0000000000 --- a/testing/test_package_docs/ex/aThingToDo/who.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - who property - aThingToDo class - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    who
    - -
    - -
    - - - -
    -

    who property

    - -
    - String - who -
    final
    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/deprecated-constant.html b/testing/test_package_docs/ex/deprecated-constant.html deleted file mode 100644 index e39704cfd7..0000000000 --- a/testing/test_package_docs/ex/deprecated-constant.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - deprecated constant - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    deprecated
    - -
    - -
    - - - -
    -

    deprecated top-level constant

    - -
    - const deprecated - = - const Deprecated('next release') - -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/deprecatedField.html b/testing/test_package_docs/ex/deprecatedField.html deleted file mode 100644 index b087b38838..0000000000 --- a/testing/test_package_docs/ex/deprecatedField.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - deprecatedField property - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    deprecatedField
    - -
    - -
    - - - -
    -

    deprecatedField top-level property

    - -
    - int - deprecatedField -
    read / write
    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/deprecatedGetter.html b/testing/test_package_docs/ex/deprecatedGetter.html deleted file mode 100644 index d77dd2e542..0000000000 --- a/testing/test_package_docs/ex/deprecatedGetter.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - deprecatedGetter property - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    deprecatedGetter
    - -
    - -
    - - - -
    -

    deprecatedGetter top-level property

    - - -
    - -
    - int - deprecatedGetter - -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/deprecatedSetter.html b/testing/test_package_docs/ex/deprecatedSetter.html deleted file mode 100644 index 5273186102..0000000000 --- a/testing/test_package_docs/ex/deprecatedSetter.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - - - deprecatedSetter property - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    deprecatedSetter
    - -
    - -
    - - - -
    -

    deprecatedSetter top-level property

    - - - -
    - -
    - void - deprecatedSetter= -(int value) - -
    - - -
    -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/ex-library.html b/testing/test_package_docs/ex/ex-library.html deleted file mode 100644 index 4ea210c1fe..0000000000 --- a/testing/test_package_docs/ex/ex-library.html +++ /dev/null @@ -1,598 +0,0 @@ - - - - - - - - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    ex
    - -
    - -
    - - - -
    -

    ex library

    - -
    -

    a library. testing string escaping: var s = 'a string'

    -
    - -
    -

    Classes

    - -
    -
    - AnotherParameterizedClass<B> -
    -
    - -
    -
    - Apple -
    -
    - Sample class String [...] -
    -
    - aThingToDo -
    -
    - A custom annotation. -
    -
    - B -
    -
    - Extends class Apple, use new Apple or new Apple.fromString [...] -
    -
    - Cat -
    -
    - -
    -
    - CatString -
    -
    - -
    -
    - ConstantCat -
    -
    - -
    -
    - Cool -
    -
    - This class is cool! -
    -
    - Deprecated -
    -
    - -
    -
    - Dog -
    -
    - implements Cat, E [...] -
    -
    - E -
    -
    - -
    -
    - ExtendedShortName -
    -
    - -
    -
    - F<T extends String> -
    -
    - -
    -
    - ForAnnotation -
    -
    - -
    -
    - HasAnnotation -
    -
    - -
    -
    - Helper -
    -
    - Even unresolved references in the same library should be resolved -Apple -ex.B -
    -
    - Klass -
    -
    - A class -
    -
    - ParameterizedClass<T> -
    -
    - Support class to test inheritance + type expansion from implements clause. -
    -
    - PublicClassExtendsPrivateClass -
    -
    - -
    -
    - PublicClassImplementsPrivateInterface -
    -
    - -
    -
    - ShapeType -
    -
    - Foo bar. [...] -
    -
    - ShortName -
    -
    - -
    -
    - SpecializedDuration -
    -
    - For testing a class that extends a class -that has some operators -
    -
    - TemplatedClass<X> -
    -
    - -
    -
    - TemplatedInterface<A> -
    -
    - Class for testing expansion of type from implements clause. -
    -
    - TypedFunctionsWithoutTypedefs -
    -
    - This class has a complicated type situation. -
    -
    - WithGeneric<T> -
    -
    - -
    -
    - WithGenericSub -
    -
    - -
    -
    -
    - -
    -

    Constants

    - -
    -
    - COLOR - → const String -
    -
    - - -
    - 'red' -
    -
    -
    - COLOR_GREEN - → const String -
    -
    - - -
    - 'green' -
    -
    -
    - COLOR_ORANGE - → const String -
    -
    - - -
    - 'orange' -
    -
    -
    - COMPLEX_COLOR - → const String -
    -
    - - -
    - 'red' + '-' + 'green' + '-' + 'blue' -
    -
    -
    - deprecated - → const Deprecated -
    -
    - - -
    - const Deprecated('next release') -
    -
    -
    - incorrectDocReference - → const String -
    -
    - This is the same name as a top-level const from the fake lib. - -
    - 'same name as const from fake' -
    -
    -
    - incorrectDocReferenceFromEx - → const String -
    -
    - This should not work. - -
    - 'doh' -
    -
    -
    - MY_CAT - → const ConstantCat -
    -
    - - -
    - const ConstantCat('tabby') -
    -
    -
    - PRETTY_COLORS - → const List<String> -
    -
    - - -
    - const <String> [COLOR_GREEN, COLOR_ORANGE, 'blue'] -
    -
    -
    -
    - -
    -

    Properties

    - -
    -
    - deprecatedField - ↔ int -
    -
    - -
    read / write
    -
    -
    - deprecatedGetter - → int -
    -
    - -
    read-only
    -
    -
    - deprecatedSetter - int -
    -
    - -
    write-only
    -
    -
    - number - ↔ double -
    -
    - -
    read / write
    -
    -
    - y - → dynamic -
    -
    - -
    read-only
    -
    -
    -
    - -
    -

    Functions

    - -
    -
    - function1(String s, bool b, dynamic lastParam) - → int - -
    -
    - - -
    -
    - genericFunction<T>(T arg) - → T - -
    -
    - - -
    -
    -
    - -
    -

    Enums

    - -
    -
    - Animal -
    -
    - Referencing processMessage (or other things) here should not break -enum constants ala #1445 -
    -
    -
    - -
    -

    Typedefs

    - -
    -
    - aComplexTypedef<A1, A2, A3>(A3, String) - → void Function(A1, A2, A3) - -
    -
    - Someone might do this some day. - -
    -
    - ParameterizedTypedef<T>(T msg, int foo) - → String - -
    -
    - - -
    -
    - processMessage<T>(String msg) - → String - -
    -
    - - -
    -
    -
    - -
    -

    Exceptions / Errors

    - -
    -
    - MyError -
    -
    - -
    -
    - MyErrorImplements -
    -
    - -
    -
    - MyException -
    -
    - -
    -
    - MyExceptionImplements -
    -
    - -
    -
    -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/function1.html b/testing/test_package_docs/ex/function1.html deleted file mode 100644 index 5d26328929..0000000000 --- a/testing/test_package_docs/ex/function1.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - function1 function - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    function1
    - -
    - -
    - - - -
    -

    function1 function

    - -
    - int - function1 -(String s, bool b, dynamic lastParam) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/genericFunction.html b/testing/test_package_docs/ex/genericFunction.html deleted file mode 100644 index 1fc3db248b..0000000000 --- a/testing/test_package_docs/ex/genericFunction.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - genericFunction function - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    genericFunction
    - -
    - -
    - - - -
    -

    genericFunction<T> function

    - -
    - T - genericFunction -<T>(T arg) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/incorrectDocReference-constant.html b/testing/test_package_docs/ex/incorrectDocReference-constant.html deleted file mode 100644 index e9b296e002..0000000000 --- a/testing/test_package_docs/ex/incorrectDocReference-constant.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - incorrectDocReference constant - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    incorrectDocReference
    - -
    - -
    - - - -
    -

    incorrectDocReference top-level constant

    - -
    - const incorrectDocReference - = - 'same name as const from fake' - -
    - -
    -

    This is the same name as a top-level const from the fake lib.

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/incorrectDocReferenceFromEx-constant.html b/testing/test_package_docs/ex/incorrectDocReferenceFromEx-constant.html deleted file mode 100644 index 83eaa31659..0000000000 --- a/testing/test_package_docs/ex/incorrectDocReferenceFromEx-constant.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - incorrectDocReferenceFromEx constant - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    incorrectDocReferenceFromEx
    - -
    - -
    - - - -
    -

    incorrectDocReferenceFromEx top-level constant

    - -
    - const incorrectDocReferenceFromEx - = - 'doh' - -
    - -
    -

    This should not work.

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/number.html b/testing/test_package_docs/ex/number.html deleted file mode 100644 index c89e6fa978..0000000000 --- a/testing/test_package_docs/ex/number.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - number property - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    number
    - -
    - -
    - - - -
    -

    number top-level property

    - -
    - double - number -
    read / write
    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/processMessage.html b/testing/test_package_docs/ex/processMessage.html deleted file mode 100644 index 021c70e0bc..0000000000 --- a/testing/test_package_docs/ex/processMessage.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - processMessage typedef - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    processMessage
    - -
    - -
    - - - -
    -

    processMessage<T> typedef

    - -
    - String - processMessage -(String msg) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/ex/y.html b/testing/test_package_docs/ex/y.html deleted file mode 100644 index 8eb237a44f..0000000000 --- a/testing/test_package_docs/ex/y.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - y property - ex library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    y
    - -
    - -
    - - - -
    -

    y top-level property

    - - -
    - -
    - dynamic - y - -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ABaseClass-class.html b/testing/test_package_docs/fake/ABaseClass-class.html deleted file mode 100644 index f764c4490d..0000000000 --- a/testing/test_package_docs/fake/ABaseClass-class.html +++ /dev/null @@ -1,300 +0,0 @@ - - - - - - - - ABaseClass class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    ABaseClass
    - -
    - -
    - - - -
    -

    ABaseClass class

    - - -
    -
    - - - -
    Implemented by
    -
    - -
    -
    - -
    -

    Constructors

    - -
    -
    - ABaseClass() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

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

    Operators

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

    ABaseClass constructor

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

    hashCode property

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

    noSuchMethod method

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

    operator == method

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

    runtimeType property

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

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html b/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html deleted file mode 100644 index 7dba49724e..0000000000 --- a/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html +++ /dev/null @@ -1,318 +0,0 @@ - - - - - - - - AClassUsingASuperMixin class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    AClassUsingASuperMixin
    - -
    - -
    - - - -
    -

    AClassUsingASuperMixin class

    - -
    -

    Verify super-mixins don't break Dartdoc.

    -
    - -
    -
    -
    Inheritance
    -
    - - -
    Mixes-in
    -
    - - -
    -
    - -
    -

    Constructors

    - -
    -
    - AClassUsingASuperMixin() -
    -
    - -
    -
    -
    - -
    -

    Properties

    - -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    - superString - → String -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

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

    Operators

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

    AClassUsingASuperMixin constructor

    - -
    - - AClassUsingASuperMixin() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/AClassWithFancyProperties-class.html b/testing/test_package_docs/fake/AClassWithFancyProperties-class.html deleted file mode 100644 index a20883841f..0000000000 --- a/testing/test_package_docs/fake/AClassWithFancyProperties-class.html +++ /dev/null @@ -1,297 +0,0 @@ - - - - - - - - AClassWithFancyProperties class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    AClassWithFancyProperties
    - -
    - -
    - - - -
    -

    AClassWithFancyProperties class

    - - - -
    -

    Constructors

    - -
    -
    - AClassWithFancyProperties() -
    -
    - -
    -
    -
    - -
    -

    Properties

    - -
    -
    - aProperty - ↔ String -
    -
    - This property is quite fancy, and requires sample code to understand. [...] -
    read / write
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

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

    Operators

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

    AClassWithFancyProperties constructor

    - -
    - - AClassWithFancyProperties() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/AClassWithFancyProperties/hashCode.html b/testing/test_package_docs/fake/AClassWithFancyProperties/hashCode.html deleted file mode 100644 index 9577f41977..0000000000 --- a/testing/test_package_docs/fake/AClassWithFancyProperties/hashCode.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - hashCode property - AClassWithFancyProperties class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

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

    noSuchMethod method

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

    operator == method

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

    runtimeType property

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

    toString method

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

    ATypeTakingClass<T> class

    - -
    -

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

    -
    - -
    -
    - - - -
    Implemented by
    -
    - -
    -
    - -
    -

    Constructors

    - -
    -
    - ATypeTakingClass() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

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

    Operators

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

    ATypeTakingClass<T> constructor

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

    aMethodMaybeReturningVoid method

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

    hashCode property

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

    noSuchMethod method

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

    operator == method

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

    runtimeType property

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

    toString method

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

    ATypeTakingClassMixedIn class

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

    Constructors

    - -
    -
    - ATypeTakingClassMixedIn() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

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

    Operators

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

    ATypeTakingClassMixedIn constructor

    - -
    - - ATypeTakingClassMixedIn() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/Annotation-class.html b/testing/test_package_docs/fake/Annotation-class.html deleted file mode 100644 index 40b93946cf..0000000000 --- a/testing/test_package_docs/fake/Annotation-class.html +++ /dev/null @@ -1,301 +0,0 @@ - - - - - - - - Annotation class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    Annotation
    - -
    - -
    - - - -
    -

    Annotation class

    - -
    -

    Useful for annotations.

    -
    - - -
    -

    Constructors

    - -
    -
    - Annotation(String value) -
    -
    - -
    const
    -
    -
    -
    - -
    -

    Properties

    - -
    -
    - value - → String -
    -
    - -
    final
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

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

    Operators

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

    Annotation constructor

    - -
    - const - Annotation(String value) -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/Annotation/hashCode.html b/testing/test_package_docs/fake/Annotation/hashCode.html deleted file mode 100644 index f4778e06b1..0000000000 --- a/testing/test_package_docs/fake/Annotation/hashCode.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - hashCode property - Annotation class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

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

    noSuchMethod method

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

    operator == method

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

    runtimeType property

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

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/Annotation/value.html b/testing/test_package_docs/fake/Annotation/value.html deleted file mode 100644 index 0539c1e402..0000000000 --- a/testing/test_package_docs/fake/Annotation/value.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - value property - Annotation class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    value
    - -
    - -
    - - - -
    -

    value property

    - -
    - String - value -
    final
    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/AnotherInterface-class.html b/testing/test_package_docs/fake/AnotherInterface-class.html deleted file mode 100644 index eee2fba500..0000000000 --- a/testing/test_package_docs/fake/AnotherInterface-class.html +++ /dev/null @@ -1,304 +0,0 @@ - - - - - - - - AnotherInterface class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    AnotherInterface
    - -
    - -
    - - - -
    -

    AnotherInterface class

    - -
    -

    Yet another interface that can be implemented.

    -
    - -
    -
    - - - -
    Implemented by
    -
    - -
    -
    - -
    -

    Constructors

    - -
    -
    - AnotherInterface() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

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

    Operators

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

    AnotherInterface constructor

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

    hashCode property

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

    noSuchMethod method

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

    operator == method

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

    runtimeType property

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

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/BaseForDocComments-class.html b/testing/test_package_docs/fake/BaseForDocComments-class.html deleted file mode 100644 index 49177e42f6..0000000000 --- a/testing/test_package_docs/fake/BaseForDocComments-class.html +++ /dev/null @@ -1,335 +0,0 @@ - - - - - - - - BaseForDocComments class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    BaseForDocComments
    - -
    - -
    - - - -
    -

    BaseForDocComments class Superb - Unreal -

    - -
    -

    Category information should not follow inheritance.

    -
    - -
    -
    - - - -
    Implemented by
    -
    - -
    -
    - -
    -

    Constructors

    - -
    -
    - BaseForDocComments() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

    -
    -
    - anotherMethod() - → void - -
    -
    - - -
    -
    - doAwesomeStuff(int value) - → String - -
    -
    - Takes a value and returns a String. [...] - -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

    -
    -
    - operator [](String key) - → String - -
    -
    - - -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/BaseForDocComments/BaseForDocComments.html b/testing/test_package_docs/fake/BaseForDocComments/BaseForDocComments.html deleted file mode 100644 index 1eed7c9781..0000000000 --- a/testing/test_package_docs/fake/BaseForDocComments/BaseForDocComments.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - BaseForDocComments constructor - BaseForDocComments class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    BaseForDocComments
    - -
    - -
    - - - -
    -

    BaseForDocComments constructor

    - -
    - - BaseForDocComments() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/BaseForDocComments/anotherMethod.html b/testing/test_package_docs/fake/BaseForDocComments/anotherMethod.html deleted file mode 100644 index 627f089f3b..0000000000 --- a/testing/test_package_docs/fake/BaseForDocComments/anotherMethod.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - anotherMethod method - BaseForDocComments class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    anotherMethod
    - -
    - -
    - - - -
    -

    anotherMethod method

    - -
    - void - anotherMethod -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/BaseForDocComments/doAwesomeStuff.html b/testing/test_package_docs/fake/BaseForDocComments/doAwesomeStuff.html deleted file mode 100644 index 35c1672933..0000000000 --- a/testing/test_package_docs/fake/BaseForDocComments/doAwesomeStuff.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - doAwesomeStuff method - BaseForDocComments class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    doAwesomeStuff
    - -
    - -
    - - - -
    -

    doAwesomeStuff method

    - -
    - String - doAwesomeStuff -(int value) -
    -
    -

    Takes a value and returns a String.

    -

    This methods is inside of BaseForDocComments class xx

    -

    Also NAME_WITH_TWO_UNDERSCORES which is a top-level const xx

    -

    Also a single underscore: NAME_SINGLEUNDERSCORE

    -

    Returns a String xx

    -

    Reference to another method in this class anotherMethod xx

    -

    Reference to a top-level function in this library topLevelFunction xx

    -

    Reference to a top-level function in another library that is imported into this library (example lib) function1 xx

    -

    Reference to a class in example lib Apple xx

    -

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

    -

    Reference to a top-level const in another library incorrectDocReferenceFromEx

    -

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

    -

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

    -

    Reference to a name of a class from an import of a library that exported -the name BaseClass xx

    -

    Reference to a bracket operator within this class operator [] xxx

    -

    Reference to a bracket operator in another class SpecialList.operator [] xxx

    -

    Reference containing a type parameter ExtraSpecialList<Object>

    -

    Reference to something that doesn't exist containing a type parameter ThisIsNotHereNoWay<MyType>

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/BaseForDocComments/hashCode.html b/testing/test_package_docs/fake/BaseForDocComments/hashCode.html deleted file mode 100644 index 523f8a5b65..0000000000 --- a/testing/test_package_docs/fake/BaseForDocComments/hashCode.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - hashCode property - BaseForDocComments class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

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

    noSuchMethod method

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

    operator == method

    - -
    - bool - operator == -(dynamic other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/BaseForDocComments/operator_get.html b/testing/test_package_docs/fake/BaseForDocComments/operator_get.html deleted file mode 100644 index a0ebd93568..0000000000 --- a/testing/test_package_docs/fake/BaseForDocComments/operator_get.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - operator [] method - BaseForDocComments class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator []
    - -
    - -
    - - - -
    -

    operator [] method

    - -
    - String - operator [] -(String key) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/BaseForDocComments/runtimeType.html b/testing/test_package_docs/fake/BaseForDocComments/runtimeType.html deleted file mode 100644 index 296e06015b..0000000000 --- a/testing/test_package_docs/fake/BaseForDocComments/runtimeType.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - runtimeType property - BaseForDocComments class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    runtimeType
    - -
    - -
    - - - -
    -

    runtimeType property

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

    toString method

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

    BaseThingy class

    - - -
    -
    - - - -
    Implemented by
    -
    - -
    -
    - -
    -

    Constructors

    - -
    -
    - BaseThingy() -
    -
    - -
    -
    -
    - -
    -

    Properties

    - -
    -
    - aImplementingThingy - ImplementingThingy -
    -
    - -
    read-only
    -
    -
    - aImplementingThingyField - ImplementingThingy -
    -
    - -
    read / write
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

    -
    -
    - aImplementingThingyMethod(ImplementingThingy parameter) - → void - -
    -
    - - -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

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

    BaseThingy constructor

    - -
    - - BaseThingy() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/BaseThingy/aImplementingThingy.html b/testing/test_package_docs/fake/BaseThingy/aImplementingThingy.html deleted file mode 100644 index b5b223922b..0000000000 --- a/testing/test_package_docs/fake/BaseThingy/aImplementingThingy.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - aImplementingThingy property - BaseThingy class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aImplementingThingy
    - -
    - -
    - - - -
    -

    aImplementingThingy property

    - - -
    - -
    - ImplementingThingy - aImplementingThingy - -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/BaseThingy/aImplementingThingyField.html b/testing/test_package_docs/fake/BaseThingy/aImplementingThingyField.html deleted file mode 100644 index bb18cb80ae..0000000000 --- a/testing/test_package_docs/fake/BaseThingy/aImplementingThingyField.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - aImplementingThingyField property - BaseThingy class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aImplementingThingyField
    - -
    - -
    - - - -
    -

    aImplementingThingyField property

    - -
    - ImplementingThingy - aImplementingThingyField -
    read / write
    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/BaseThingy/aImplementingThingyMethod.html b/testing/test_package_docs/fake/BaseThingy/aImplementingThingyMethod.html deleted file mode 100644 index 27e4c3ac62..0000000000 --- a/testing/test_package_docs/fake/BaseThingy/aImplementingThingyMethod.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - aImplementingThingyMethod method - BaseThingy class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aImplementingThingyMethod
    - -
    - -
    - - - -
    -

    aImplementingThingyMethod method

    - -
    - void - aImplementingThingyMethod -(ImplementingThingy parameter) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/BaseThingy/hashCode.html b/testing/test_package_docs/fake/BaseThingy/hashCode.html deleted file mode 100644 index 50740505e0..0000000000 --- a/testing/test_package_docs/fake/BaseThingy/hashCode.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - hashCode property - BaseThingy class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/BaseThingy/noSuchMethod.html b/testing/test_package_docs/fake/BaseThingy/noSuchMethod.html deleted file mode 100644 index 2f79aec8ad..0000000000 --- a/testing/test_package_docs/fake/BaseThingy/noSuchMethod.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - noSuchMethod method - BaseThingy class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

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

    operator == method

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

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/BaseThingy/toString.html b/testing/test_package_docs/fake/BaseThingy/toString.html deleted file mode 100644 index 70407e1467..0000000000 --- a/testing/test_package_docs/fake/BaseThingy/toString.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - toString method - BaseThingy class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/BaseThingy2/BaseThingy2.html b/testing/test_package_docs/fake/BaseThingy2/BaseThingy2.html deleted file mode 100644 index ed0eceee82..0000000000 --- a/testing/test_package_docs/fake/BaseThingy2/BaseThingy2.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - BaseThingy2 constructor - BaseThingy2 class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    BaseThingy2
    - -
    - -
    - - - -
    -

    BaseThingy2 constructor

    - -
    - - BaseThingy2() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/BaseThingy2/aImplementingThingy.html b/testing/test_package_docs/fake/BaseThingy2/aImplementingThingy.html deleted file mode 100644 index 3cb658d2e7..0000000000 --- a/testing/test_package_docs/fake/BaseThingy2/aImplementingThingy.html +++ /dev/null @@ -1,107 +0,0 @@ - - - - - - - - aImplementingThingy property - BaseThingy2 class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aImplementingThingy
    - -
    - -
    - - - -
    -

    aImplementingThingy property

    - - -
    - -
    - ImplementingThingy2 - aImplementingThingy - -
    - -
    -

    BaseThingy2's doc for aImplementingThingy.

    -
    - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html b/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html deleted file mode 100644 index 8eb56be916..0000000000 --- a/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - - - CUSTOM_CLASS constant - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    CUSTOM_CLASS
    - -
    - -
    - - - -
    -

    CUSTOM_CLASS top-level constant

    - -
    - const CUSTOM_CLASS - = - const ConstantClass('custom') - -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/CUSTOM_CLASS_PRIVATE-constant.html b/testing/test_package_docs/fake/CUSTOM_CLASS_PRIVATE-constant.html deleted file mode 100644 index 94e604c0d0..0000000000 --- a/testing/test_package_docs/fake/CUSTOM_CLASS_PRIVATE-constant.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - - - CUSTOM_CLASS_PRIVATE constant - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    CUSTOM_CLASS_PRIVATE
    - -
    - -
    - - - -
    -

    CUSTOM_CLASS_PRIVATE top-level constant

    - -
    - const CUSTOM_CLASS_PRIVATE - = - const _APrivateConstClass() - -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/Callback2.html b/testing/test_package_docs/fake/Callback2.html deleted file mode 100644 index 21dd36c16c..0000000000 --- a/testing/test_package_docs/fake/Callback2.html +++ /dev/null @@ -1,196 +0,0 @@ - - - - - - - - Callback2 typedef - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    Callback2
    - -
    - -
    - - - -
    -

    Callback2 typedef

    - -
    - int - Callback2 -(dynamic String) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html b/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html deleted file mode 100644 index c02a13fcfe..0000000000 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html +++ /dev/null @@ -1,425 +0,0 @@ - - - - - - - - ClassWithUnusualProperties class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    ClassWithUnusualProperties
    - -
    - -
    - - - -
    -

    ClassWithUnusualProperties class

    - -
    -

    Classes with unusual properties? I don't think they exist.

    -

    Or rather, dartdoc used to think they didn't exist. Check the variations -on inheritance and overrides here.

    -
    - -
    -
    -
    Inheritance
    -
    - - - - -
    -
    - -
    -

    Constructors

    - -
    -
    - ClassWithUnusualProperties() -
    -
    - -
    -
    -
    - -
    -

    Properties

    - -
    -
    - documentedPartialFieldInSubclassOnly - → String -
    -
    - This getter is documented, so we should see a read-only property here. -
    read-only
    -
    -
    - explicitGetter - myCoolTypedef -
    -
    - This property only has a getter and no setter; no parameters to print. -
    read-only
    -
    -
    - explicitGetterImplicitSetter - ↔ List<int> -
    -
    - Getter doc for explicitGetterImplicitSetter -
    inherited-setter, read / write
    -
    -
    - explicitGetterSetter - myCoolTypedef -
    -
    - Getter doc for explicitGetterSetter. -
    @Annotation('a Getter Annotation'), @Annotation('a Setter Annotation'), read / write
    -
    -
    - explicitNonDocumentedInBaseClassGetter - → String -
    -
    - Since I have a different doc, I should be documented. -
    read-only
    -
    -
    - explicitSetter - dynamic Function(int, Cool, List<int>) -
    -
    - Set to f, and don't warn about bar or baz. -
    write-only
    -
    -
    - finalProperty - → Set -
    -
    - This property has some docs, too. -
    final
    -
    -
    - implicitGetterExplicitSetter - ↔ String -
    -
    - Docs for implicitGetterExplicitSetter from ImplicitProperties. -
    inherited-getter, read / write
    -
    -
    - implicitReadWrite - ↔ Map -
    -
    - -
    read / write
    -
    -
    - explicitGetterSetterForInheriting - ↔ int -
    -
    - Explicit getter for inheriting. -
    read / write, inherited
    -
    -
    - explicitPartiallyDocumentedField - → double -
    -
    - but documented here. -
    read-only, inherited
    -
    -
    - forInheriting - ↔ int -
    -
    - A simple property to inherit. -
    read / write, inherited
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

    -
    -
    - aMethod(Function f(Cool x, bool q)) - → String - -
    -
    - Hey there, more things not to warn about: f, x, or q. - -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

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

    ClassWithUnusualProperties constructor

    - -
    - - ClassWithUnusualProperties() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties/aMethod.html b/testing/test_package_docs/fake/ClassWithUnusualProperties/aMethod.html deleted file mode 100644 index 4f510a01b3..0000000000 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties/aMethod.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - - aMethod method - ClassWithUnusualProperties class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aMethod
    - -
    - -
    - - - -
    -

    aMethod method

    - -
    - String - aMethod -(Function f(Cool x, bool q)) -
    -
    -

    Hey there, more things not to warn about: f, x, or q.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties/documentedPartialFieldInSubclassOnly.html b/testing/test_package_docs/fake/ClassWithUnusualProperties/documentedPartialFieldInSubclassOnly.html deleted file mode 100644 index a5fb30510d..0000000000 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties/documentedPartialFieldInSubclassOnly.html +++ /dev/null @@ -1,131 +0,0 @@ - - - - - - - - documentedPartialFieldInSubclassOnly property - ClassWithUnusualProperties class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    documentedPartialFieldInSubclassOnly
    - -
    - -
    - - - -
    -

    documentedPartialFieldInSubclassOnly property

    - - -
    - -
    - String - documentedPartialFieldInSubclassOnly - -
    - -
    -

    This getter is documented, so we should see a read-only property here.

    -
    - -
    - -
    - -
    - void - documentedPartialFieldInSubclassOnly= -(String _documentedPartialFieldInSubclassOnly) -
    inherited
    -
    - -
    -

    @nodoc here, you should never see this

    -
    - -
    -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetter.html b/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetter.html deleted file mode 100644 index c36e237d43..0000000000 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetter.html +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - explicitGetter property - ClassWithUnusualProperties class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    explicitGetter
    - -
    - -
    - - - -
    -

    explicitGetter property

    - - -
    - -
    - myCoolTypedef - explicitGetter - -
    - -
    -

    This property only has a getter and no setter; no parameters to print.

    -
    - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetterImplicitSetter.html b/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetterImplicitSetter.html deleted file mode 100644 index 79b6880b9f..0000000000 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetterImplicitSetter.html +++ /dev/null @@ -1,131 +0,0 @@ - - - - - - - - explicitGetterImplicitSetter property - ClassWithUnusualProperties class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    explicitGetterImplicitSetter
    - -
    - -
    - - - -
    -

    explicitGetterImplicitSetter property

    - - -
    - -
    - List<int> - explicitGetterImplicitSetter - -
    - -
    -

    Getter doc for explicitGetterImplicitSetter

    -
    - -
    - -
    - -
    - void - explicitGetterImplicitSetter= -(List<int> _explicitGetterImplicitSetter) -
    inherited
    -
    - -
    -

    Docs for explicitGetterImplicitSetter from ImplicitProperties.

    -
    - -
    -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetterSetter.html b/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetterSetter.html deleted file mode 100644 index 1dc1013844..0000000000 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetterSetter.html +++ /dev/null @@ -1,131 +0,0 @@ - - - - - - - - explicitGetterSetter property - ClassWithUnusualProperties class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    explicitGetterSetter
    - -
    - -
    - - - -
    -

    explicitGetterSetter property

    - - -
    - -
    - myCoolTypedef - explicitGetterSetter -
    @Annotation('a Getter Annotation')
    -
    - -
    -

    Getter doc for explicitGetterSetter.

    -
    - -
    - -
    - -
    - void - explicitGetterSetter= -(myCoolTypedef f) -
    @Annotation('a Setter Annotation')
    -
    - -
    -

    This property is not synthetic, so it might reference f -- display it.

    -
    - -
    -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitNonDocumentedInBaseClassGetter.html b/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitNonDocumentedInBaseClassGetter.html deleted file mode 100644 index e0341d8aa6..0000000000 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitNonDocumentedInBaseClassGetter.html +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - explicitNonDocumentedInBaseClassGetter property - ClassWithUnusualProperties class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    explicitNonDocumentedInBaseClassGetter
    - -
    - -
    - - - -
    -

    explicitNonDocumentedInBaseClassGetter property

    - - -
    - -
    - String - explicitNonDocumentedInBaseClassGetter - -
    - -
    -

    Since I have a different doc, I should be documented.

    -
    - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitSetter.html b/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitSetter.html deleted file mode 100644 index 7530b11dcc..0000000000 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitSetter.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - explicitSetter property - ClassWithUnusualProperties class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    explicitSetter
    - -
    - -
    - - - -
    -

    explicitSetter property

    - - - -
    - -
    - void - explicitSetter= -(dynamic f(int bar, Cool baz, List<int> macTruck)) - -
    - -
    -

    Set to f, and don't warn about bar or baz.

    -
    - -
    -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties/finalProperty.html b/testing/test_package_docs/fake/ClassWithUnusualProperties/finalProperty.html deleted file mode 100644 index ff79bb1c5f..0000000000 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties/finalProperty.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - finalProperty property - ClassWithUnusualProperties class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    finalProperty
    - -
    - -
    - - - -
    -

    finalProperty property

    - -
    - Set - finalProperty -
    final
    -
    -
    -

    This property has some docs, too.

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties/implicitGetterExplicitSetter.html b/testing/test_package_docs/fake/ClassWithUnusualProperties/implicitGetterExplicitSetter.html deleted file mode 100644 index 85b8e0b950..0000000000 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties/implicitGetterExplicitSetter.html +++ /dev/null @@ -1,131 +0,0 @@ - - - - - - - - implicitGetterExplicitSetter property - ClassWithUnusualProperties class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    implicitGetterExplicitSetter
    - -
    - -
    - - - -
    -

    implicitGetterExplicitSetter property

    - - -
    - -
    - String - implicitGetterExplicitSetter -
    inherited
    -
    - -
    -

    Docs for implicitGetterExplicitSetter from ImplicitProperties.

    -
    - -
    - -
    - -
    - void - implicitGetterExplicitSetter= -(String x) - -
    - -
    -

    Docs for setter of implicitGetterExplicitSetter.

    -
    - -
    -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties/implicitReadWrite.html b/testing/test_package_docs/fake/ClassWithUnusualProperties/implicitReadWrite.html deleted file mode 100644 index 828257857f..0000000000 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties/implicitReadWrite.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - implicitReadWrite property - ClassWithUnusualProperties class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    implicitReadWrite
    - -
    - -
    - - - -
    -

    implicitReadWrite property

    - -
    - Map - implicitReadWrite -
    read / write
    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/Color-class.html b/testing/test_package_docs/fake/Color-class.html deleted file mode 100644 index 5d74055e04..0000000000 --- a/testing/test_package_docs/fake/Color-class.html +++ /dev/null @@ -1,391 +0,0 @@ - - - - - - - - Color enum - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    Color
    - -
    - -
    - - - -
    -

    Color enum

    - -
    -

    An enum for ROYGBIV constants.

    -
    - - -
    -

    Constants

    - -
    -
    - BLUE - → const Color -
    -
    -

    Some constants have long docs.

    -

    Some constants have long docs. -Some constants have long docs.

    - -
    - const Color(4) -
    -
    -
    - GREEN - → const Color -
    -
    - - -
    - const Color(3) -
    -
    -
    - INDIGO - → const Color -
    -
    - - -
    - const Color(5) -
    -
    -
    - ORANGE - → const Color -
    -
    -

    Orange

    - -
    - const Color(1) -
    -
    -
    - RED - → const Color -
    -
    -

    Red

    - -
    - const Color(0) -
    -
    -
    - values - → const List<Color> -
    -
    -

    A constant List of the values in this enum, in order of their declaration.

    - -
    - const List<Color> -
    -
    -
    - VIOLET - → const Color -
    -
    - - -
    - const Color(6) -
    -
    -
    - YELLOW - → const Color -
    -
    - - -
    - const Color(2) -
    -
    -
    -
    - - -
    -

    Properties

    - -
    -
    - index - → int -
    -
    -

    The integer index of this enum.

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

    Methods

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

    Operators

    -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/Color/hashCode.html b/testing/test_package_docs/fake/Color/hashCode.html deleted file mode 100644 index 7db03c892b..0000000000 --- a/testing/test_package_docs/fake/Color/hashCode.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - hashCode property - Color class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/Color/noSuchMethod.html b/testing/test_package_docs/fake/Color/noSuchMethod.html deleted file mode 100644 index 2ec1aff47b..0000000000 --- a/testing/test_package_docs/fake/Color/noSuchMethod.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - noSuchMethod method - Color class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

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

    operator == method

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

    runtimeType property

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

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ConstantClass-class.html b/testing/test_package_docs/fake/ConstantClass-class.html deleted file mode 100644 index 94a494fb7f..0000000000 --- a/testing/test_package_docs/fake/ConstantClass-class.html +++ /dev/null @@ -1,323 +0,0 @@ - - - - - - - - ConstantClass class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    ConstantClass
    - -
    - -
    - - - -
    -

    ConstantClass class

    - -
    -

    For make-better testing of constants.

    -

    Make one of these neato classes like this:

    -

    var constant = const ConstantClass('neat')

    -

    This is a code block

    -
    var x = 'hello';
    -print(x);
    -
    -
    - - -
    -

    Constructors

    - -
    -
    - ConstantClass(String value) -
    -
    - Make compile-time constants with this constructor! -Go ahead, it's fun. -
    const
    -
    -
    - ConstantClass.isVeryConstant(String value) -
    -
    - A named compile-time constant constructor. -
    const
    -
    -
    - ConstantClass.notConstant(String value) -
    -
    - Not actually constant. -
    -
    -
    - -
    -

    Properties

    - -
    -
    - value - → String -
    -
    - -
    final
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

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

    Operators

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

    ConstantClass.isVeryConstant constructor

    - -
    - const - ConstantClass.isVeryConstant(String value) -
    - -
    -

    A named compile-time constant constructor.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ConstantClass/ConstantClass.notConstant.html b/testing/test_package_docs/fake/ConstantClass/ConstantClass.notConstant.html deleted file mode 100644 index 65e703a16f..0000000000 --- a/testing/test_package_docs/fake/ConstantClass/ConstantClass.notConstant.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - ConstantClass.notConstant constructor - ConstantClass class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    ConstantClass.notConstant
    - -
    - -
    - - - -
    -

    ConstantClass.notConstant constructor

    - -
    - - ConstantClass.notConstant(String value) -
    - -
    -

    Not actually constant.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ConstantClass/hashCode.html b/testing/test_package_docs/fake/ConstantClass/hashCode.html deleted file mode 100644 index eac7e73598..0000000000 --- a/testing/test_package_docs/fake/ConstantClass/hashCode.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - hashCode property - ConstantClass class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ConstantClass/noSuchMethod.html b/testing/test_package_docs/fake/ConstantClass/noSuchMethod.html deleted file mode 100644 index 868c18605a..0000000000 --- a/testing/test_package_docs/fake/ConstantClass/noSuchMethod.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - noSuchMethod method - ConstantClass class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

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

    operator == method

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

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ConstantClass/toString.html b/testing/test_package_docs/fake/ConstantClass/toString.html deleted file mode 100644 index 18cc6e1f47..0000000000 --- a/testing/test_package_docs/fake/ConstantClass/toString.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - toString method - ConstantClass class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ConstructorTester-class.html b/testing/test_package_docs/fake/ConstructorTester-class.html deleted file mode 100644 index 71beb6c9a8..0000000000 --- a/testing/test_package_docs/fake/ConstructorTester-class.html +++ /dev/null @@ -1,295 +0,0 @@ - - - - - - - - ConstructorTester class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    ConstructorTester
    - -
    - -
    - - - -
    -

    ConstructorTester<A, B> class

    - - - -
    -

    Constructors

    - -
    -
    - ConstructorTester(String param1) -
    -
    - -
    -
    - ConstructorTester.fromSomething(A foo) -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

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

    Operators

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

    ConstructorTester<A, B>.fromSomething constructor

    - -
    - - ConstructorTester<A, B>.fromSomething(A foo) -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ConstructorTester/ConstructorTester.html b/testing/test_package_docs/fake/ConstructorTester/ConstructorTester.html deleted file mode 100644 index 4aa68af6fc..0000000000 --- a/testing/test_package_docs/fake/ConstructorTester/ConstructorTester.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - ConstructorTester constructor - ConstructorTester class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    ConstructorTester
    - -
    - -
    - - - -
    -

    ConstructorTester<A, B> constructor

    - -
    - - ConstructorTester<A, B>(String param1) -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ConstructorTester/hashCode.html b/testing/test_package_docs/fake/ConstructorTester/hashCode.html deleted file mode 100644 index b903835e3a..0000000000 --- a/testing/test_package_docs/fake/ConstructorTester/hashCode.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - hashCode property - ConstructorTester class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

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

    noSuchMethod method

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

    operator == method

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

    runtimeType property

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

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/Cool-class.html b/testing/test_package_docs/fake/Cool-class.html deleted file mode 100644 index 7ef6fe31bf..0000000000 --- a/testing/test_package_docs/fake/Cool-class.html +++ /dev/null @@ -1,301 +0,0 @@ - - - - - - - - Cool class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    Cool
    - -
    - -
    - - - -
    -

    Cool class

    - -
    -

    This class is cool!

    -
    - - -
    -

    Constructors

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

    Properties

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

    Methods

    -
    -
    - returnCool() - Cool - -
    -
    - - -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

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

    Cool constructor

    - -
    - - Cool() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/Cool/hashCode.html b/testing/test_package_docs/fake/Cool/hashCode.html deleted file mode 100644 index 0f4815ef31..0000000000 --- a/testing/test_package_docs/fake/Cool/hashCode.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - hashCode property - Cool class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

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

    noSuchMethod method

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

    operator == method

    - -
    - bool - operator == -(dynamic other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/Cool/returnCool.html b/testing/test_package_docs/fake/Cool/returnCool.html deleted file mode 100644 index 475050b160..0000000000 --- a/testing/test_package_docs/fake/Cool/returnCool.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - returnCool method - Cool class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    returnCool
    - -
    - -
    - - - -
    -

    returnCool method

    - -
    - Cool - returnCool -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/Cool/runtimeType.html b/testing/test_package_docs/fake/Cool/runtimeType.html deleted file mode 100644 index 3ad10d7229..0000000000 --- a/testing/test_package_docs/fake/Cool/runtimeType.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - runtimeType property - Cool class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    runtimeType
    - -
    - -
    - - - -
    -

    runtimeType property

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

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/DOWN-constant.html b/testing/test_package_docs/fake/DOWN-constant.html deleted file mode 100644 index 1831af6791..0000000000 --- a/testing/test_package_docs/fake/DOWN-constant.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - - - DOWN constant - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    DOWN
    - -
    - -
    - - - -
    -

    DOWN top-level constant

    - -
    - const DOWN - = - 'down' - -
    - -
    -

    Dynamic-typed down.

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/DocumentWithATable-class.html b/testing/test_package_docs/fake/DocumentWithATable-class.html deleted file mode 100644 index e7892023ad..0000000000 --- a/testing/test_package_docs/fake/DocumentWithATable-class.html +++ /dev/null @@ -1,336 +0,0 @@ - - - - - - - - DocumentWithATable class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    DocumentWithATable
    - -
    - -
    - - - -
    -

    DocumentWithATable class

    - -
    -

    This is a class with a table.

    -

    It has multiple sentences before the table. Because testing is a good -idea.

    ComponentSymbolShort FormLong FormNumeric2-digit
    eraGG (AD)GGGG (Anno Domini)--
    yeary--y (2015)yy (15)
    monthMMMM (Sep)MMMM (September)M (9)MM (09)
    dayd--d (3)dd (03)
    weekdayEEEE (Sun)EEEE (Sunday)--
    hourj--j (13)jj (13)
    hour12h--h (1 PM)hh (01 PM)
    hour24H--H (13)HH (13)
    minutem--m (5)mm (05)
    seconds--s (9)ss (09)
    timezonez-z (Pacific Standard Time)--
    timezoneZZ (GMT-8:00)---
    -

    It also has a short table with embedded links.

    DocumentWithATableAnnotationaMethod
    fooNot really"blah"
    barMaybe"stuff"
    -
    - - -
    -

    Constructors

    - -
    -
    - DocumentWithATable() -
    -
    - -
    const
    -
    -
    -
    - -
    -

    Properties

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

    Methods

    -
    -
    - aMethod(String parameter) - → void - -
    -
    - - -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

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

    Constants

    - -
    -
    - bar - → const DocumentWithATable -
    -
    - - -
    - const DocumentWithATable() -
    -
    -
    - foo - → const DocumentWithATable -
    -
    - - -
    - const DocumentWithATable() -
    -
    -
    -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/DocumentWithATable/DocumentWithATable.html b/testing/test_package_docs/fake/DocumentWithATable/DocumentWithATable.html deleted file mode 100644 index 935a0d864a..0000000000 --- a/testing/test_package_docs/fake/DocumentWithATable/DocumentWithATable.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - DocumentWithATable constructor - DocumentWithATable class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    DocumentWithATable
    - -
    - -
    - - - -
    -

    DocumentWithATable constructor

    - -
    - const - DocumentWithATable() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/DocumentWithATable/aMethod.html b/testing/test_package_docs/fake/DocumentWithATable/aMethod.html deleted file mode 100644 index 56644010cc..0000000000 --- a/testing/test_package_docs/fake/DocumentWithATable/aMethod.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - aMethod method - DocumentWithATable class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aMethod
    - -
    - -
    - - - -
    -

    aMethod method

    - -
    - void - aMethod -(String parameter) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/DocumentWithATable/bar-constant.html b/testing/test_package_docs/fake/DocumentWithATable/bar-constant.html deleted file mode 100644 index 5ec10125de..0000000000 --- a/testing/test_package_docs/fake/DocumentWithATable/bar-constant.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - bar constant - DocumentWithATable class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    bar
    - -
    - -
    - - - -
    -

    bar constant

    - -
    - DocumentWithATable - const bar - = - const DocumentWithATable() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/DocumentWithATable/foo-constant.html b/testing/test_package_docs/fake/DocumentWithATable/foo-constant.html deleted file mode 100644 index a4e22f0b7e..0000000000 --- a/testing/test_package_docs/fake/DocumentWithATable/foo-constant.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - foo constant - DocumentWithATable class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    foo
    - -
    - -
    - - - -
    -

    foo constant

    - -
    - DocumentWithATable - const foo - = - const DocumentWithATable() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/DocumentWithATable/hashCode.html b/testing/test_package_docs/fake/DocumentWithATable/hashCode.html deleted file mode 100644 index 034c5979f2..0000000000 --- a/testing/test_package_docs/fake/DocumentWithATable/hashCode.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - hashCode property - DocumentWithATable class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

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

    noSuchMethod method

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

    operator == method

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

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/DocumentWithATable/toString.html b/testing/test_package_docs/fake/DocumentWithATable/toString.html deleted file mode 100644 index 3798ca8e1e..0000000000 --- a/testing/test_package_docs/fake/DocumentWithATable/toString.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - toString method - DocumentWithATable class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

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

    Doh class

    - -
    -

    Also, my bad.

    -
    - -
    -
    -
    Inheritance
    -
      -
    • Object
    • -
    • Error
    • -
    • Doh
    • -
    - - - - -
    Annotations
    -
      -
    • @deprecated
    • -
    -
    -
    - -
    -

    Constructors

    - -
    -
    - Doh() -
    -
    - -
    -
    -
    - -
    -

    Properties

    - -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    - stackTrace - → StackTrace -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

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

    Operators

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

    Doh constructor

    - -
    - - Doh() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/Doh/hashCode.html b/testing/test_package_docs/fake/Doh/hashCode.html deleted file mode 100644 index 949df98155..0000000000 --- a/testing/test_package_docs/fake/Doh/hashCode.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - hashCode property - Doh class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

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

    noSuchMethod method

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

    operator == method

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

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/Doh/stackTrace.html b/testing/test_package_docs/fake/Doh/stackTrace.html deleted file mode 100644 index 77be70ef44..0000000000 --- a/testing/test_package_docs/fake/Doh/stackTrace.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - stackTrace property - Doh class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    stackTrace
    - -
    - -
    - - - -
    -

    stackTrace property

    - - -
    - -
    - StackTrace - stackTrace -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/Doh/toString.html b/testing/test_package_docs/fake/Doh/toString.html deleted file mode 100644 index 034ba5e583..0000000000 --- a/testing/test_package_docs/fake/Doh/toString.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - toString method - Doh class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ExtendsFutureVoid-class.html b/testing/test_package_docs/fake/ExtendsFutureVoid-class.html deleted file mode 100644 index 90f28ea278..0000000000 --- a/testing/test_package_docs/fake/ExtendsFutureVoid-class.html +++ /dev/null @@ -1,356 +0,0 @@ - - - - - - - - ExtendsFutureVoid class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    ExtendsFutureVoid
    - -
    - -
    - - - -
    -

    ExtendsFutureVoid class

    - -
    -

    This class extends Future

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

    Constructors

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

    Properties

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

    Methods

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

    Operators

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

    ExtendsFutureVoid constructor

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

    asStream method

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

    catchError method

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

    hashCode property

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

    noSuchMethod method

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

    operator == method

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

    runtimeType property

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

    then<R> method

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

    timeout method

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

    toString method

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

    whenComplete method

    - -
    - Future<void> - whenComplete -(FutureOr action()) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ExtraSpecialList-class.html b/testing/test_package_docs/fake/ExtraSpecialList-class.html deleted file mode 100644 index 8b71cb0cb5..0000000000 --- a/testing/test_package_docs/fake/ExtraSpecialList-class.html +++ /dev/null @@ -1,878 +0,0 @@ - - - - - - - - ExtraSpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    ExtraSpecialList
    - -
    - -
    - - - -
    -

    ExtraSpecialList<E> class

    - -
    -

    This inherits operators.

    -
    - -
    -
    -
    Inheritance
    -
      -
    • Object
    • -
    • ListBase<E>
    • -
    • SpecialList
    • -
    • ExtraSpecialList
    • -
    - - - - -
    -
    - -
    -

    Constructors

    - -
    -
    - ExtraSpecialList() -
    -
    - -
    -
    -
    - -
    -

    Properties

    - -
    -
    - first - ↔ dynamic -
    -
    - -
    read / write, inherited
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - isEmpty - → bool -
    -
    - -
    read-only, inherited
    -
    -
    - isNotEmpty - → bool -
    -
    - -
    read-only, inherited
    -
    -
    - iterator - → Iterator -
    -
    - -
    read-only, inherited
    -
    -
    - last - ↔ dynamic -
    -
    - -
    read / write, inherited
    -
    -
    - length - ↔ int -
    -
    - -
    read / write, inherited
    -
    -
    - reversed - → Iterable -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    - single - → dynamic -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

    -
    -
    - add(dynamic element) - → void - -
    -
    - -
    inherited
    -
    -
    - addAll(Iterable iterable) - → void - -
    -
    - -
    inherited
    -
    -
    - any(bool test(E element)) - → bool - -
    -
    - -
    inherited
    -
    -
    - asMap() - → Map<int, dynamic> - -
    -
    - -
    inherited
    -
    -
    - cast<R>() - → List<R> - -
    -
    - -
    inherited
    -
    -
    - clear() - → void - -
    -
    - -
    inherited
    -
    -
    - contains(Object element) - → bool - -
    -
    - -
    inherited
    -
    -
    - elementAt(int index) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - every(bool test(E element)) - → bool - -
    -
    - -
    inherited
    -
    -
    - expand<T>(Iterable<T> f(E element)) - → Iterable<T> - -
    -
    - -
    inherited
    -
    -
    - fillRange(int start, int end, [ dynamic fill ]) - → void - -
    -
    - -
    inherited
    -
    -
    - firstWhere(bool test(E element), { dynamic orElse() }) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - fold<T>(T initialValue, T combine(T previousValue, E element)) - → T - -
    -
    - -
    inherited
    -
    -
    - followedBy(Iterable other) - → Iterable - -
    -
    - -
    inherited
    -
    -
    - forEach(void action(E element)) - → void - -
    -
    - -
    inherited
    -
    -
    - getRange(int start, int end) - → Iterable - -
    -
    - -
    inherited
    -
    -
    - indexOf(Object element, [ int start = 0 ]) - → int - -
    -
    - -
    inherited
    -
    -
    - indexWhere(bool test(E element), [ int start = 0 ]) - → int - -
    -
    - -
    inherited
    -
    -
    - insert(int index, dynamic element) - → void - -
    -
    - -
    inherited
    -
    -
    - insertAll(int index, Iterable iterable) - → void - -
    -
    - -
    inherited
    -
    -
    - join([String separator = "" ]) - → String - -
    -
    - -
    inherited
    -
    -
    - lastIndexOf(Object element, [ int start ]) - → int - -
    -
    - -
    inherited
    -
    -
    - lastIndexWhere(bool test(E element), [ int start ]) - → int - -
    -
    - -
    inherited
    -
    -
    - lastWhere(bool test(E element), { dynamic orElse() }) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - map<T>(T f(E element)) - → Iterable<T> - -
    -
    - -
    inherited
    -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - reduce(dynamic combine(E previousValue, E element)) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - remove(Object element) - → bool - -
    -
    - -
    inherited
    -
    -
    - removeAt(int index) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - removeLast() - → dynamic - -
    -
    - -
    inherited
    -
    -
    - removeRange(int start, int end) - → void - -
    -
    - -
    inherited
    -
    -
    - removeWhere(bool test(E element)) - → void - -
    -
    - -
    inherited
    -
    -
    - replaceRange(int start, int end, Iterable newContents) - → void - -
    -
    - -
    inherited
    -
    -
    - retainWhere(bool test(E element)) - → void - -
    -
    - -
    inherited
    -
    -
    - setAll(int index, Iterable iterable) - → void - -
    -
    - -
    inherited
    -
    -
    - setRange(int start, int end, Iterable iterable, [ int skipCount = 0 ]) - → void - -
    -
    - -
    inherited
    -
    -
    - shuffle([Random random ]) - → void - -
    -
    - -
    inherited
    -
    -
    - singleWhere(bool test(E element), { dynamic orElse() }) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - skip(int count) - → Iterable - -
    -
    - -
    inherited
    -
    -
    - skipWhile(bool test(E element)) - → Iterable - -
    -
    - -
    inherited
    -
    -
    - sort([int compare(E a, E b) ]) - → void - -
    -
    - -
    inherited
    -
    -
    - sublist(int start, [ int end ]) - → List - -
    -
    - -
    inherited
    -
    -
    - take(int count) - → Iterable - -
    -
    - -
    inherited
    -
    -
    - takeWhile(bool test(E element)) - → Iterable - -
    -
    - -
    inherited
    -
    -
    - toList({bool growable: true }) - → List - -
    -
    - -
    inherited
    -
    -
    - toSet() - → Set - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    - where(bool test(E element)) - → Iterable - -
    -
    - -
    inherited
    -
    -
    - whereType<T>() - → Iterable<T> - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

    -
    -
    - operator +(List other) - → List - -
    -
    - -
    inherited
    -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    - operator [](int index) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - operator []=(int index, dynamic value) - → void - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ExtraSpecialList/ExtraSpecialList.html b/testing/test_package_docs/fake/ExtraSpecialList/ExtraSpecialList.html deleted file mode 100644 index 75cdff9ecb..0000000000 --- a/testing/test_package_docs/fake/ExtraSpecialList/ExtraSpecialList.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - ExtraSpecialList constructor - ExtraSpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    ExtraSpecialList
    - -
    - -
    - - - -
    -

    ExtraSpecialList<E> constructor

    - -
    - - ExtraSpecialList<E>() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/FakeProcesses.html b/testing/test_package_docs/fake/FakeProcesses.html deleted file mode 100644 index eb04ef9ccb..0000000000 --- a/testing/test_package_docs/fake/FakeProcesses.html +++ /dev/null @@ -1,204 +0,0 @@ - - - - - - - - FakeProcesses typedef - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    FakeProcesses
    - -
    - -
    - - - -
    -

    FakeProcesses typedef

    - -
    -
    -
      -
    1. @deprecated
    2. -
    -
    - String - FakeProcesses -(String input) -
    - -
    -

    Takes input, returns output.

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/Foo2-class.html b/testing/test_package_docs/fake/Foo2-class.html deleted file mode 100644 index 4ed3474062..0000000000 --- a/testing/test_package_docs/fake/Foo2-class.html +++ /dev/null @@ -1,332 +0,0 @@ - - - - - - - - Foo2 class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    Foo2
    - -
    - -
    - - - -
    -

    Foo2 class

    - -
    -

    link to method from class Apple.m

    -
    - - -
    -

    Constructors

    - -
    -
    - Foo2(int index) -
    -
    - -
    const
    -
    -
    -
    - -
    -

    Properties

    - -
    -
    - index - → int -
    -
    - -
    final
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

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

    Operators

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

    Constants

    - -
    -
    - BAR - → const Foo2 -
    -
    - - -
    - const Foo2(0) -
    -
    -
    - BAZ - → const Foo2 -
    -
    - - -
    - const Foo2(1) -
    -
    -
    -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/Foo2/BAR-constant.html b/testing/test_package_docs/fake/Foo2/BAR-constant.html deleted file mode 100644 index fa65983934..0000000000 --- a/testing/test_package_docs/fake/Foo2/BAR-constant.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - BAR constant - Foo2 class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    BAR
    - -
    - -
    - - - -
    -

    BAR constant

    - -
    - Foo2 - const BAR - = - const Foo2(0) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/Foo2/BAZ-constant.html b/testing/test_package_docs/fake/Foo2/BAZ-constant.html deleted file mode 100644 index 6cc582cae3..0000000000 --- a/testing/test_package_docs/fake/Foo2/BAZ-constant.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - BAZ constant - Foo2 class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    BAZ
    - -
    - -
    - - - -
    -

    BAZ constant

    - -
    - Foo2 - const BAZ - = - const Foo2(1) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/Foo2/Foo2.html b/testing/test_package_docs/fake/Foo2/Foo2.html deleted file mode 100644 index d8b960c8b9..0000000000 --- a/testing/test_package_docs/fake/Foo2/Foo2.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - Foo2 constructor - Foo2 class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    Foo2
    - -
    - -
    - - - -
    -

    Foo2 constructor

    - -
    - const - Foo2(int index) -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/Foo2/hashCode.html b/testing/test_package_docs/fake/Foo2/hashCode.html deleted file mode 100644 index dd9b1a9a59..0000000000 --- a/testing/test_package_docs/fake/Foo2/hashCode.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - hashCode property - Foo2 class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/Foo2/index.html b/testing/test_package_docs/fake/Foo2/index.html deleted file mode 100644 index 4dff9baadb..0000000000 --- a/testing/test_package_docs/fake/Foo2/index.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - index property - Foo2 class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    index
    - -
    - -
    - - - -
    -

    index property

    - -
    - int - index -
    final
    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/Foo2/noSuchMethod.html b/testing/test_package_docs/fake/Foo2/noSuchMethod.html deleted file mode 100644 index 6b078b2ed8..0000000000 --- a/testing/test_package_docs/fake/Foo2/noSuchMethod.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - noSuchMethod method - Foo2 class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

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

    operator == method

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

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/Foo2/toString.html b/testing/test_package_docs/fake/Foo2/toString.html deleted file mode 100644 index 394521c698..0000000000 --- a/testing/test_package_docs/fake/Foo2/toString.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - toString method - Foo2 class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/GenericTypedef.html b/testing/test_package_docs/fake/GenericTypedef.html deleted file mode 100644 index 5b39c51ff3..0000000000 --- a/testing/test_package_docs/fake/GenericTypedef.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - GenericTypedef typedef - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    GenericTypedef
    - -
    - -
    - - - -
    -

    GenericTypedef<T> typedef

    - -
    - T - GenericTypedef -(T input) -
    - -
    -

    A typedef with a type parameter.

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/HasGenericWithExtends-class.html b/testing/test_package_docs/fake/HasGenericWithExtends-class.html deleted file mode 100644 index a79991cc6d..0000000000 --- a/testing/test_package_docs/fake/HasGenericWithExtends-class.html +++ /dev/null @@ -1,291 +0,0 @@ - - - - - - - - HasGenericWithExtends class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    HasGenericWithExtends
    - -
    - -
    - - - -
    -

    HasGenericWithExtends<T extends Foo2> class

    - -
    -

    I have a generic and it extends Foo2

    -
    - - -
    -

    Constructors

    - -
    -
    - HasGenericWithExtends() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

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

    Operators

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

    HasGenericWithExtends<T extends Foo2> constructor

    - -
    - - HasGenericWithExtends<T extends Foo2>() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/HasGenericWithExtends/hashCode.html b/testing/test_package_docs/fake/HasGenericWithExtends/hashCode.html deleted file mode 100644 index 0789db8043..0000000000 --- a/testing/test_package_docs/fake/HasGenericWithExtends/hashCode.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - hashCode property - HasGenericWithExtends class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

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

    noSuchMethod method

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

    operator == method

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

    runtimeType property

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

    toString method

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

    HasGenerics<X, Y, Z> class

    - - - -
    -

    Constructors

    - -
    -
    - HasGenerics(X x, Y y, Z z) -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

    -
    -
    - convertToMap() - → Map<X, Y> - -
    -
    - Converts itself to a map. - -
    -
    - doStuff(String s, X x) - → Z - -
    -
    - - -
    -
    - returnX() - → X - -
    -
    - - -
    -
    - returnZ() - → Z - -
    -
    - - -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

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

    HasGenerics<X, Y, Z> constructor

    - -
    - - HasGenerics<X, Y, Z>(X x, Y y, Z z) -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/HasGenerics/convertToMap.html b/testing/test_package_docs/fake/HasGenerics/convertToMap.html deleted file mode 100644 index 7f9f261874..0000000000 --- a/testing/test_package_docs/fake/HasGenerics/convertToMap.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - convertToMap method - HasGenerics class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    convertToMap
    - -
    - -
    - - - -
    -

    convertToMap method

    - -
    - Map<X, Y> - convertToMap -() -
    -
    -

    Converts itself to a map.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/HasGenerics/doStuff.html b/testing/test_package_docs/fake/HasGenerics/doStuff.html deleted file mode 100644 index 4cc12bbd54..0000000000 --- a/testing/test_package_docs/fake/HasGenerics/doStuff.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - doStuff method - HasGenerics class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    doStuff
    - -
    - -
    - - - -
    -

    doStuff method

    - -
    - Z - doStuff -(String s, X x) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/HasGenerics/hashCode.html b/testing/test_package_docs/fake/HasGenerics/hashCode.html deleted file mode 100644 index 5521531cd6..0000000000 --- a/testing/test_package_docs/fake/HasGenerics/hashCode.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - hashCode property - HasGenerics class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/HasGenerics/noSuchMethod.html b/testing/test_package_docs/fake/HasGenerics/noSuchMethod.html deleted file mode 100644 index 04db911bb8..0000000000 --- a/testing/test_package_docs/fake/HasGenerics/noSuchMethod.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - noSuchMethod method - HasGenerics class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

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

    operator == method

    - -
    - bool - operator == -(dynamic other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/HasGenerics/returnX.html b/testing/test_package_docs/fake/HasGenerics/returnX.html deleted file mode 100644 index 6298f9db7b..0000000000 --- a/testing/test_package_docs/fake/HasGenerics/returnX.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - returnX method - HasGenerics class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    returnX
    - -
    - -
    - - - -
    -

    returnX method

    - -
    - X - returnX -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/HasGenerics/returnZ.html b/testing/test_package_docs/fake/HasGenerics/returnZ.html deleted file mode 100644 index 78075163fb..0000000000 --- a/testing/test_package_docs/fake/HasGenerics/returnZ.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - returnZ method - HasGenerics class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    returnZ
    - -
    - -
    - - - -
    -

    returnZ method

    - -
    - Z - returnZ -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/HasGenerics/runtimeType.html b/testing/test_package_docs/fake/HasGenerics/runtimeType.html deleted file mode 100644 index b4ffefdf8d..0000000000 --- a/testing/test_package_docs/fake/HasGenerics/runtimeType.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - runtimeType property - HasGenerics class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    runtimeType
    - -
    - -
    - - - -
    -

    runtimeType property

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

    toString method

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

    HasPragma class

    - -
    -

    This class uses a pragma annotation.

    -
    - - -
    -

    Constructors

    - -
    -
    - HasPragma() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

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

    Operators

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

    HasPragma constructor

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

    hashCode property

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

    noSuchMethod method

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

    operator == method

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

    runtimeType property

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

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ImplementingThingy-class.html b/testing/test_package_docs/fake/ImplementingThingy-class.html deleted file mode 100644 index 10fde2005b..0000000000 --- a/testing/test_package_docs/fake/ImplementingThingy-class.html +++ /dev/null @@ -1,334 +0,0 @@ - - - - - - - - ImplementingThingy class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    ImplementingThingy
    - -
    - -
    - - - -
    -

    ImplementingThingy class

    - - -
    -
    - -
    Implements
    -
    - -
    - - -
    Implemented by
    -
    - -
    -
    - -
    -

    Constructors

    - -
    -
    - ImplementingThingy() -
    -
    - -
    -
    -
    - -
    -

    Properties

    - -
    -
    - aImplementingThingy - ImplementingThingy -
    -
    - -
    read-only, inherited
    -
    -
    - aImplementingThingyField - ImplementingThingy -
    -
    - -
    read / write, inherited
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

    -
    -
    - aImplementingThingyMethod(ImplementingThingy parameter) - → void - -
    -
    - -
    inherited
    -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

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

    ImplementingThingy constructor

    - -
    - - ImplementingThingy() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ImplementingThingy2-class.html b/testing/test_package_docs/fake/ImplementingThingy2-class.html deleted file mode 100644 index 105821c652..0000000000 --- a/testing/test_package_docs/fake/ImplementingThingy2-class.html +++ /dev/null @@ -1,331 +0,0 @@ - - - - - - - - ImplementingThingy2 class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    ImplementingThingy2
    - -
    - -
    - - - -
    -

    ImplementingThingy2 class

    - - -
    -
    - -
    Implements
    -
    - -
    - - - -
    -
    - -
    -

    Constructors

    - -
    -
    - ImplementingThingy2() -
    -
    - -
    -
    -
    - -
    -

    Properties

    - -
    -
    - aImplementingThingy - ImplementingThingy2 -
    -
    - BaseThingy2's doc for aImplementingThingy. -
    read-only, inherited
    -
    -
    - aImplementingThingyField - ImplementingThingy -
    -
    - -
    read / write, inherited
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

    -
    -
    - aImplementingThingyMethod(ImplementingThingy parameter) - → void - -
    -
    - -
    inherited
    -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

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

    ImplementingThingy2 constructor

    - -
    - - ImplementingThingy2() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ImplementsFutureVoid-class.html b/testing/test_package_docs/fake/ImplementsFutureVoid-class.html deleted file mode 100644 index 19dbb1005b..0000000000 --- a/testing/test_package_docs/fake/ImplementsFutureVoid-class.html +++ /dev/null @@ -1,355 +0,0 @@ - - - - - - - - ImplementsFutureVoid class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    ImplementsFutureVoid
    - -
    - -
    - - - -
    -

    ImplementsFutureVoid class

    - -
    -

    This class implements Future

    -
    - -
    -
    - -
    Implements
    -
    -
      -
    • Future<void>
    • -
    -
    - - - -
    -
    - -
    -

    Constructors

    - -
    -
    - ImplementsFutureVoid() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

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

    Operators

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

    ImplementsFutureVoid constructor

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

    asStream method

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

    catchError method

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

    hashCode property

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

    noSuchMethod method

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

    operator == method

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

    runtimeType property

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

    then<R> method

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

    timeout method

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

    toString method

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

    whenComplete method

    - -
    - Future<void> - whenComplete -(FutureOr action()) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ImplicitProperties/ImplicitProperties.html b/testing/test_package_docs/fake/ImplicitProperties/ImplicitProperties.html deleted file mode 100644 index 8b31d41169..0000000000 --- a/testing/test_package_docs/fake/ImplicitProperties/ImplicitProperties.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - ImplicitProperties constructor - ImplicitProperties class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    ImplicitProperties
    - -
    - -
    - - - -
    -

    ImplicitProperties constructor

    - -
    - - ImplicitProperties() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ImplicitProperties/explicitGetterImplicitSetter.html b/testing/test_package_docs/fake/ImplicitProperties/explicitGetterImplicitSetter.html deleted file mode 100644 index 5f2a92b946..0000000000 --- a/testing/test_package_docs/fake/ImplicitProperties/explicitGetterImplicitSetter.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - explicitGetterImplicitSetter property - ImplicitProperties class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    explicitGetterImplicitSetter
    - -
    - -
    - - - -
    -

    explicitGetterImplicitSetter property

    - -
    - List<int> - explicitGetterImplicitSetter -
    read / write
    -
    -
    -

    Docs for explicitGetterImplicitSetter from ImplicitProperties.

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ImplicitProperties/explicitGetterSetterForInheriting.html b/testing/test_package_docs/fake/ImplicitProperties/explicitGetterSetterForInheriting.html deleted file mode 100644 index 8deab9587f..0000000000 --- a/testing/test_package_docs/fake/ImplicitProperties/explicitGetterSetterForInheriting.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - explicitGetterSetterForInheriting property - ImplicitProperties class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    explicitGetterSetterForInheriting
    - -
    - -
    - - - -
    -

    explicitGetterSetterForInheriting property

    - - -
    - -
    - int - explicitGetterSetterForInheriting - -
    - -
    -

    Explicit getter for inheriting.

    -
    - -
    - -
    - -
    - void - explicitGetterSetterForInheriting= -(int foo) - -
    - -
    -

    Explicit setter for inheriting.

    -
    - -
    -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ImplicitProperties/explicitPartiallyDocumentedField.html b/testing/test_package_docs/fake/ImplicitProperties/explicitPartiallyDocumentedField.html deleted file mode 100644 index 5e3fe38248..0000000000 --- a/testing/test_package_docs/fake/ImplicitProperties/explicitPartiallyDocumentedField.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - explicitPartiallyDocumentedField property - ImplicitProperties class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    explicitPartiallyDocumentedField
    - -
    - -
    - - - -
    -

    explicitPartiallyDocumentedField property

    - - -
    - -
    - double - explicitPartiallyDocumentedField - -
    - -
    -

    but documented here.

    -
    - -
    - -
    - -
    - void - explicitPartiallyDocumentedField= -(double foo) - -
    - -
    -

    @nodoc here, you should never see this

    -
    - -
    -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ImplicitProperties/forInheriting.html b/testing/test_package_docs/fake/ImplicitProperties/forInheriting.html deleted file mode 100644 index 819dff323f..0000000000 --- a/testing/test_package_docs/fake/ImplicitProperties/forInheriting.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - forInheriting property - ImplicitProperties class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    forInheriting
    - -
    - -
    - - - -
    -

    forInheriting property

    - -
    - int - forInheriting -
    read / write
    -
    -
    -

    A simple property to inherit.

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ImplicitProperties/hashCode.html b/testing/test_package_docs/fake/ImplicitProperties/hashCode.html deleted file mode 100644 index b7cc189f00..0000000000 --- a/testing/test_package_docs/fake/ImplicitProperties/hashCode.html +++ /dev/null @@ -1,106 +0,0 @@ - - - - - - - - hashCode property - ImplicitProperties class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ImplicitProperties/implicitGetterExplicitSetter.html b/testing/test_package_docs/fake/ImplicitProperties/implicitGetterExplicitSetter.html deleted file mode 100644 index f1cd44bcd8..0000000000 --- a/testing/test_package_docs/fake/ImplicitProperties/implicitGetterExplicitSetter.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - implicitGetterExplicitSetter property - ImplicitProperties class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    implicitGetterExplicitSetter
    - -
    - -
    - - - -
    -

    implicitGetterExplicitSetter property

    - -
    - String - implicitGetterExplicitSetter -
    read / write
    -
    -
    -

    Docs for implicitGetterExplicitSetter from ImplicitProperties.

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ImplicitProperties/noSuchMethod.html b/testing/test_package_docs/fake/ImplicitProperties/noSuchMethod.html deleted file mode 100644 index 3a58015c38..0000000000 --- a/testing/test_package_docs/fake/ImplicitProperties/noSuchMethod.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - noSuchMethod method - ImplicitProperties class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

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

    operator == method

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

    runtimeType property

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

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/InheritingClassOne-class.html b/testing/test_package_docs/fake/InheritingClassOne-class.html deleted file mode 100644 index 2583699db9..0000000000 --- a/testing/test_package_docs/fake/InheritingClassOne-class.html +++ /dev/null @@ -1,298 +0,0 @@ - - - - - - - - InheritingClassOne class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    InheritingClassOne
    - -
    - -
    - - - -
    -

    InheritingClassOne class

    - - - -
    -

    Constructors

    - -
    -
    - InheritingClassOne() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

    -
    -
    - aMethod() - → bool - -
    -
    - -
    inherited
    -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

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

    InheritingClassOne constructor

    - -
    - - InheritingClassOne() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/InheritingClassOne/aMethod.html b/testing/test_package_docs/fake/InheritingClassOne/aMethod.html deleted file mode 100644 index 8c86337d79..0000000000 --- a/testing/test_package_docs/fake/InheritingClassOne/aMethod.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - aMethod method - InheritingClassOne class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aMethod
    - -
    - -
    - - - -
    -

    aMethod method

    - -
    - bool - aMethod -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/InheritingClassOne/hashCode.html b/testing/test_package_docs/fake/InheritingClassOne/hashCode.html deleted file mode 100644 index 095f7b83c5..0000000000 --- a/testing/test_package_docs/fake/InheritingClassOne/hashCode.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - hashCode property - InheritingClassOne class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

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

    noSuchMethod method

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

    operator == method

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

    runtimeType property

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

    toString method

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

    InheritingClassTwo class

    - - - -
    -

    Constructors

    - -
    -
    - InheritingClassTwo() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

    -
    -
    - aMethod() - → bool - -
    -
    - -
    inherited
    -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

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

    InheritingClassTwo constructor

    - -
    - - InheritingClassTwo() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/InheritingClassTwo/aMethod.html b/testing/test_package_docs/fake/InheritingClassTwo/aMethod.html deleted file mode 100644 index a0ac9f9749..0000000000 --- a/testing/test_package_docs/fake/InheritingClassTwo/aMethod.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - aMethod method - InheritingClassTwo class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aMethod
    - -
    - -
    - - - -
    -

    aMethod method

    - -
    - bool - aMethod -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/InheritingClassTwo/hashCode.html b/testing/test_package_docs/fake/InheritingClassTwo/hashCode.html deleted file mode 100644 index fac2f3beb4..0000000000 --- a/testing/test_package_docs/fake/InheritingClassTwo/hashCode.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - hashCode property - InheritingClassTwo class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

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

    noSuchMethod method

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

    operator == method

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

    runtimeType property

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

    toString method

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

    Interface class

    - -
    -

    An interface that can be implemented.

    -
    - -
    -
    - - - -
    Implemented by
    -
    - -
    -
    - -
    -

    Constructors

    - -
    -
    - Interface() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

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

    Operators

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

    Interface constructor

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

    hashCode property

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

    noSuchMethod method

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

    operator == method

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

    runtimeType property

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

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/LongFirstLine-class.html b/testing/test_package_docs/fake/LongFirstLine-class.html deleted file mode 100644 index 41ae9cf015..0000000000 --- a/testing/test_package_docs/fake/LongFirstLine-class.html +++ /dev/null @@ -1,543 +0,0 @@ - - - - - - - - LongFirstLine class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    LongFirstLine
    - -
    - -
    - - - -
    -

    LongFirstLine class

    - -
    -

    This is a very long line spread -across... wait for it... two physical lines.

    -

    The rest of this is not in the first paragraph.

    -
    - -
    -
    -
    Inheritance
    -
    - -
    Implements
    -
    - -
    - -
    Mixes-in
    -
    - - -
    Annotations
    -
    -
    -
    - -
    -

    Constructors

    - -
    -
    - LongFirstLine() -
    -
    - The default constructor. -
    -
    - LongFirstLine.fromHasGenerics(HasGenerics hg) -
    -
    - -
    -
    - LongFirstLine.fromMap(Map data) -
    -
    - Named constructors are awesome. [...] -
    -
    -
    - -
    -

    Properties

    - -
    -
    - aStringProperty - ↔ String -
    -
    - An instance string property. Readable and writable. -
    read / write
    -
    -
    - dynamicGetter - → dynamic -
    -
    - Dynamic getter. Readable only. -
    read-only
    -
    -
    - onlySetter - double -
    -
    - Only a setter, with a single param, of type double. -
    write-only
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - powers - ↔ List<String> -
    -
    - In the super class. -
    read / write, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

    -
    -
    - noParams() - → void - -
    -
    - No params. - -
    -
    - optionalParams(dynamic first, { dynamic second, int third }) - → bool - -
    -
    - One dynamic param, two named optionals. - -
    -
    - returnString() - → String - -
    -
    - Returns a single string. - -
    -
    - twoParams(String one, dynamic two) - → int - -
    -
    - Two params, the first has a type annotation, the second does not. - -
    -
    - fly(int height, Cool superCool, { String msg }) - → void - -
    -
    - In the super class. [...] -
    inherited
    -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

    -
    -
    - operator *(LongFirstLine other) - LongFirstLine - -
    -
    - Multiplies a thingies to this thingie and then returns a new thingie. - -
    -
    - operator +(LongFirstLine other) - LongFirstLine - -
    -
    - Adds another one of these thingies. - -
    -
    - operator -(dynamic other) - SuperAwesomeClass - -
    -
    - -
    inherited
    -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Static Properties

    - -
    -
    - meaningOfLife - ↔ int -
    -
    - A static int property. -
    read / write
    -
    -
    - staticGetter - → int -
    -
    - -
    read-only
    -
    -
    - staticOnlySetter - bool -
    -
    - -
    write-only
    -
    -
    -
    - -
    -

    Static Methods

    -
    -
    - staticMethodNoParams() - → int - -
    -
    - Just a static method with no parameters. [...] - -
    -
    - staticMethodReturnsVoid(dynamic dynamicThing) - → void - -
    -
    - A static method that takes a single dynamic thing, and returns void. - -
    -
    -
    - -
    -

    Constants

    - -
    -
    - ANSWER - → const int -
    -
    - - -
    - 42 -
    -
    -
    - THING - → const String -
    -
    - - -
    - 'yup' -
    -
    -
    -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/LongFirstLine/ANSWER-constant.html b/testing/test_package_docs/fake/LongFirstLine/ANSWER-constant.html deleted file mode 100644 index 030fb74d62..0000000000 --- a/testing/test_package_docs/fake/LongFirstLine/ANSWER-constant.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - ANSWER constant - LongFirstLine class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    ANSWER
    - -
    - -
    - - - -
    -

    ANSWER constant

    - -
    - int - const ANSWER - = - 42 -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/LongFirstLine/LongFirstLine.fromHasGenerics.html b/testing/test_package_docs/fake/LongFirstLine/LongFirstLine.fromHasGenerics.html deleted file mode 100644 index 2224814299..0000000000 --- a/testing/test_package_docs/fake/LongFirstLine/LongFirstLine.fromHasGenerics.html +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - - - LongFirstLine.fromHasGenerics constructor - LongFirstLine class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    LongFirstLine.fromHasGenerics
    - -
    - -
    - - - -
    -

    LongFirstLine.fromHasGenerics constructor

    - -
    - - LongFirstLine.fromHasGenerics(HasGenerics hg) -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/LongFirstLine/LongFirstLine.fromMap.html b/testing/test_package_docs/fake/LongFirstLine/LongFirstLine.fromMap.html deleted file mode 100644 index 841ad5923c..0000000000 --- a/testing/test_package_docs/fake/LongFirstLine/LongFirstLine.fromMap.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - LongFirstLine.fromMap constructor - LongFirstLine class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    LongFirstLine.fromMap
    - -
    - -
    - - - -
    -

    LongFirstLine.fromMap constructor

    - -
    - - LongFirstLine.fromMap(Map data) -
    - -
    -

    Named constructors are awesome.

    -

    The map is a key/value pairs of data that helps create an instance.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/LongFirstLine/LongFirstLine.html b/testing/test_package_docs/fake/LongFirstLine/LongFirstLine.html deleted file mode 100644 index dd6f1f55fa..0000000000 --- a/testing/test_package_docs/fake/LongFirstLine/LongFirstLine.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - - LongFirstLine constructor - LongFirstLine class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    LongFirstLine
    - -
    - -
    - - - -
    -

    LongFirstLine constructor

    - -
    -
    -
      -
    1. @deprecated
    2. -
    -
    - - LongFirstLine() -
    - -
    -

    The default constructor.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/LongFirstLine/THING-constant.html b/testing/test_package_docs/fake/LongFirstLine/THING-constant.html deleted file mode 100644 index 2308b8203b..0000000000 --- a/testing/test_package_docs/fake/LongFirstLine/THING-constant.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - THING constant - LongFirstLine class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    THING
    - -
    - -
    - - - -
    -

    THING constant

    - -
    - String - const THING - = - 'yup' -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/LongFirstLine/aStringProperty.html b/testing/test_package_docs/fake/LongFirstLine/aStringProperty.html deleted file mode 100644 index 9573de59e4..0000000000 --- a/testing/test_package_docs/fake/LongFirstLine/aStringProperty.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - aStringProperty property - LongFirstLine class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aStringProperty
    - -
    - -
    - - - -
    -

    aStringProperty property

    - -
    - String - aStringProperty -
    read / write
    -
    -
    -

    An instance string property. Readable and writable.

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/LongFirstLine/dynamicGetter.html b/testing/test_package_docs/fake/LongFirstLine/dynamicGetter.html deleted file mode 100644 index bca8d97d93..0000000000 --- a/testing/test_package_docs/fake/LongFirstLine/dynamicGetter.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - - dynamicGetter property - LongFirstLine class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    dynamicGetter
    - -
    - -
    - - - -
    -

    dynamicGetter property

    - - -
    - -
    - dynamic - dynamicGetter - -
    - -
    -

    Dynamic getter. Readable only.

    -
    - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/LongFirstLine/meaningOfLife.html b/testing/test_package_docs/fake/LongFirstLine/meaningOfLife.html deleted file mode 100644 index 08d8abb2f1..0000000000 --- a/testing/test_package_docs/fake/LongFirstLine/meaningOfLife.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - meaningOfLife property - LongFirstLine class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    meaningOfLife
    - -
    - -
    - - - -
    -

    meaningOfLife property

    - -
    - int - meaningOfLife -
    read / write
    -
    -
    -

    A static int property.

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/LongFirstLine/noParams.html b/testing/test_package_docs/fake/LongFirstLine/noParams.html deleted file mode 100644 index 50ca41afea..0000000000 --- a/testing/test_package_docs/fake/LongFirstLine/noParams.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - - noParams method - LongFirstLine class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noParams
    - -
    - -
    - - - -
    -

    noParams method

    - -
    -
    -
      -
    1. @deprecated
    2. -
    -
    - void - noParams -() -
    -
    -

    No params.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/LongFirstLine/onlySetter.html b/testing/test_package_docs/fake/LongFirstLine/onlySetter.html deleted file mode 100644 index bc13216a4b..0000000000 --- a/testing/test_package_docs/fake/LongFirstLine/onlySetter.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - - onlySetter property - LongFirstLine class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    onlySetter
    - -
    - -
    - - - -
    -

    onlySetter property

    - - - -
    - -
    - void - onlySetter= -(double d) - -
    - -
    -

    Only a setter, with a single param, of type double.

    -
    - -
    -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/LongFirstLine/operator_multiply.html b/testing/test_package_docs/fake/LongFirstLine/operator_multiply.html deleted file mode 100644 index ca03067fd4..0000000000 --- a/testing/test_package_docs/fake/LongFirstLine/operator_multiply.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - operator * method - LongFirstLine class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator *
    - -
    - -
    - - - -
    -

    operator * method

    - -
    - LongFirstLine - operator * -(LongFirstLine other) -
    -
    -

    Multiplies a thingies to this thingie and then returns a new thingie.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/LongFirstLine/operator_plus.html b/testing/test_package_docs/fake/LongFirstLine/operator_plus.html deleted file mode 100644 index fa80ef0f43..0000000000 --- a/testing/test_package_docs/fake/LongFirstLine/operator_plus.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - operator + method - LongFirstLine class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator +
    - -
    - -
    - - - -
    -

    operator + method

    - -
    - LongFirstLine - operator + -(LongFirstLine other) -
    -
    -

    Adds another one of these thingies.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/LongFirstLine/optionalParams.html b/testing/test_package_docs/fake/LongFirstLine/optionalParams.html deleted file mode 100644 index f3a5ed4980..0000000000 --- a/testing/test_package_docs/fake/LongFirstLine/optionalParams.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - optionalParams method - LongFirstLine class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    optionalParams
    - -
    - -
    - - - -
    -

    optionalParams method

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

    One dynamic param, two named optionals.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/LongFirstLine/returnString.html b/testing/test_package_docs/fake/LongFirstLine/returnString.html deleted file mode 100644 index 9726065ab3..0000000000 --- a/testing/test_package_docs/fake/LongFirstLine/returnString.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - returnString method - LongFirstLine class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    returnString
    - -
    - -
    - - - -
    -

    returnString method

    - -
    - String - returnString -() -
    -
    -

    Returns a single string.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/LongFirstLine/staticGetter.html b/testing/test_package_docs/fake/LongFirstLine/staticGetter.html deleted file mode 100644 index 53464c8d51..0000000000 --- a/testing/test_package_docs/fake/LongFirstLine/staticGetter.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - staticGetter property - LongFirstLine class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    staticGetter
    - -
    - -
    - - - -
    -

    staticGetter property

    - - -
    - -
    - int - staticGetter - -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/LongFirstLine/staticMethodNoParams.html b/testing/test_package_docs/fake/LongFirstLine/staticMethodNoParams.html deleted file mode 100644 index eecb66b603..0000000000 --- a/testing/test_package_docs/fake/LongFirstLine/staticMethodNoParams.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - staticMethodNoParams method - LongFirstLine class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    staticMethodNoParams
    - -
    - -
    - - - -
    -

    staticMethodNoParams method

    - -
    - int - staticMethodNoParams -() -
    -
    -

    Just a static method with no parameters.

    -

    Returns an int.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/LongFirstLine/staticMethodReturnsVoid.html b/testing/test_package_docs/fake/LongFirstLine/staticMethodReturnsVoid.html deleted file mode 100644 index e5043a82fd..0000000000 --- a/testing/test_package_docs/fake/LongFirstLine/staticMethodReturnsVoid.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - staticMethodReturnsVoid method - LongFirstLine class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    staticMethodReturnsVoid
    - -
    - -
    - - - -
    -

    staticMethodReturnsVoid method

    - -
    - void - staticMethodReturnsVoid -(dynamic dynamicThing) -
    -
    -

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

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/LongFirstLine/staticOnlySetter.html b/testing/test_package_docs/fake/LongFirstLine/staticOnlySetter.html deleted file mode 100644 index 006ff90fc8..0000000000 --- a/testing/test_package_docs/fake/LongFirstLine/staticOnlySetter.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - - staticOnlySetter property - LongFirstLine class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    staticOnlySetter
    - -
    - -
    - - - -
    -

    staticOnlySetter property

    - - - -
    - -
    - void - staticOnlySetter= -(bool thing) - -
    - - -
    -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/LongFirstLine/twoParams.html b/testing/test_package_docs/fake/LongFirstLine/twoParams.html deleted file mode 100644 index c7359321df..0000000000 --- a/testing/test_package_docs/fake/LongFirstLine/twoParams.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - twoParams method - LongFirstLine class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    twoParams
    - -
    - -
    - - - -
    -

    twoParams method

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

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

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/LotsAndLotsOfParameters.html b/testing/test_package_docs/fake/LotsAndLotsOfParameters.html deleted file mode 100644 index dddb5b0ce1..0000000000 --- a/testing/test_package_docs/fake/LotsAndLotsOfParameters.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - LotsAndLotsOfParameters typedef - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    LotsAndLotsOfParameters
    - -
    - -
    - - - -
    -

    LotsAndLotsOfParameters typedef

    - -
    - int - LotsAndLotsOfParameters -(dynamic so, dynamic many, dynamic parameters, dynamic it, dynamic should, dynamic wrap, dynamic when, dynamic converted, dynamic to, dynamic html, dynamic documentation) -
    - -
    -

    Lots and lots of parameters.

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/MIEEBase-class.html b/testing/test_package_docs/fake/MIEEBase-class.html deleted file mode 100644 index c4f5790388..0000000000 --- a/testing/test_package_docs/fake/MIEEBase-class.html +++ /dev/null @@ -1,316 +0,0 @@ - - - - - - - - MIEEBase class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    MIEEBase
    - -
    - -
    - - - -
    -

    MIEEBase<K, V> class

    - - -
    -
    -
    Inheritance
    -
    - - - -
    Implemented by
    -
    - -
    -
    - -
    -

    Constructors

    - -
    -
    - MIEEBase() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

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

    Operators

    -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    - operator []=(K key, V value) - → void - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/MIEEBase/MIEEBase.html b/testing/test_package_docs/fake/MIEEBase/MIEEBase.html deleted file mode 100644 index 6b7c4db1ed..0000000000 --- a/testing/test_package_docs/fake/MIEEBase/MIEEBase.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - MIEEBase constructor - MIEEBase class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    MIEEBase
    - -
    - -
    - - - -
    -

    MIEEBase<K, V> constructor

    - -
    - - MIEEBase<K, V>() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/MIEEMixin-class.html b/testing/test_package_docs/fake/MIEEMixin-class.html deleted file mode 100644 index 5ec4e9c360..0000000000 --- a/testing/test_package_docs/fake/MIEEMixin-class.html +++ /dev/null @@ -1,316 +0,0 @@ - - - - - - - - MIEEMixin class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    MIEEMixin
    - -
    - -
    - - - -
    -

    MIEEMixin<K, V> class

    - - -
    -
    - -
    Implements
    -
    - -
    - - -
    Implemented by
    -
    - -
    -
    - -
    -

    Constructors

    - -
    -
    - MIEEMixin() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

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

    Operators

    -
    -
    - operator []=(K key, V value) - → void - -
    -
    - - -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/MIEEMixin/MIEEMixin.html b/testing/test_package_docs/fake/MIEEMixin/MIEEMixin.html deleted file mode 100644 index 694a580744..0000000000 --- a/testing/test_package_docs/fake/MIEEMixin/MIEEMixin.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - MIEEMixin constructor - MIEEMixin class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    MIEEMixin
    - -
    - -
    - - - -
    -

    MIEEMixin<K, V> constructor

    - -
    - - MIEEMixin<K, V>() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/MIEEMixin/operator_put.html b/testing/test_package_docs/fake/MIEEMixin/operator_put.html deleted file mode 100644 index 0760d0cbbe..0000000000 --- a/testing/test_package_docs/fake/MIEEMixin/operator_put.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - operator []= method - MIEEMixin class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator []=
    - -
    - -
    - - - -
    -

    operator []= method

    - -
    - void - operator []= -(K key, V value) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/MIEEMixinWithOverride-class.html b/testing/test_package_docs/fake/MIEEMixinWithOverride-class.html deleted file mode 100644 index 7362677556..0000000000 --- a/testing/test_package_docs/fake/MIEEMixinWithOverride-class.html +++ /dev/null @@ -1,318 +0,0 @@ - - - - - - - - MIEEMixinWithOverride class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    MIEEMixinWithOverride
    - -
    - -
    - - - -
    -

    MIEEMixinWithOverride<K, V> class

    - -
    -

    Test an edge case for cases where inherited ExecutableElements can come -both from private classes and public interfaces. The test makes sure the -class still takes precedence (#1561).

    -
    - -
    -
    -
    Inheritance
    -
    - - - - -
    -
    - -
    -

    Constructors

    - -
    -
    - MIEEMixinWithOverride() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

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

    Operators

    -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    - operator []=(K key, V value) - → void - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/MIEEMixinWithOverride/MIEEMixinWithOverride.html b/testing/test_package_docs/fake/MIEEMixinWithOverride/MIEEMixinWithOverride.html deleted file mode 100644 index 94b262c456..0000000000 --- a/testing/test_package_docs/fake/MIEEMixinWithOverride/MIEEMixinWithOverride.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - MIEEMixinWithOverride constructor - MIEEMixinWithOverride class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    MIEEMixinWithOverride
    - -
    - -
    - - - -
    -

    MIEEMixinWithOverride<K, V> constructor

    - -
    - - MIEEMixinWithOverride<K, V>() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/MIEEMixinWithOverride/operator_put.html b/testing/test_package_docs/fake/MIEEMixinWithOverride/operator_put.html deleted file mode 100644 index f2895c6bc3..0000000000 --- a/testing/test_package_docs/fake/MIEEMixinWithOverride/operator_put.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - operator []= method - MIEEMixinWithOverride class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator []=
    - -
    - -
    - - - -
    -

    operator []= method

    - -
    - void - operator []= -(K key, V value) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/MIEEThing-class.html b/testing/test_package_docs/fake/MIEEThing-class.html deleted file mode 100644 index 95ad43259e..0000000000 --- a/testing/test_package_docs/fake/MIEEThing-class.html +++ /dev/null @@ -1,310 +0,0 @@ - - - - - - - - MIEEThing class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    MIEEThing
    - -
    - -
    - - - -
    -

    MIEEThing<K, V> class

    - - -
    -
    - - - -
    Implemented by
    -
    - -
    -
    - -
    -

    Constructors

    - -
    -
    - MIEEThing() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

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

    Operators

    -
    -
    - operator []=(K key, V value) - → void - -
    -
    - - -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/MIEEThing/MIEEThing.html b/testing/test_package_docs/fake/MIEEThing/MIEEThing.html deleted file mode 100644 index 6a196b6f07..0000000000 --- a/testing/test_package_docs/fake/MIEEThing/MIEEThing.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - MIEEThing constructor - MIEEThing class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    MIEEThing
    - -
    - -
    - - - -
    -

    MIEEThing<K, V> constructor

    - -
    - - MIEEThing<K, V>() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/MIEEThing/hashCode.html b/testing/test_package_docs/fake/MIEEThing/hashCode.html deleted file mode 100644 index b2522fa380..0000000000 --- a/testing/test_package_docs/fake/MIEEThing/hashCode.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - hashCode property - MIEEThing class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

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

    noSuchMethod method

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

    operator == method

    - -
    - bool - operator == -(dynamic other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/MIEEThing/operator_put.html b/testing/test_package_docs/fake/MIEEThing/operator_put.html deleted file mode 100644 index 5be4b57acd..0000000000 --- a/testing/test_package_docs/fake/MIEEThing/operator_put.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - operator []= method - MIEEThing class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator []=
    - -
    - -
    - - - -
    -

    operator []= method

    - -
    - void - operator []= -(K key, V value) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/MIEEThing/runtimeType.html b/testing/test_package_docs/fake/MIEEThing/runtimeType.html deleted file mode 100644 index 464e9af4f2..0000000000 --- a/testing/test_package_docs/fake/MIEEThing/runtimeType.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - runtimeType property - MIEEThing class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    runtimeType
    - -
    - -
    - - - -
    -

    runtimeType property

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

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/MixMeIn-class.html b/testing/test_package_docs/fake/MixMeIn-class.html deleted file mode 100644 index 04439eacd3..0000000000 --- a/testing/test_package_docs/fake/MixMeIn-class.html +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - MixMeIn class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    MixMeIn
    - -
    - -
    - - - -
    -

    MixMeIn class

    - -
    -

    Perfect for mix-ins.

    -
    - -
    -
    - - - -
    Implemented by
    -
    - -
    -
    - -
    -

    Constructors

    - -
    -
    - MixMeIn() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

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

    Operators

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

    MixMeIn constructor

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

    hashCode property

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

    noSuchMethod method

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

    operator == method

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

    runtimeType property

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

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html b/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html deleted file mode 100644 index 32d6460408..0000000000 --- a/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - - - NAME_SINGLEUNDERSCORE constant - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    NAME_SINGLEUNDERSCORE
    - -
    - -
    - - - -
    -

    NAME_SINGLEUNDERSCORE top-level constant

    - -
    - const NAME_SINGLEUNDERSCORE - = - 'yay bug hunting' - -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/NAME_WITH_TWO_UNDERSCORES-constant.html b/testing/test_package_docs/fake/NAME_WITH_TWO_UNDERSCORES-constant.html deleted file mode 100644 index 4bdb4136fd..0000000000 --- a/testing/test_package_docs/fake/NAME_WITH_TWO_UNDERSCORES-constant.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - - - NAME_WITH_TWO_UNDERSCORES constant - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    NAME_WITH_TWO_UNDERSCORES
    - -
    - -
    - - - -
    -

    NAME_WITH_TWO_UNDERSCORES top-level constant

    - -
    - const NAME_WITH_TWO_UNDERSCORES - = - 'episode seven better be good; episode seven better be good; episode seven better be good; episode seven better be good' - -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/NewGenericTypedef.html b/testing/test_package_docs/fake/NewGenericTypedef.html deleted file mode 100644 index 9d6a219514..0000000000 --- a/testing/test_package_docs/fake/NewGenericTypedef.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - NewGenericTypedef typedef - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    NewGenericTypedef
    - -
    - -
    - - - -
    -

    NewGenericTypedef<T> typedef

    - -
    - List<S> - NewGenericTypedef -<S>(T, int, bool) -
    - -
    -

    A typedef with the new style generic function syntax.

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/NotAMixin/hashCode.html b/testing/test_package_docs/fake/NotAMixin/hashCode.html deleted file mode 100644 index 044141a41b..0000000000 --- a/testing/test_package_docs/fake/NotAMixin/hashCode.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - hashCode property - NotAMixin class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

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

    noSuchMethod method

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

    operator == method

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

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/NotAMixin/superString.html b/testing/test_package_docs/fake/NotAMixin/superString.html deleted file mode 100644 index 455885175f..0000000000 --- a/testing/test_package_docs/fake/NotAMixin/superString.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - superString property - NotAMixin class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    superString
    - -
    - -
    - - - -
    -

    superString property

    - - -
    - -
    - String - superString - -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/NotAMixin/toString.html b/testing/test_package_docs/fake/NotAMixin/toString.html deleted file mode 100644 index e54253a560..0000000000 --- a/testing/test_package_docs/fake/NotAMixin/toString.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - toString method - NotAMixin class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

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

    Oops class

    - -
    -

    My bad!

    -
    - -
    -
    - -
    Implements
    -
    -
      -
    • Exception
    • -
    -
    - - - -
    -
    - -
    -

    Constructors

    - -
    -
    - Oops(String message) -
    -
    - -
    -
    -
    - -
    -

    Properties

    - -
    -
    - message - → String -
    -
    - -
    final
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

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

    Operators

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

    Oops constructor

    - -
    - - Oops(String message) -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/Oops/hashCode.html b/testing/test_package_docs/fake/Oops/hashCode.html deleted file mode 100644 index b32b738cee..0000000000 --- a/testing/test_package_docs/fake/Oops/hashCode.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - hashCode property - Oops class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/Oops/message.html b/testing/test_package_docs/fake/Oops/message.html deleted file mode 100644 index ea78f29072..0000000000 --- a/testing/test_package_docs/fake/Oops/message.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - message property - Oops class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    message
    - -
    - -
    - - - -
    -

    message property

    - -
    - String - message -
    final
    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/Oops/noSuchMethod.html b/testing/test_package_docs/fake/Oops/noSuchMethod.html deleted file mode 100644 index 3e9b9482ae..0000000000 --- a/testing/test_package_docs/fake/Oops/noSuchMethod.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - noSuchMethod method - Oops class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

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

    operator == method

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

    runtimeType property

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

    toString method

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

    OperatorReferenceClass class

    - -
    -

    Test operator references: OperatorReferenceClass.==.

    -
    - - -
    -

    Constructors

    - -
    -
    - OperatorReferenceClass() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

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

    Operators

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

    OperatorReferenceClass constructor

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

    hashCode property

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

    noSuchMethod method

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

    operator == method

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

    runtimeType property

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

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/OtherGenericsThing-class.html b/testing/test_package_docs/fake/OtherGenericsThing-class.html deleted file mode 100644 index 17de2ff97b..0000000000 --- a/testing/test_package_docs/fake/OtherGenericsThing-class.html +++ /dev/null @@ -1,298 +0,0 @@ - - - - - - - - OtherGenericsThing class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    OtherGenericsThing
    - -
    - -
    - - - -
    -

    OtherGenericsThing<A> class

    - - - -
    -

    Constructors

    - -
    -
    - OtherGenericsThing() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

    -
    -
    - convert() - HasGenerics<A, Cool, String> - -
    -
    - - -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

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

    OtherGenericsThing<A> constructor

    - -
    - - OtherGenericsThing<A>() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/OtherGenericsThing/convert.html b/testing/test_package_docs/fake/OtherGenericsThing/convert.html deleted file mode 100644 index 6cc7412278..0000000000 --- a/testing/test_package_docs/fake/OtherGenericsThing/convert.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - convert method - OtherGenericsThing class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    convert
    - -
    - -
    - - - -
    -

    convert method

    - -
    - HasGenerics<A, Cool, String> - convert -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/OtherGenericsThing/hashCode.html b/testing/test_package_docs/fake/OtherGenericsThing/hashCode.html deleted file mode 100644 index fe8de73782..0000000000 --- a/testing/test_package_docs/fake/OtherGenericsThing/hashCode.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - hashCode property - OtherGenericsThing class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

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

    noSuchMethod method

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

    operator == method

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

    runtimeType property

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

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/PI-constant.html b/testing/test_package_docs/fake/PI-constant.html deleted file mode 100644 index a12cff97f3..0000000000 --- a/testing/test_package_docs/fake/PI-constant.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - - - PI constant - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    PI
    - -
    - -
    - - - -
    -

    PI top-level constant

    - -
    - const PI - = - 3.14159 - -
    - -
    -

    Constant property.

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ReferringClass-class.html b/testing/test_package_docs/fake/ReferringClass-class.html deleted file mode 100644 index 3093f02230..0000000000 --- a/testing/test_package_docs/fake/ReferringClass-class.html +++ /dev/null @@ -1,300 +0,0 @@ - - - - - - - - ReferringClass class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    ReferringClass
    - -
    - -
    - - - -
    -

    ReferringClass class

    - - - -
    -

    Constructors

    - -
    -
    - ReferringClass() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

    -
    -
    - notAMethodFromPrivateClass() - → bool - -
    -
    - Here I am referring by full names, to fake.InheritingClassOne.aMethod, -and to fake.InheritingClassTwo.aMethod. With luck, both of these -two resolve correctly. - -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

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

    ReferringClass constructor

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

    hashCode property

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

    noSuchMethod method

    - -
    - dynamic - noSuchMethod -(Invocation invocation) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ReferringClass/notAMethodFromPrivateClass.html b/testing/test_package_docs/fake/ReferringClass/notAMethodFromPrivateClass.html deleted file mode 100644 index 5b1fffb4ee..0000000000 --- a/testing/test_package_docs/fake/ReferringClass/notAMethodFromPrivateClass.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - notAMethodFromPrivateClass method - ReferringClass class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    notAMethodFromPrivateClass
    - -
    - -
    - - - -
    -

    notAMethodFromPrivateClass method

    - -
    - bool - notAMethodFromPrivateClass -() -
    -
    -

    Here I am referring by full names, to fake.InheritingClassOne.aMethod, -and to fake.InheritingClassTwo.aMethod. With luck, both of these -two resolve correctly.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ReferringClass/operator_equals.html b/testing/test_package_docs/fake/ReferringClass/operator_equals.html deleted file mode 100644 index 5d058b357d..0000000000 --- a/testing/test_package_docs/fake/ReferringClass/operator_equals.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - operator == method - ReferringClass class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator ==
    - -
    - -
    - - - -
    -

    operator == method

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

    runtimeType property

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

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList-class.html b/testing/test_package_docs/fake/SpecialList-class.html deleted file mode 100644 index 931b50a677..0000000000 --- a/testing/test_package_docs/fake/SpecialList-class.html +++ /dev/null @@ -1,881 +0,0 @@ - - - - - - - - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    SpecialList
    - -
    - -
    - - - -
    -

    SpecialList<E> class

    - -
    -

    Extends ListBase

    -
    - -
    -
    -
    Inheritance
    -
      -
    • Object
    • -
    • ListBase<E>
    • -
    • SpecialList
    • -
    - - - -
    Implemented by
    -
    - -
    -
    - -
    -

    Constructors

    - -
    -
    - SpecialList() -
    -
    - -
    -
    -
    - -
    -

    Properties

    - -
    -
    - length - ↔ int -
    -
    - -
    read / write
    -
    -
    - first - ↔ E -
    -
    - -
    read / write, inherited
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - isEmpty - → bool -
    -
    - -
    read-only, inherited
    -
    -
    - isNotEmpty - → bool -
    -
    - -
    read-only, inherited
    -
    -
    - iterator - → Iterator<E> -
    -
    - -
    read-only, inherited
    -
    -
    - last - ↔ E -
    -
    - -
    read / write, inherited
    -
    -
    - reversed - → Iterable<E> -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    - single - → E -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

    -
    -
    - add(E element) - → void - -
    -
    - -
    inherited
    -
    -
    - addAll(Iterable<E> iterable) - → void - -
    -
    - -
    inherited
    -
    -
    - any(bool test(E element)) - → bool - -
    -
    - -
    inherited
    -
    -
    - asMap() - → Map<int, E> - -
    -
    - -
    inherited
    -
    -
    - cast<R>() - → List<R> - -
    -
    - -
    inherited
    -
    -
    - clear() - → void - -
    -
    - -
    inherited
    -
    -
    - contains(Object element) - → bool - -
    -
    - -
    inherited
    -
    -
    - elementAt(int index) - → E - -
    -
    - -
    inherited
    -
    -
    - every(bool test(E element)) - → bool - -
    -
    - -
    inherited
    -
    -
    - expand<T>(Iterable<T> f(E element)) - → Iterable<T> - -
    -
    - -
    inherited
    -
    -
    - fillRange(int start, int end, [ E fill ]) - → void - -
    -
    - -
    inherited
    -
    -
    - firstWhere(bool test(E element), { E orElse() }) - → E - -
    -
    - -
    inherited
    -
    -
    - fold<T>(T initialValue, T combine(T previousValue, E element)) - → T - -
    -
    - -
    inherited
    -
    -
    - followedBy(Iterable<E> other) - → Iterable<E> - -
    -
    - -
    inherited
    -
    -
    - forEach(void action(E element)) - → void - -
    -
    - -
    inherited
    -
    -
    - getRange(int start, int end) - → Iterable<E> - -
    -
    - -
    inherited
    -
    -
    - indexOf(Object element, [ int start = 0 ]) - → int - -
    -
    - -
    inherited
    -
    -
    - indexWhere(bool test(E element), [ int start = 0 ]) - → int - -
    -
    - -
    inherited
    -
    -
    - insert(int index, E element) - → void - -
    -
    - -
    inherited
    -
    -
    - insertAll(int index, Iterable<E> iterable) - → void - -
    -
    - -
    inherited
    -
    -
    - join([String separator = "" ]) - → String - -
    -
    - -
    inherited
    -
    -
    - lastIndexOf(Object element, [ int start ]) - → int - -
    -
    - -
    inherited
    -
    -
    - lastIndexWhere(bool test(E element), [ int start ]) - → int - -
    -
    - -
    inherited
    -
    -
    - lastWhere(bool test(E element), { E orElse() }) - → E - -
    -
    - -
    inherited
    -
    -
    - map<T>(T f(E element)) - → Iterable<T> - -
    -
    - -
    inherited
    -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - reduce(E combine(E previousValue, E element)) - → E - -
    -
    - -
    inherited
    -
    -
    - remove(Object element) - → bool - -
    -
    - -
    inherited
    -
    -
    - removeAt(int index) - → E - -
    -
    - -
    inherited
    -
    -
    - removeLast() - → E - -
    -
    - -
    inherited
    -
    -
    - removeRange(int start, int end) - → void - -
    -
    - -
    inherited
    -
    -
    - removeWhere(bool test(E element)) - → void - -
    -
    - -
    inherited
    -
    -
    - replaceRange(int start, int end, Iterable<E> newContents) - → void - -
    -
    - -
    inherited
    -
    -
    - retainWhere(bool test(E element)) - → void - -
    -
    - -
    inherited
    -
    -
    - setAll(int index, Iterable<E> iterable) - → void - -
    -
    - -
    inherited
    -
    -
    - setRange(int start, int end, Iterable<E> iterable, [ int skipCount = 0 ]) - → void - -
    -
    - -
    inherited
    -
    -
    - shuffle([Random random ]) - → void - -
    -
    - -
    inherited
    -
    -
    - singleWhere(bool test(E element), { E orElse() }) - → E - -
    -
    - -
    inherited
    -
    -
    - skip(int count) - → Iterable<E> - -
    -
    - -
    inherited
    -
    -
    - skipWhile(bool test(E element)) - → Iterable<E> - -
    -
    - -
    inherited
    -
    -
    - sort([int compare(E a, E b) ]) - → void - -
    -
    - -
    inherited
    -
    -
    - sublist(int start, [ int end ]) - → List<E> - -
    -
    - -
    inherited
    -
    -
    - take(int count) - → Iterable<E> - -
    -
    - -
    inherited
    -
    -
    - takeWhile(bool test(E element)) - → Iterable<E> - -
    -
    - -
    inherited
    -
    -
    - toList({bool growable: true }) - → List<E> - -
    -
    - -
    inherited
    -
    -
    - toSet() - → Set<E> - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    - where(bool test(E element)) - → Iterable<E> - -
    -
    - -
    inherited
    -
    -
    - whereType<T>() - → Iterable<T> - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

    -
    -
    - operator [](int index) - → E - -
    -
    - - -
    -
    - operator []=(int index, E value) - → void - -
    -
    - - -
    -
    - operator +(List<E> other) - → List<E> - -
    -
    - -
    inherited
    -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/SpecialList.html b/testing/test_package_docs/fake/SpecialList/SpecialList.html deleted file mode 100644 index ab2ffb360f..0000000000 --- a/testing/test_package_docs/fake/SpecialList/SpecialList.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - SpecialList constructor - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    SpecialList
    - -
    - -
    - - - -
    -

    SpecialList<E> constructor

    - -
    - - SpecialList<E>() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/add.html b/testing/test_package_docs/fake/SpecialList/add.html deleted file mode 100644 index ff653b8fd2..0000000000 --- a/testing/test_package_docs/fake/SpecialList/add.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - add method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    add
    - -
    - -
    - - - -
    -

    add method

    - -
    - void - add -(E element) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/addAll.html b/testing/test_package_docs/fake/SpecialList/addAll.html deleted file mode 100644 index e828612818..0000000000 --- a/testing/test_package_docs/fake/SpecialList/addAll.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - addAll method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    addAll
    - -
    - -
    - - - -
    -

    addAll method

    - -
    - void - addAll -(Iterable<E> iterable) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/any.html b/testing/test_package_docs/fake/SpecialList/any.html deleted file mode 100644 index ec62ac1ad1..0000000000 --- a/testing/test_package_docs/fake/SpecialList/any.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - any method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    any
    - -
    - -
    - - - -
    -

    any method

    - -
    - bool - any -(bool test(E element)) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/asMap.html b/testing/test_package_docs/fake/SpecialList/asMap.html deleted file mode 100644 index 4c9b14d377..0000000000 --- a/testing/test_package_docs/fake/SpecialList/asMap.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - asMap method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    asMap
    - -
    - -
    - - - -
    -

    asMap method

    - -
    - Map<int, E> - asMap -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/cast.html b/testing/test_package_docs/fake/SpecialList/cast.html deleted file mode 100644 index df39065719..0000000000 --- a/testing/test_package_docs/fake/SpecialList/cast.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - cast method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    cast
    - -
    - -
    - - - -
    -

    cast<R> method

    - -
    - List<R> - cast -<R>() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/clear.html b/testing/test_package_docs/fake/SpecialList/clear.html deleted file mode 100644 index 3834764625..0000000000 --- a/testing/test_package_docs/fake/SpecialList/clear.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - clear method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    clear
    - -
    - -
    - - - -
    -

    clear method

    - -
    - void - clear -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/contains.html b/testing/test_package_docs/fake/SpecialList/contains.html deleted file mode 100644 index 042a33aedf..0000000000 --- a/testing/test_package_docs/fake/SpecialList/contains.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - contains method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    contains
    - -
    - -
    - - - -
    -

    contains method

    - -
    - bool - contains -(Object element) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/elementAt.html b/testing/test_package_docs/fake/SpecialList/elementAt.html deleted file mode 100644 index ec790f4374..0000000000 --- a/testing/test_package_docs/fake/SpecialList/elementAt.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - elementAt method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    elementAt
    - -
    - -
    - - - -
    -

    elementAt method

    - -
    - E - elementAt -(int index) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/every.html b/testing/test_package_docs/fake/SpecialList/every.html deleted file mode 100644 index d04ca72711..0000000000 --- a/testing/test_package_docs/fake/SpecialList/every.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - every method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    every
    - -
    - -
    - - - -
    -

    every method

    - -
    - bool - every -(bool test(E element)) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/expand.html b/testing/test_package_docs/fake/SpecialList/expand.html deleted file mode 100644 index 52d599f00d..0000000000 --- a/testing/test_package_docs/fake/SpecialList/expand.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - expand method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    expand
    - -
    - -
    - - - -
    -

    expand<T> method

    - -
    - Iterable<T> - expand -<T>(Iterable<T> f(E element)) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/fillRange.html b/testing/test_package_docs/fake/SpecialList/fillRange.html deleted file mode 100644 index 7ec210d9e0..0000000000 --- a/testing/test_package_docs/fake/SpecialList/fillRange.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - fillRange method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    fillRange
    - -
    - -
    - - - -
    -

    fillRange method

    - -
    - void - fillRange -(int start, int end, [ E fill ]) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/first.html b/testing/test_package_docs/fake/SpecialList/first.html deleted file mode 100644 index c6ac916aba..0000000000 --- a/testing/test_package_docs/fake/SpecialList/first.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - first property - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    first
    - -
    - -
    - - - -
    -

    first property

    - - -
    - -
    - E - first -
    inherited
    -
    - - -
    - -
    - -
    - void - first= -(E value) -
    inherited
    -
    - - -
    -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/firstWhere.html b/testing/test_package_docs/fake/SpecialList/firstWhere.html deleted file mode 100644 index 2bc421fa33..0000000000 --- a/testing/test_package_docs/fake/SpecialList/firstWhere.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - firstWhere method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    firstWhere
    - -
    - -
    - - - -
    -

    firstWhere method

    - -
    - E - firstWhere -(bool test(E element), { E orElse() }) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/fold.html b/testing/test_package_docs/fake/SpecialList/fold.html deleted file mode 100644 index c8df368362..0000000000 --- a/testing/test_package_docs/fake/SpecialList/fold.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - fold method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    fold
    - -
    - -
    - - - -
    -

    fold<T> method

    - -
    - T - fold -<T>(T initialValue, T combine(T previousValue, E element)) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/followedBy.html b/testing/test_package_docs/fake/SpecialList/followedBy.html deleted file mode 100644 index 424f24ace0..0000000000 --- a/testing/test_package_docs/fake/SpecialList/followedBy.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - followedBy method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    followedBy
    - -
    - -
    - - - -
    -

    followedBy method

    - -
    - Iterable<E> - followedBy -(Iterable<E> other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/forEach.html b/testing/test_package_docs/fake/SpecialList/forEach.html deleted file mode 100644 index 786c0a49f9..0000000000 --- a/testing/test_package_docs/fake/SpecialList/forEach.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - forEach method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    forEach
    - -
    - -
    - - - -
    -

    forEach method

    - -
    - void - forEach -(void action(E element)) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/getRange.html b/testing/test_package_docs/fake/SpecialList/getRange.html deleted file mode 100644 index 6ce3e98615..0000000000 --- a/testing/test_package_docs/fake/SpecialList/getRange.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - getRange method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    getRange
    - -
    - -
    - - - -
    -

    getRange method

    - -
    - Iterable<E> - getRange -(int start, int end) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/hashCode.html b/testing/test_package_docs/fake/SpecialList/hashCode.html deleted file mode 100644 index a889e73d35..0000000000 --- a/testing/test_package_docs/fake/SpecialList/hashCode.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - hashCode property - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/indexOf.html b/testing/test_package_docs/fake/SpecialList/indexOf.html deleted file mode 100644 index 6c7bdefa36..0000000000 --- a/testing/test_package_docs/fake/SpecialList/indexOf.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - indexOf method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    indexOf
    - -
    - -
    - - - -
    -

    indexOf method

    - -
    - int - indexOf -(Object element, [ int start = 0 ]) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/indexWhere.html b/testing/test_package_docs/fake/SpecialList/indexWhere.html deleted file mode 100644 index 1c211ffff1..0000000000 --- a/testing/test_package_docs/fake/SpecialList/indexWhere.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - indexWhere method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    indexWhere
    - -
    - -
    - - - -
    -

    indexWhere method

    - -
    - int - indexWhere -(bool test(E element), [ int start = 0 ]) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/insert.html b/testing/test_package_docs/fake/SpecialList/insert.html deleted file mode 100644 index 383bb75080..0000000000 --- a/testing/test_package_docs/fake/SpecialList/insert.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - insert method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    insert
    - -
    - -
    - - - -
    -

    insert method

    - -
    - void - insert -(int index, E element) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/insertAll.html b/testing/test_package_docs/fake/SpecialList/insertAll.html deleted file mode 100644 index b78d0467ec..0000000000 --- a/testing/test_package_docs/fake/SpecialList/insertAll.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - insertAll method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    insertAll
    - -
    - -
    - - - -
    -

    insertAll method

    - -
    - void - insertAll -(int index, Iterable<E> iterable) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/isEmpty.html b/testing/test_package_docs/fake/SpecialList/isEmpty.html deleted file mode 100644 index 98c0e08df2..0000000000 --- a/testing/test_package_docs/fake/SpecialList/isEmpty.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - isEmpty property - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    isEmpty
    - -
    - -
    - - - -
    -

    isEmpty property

    - - -
    - -
    - bool - isEmpty -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/isNotEmpty.html b/testing/test_package_docs/fake/SpecialList/isNotEmpty.html deleted file mode 100644 index 1ff360a025..0000000000 --- a/testing/test_package_docs/fake/SpecialList/isNotEmpty.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - isNotEmpty property - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    isNotEmpty
    - -
    - -
    - - - -
    -

    isNotEmpty property

    - - -
    - -
    - bool - isNotEmpty -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/iterator.html b/testing/test_package_docs/fake/SpecialList/iterator.html deleted file mode 100644 index 705dc79084..0000000000 --- a/testing/test_package_docs/fake/SpecialList/iterator.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - iterator property - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    iterator
    - -
    - -
    - - - -
    -

    iterator property

    - - -
    - -
    - Iterator<E> - iterator -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/join.html b/testing/test_package_docs/fake/SpecialList/join.html deleted file mode 100644 index a588fda5af..0000000000 --- a/testing/test_package_docs/fake/SpecialList/join.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - join method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    join
    - -
    - -
    - - - -
    -

    join method

    - -
    - String - join -([String separator = "" ]) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/last.html b/testing/test_package_docs/fake/SpecialList/last.html deleted file mode 100644 index 2993787352..0000000000 --- a/testing/test_package_docs/fake/SpecialList/last.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - last property - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    last
    - -
    - -
    - - - -
    -

    last property

    - - -
    - -
    - E - last -
    inherited
    -
    - - -
    - -
    - -
    - void - last= -(E value) -
    inherited
    -
    - - -
    -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/lastIndexOf.html b/testing/test_package_docs/fake/SpecialList/lastIndexOf.html deleted file mode 100644 index f55bce259f..0000000000 --- a/testing/test_package_docs/fake/SpecialList/lastIndexOf.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - lastIndexOf method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    lastIndexOf
    - -
    - -
    - - - -
    -

    lastIndexOf method

    - -
    - int - lastIndexOf -(Object element, [ int start ]) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/lastIndexWhere.html b/testing/test_package_docs/fake/SpecialList/lastIndexWhere.html deleted file mode 100644 index 8886fc7618..0000000000 --- a/testing/test_package_docs/fake/SpecialList/lastIndexWhere.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - lastIndexWhere method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    lastIndexWhere
    - -
    - -
    - - - -
    -

    lastIndexWhere method

    - -
    - int - lastIndexWhere -(bool test(E element), [ int start ]) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/lastWhere.html b/testing/test_package_docs/fake/SpecialList/lastWhere.html deleted file mode 100644 index 1be23480fa..0000000000 --- a/testing/test_package_docs/fake/SpecialList/lastWhere.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - lastWhere method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    lastWhere
    - -
    - -
    - - - -
    -

    lastWhere method

    - -
    - E - lastWhere -(bool test(E element), { E orElse() }) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/length.html b/testing/test_package_docs/fake/SpecialList/length.html deleted file mode 100644 index d2d3af7366..0000000000 --- a/testing/test_package_docs/fake/SpecialList/length.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - length property - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    length
    - -
    - -
    - - - -
    -

    length property

    - - -
    - -
    - int - length - -
    - - -
    - -
    - -
    - void - length= -(int length) - -
    - - -
    -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/map.html b/testing/test_package_docs/fake/SpecialList/map.html deleted file mode 100644 index 6bb2ee772c..0000000000 --- a/testing/test_package_docs/fake/SpecialList/map.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - map method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    map
    - -
    - -
    - - - -
    -

    map<T> method

    - -
    - Iterable<T> - map -<T>(T f(E element)) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/noSuchMethod.html b/testing/test_package_docs/fake/SpecialList/noSuchMethod.html deleted file mode 100644 index 942f4ad2fa..0000000000 --- a/testing/test_package_docs/fake/SpecialList/noSuchMethod.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - noSuchMethod method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

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

    operator == method

    - -
    - bool - operator == -(dynamic other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/operator_get.html b/testing/test_package_docs/fake/SpecialList/operator_get.html deleted file mode 100644 index 8b4fa53501..0000000000 --- a/testing/test_package_docs/fake/SpecialList/operator_get.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - operator [] method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator []
    - -
    - -
    - - - -
    -

    operator [] method

    - -
    - E - operator [] -(int index) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/operator_plus.html b/testing/test_package_docs/fake/SpecialList/operator_plus.html deleted file mode 100644 index 09b1e738e2..0000000000 --- a/testing/test_package_docs/fake/SpecialList/operator_plus.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - operator + method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator +
    - -
    - -
    - - - -
    -

    operator + method

    - -
    - List<E> - operator + -(List<E> other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/operator_put.html b/testing/test_package_docs/fake/SpecialList/operator_put.html deleted file mode 100644 index c95c15559e..0000000000 --- a/testing/test_package_docs/fake/SpecialList/operator_put.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - operator []= method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator []=
    - -
    - -
    - - - -
    -

    operator []= method

    - -
    - void - operator []= -(int index, E value) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/reduce.html b/testing/test_package_docs/fake/SpecialList/reduce.html deleted file mode 100644 index f0cec58ac0..0000000000 --- a/testing/test_package_docs/fake/SpecialList/reduce.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - reduce method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    reduce
    - -
    - -
    - - - -
    -

    reduce method

    - -
    - E - reduce -(E combine(E previousValue, E element)) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/remove.html b/testing/test_package_docs/fake/SpecialList/remove.html deleted file mode 100644 index 67d11067ce..0000000000 --- a/testing/test_package_docs/fake/SpecialList/remove.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - remove method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    remove
    - -
    - -
    - - - -
    -

    remove method

    - -
    - bool - remove -(Object element) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/removeAt.html b/testing/test_package_docs/fake/SpecialList/removeAt.html deleted file mode 100644 index d730c1b8b1..0000000000 --- a/testing/test_package_docs/fake/SpecialList/removeAt.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - removeAt method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    removeAt
    - -
    - -
    - - - -
    -

    removeAt method

    - -
    - E - removeAt -(int index) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/removeLast.html b/testing/test_package_docs/fake/SpecialList/removeLast.html deleted file mode 100644 index 27ea3cf0fb..0000000000 --- a/testing/test_package_docs/fake/SpecialList/removeLast.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - removeLast method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    removeLast
    - -
    - -
    - - - -
    -

    removeLast method

    - -
    - E - removeLast -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/removeRange.html b/testing/test_package_docs/fake/SpecialList/removeRange.html deleted file mode 100644 index 65c123d14f..0000000000 --- a/testing/test_package_docs/fake/SpecialList/removeRange.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - removeRange method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    removeRange
    - -
    - -
    - - - -
    -

    removeRange method

    - -
    - void - removeRange -(int start, int end) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/removeWhere.html b/testing/test_package_docs/fake/SpecialList/removeWhere.html deleted file mode 100644 index e9f3c5d9c2..0000000000 --- a/testing/test_package_docs/fake/SpecialList/removeWhere.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - removeWhere method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    removeWhere
    - -
    - -
    - - - -
    -

    removeWhere method

    - -
    - void - removeWhere -(bool test(E element)) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/replaceRange.html b/testing/test_package_docs/fake/SpecialList/replaceRange.html deleted file mode 100644 index 0b0b1e208b..0000000000 --- a/testing/test_package_docs/fake/SpecialList/replaceRange.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - replaceRange method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    replaceRange
    - -
    - -
    - - - -
    -

    replaceRange method

    - -
    - void - replaceRange -(int start, int end, Iterable<E> newContents) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/retainWhere.html b/testing/test_package_docs/fake/SpecialList/retainWhere.html deleted file mode 100644 index 366933a522..0000000000 --- a/testing/test_package_docs/fake/SpecialList/retainWhere.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - retainWhere method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    retainWhere
    - -
    - -
    - - - -
    -

    retainWhere method

    - -
    - void - retainWhere -(bool test(E element)) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/reversed.html b/testing/test_package_docs/fake/SpecialList/reversed.html deleted file mode 100644 index 888fc2d451..0000000000 --- a/testing/test_package_docs/fake/SpecialList/reversed.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - reversed property - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    reversed
    - -
    - -
    - - - -
    -

    reversed property

    - - -
    - -
    - Iterable<E> - reversed -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/runtimeType.html b/testing/test_package_docs/fake/SpecialList/runtimeType.html deleted file mode 100644 index 1e74e75390..0000000000 --- a/testing/test_package_docs/fake/SpecialList/runtimeType.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - runtimeType property - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    runtimeType
    - -
    - -
    - - - -
    -

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/setAll.html b/testing/test_package_docs/fake/SpecialList/setAll.html deleted file mode 100644 index dbeb2c800b..0000000000 --- a/testing/test_package_docs/fake/SpecialList/setAll.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - setAll method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    setAll
    - -
    - -
    - - - -
    -

    setAll method

    - -
    - void - setAll -(int index, Iterable<E> iterable) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/setRange.html b/testing/test_package_docs/fake/SpecialList/setRange.html deleted file mode 100644 index 3d25e3cb70..0000000000 --- a/testing/test_package_docs/fake/SpecialList/setRange.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - setRange method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    setRange
    - -
    - -
    - - - -
    -

    setRange method

    - -
    - void - setRange -(int start, int end, Iterable<E> iterable, [ int skipCount = 0 ]) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/shuffle.html b/testing/test_package_docs/fake/SpecialList/shuffle.html deleted file mode 100644 index bbcbe01060..0000000000 --- a/testing/test_package_docs/fake/SpecialList/shuffle.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - shuffle method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    shuffle
    - -
    - -
    - - - -
    -

    shuffle method

    - -
    - void - shuffle -([Random random ]) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/single.html b/testing/test_package_docs/fake/SpecialList/single.html deleted file mode 100644 index 3d73849166..0000000000 --- a/testing/test_package_docs/fake/SpecialList/single.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - single property - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    single
    - -
    - -
    - - - -
    -

    single property

    - - -
    - -
    - E - single -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/singleWhere.html b/testing/test_package_docs/fake/SpecialList/singleWhere.html deleted file mode 100644 index 701925e997..0000000000 --- a/testing/test_package_docs/fake/SpecialList/singleWhere.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - singleWhere method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    singleWhere
    - -
    - -
    - - - -
    -

    singleWhere method

    - -
    - E - singleWhere -(bool test(E element), { E orElse() }) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/skip.html b/testing/test_package_docs/fake/SpecialList/skip.html deleted file mode 100644 index 84281725d8..0000000000 --- a/testing/test_package_docs/fake/SpecialList/skip.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - skip method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    skip
    - -
    - -
    - - - -
    -

    skip method

    - -
    - Iterable<E> - skip -(int count) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/skipWhile.html b/testing/test_package_docs/fake/SpecialList/skipWhile.html deleted file mode 100644 index be65361d2e..0000000000 --- a/testing/test_package_docs/fake/SpecialList/skipWhile.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - skipWhile method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    skipWhile
    - -
    - -
    - - - -
    -

    skipWhile method

    - -
    - Iterable<E> - skipWhile -(bool test(E element)) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/sort.html b/testing/test_package_docs/fake/SpecialList/sort.html deleted file mode 100644 index 7413956adc..0000000000 --- a/testing/test_package_docs/fake/SpecialList/sort.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - sort method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    sort
    - -
    - -
    - - - -
    -

    sort method

    - -
    - void - sort -([int compare(E a, E b) ]) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/sublist.html b/testing/test_package_docs/fake/SpecialList/sublist.html deleted file mode 100644 index 4760bd40be..0000000000 --- a/testing/test_package_docs/fake/SpecialList/sublist.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - sublist method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    sublist
    - -
    - -
    - - - -
    -

    sublist method

    - -
    - List<E> - sublist -(int start, [ int end ]) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/take.html b/testing/test_package_docs/fake/SpecialList/take.html deleted file mode 100644 index 0e68c73daf..0000000000 --- a/testing/test_package_docs/fake/SpecialList/take.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - take method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    take
    - -
    - -
    - - - -
    -

    take method

    - -
    - Iterable<E> - take -(int count) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/takeWhile.html b/testing/test_package_docs/fake/SpecialList/takeWhile.html deleted file mode 100644 index b3e85fcaf5..0000000000 --- a/testing/test_package_docs/fake/SpecialList/takeWhile.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - takeWhile method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    takeWhile
    - -
    - -
    - - - -
    -

    takeWhile method

    - -
    - Iterable<E> - takeWhile -(bool test(E element)) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/toList.html b/testing/test_package_docs/fake/SpecialList/toList.html deleted file mode 100644 index eb1ed8e36d..0000000000 --- a/testing/test_package_docs/fake/SpecialList/toList.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - toList method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toList
    - -
    - -
    - - - -
    -

    toList method

    - -
    - List<E> - toList -({bool growable: true }) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/toSet.html b/testing/test_package_docs/fake/SpecialList/toSet.html deleted file mode 100644 index 1ba537d29a..0000000000 --- a/testing/test_package_docs/fake/SpecialList/toSet.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - toSet method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toSet
    - -
    - -
    - - - -
    -

    toSet method

    - -
    - Set<E> - toSet -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/toString.html b/testing/test_package_docs/fake/SpecialList/toString.html deleted file mode 100644 index bccfef4ea9..0000000000 --- a/testing/test_package_docs/fake/SpecialList/toString.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - toString method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/where.html b/testing/test_package_docs/fake/SpecialList/where.html deleted file mode 100644 index f1cd98b334..0000000000 --- a/testing/test_package_docs/fake/SpecialList/where.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - where method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    where
    - -
    - -
    - - - -
    -

    where method

    - -
    - Iterable<E> - where -(bool test(E element)) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SpecialList/whereType.html b/testing/test_package_docs/fake/SpecialList/whereType.html deleted file mode 100644 index a8722d1fce..0000000000 --- a/testing/test_package_docs/fake/SpecialList/whereType.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - whereType method - SpecialList class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    whereType
    - -
    - -
    - - - -
    -

    whereType<T> method

    - -
    - Iterable<T> - whereType -<T>() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SubForDocComments-class.html b/testing/test_package_docs/fake/SubForDocComments-class.html deleted file mode 100644 index 6e24cb5a59..0000000000 --- a/testing/test_package_docs/fake/SubForDocComments-class.html +++ /dev/null @@ -1,345 +0,0 @@ - - - - - - - - SubForDocComments class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    SubForDocComments
    - -
    - -
    - - - -
    -

    SubForDocComments class

    - -
    -

    Testing if docs for inherited method are correct.

    -
    - -
    -
    -
    Inheritance
    -
    - - - - -
    -
    - -
    -

    Constructors

    - -
    -
    - SubForDocComments() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

    -
    -
    - localMethod(String foo, dynamic bar) - → void - -
    -
    - Reference to foo and bar - -
    -
    - anotherMethod() - → void - -
    -
    - -
    inherited
    -
    -
    - doAwesomeStuff(int value) - → String - -
    -
    - Takes a value and returns a String. [...] -
    inherited
    -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

    -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    - operator [](String key) - → String - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SubForDocComments/SubForDocComments.html b/testing/test_package_docs/fake/SubForDocComments/SubForDocComments.html deleted file mode 100644 index c01f9b5838..0000000000 --- a/testing/test_package_docs/fake/SubForDocComments/SubForDocComments.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - SubForDocComments constructor - SubForDocComments class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    SubForDocComments
    - -
    - -
    - - - -
    -

    SubForDocComments constructor

    - -
    - - SubForDocComments() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SubForDocComments/localMethod.html b/testing/test_package_docs/fake/SubForDocComments/localMethod.html deleted file mode 100644 index f682cacee3..0000000000 --- a/testing/test_package_docs/fake/SubForDocComments/localMethod.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - localMethod method - SubForDocComments class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    localMethod
    - -
    - -
    - - - -
    -

    localMethod method

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

    Reference to foo and bar

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SuperAwesomeClass-class.html b/testing/test_package_docs/fake/SuperAwesomeClass-class.html deleted file mode 100644 index 3cd6090a41..0000000000 --- a/testing/test_package_docs/fake/SuperAwesomeClass-class.html +++ /dev/null @@ -1,336 +0,0 @@ - - - - - - - - SuperAwesomeClass class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    SuperAwesomeClass
    - -
    - -
    - - - -
    -

    SuperAwesomeClass class

    - -
    -

    A super class, with many powers. Link to Apple from another library.

    -
    - -
    -
    - - - -
    Implemented by
    -
    - -
    Annotations
    -
      -
    • @deprecated
    • -
    -
    -
    - -
    -

    Constructors

    - -
    -
    - SuperAwesomeClass() -
    -
    - -
    -
    -
    - -
    -

    Properties

    - -
    -
    - powers - ↔ List<String> -
    -
    - In the super class. -
    read / write
    -
    -
    - hashCode - → int -
    -
    - -
    read-only, inherited
    -
    -
    - runtimeType - → Type -
    -
    - -
    read-only, inherited
    -
    -
    -
    - -
    -

    Methods

    -
    -
    - fly(int height, Cool superCool, { String msg }) - → void - -
    -
    - In the super class. [...] - -
    -
    - noSuchMethod(Invocation invocation) - → dynamic - -
    -
    - -
    inherited
    -
    -
    - toString() - → String - -
    -
    - -
    inherited
    -
    -
    -
    - -
    -

    Operators

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

    SuperAwesomeClass constructor

    - -
    - - SuperAwesomeClass() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SuperAwesomeClass/fly.html b/testing/test_package_docs/fake/SuperAwesomeClass/fly.html deleted file mode 100644 index c1be87f676..0000000000 --- a/testing/test_package_docs/fake/SuperAwesomeClass/fly.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - fly method - SuperAwesomeClass class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    fly
    - -
    - -
    - - - -
    -

    fly method

    - -
    - void - fly -(int height, Cool superCool, { String msg }) -
    -
    -

    In the super class.

    -

    Another comment line.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SuperAwesomeClass/hashCode.html b/testing/test_package_docs/fake/SuperAwesomeClass/hashCode.html deleted file mode 100644 index 8b8e3d93db..0000000000 --- a/testing/test_package_docs/fake/SuperAwesomeClass/hashCode.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - hashCode property - SuperAwesomeClass class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SuperAwesomeClass/noSuchMethod.html b/testing/test_package_docs/fake/SuperAwesomeClass/noSuchMethod.html deleted file mode 100644 index 7c017cf3ad..0000000000 --- a/testing/test_package_docs/fake/SuperAwesomeClass/noSuchMethod.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - noSuchMethod method - SuperAwesomeClass class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

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

    operator == method

    - -
    - bool - operator == -(dynamic other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SuperAwesomeClass/operator_minus.html b/testing/test_package_docs/fake/SuperAwesomeClass/operator_minus.html deleted file mode 100644 index fb7595cf03..0000000000 --- a/testing/test_package_docs/fake/SuperAwesomeClass/operator_minus.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - operator - method - SuperAwesomeClass class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator -
    - -
    - -
    - - - -
    -

    operator - method

    - -
    - SuperAwesomeClass - operator - -(dynamic other) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SuperAwesomeClass/powers.html b/testing/test_package_docs/fake/SuperAwesomeClass/powers.html deleted file mode 100644 index 6922855466..0000000000 --- a/testing/test_package_docs/fake/SuperAwesomeClass/powers.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - powers property - SuperAwesomeClass class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    powers
    - -
    - -
    - - - -
    -

    powers property

    - -
    - List<String> - powers -
    read / write
    -
    -
    -

    In the super class.

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/SuperAwesomeClass/runtimeType.html b/testing/test_package_docs/fake/SuperAwesomeClass/runtimeType.html deleted file mode 100644 index 7d1185a302..0000000000 --- a/testing/test_package_docs/fake/SuperAwesomeClass/runtimeType.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - runtimeType property - SuperAwesomeClass class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    runtimeType
    - -
    - -
    - - - -
    -

    runtimeType property

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

    toString method

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

    TypedefUsingClass class

    - - - -
    -

    Constructors

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

    Properties

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

    Methods

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

    Operators

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

    TypedefUsingClass constructor

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

    hashCode property

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

    noSuchMethod method

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

    operator == method

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

    runtimeType property

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

    toString method

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

    x property

    - -
    - ParameterizedTypedef<double> - x -
    read / write
    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/UP-constant.html b/testing/test_package_docs/fake/UP-constant.html deleted file mode 100644 index d0564baa57..0000000000 --- a/testing/test_package_docs/fake/UP-constant.html +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - - UP constant - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    UP
    - -
    - -
    - - - -
    -

    UP top-level constant

    - -
    - const UP - = - 'up' - -
    - -
    -

    Up is a direction.

    -

    Getting up in the morning can be hard.

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/VoidCallback.html b/testing/test_package_docs/fake/VoidCallback.html deleted file mode 100644 index 6ae946acdd..0000000000 --- a/testing/test_package_docs/fake/VoidCallback.html +++ /dev/null @@ -1,196 +0,0 @@ - - - - - - - - VoidCallback typedef - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    VoidCallback
    - -
    - -
    - - - -
    -

    VoidCallback typedef

    - -
    - void - VoidCallback -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/WithGetterAndSetter/WithGetterAndSetter.html b/testing/test_package_docs/fake/WithGetterAndSetter/WithGetterAndSetter.html deleted file mode 100644 index bb121f736c..0000000000 --- a/testing/test_package_docs/fake/WithGetterAndSetter/WithGetterAndSetter.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - WithGetterAndSetter constructor - WithGetterAndSetter class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    WithGetterAndSetter
    - -
    - -
    - - - -
    -

    WithGetterAndSetter constructor

    - -
    - - WithGetterAndSetter() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/WithGetterAndSetter/hashCode.html b/testing/test_package_docs/fake/WithGetterAndSetter/hashCode.html deleted file mode 100644 index b314e8f423..0000000000 --- a/testing/test_package_docs/fake/WithGetterAndSetter/hashCode.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - hashCode property - WithGetterAndSetter class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/WithGetterAndSetter/lengthX.html b/testing/test_package_docs/fake/WithGetterAndSetter/lengthX.html deleted file mode 100644 index 4edabce376..0000000000 --- a/testing/test_package_docs/fake/WithGetterAndSetter/lengthX.html +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - - - lengthX property - WithGetterAndSetter class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    lengthX
    - -
    - -
    - - - -
    -

    lengthX property

    - - -
    - -
    - int - lengthX - -
    - -
    -

    Returns a length.

    -

    Throws some exception if used in the fourth dimension.

    -
    - -
    - -
    - -
    - void - lengthX= -(int _length) - -
    - -
    -

    Sets the length.

    -

    Throws if set to an imaginary number.

    -
    - -
    -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/WithGetterAndSetter/noSuchMethod.html b/testing/test_package_docs/fake/WithGetterAndSetter/noSuchMethod.html deleted file mode 100644 index b6a4a386e2..0000000000 --- a/testing/test_package_docs/fake/WithGetterAndSetter/noSuchMethod.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - noSuchMethod method - WithGetterAndSetter class - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

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

    operator == method

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

    runtimeType property

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

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/ZERO-constant.html b/testing/test_package_docs/fake/ZERO-constant.html deleted file mode 100644 index 5d97d74a95..0000000000 --- a/testing/test_package_docs/fake/ZERO-constant.html +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - - ZERO constant - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    ZERO
    - -
    - -
    - - - -
    -

    ZERO top-level constant

    - -
    - const ZERO - = - 0 - -
    - -
    -

    A constant integer value, -which is a bit redundant.

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/aCoolVariable.html b/testing/test_package_docs/fake/aCoolVariable.html deleted file mode 100644 index 093466907b..0000000000 --- a/testing/test_package_docs/fake/aCoolVariable.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - aCoolVariable property - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aCoolVariable
    - -
    - -
    - - - -
    -

    aCoolVariable top-level property

    - -
    - Cool - aCoolVariable -
    read / write
    -
    -
    -

    A variable initalization making use of optional new.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/aVoidParameter.html b/testing/test_package_docs/fake/aVoidParameter.html deleted file mode 100644 index 9627057c68..0000000000 --- a/testing/test_package_docs/fake/aVoidParameter.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - aVoidParameter function - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    aVoidParameter
    - -
    - -
    - - - -
    -

    aVoidParameter function

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

    This function requires a Future as a parameter

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/addCallback.html b/testing/test_package_docs/fake/addCallback.html deleted file mode 100644 index f7c22d0d8b..0000000000 --- a/testing/test_package_docs/fake/addCallback.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - addCallback function - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    addCallback
    - -
    - -
    - - - -
    -

    addCallback function

    - -
    - void - addCallback -(VoidCallback callback) -
    -
    -

    Adds a callback.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/addCallback2.html b/testing/test_package_docs/fake/addCallback2.html deleted file mode 100644 index 03917fde7d..0000000000 --- a/testing/test_package_docs/fake/addCallback2.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - addCallback2 function - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    addCallback2
    - -
    - -
    - - - -
    -

    addCallback2 function

    - -
    - void - addCallback2 -(Callback2 callback) -
    -
    -

    Adds another callback.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/bulletDoced-constant.html b/testing/test_package_docs/fake/bulletDoced-constant.html deleted file mode 100644 index b4158fe434..0000000000 --- a/testing/test_package_docs/fake/bulletDoced-constant.html +++ /dev/null @@ -1,202 +0,0 @@ - - - - - - - - bulletDoced constant - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    bulletDoced
    - -
    - -
    - - - -
    -

    bulletDoced top-level constant

    - -
    - const bulletDoced - = - 'Foo bar baz' - -
    - -
    -

    Bullet point documentation.

    -

    This top level constant has bullet points.

    • A bullet point.
    • Another even better bullet point.
    • A bullet point that wraps onto a second line, without creating a new -bullet point or paragraph.
    • A fourth bullet point.
    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/complicatedReturn.html b/testing/test_package_docs/fake/complicatedReturn.html deleted file mode 100644 index cc0fcdc7de..0000000000 --- a/testing/test_package_docs/fake/complicatedReturn.html +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - - - complicatedReturn property - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    complicatedReturn
    - -
    - -
    - - - -
    -

    complicatedReturn top-level property

    - - -
    - -
    - ATypeTakingClass<String Function(int)> - complicatedReturn - -
    - -
    -

    A complicated type parameter to ATypeTakingClass.

    -
    - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/dynamicGetter.html b/testing/test_package_docs/fake/dynamicGetter.html deleted file mode 100644 index 0ec4826ab5..0000000000 --- a/testing/test_package_docs/fake/dynamicGetter.html +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - - - dynamicGetter property - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    dynamicGetter
    - -
    - -
    - - - -
    -

    dynamicGetter top-level property

    - - -
    - -
    - dynamic - dynamicGetter - -
    - -
    -

    A dynamic getter.

    -
    - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/fake-library.html b/testing/test_package_docs/fake/fake-library.html deleted file mode 100644 index 8bf037b392..0000000000 --- a/testing/test_package_docs/fake/fake-library.html +++ /dev/null @@ -1,1109 +0,0 @@ - - - - - - - - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    fake
    - -
    - -
    - - - -
    -

    fake library

    - -
    -

    WOW FAKE PACKAGE IS BEST PACKAGE

    -

    If you don't have this package yet, get it. -Don't ask questions.

    -

    Testing code true and false

    -

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

    -

    My favorite class is Cool.

    -

    I am an h2

    -

    hello there

    -

    I am an h3

    -

    hello there

    -

    I am an h4

    -

    hello there

    -
    I am an h5
    -

    hello

    -

    Why should you get this package?

    • We told you so.
    • Everyone is doing it.
    • It smells nice.
    -
    class Foo {
    -  long line is very long long line is very long long line is very long line long line long line
    -}
    -
    -

    Here are some hyperlinks with angle brackets:

    -
    - -
    -

    Classes

    - -
    -
    - ABaseClass -
    -
    - -
    -
    - AClassUsingASuperMixin -
    -
    - Verify super-mixins don't break Dartdoc. -
    -
    - AClassWithFancyProperties -
    -
    - -
    -
    - AMixinCallingSuper -
    -
    - -
    -
    - Annotation -
    -
    - Useful for annotations. -
    -
    - AnotherInterface -
    -
    - Yet another interface that can be implemented. -
    -
    - ATypeTakingClass<T> -
    -
    - This class takes a type, and it might be void. -
    -
    - ATypeTakingClassMixedIn -
    -
    - -
    -
    - BaseForDocComments Superb - Unreal - -
    -
    - Category information should not follow inheritance. -
    -
    - BaseThingy -
    -
    - -
    -
    - BaseThingy2 -
    -
    - Test for MultiplyInheritedExecutableElement handling. -
    -
    - ClassWithUnusualProperties -
    -
    - Classes with unusual properties? I don't think they exist. [...] -
    -
    - ConstantClass -
    -
    - For make-better testing of constants. [...] -
    -
    - ConstructorTester<A, B> -
    -
    - -
    -
    - Cool -
    -
    - This class is cool! -
    -
    - DocumentWithATable -
    -
    - This is a class with a table. [...] -
    -
    - ExtendsFutureVoid -
    -
    - This class extends Future -
    -
    - ExtraSpecialList<E> -
    -
    - This inherits operators. -
    -
    - Foo2 -
    -
    - link to method from class Apple.m -
    -
    - HasGenerics<X, Y, Z> -
    -
    - -
    -
    - HasGenericWithExtends<T extends Foo2> -
    -
    - I have a generic and it extends Foo2 -
    -
    - HasPragma -
    -
    - This class uses a pragma annotation. -
    -
    - IAmAClassWithCategories Superb - -
    -
    - Categories test for auto-include-dependencies (Flutter). -
    -
    - ImplementingThingy -
    -
    - -
    -
    - ImplementingThingy2 -
    -
    - -
    -
    - ImplementsFutureVoid -
    -
    - This class implements Future -
    -
    - ImplicitProperties -
    -
    - Names are actually wrong in this class, but when we extend it, -they are correct. -
    -
    - InheritingClassOne -
    -
    - -
    -
    - InheritingClassTwo -
    -
    - -
    -
    - Interface -
    -
    - An interface that can be implemented. -
    -
    - LongFirstLine -
    -
    - This is a very long line spread -across... wait for it... two physical lines. [...] -
    -
    - MIEEBase<K, V> -
    -
    - -
    -
    - MIEEMixin<K, V> -
    -
    - -
    -
    - MIEEMixinWithOverride<K, V> -
    -
    - Test an edge case for cases where inherited ExecutableElements can come -both from private classes and public interfaces. The test makes sure the -class still takes precedence (#1561). -
    -
    - MIEEThing<K, V> -
    -
    - -
    -
    - MixMeIn -
    -
    - Perfect for mix-ins. -
    -
    - NotAMixin -
    -
    - -
    -
    - OperatorReferenceClass -
    -
    - Test operator references: OperatorReferenceClass.==. -
    -
    - OtherGenericsThing<A> -
    -
    - -
    -
    - ReferringClass -
    -
    - -
    -
    - SpecialList<E> -
    -
    - Extends ListBase -
    -
    - SubForDocComments -
    -
    - Testing if docs for inherited method are correct. -
    -
    - SuperAwesomeClass -
    -
    - A super class, with many powers. Link to Apple from another library. -
    -
    - TypedefUsingClass -
    -
    - -
    -
    - WithGetterAndSetter -
    -
    - Tests a single field with explict getter and setter. -
    -
    -
    - -
    -

    Constants

    - -
    -
    - bulletDoced - → const String -
    -
    - Bullet point documentation. [...] - -
    - 'Foo bar baz' -
    -
    -
    - CUSTOM_CLASS - → const ConstantClass -
    -
    - - -
    - const ConstantClass('custom') -
    -
    -
    - CUSTOM_CLASS_PRIVATE - → const _APrivateConstClass -
    -
    - - -
    - const _APrivateConstClass() -
    -
    -
    - DOWN - → const String -
    -
    - Dynamic-typed down. - -
    - 'down' -
    -
    -
    - greatAnnotation - → const String -
    -
    - This is a great thing. - -
    - 'great' -
    -
    -
    - greatestAnnotation - → const String -
    -
    - This is the greatest thing. - -
    - 'greatest' -
    -
    -
    - incorrectDocReference - → const String -
    -
    - Referencing something that doesn't exist. - -
    - 'doh' -
    -
    -
    - myMap - → const Map<int, String> -
    -
    - A map initialization making use of optional const. - -
    - const {1 : "hello"} -
    -
    -
    - NAME_SINGLEUNDERSCORE - → const String -
    -
    - - -
    - 'yay bug hunting' -
    -
    -
    - NAME_WITH_TWO_UNDERSCORES - → const String -
    -
    - - -
    - 'episode seven better be good; episode seven better be good; episode seven better be good; episode seven better be good' -
    -
    -
    - PI - → const double -
    -
    - Constant property. - -
    - 3.14159 -
    -
    -
    - required - → const String -
    -
    - - -
    - 'required' -
    -
    -
    - testingCodeSyntaxInOneLiners - → const String -
    -
    - These are code syntaxes: true and false - -
    - 'fantastic' -
    -
    -
    - UP - → const String -
    -
    - Up is a direction. [...] - -
    - 'up' -
    -
    -
    - ZERO - → const int -
    -
    - A constant integer value, -which is a bit redundant. - -
    - 0 -
    -
    -
    -
    - -
    -

    Properties

    - -
    -
    - aCoolVariable - Cool -
    -
    - A variable initalization making use of optional new. -
    read / write
    -
    -
    - complicatedReturn - ATypeTakingClass<String Function(int)> -
    -
    - A complicated type parameter to ATypeTakingClass. -
    read-only
    -
    -
    - dynamicGetter - → dynamic -
    -
    - A dynamic getter. -
    read-only
    -
    -
    - getterSetterNodocGetter - ← int -
    -
    - Setter docs should be shown. -
    write-only
    -
    -
    - getterSetterNodocSetter - → int -
    -
    - Getter docs should be shown. -
    read-only
    -
    -
    - importantComputations - → Map<int, (List<num>) → dynamic> -
    -
    - Type inference mixing with anonymous functions. -
    final
    -
    -
    - justGetter - → bool -
    -
    - Just a getter. No partner setter. -
    read-only
    -
    -
    - justSetter - int -
    -
    - Just a setter. No partner getter. -
    write-only
    -
    -
    - mapWithDynamicKeys - ↔ Map<dynamic, String> -
    -
    - -
    read / write
    -
    -
    - meaningOfLife - → int -
    -
    - Final property. -
    final
    -
    -
    - mustGetThis - → dynamic -
    -
    - A doc reference mentioning dynamic. -
    read-only
    -
    -
    - setAndGet - ↔ String -
    -
    - The getter for setAndGet. -
    read / write
    -
    -
    - simpleProperty - ↔ String -
    -
    - Simple property -
    read / write
    -
    -
    - useSomethingInAnotherPackage - ↔ Required -
    -
    - -
    read / write
    -
    -
    - useSomethingInTheSdk - ↔ String -
    -
    - -
    read / write
    -
    -
    -
    - -
    -

    Functions

    - -
    -
    - addCallback(VoidCallback callback) - → void - -
    -
    - Adds a callback. - -
    -
    - addCallback2(Callback2 callback) - → void - -
    -
    - Adds another callback. - -
    -
    - aVoidParameter(Future<void> p1) - → void - -
    -
    - This function requires a Future as a parameter - -
    -
    - functionWithFunctionParameters(int number, void thing(dynamic one, dynamic two), String string, Future asyncThing(dynamic three, dynamic four, dynamic five, dynamic six, dynamic seven)) - → String - -
    -
    - This function has two parameters that are functions. [...] - -
    -
    - myGenericFunction<S>(int a, bool b, S c) - → void - -
    -
    - A generic function with a type parameter. - -
    -
    - onlyPositionalWithNoDefaultNoType([dynamic anything ]) - → void - -
    -
    - A single optional positional param, no type annotation, no default value. -
    @greatAnnotation
    -
    -
    - paintImage1({String canvas, int rect, ExtraSpecialList image, BaseForDocComments colorFilter, String repeat: LongFirstLine.THING }) - → void - -
    -
    - Paints an image into the given rectangle in the canvas. - -
    -
    - paintImage2(String fooParam, [ String canvas, int rect, ExtraSpecialList image, BaseForDocComments colorFilter, String repeat = LongFirstLine.THING ]) - → void - -
    -
    - Paints an image into the given rectangle in the canvas. - -
    -
    - paramFromAnotherLib(Apple thing) - → void - -
    -
    - FooBar comes from another library. - -
    -
    - paramOfFutureOrNull(FutureOr<Null> future) - → void - -
    -
    - Has a parameter explicitly typed FutureOr<Null>. - -
    -
    - returningFutureVoid() - → Future<void> - -
    -
    - This function returns Future - -
    -
    - short() - → void - -
    -
    - Testing NAME_WITH_TWO_UNDERSCORES should not be italicized. [...] - -
    -
    - soIntense(dynamic anything, { bool flag: true, int value }) - → void - -
    -
    - Top-level function with 1 param and 2 optional named params, 1 with a -default value. - -
    -
    - thisIsAlsoAsync() - → Future - -
    -
    - Explicitly returns a Future and is marked async. - -
    -
    - thisIsAsync() - → Future - -
    -
    - An async function. It should look like I return a Future. - -
    -
    - thisIsFutureOr() - → FutureOr - -
    -
    - Explicitly return a FutureOr. - -
    -
    - thisIsFutureOrNull() - → FutureOr<Null> - -
    -
    - Explicitly return a FutureOr<Null>. - -
    -
    - thisIsFutureOrT<T>() - → FutureOr<T> - -
    -
    - Explicitly return a FutureOr<T>. - -
    -
    - topLevelFunction(int param1, bool param2, Cool coolBeans, [ double optionalPositional = 0.0 ]) - → String - -
    -
    - Top-level function 3 params and 1 optional positional param. [...] - -
    -
    - typeParamOfFutureOr<T extends FutureOr<List>>() - → void - -
    -
    - Has a type parameter bound to FutureOr<List>. - -
    -
    -
    - -
    -

    Enums

    - -
    -
    - Color -
    -
    - An enum for ROYGBIV constants. -
    -
    -
    - -
    -

    Typedefs

    - -
    -
    - Callback2(dynamic String) - → int - -
    -
    - - -
    -
    - FakeProcesses(String input) - → String - -
    -
    - Takes input, returns output. - -
    -
    - GenericTypedef<T>(T input) - → T - -
    -
    - A typedef with a type parameter. - -
    -
    - LotsAndLotsOfParameters(dynamic so, dynamic many, dynamic parameters, dynamic it, dynamic should, dynamic wrap, dynamic when, dynamic converted, dynamic to, dynamic html, dynamic documentation) - → int - -
    -
    - Lots and lots of parameters. - -
    -
    - myCoolTypedef(Cool x, bool y) - → void - -
    -
    - - -
    -
    - NewGenericTypedef<T>(T, int, bool) - → List<S> - -
    -
    - A typedef with the new style generic function syntax. - -
    -
    - VoidCallback() - → void - -
    -
    - - -
    -
    -
    - -
    -

    Exceptions / Errors

    - -
    -
    - Doh -
    -
    - Also, my bad. -
    -
    - Oops -
    -
    - My bad! -
    -
    -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/functionWithFunctionParameters.html b/testing/test_package_docs/fake/functionWithFunctionParameters.html deleted file mode 100644 index c3a0e73da4..0000000000 --- a/testing/test_package_docs/fake/functionWithFunctionParameters.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - - - functionWithFunctionParameters function - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    functionWithFunctionParameters
    - -
    - -
    - - - -
    -

    functionWithFunctionParameters function

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

    This function has two parameters that are functions.

    -

    Check out the number parameter. It's the first one.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/getterSetterNodocGetter.html b/testing/test_package_docs/fake/getterSetterNodocGetter.html deleted file mode 100644 index 8b2f31ec6f..0000000000 --- a/testing/test_package_docs/fake/getterSetterNodocGetter.html +++ /dev/null @@ -1,204 +0,0 @@ - - - - - - - - getterSetterNodocGetter property - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    getterSetterNodocGetter
    - -
    - -
    - - - -
    -

    getterSetterNodocGetter top-level property

    - - - -
    - -
    - void - getterSetterNodocGetter= -(int value) - -
    - -
    -

    Setter docs should be shown.

    -
    - -
    -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/getterSetterNodocSetter.html b/testing/test_package_docs/fake/getterSetterNodocSetter.html deleted file mode 100644 index 4b1ef63dbf..0000000000 --- a/testing/test_package_docs/fake/getterSetterNodocSetter.html +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - - - getterSetterNodocSetter property - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    getterSetterNodocSetter
    - -
    - -
    - - - -
    -

    getterSetterNodocSetter top-level property

    - - -
    - -
    - int - getterSetterNodocSetter - -
    - -
    -

    Getter docs should be shown.

    -
    - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/greatAnnotation-constant.html b/testing/test_package_docs/fake/greatAnnotation-constant.html deleted file mode 100644 index 5c0a74706e..0000000000 --- a/testing/test_package_docs/fake/greatAnnotation-constant.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - - - greatAnnotation constant - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    greatAnnotation
    - -
    - -
    - - - -
    -

    greatAnnotation top-level constant

    - -
    - const greatAnnotation - = - 'great' - -
    - -
    -

    This is a great thing.

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/greatestAnnotation-constant.html b/testing/test_package_docs/fake/greatestAnnotation-constant.html deleted file mode 100644 index 84982871b9..0000000000 --- a/testing/test_package_docs/fake/greatestAnnotation-constant.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - - - greatestAnnotation constant - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    greatestAnnotation
    - -
    - -
    - - - -
    -

    greatestAnnotation top-level constant

    - -
    - const greatestAnnotation - = - 'greatest' - -
    - -
    -

    This is the greatest thing.

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/importantComputations.html b/testing/test_package_docs/fake/importantComputations.html deleted file mode 100644 index 7b3bdc7207..0000000000 --- a/testing/test_package_docs/fake/importantComputations.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - importantComputations property - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    importantComputations
    - -
    - -
    - - - -
    -

    importantComputations top-level property

    - -
    - Map<int, (List<num>) → dynamic> - importantComputations -
    final
    -
    -
    -

    Type inference mixing with anonymous functions.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/incorrectDocReference-constant.html b/testing/test_package_docs/fake/incorrectDocReference-constant.html deleted file mode 100644 index 18c059e768..0000000000 --- a/testing/test_package_docs/fake/incorrectDocReference-constant.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - - - incorrectDocReference constant - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    incorrectDocReference
    - -
    - -
    - - - -
    -

    incorrectDocReference top-level constant

    - -
    - const incorrectDocReference - = - 'doh' - -
    - -
    -

    Referencing something that doesn't exist.

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/justGetter.html b/testing/test_package_docs/fake/justGetter.html deleted file mode 100644 index 70314b8eaa..0000000000 --- a/testing/test_package_docs/fake/justGetter.html +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - - - justGetter property - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    justGetter
    - -
    - -
    - - - -
    -

    justGetter top-level property

    - - -
    - -
    - bool - justGetter - -
    - -
    -

    Just a getter. No partner setter.

    -
    - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/justSetter.html b/testing/test_package_docs/fake/justSetter.html deleted file mode 100644 index 24ee98ffcc..0000000000 --- a/testing/test_package_docs/fake/justSetter.html +++ /dev/null @@ -1,204 +0,0 @@ - - - - - - - - justSetter property - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    justSetter
    - -
    - -
    - - - -
    -

    justSetter top-level property

    - - - -
    - -
    - void - justSetter= -(int value) - -
    - -
    -

    Just a setter. No partner getter.

    -
    - -
    -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/mapWithDynamicKeys.html b/testing/test_package_docs/fake/mapWithDynamicKeys.html deleted file mode 100644 index 55037fb4f7..0000000000 --- a/testing/test_package_docs/fake/mapWithDynamicKeys.html +++ /dev/null @@ -1,196 +0,0 @@ - - - - - - - - mapWithDynamicKeys property - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    mapWithDynamicKeys
    - -
    - -
    - - - -
    -

    mapWithDynamicKeys top-level property

    - -
    - Map<dynamic, String> - mapWithDynamicKeys -
    read / write
    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/meaningOfLife.html b/testing/test_package_docs/fake/meaningOfLife.html deleted file mode 100644 index 1807eec8f4..0000000000 --- a/testing/test_package_docs/fake/meaningOfLife.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - meaningOfLife property - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    meaningOfLife
    - -
    - -
    - - - -
    -

    meaningOfLife top-level property

    - -
    - int - meaningOfLife -
    final
    -
    -
    -

    Final property.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/mustGetThis.html b/testing/test_package_docs/fake/mustGetThis.html deleted file mode 100644 index 368f633f9d..0000000000 --- a/testing/test_package_docs/fake/mustGetThis.html +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - - - mustGetThis property - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    mustGetThis
    - -
    - -
    - - - -
    -

    mustGetThis top-level property

    - - -
    - -
    - dynamic - mustGetThis - -
    - -
    -

    A doc reference mentioning dynamic.

    -
    - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/myCoolTypedef.html b/testing/test_package_docs/fake/myCoolTypedef.html deleted file mode 100644 index d532e9caef..0000000000 --- a/testing/test_package_docs/fake/myCoolTypedef.html +++ /dev/null @@ -1,196 +0,0 @@ - - - - - - - - myCoolTypedef typedef - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    myCoolTypedef
    - -
    - -
    - - - -
    -

    myCoolTypedef typedef

    - -
    - void - myCoolTypedef -(Cool x, bool y) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/myGenericFunction.html b/testing/test_package_docs/fake/myGenericFunction.html deleted file mode 100644 index 7a2e92b988..0000000000 --- a/testing/test_package_docs/fake/myGenericFunction.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - myGenericFunction function - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    myGenericFunction
    - -
    - -
    - - - -
    -

    myGenericFunction<S> function

    - -
    - void - myGenericFunction -<S>(int a, bool b, S c) -
    -
    -

    A generic function with a type parameter.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/myMap-constant.html b/testing/test_package_docs/fake/myMap-constant.html deleted file mode 100644 index 861751248d..0000000000 --- a/testing/test_package_docs/fake/myMap-constant.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - - - myMap constant - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    myMap
    - -
    - -
    - - - -
    -

    myMap top-level constant

    - -
    - const myMap - = - const {1 : "hello"} - -
    - -
    -

    A map initialization making use of optional const.

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html b/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html deleted file mode 100644 index b7d81b45f9..0000000000 --- a/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html +++ /dev/null @@ -1,204 +0,0 @@ - - - - - - - - onlyPositionalWithNoDefaultNoType function - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    onlyPositionalWithNoDefaultNoType
    - -
    - -
    - - - -
    -

    onlyPositionalWithNoDefaultNoType function

    - -
    -
    -
      -
    1. @greatAnnotation
    2. -
    -
    - void - onlyPositionalWithNoDefaultNoType -([@greatestAnnotation dynamic anything ]) -
    -
    -

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

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/paintImage1.html b/testing/test_package_docs/fake/paintImage1.html deleted file mode 100644 index 2a0e89410e..0000000000 --- a/testing/test_package_docs/fake/paintImage1.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - paintImage1 function - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    paintImage1
    - -
    - -
    - - - -
    -

    paintImage1 function

    - -
    - void - paintImage1 -({@required String canvas, @required int rect, @required ExtraSpecialList image, BaseForDocComments colorFilter, String repeat: LongFirstLine.THING }) -
    -
    -

    Paints an image into the given rectangle in the canvas.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/paintImage2.html b/testing/test_package_docs/fake/paintImage2.html deleted file mode 100644 index 60848b9b10..0000000000 --- a/testing/test_package_docs/fake/paintImage2.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - paintImage2 function - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    paintImage2
    - -
    - -
    - - - -
    -

    paintImage2 function

    - -
    - void - paintImage2 -(String fooParam, [ @required String canvas, @required int rect, @required ExtraSpecialList image, BaseForDocComments colorFilter, String repeat = LongFirstLine.THING ]) -
    -
    -

    Paints an image into the given rectangle in the canvas.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/paramFromAnotherLib.html b/testing/test_package_docs/fake/paramFromAnotherLib.html deleted file mode 100644 index 1afdd83815..0000000000 --- a/testing/test_package_docs/fake/paramFromAnotherLib.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - paramFromAnotherLib function - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    paramFromAnotherLib
    - -
    - -
    - - - -
    -

    paramFromAnotherLib function

    - -
    - void - paramFromAnotherLib -(Apple thing) -
    -
    -

    FooBar comes from another library.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/paramOfFutureOrNull.html b/testing/test_package_docs/fake/paramOfFutureOrNull.html deleted file mode 100644 index 3cc766057b..0000000000 --- a/testing/test_package_docs/fake/paramOfFutureOrNull.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - paramOfFutureOrNull function - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    paramOfFutureOrNull
    - -
    - -
    - - - -
    -

    paramOfFutureOrNull function

    - -
    - void - paramOfFutureOrNull -(FutureOr<Null> future) -
    -
    -

    Has a parameter explicitly typed FutureOr<Null>.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/required-constant.html b/testing/test_package_docs/fake/required-constant.html deleted file mode 100644 index bd6e264ea1..0000000000 --- a/testing/test_package_docs/fake/required-constant.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - - - required constant - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    required
    - -
    - -
    - - - -
    -

    required top-level constant

    - -
    - const required - = - 'required' - -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/returningFutureVoid.html b/testing/test_package_docs/fake/returningFutureVoid.html deleted file mode 100644 index 1b20e89c2d..0000000000 --- a/testing/test_package_docs/fake/returningFutureVoid.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - returningFutureVoid function - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    returningFutureVoid
    - -
    - -
    - - - -
    -

    returningFutureVoid function

    - -
    - Future<void> - returningFutureVoid -() -
    -
    -

    This function returns Future

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/setAndGet.html b/testing/test_package_docs/fake/setAndGet.html deleted file mode 100644 index 56dca5d1e8..0000000000 --- a/testing/test_package_docs/fake/setAndGet.html +++ /dev/null @@ -1,217 +0,0 @@ - - - - - - - - setAndGet property - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    setAndGet
    - -
    - -
    - - - -
    -

    setAndGet top-level property

    - - -
    - -
    - String - setAndGet - -
    - -
    -

    The getter for setAndGet.

    -
    - -
    - -
    - -
    - void - setAndGet= -(String thing) - -
    - -
    -

    The setter for setAndGet.

    -
    - -
    -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/short.html b/testing/test_package_docs/fake/short.html deleted file mode 100644 index 0b01646d2a..0000000000 --- a/testing/test_package_docs/fake/short.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - - - short function - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    short
    - -
    - -
    - - - -
    -

    short function

    - -
    - void - short -() -
    -
    -

    Testing NAME_WITH_TWO_UNDERSCORES should not be italicized.

    -

    This name should link correctly: NAME_SINGLEUNDERSCORE

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/simpleProperty.html b/testing/test_package_docs/fake/simpleProperty.html deleted file mode 100644 index 9dbbcc8a1d..0000000000 --- a/testing/test_package_docs/fake/simpleProperty.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - simpleProperty property - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    simpleProperty
    - -
    - -
    - - - -
    -

    simpleProperty top-level property

    - -
    - String - simpleProperty -
    read / write
    -
    -
    -

    Simple property

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/soIntense.html b/testing/test_package_docs/fake/soIntense.html deleted file mode 100644 index cf3c5c582c..0000000000 --- a/testing/test_package_docs/fake/soIntense.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - - - soIntense function - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    soIntense
    - -
    - -
    - - - -
    -

    soIntense function

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

    Top-level function with 1 param and 2 optional named params, 1 with a -default value.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html b/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html deleted file mode 100644 index ccc0d9d9ef..0000000000 --- a/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - - - testingCodeSyntaxInOneLiners constant - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    testingCodeSyntaxInOneLiners
    - -
    - -
    - - - -
    -

    testingCodeSyntaxInOneLiners top-level constant

    - -
    - const testingCodeSyntaxInOneLiners - = - 'fantastic' - -
    - -
    -

    These are code syntaxes: true and false

    -
    - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/thisIsAlsoAsync.html b/testing/test_package_docs/fake/thisIsAlsoAsync.html deleted file mode 100644 index 449597a8db..0000000000 --- a/testing/test_package_docs/fake/thisIsAlsoAsync.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - thisIsAlsoAsync function - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    thisIsAlsoAsync
    - -
    - -
    - - - -
    -

    thisIsAlsoAsync function

    - -
    - Future - thisIsAlsoAsync -() -
    -
    -

    Explicitly returns a Future and is marked async.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/thisIsAsync.html b/testing/test_package_docs/fake/thisIsAsync.html deleted file mode 100644 index d060d2ee0a..0000000000 --- a/testing/test_package_docs/fake/thisIsAsync.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - thisIsAsync function - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    thisIsAsync
    - -
    - -
    - - - -
    -

    thisIsAsync function

    - -
    - Future - thisIsAsync -() -
    -
    -

    An async function. It should look like I return a Future.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/thisIsFutureOr.html b/testing/test_package_docs/fake/thisIsFutureOr.html deleted file mode 100644 index e629db8ee4..0000000000 --- a/testing/test_package_docs/fake/thisIsFutureOr.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - thisIsFutureOr function - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    thisIsFutureOr
    - -
    - -
    - - - -
    -

    thisIsFutureOr function

    - -
    - FutureOr - thisIsFutureOr -() -
    -
    -

    Explicitly return a FutureOr.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/thisIsFutureOrNull.html b/testing/test_package_docs/fake/thisIsFutureOrNull.html deleted file mode 100644 index 88f132eaa3..0000000000 --- a/testing/test_package_docs/fake/thisIsFutureOrNull.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - thisIsFutureOrNull function - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    thisIsFutureOrNull
    - -
    - -
    - - - -
    -

    thisIsFutureOrNull function

    - -
    - FutureOr<Null> - thisIsFutureOrNull -() -
    -
    -

    Explicitly return a FutureOr<Null>.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/thisIsFutureOrT.html b/testing/test_package_docs/fake/thisIsFutureOrT.html deleted file mode 100644 index 8b444ae7da..0000000000 --- a/testing/test_package_docs/fake/thisIsFutureOrT.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - thisIsFutureOrT function - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    thisIsFutureOrT
    - -
    - -
    - - - -
    -

    thisIsFutureOrT<T> function

    - -
    - FutureOr<T> - thisIsFutureOrT -<T>() -
    -
    -

    Explicitly return a FutureOr<T>.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/topLevelFunction.html b/testing/test_package_docs/fake/topLevelFunction.html deleted file mode 100644 index de1dcaaa1c..0000000000 --- a/testing/test_package_docs/fake/topLevelFunction.html +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - topLevelFunction function - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    topLevelFunction
    - -
    - -
    - - - -
    -

    topLevelFunction function

    - -
    -
    -
      -
    1. @deprecated
    2. -
    -
    - String - topLevelFunction -(int param1, bool param2, Cool coolBeans, [ double optionalPositional = 0.0 ]) -
    -
    -

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

    -

    This is the second paragraph. -It has two lines.

    -

    The third parameter is a Cool object.

    -

    Here is a code snippet:

    -
    var thing = topLevelFunction(1, true, 3.4);
    -
    -

    This snippet has brackets in parameters:

    -
    callMe('alert', ['hello from dart']);
    -
    -

    Thanks for using this function!

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/typeParamOfFutureOr.html b/testing/test_package_docs/fake/typeParamOfFutureOr.html deleted file mode 100644 index 296dc361a6..0000000000 --- a/testing/test_package_docs/fake/typeParamOfFutureOr.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - typeParamOfFutureOr function - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    typeParamOfFutureOr
    - -
    - -
    - - - -
    -

    typeParamOfFutureOr<T extends FutureOr<List>> function

    - -
    - void - typeParamOfFutureOr -<T extends FutureOr<List>>() -
    -
    -

    Has a type parameter bound to FutureOr<List>.

    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/useSomethingInAnotherPackage.html b/testing/test_package_docs/fake/useSomethingInAnotherPackage.html deleted file mode 100644 index 9100519e54..0000000000 --- a/testing/test_package_docs/fake/useSomethingInAnotherPackage.html +++ /dev/null @@ -1,196 +0,0 @@ - - - - - - - - useSomethingInAnotherPackage property - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    useSomethingInAnotherPackage
    - -
    - -
    - - - -
    -

    useSomethingInAnotherPackage top-level property

    - -
    - Required - useSomethingInAnotherPackage -
    read / write
    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/fake/useSomethingInTheSdk.html b/testing/test_package_docs/fake/useSomethingInTheSdk.html deleted file mode 100644 index 73484d18e8..0000000000 --- a/testing/test_package_docs/fake/useSomethingInTheSdk.html +++ /dev/null @@ -1,196 +0,0 @@ - - - - - - - - useSomethingInTheSdk property - fake library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    useSomethingInTheSdk
    - -
    - -
    - - - -
    -

    useSomethingInTheSdk top-level property

    - -
    - String - useSomethingInTheSdk -
    read / write
    -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/index.html b/testing/test_package_docs/index.html deleted file mode 100644 index 9476bc9d76..0000000000 --- a/testing/test_package_docs/index.html +++ /dev/null @@ -1,216 +0,0 @@ - - - - - - - - - test_package - Dart API docs - - - - - - - - - - -
    - -
    - -
    test_package
    - -
    - -
    - - - -
    -
    -

    Best Package

    -

    This is an amazing package.

    -

    Examples

    -

    For example, it:

    • Is very fast
    • Has zero bugs
    • Is free
    -

    It also has some awesome code

    -
    void main() {
    -  // in Dart!
    -}
    -
    -/*
    -80-characters: to ensure default styles accommodate Dart line length convention.
    -01234567890123456789012345678901234567890123456789012345678901234567890123456789
    -*/
    -
    -
    and_yaml:
    -  - value
    -  - "value"
    -  - 3.14
    -
    -
    /* issue 1484 regression */
    -#id {
    -  background: green;
    -}
    -
    -.class {
    -  background: red;
    -}
    -
    -div {
    -  background: green;
    -}
    -
    -
    <div>
    -  <strong>Hello!</strong>
    -  <h1>World!</h1>
    -</div>
    -
    -
    var f = function(a, b) {
    -  return a + b;  
    -};
    -
    -

    Another Section

    -

    It sometimes generates warnings in commentRefs like this: unknownThingy.FromSomewhere

    -

    Be sure to check out other awesome packages on pub.

    -
    - -
    -

    Libraries

    -
    -
    - anonymous_library -
    -
    - -
    - another_anonymous_lib -
    -
    - -
    - code_in_comments -
    -
    - void main() { - // in Dart! -} - [...] -
    - is_deprecated -
    -
    - This lib is deprecated. It never had a chance -

    Unreal

    -
    - reexport_one Unreal - -
    -
    - -
    - reexport_two Unreal - -
    -
    - -

    Real Libraries

    -
    - ex -
    -
    - a library. testing string escaping: var s = 'a string' -
    - fake -
    -
    - WOW FAKE PACKAGE IS BEST PACKAGE [...] -
    - two_exports -
    -
    - -

    Misc

    -
    - two_exports -
    -
    - -

    Other

    -
    - css -
    -
    - Testing that a library name doesn't conflict -with directories created by dartdoc. -
    -
    -
    -

    test_package_imported

    -
    -
    - categoriesExported -
    -
    - -
    - test_package_imported.main -
    -
    - -
    -
    - -
    - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/index.json b/testing/test_package_docs/index.json deleted file mode 100644 index 19cadde2f8..0000000000 --- a/testing/test_package_docs/index.json +++ /dev/null @@ -1,9494 +0,0 @@ -[ - { - "name": "Superb", - "qualifiedName": "Superb", - "href": "topics/Superb-topic.html", - "type": "Topic", - "overriddenDepth": 0 - }, - { - "name": "Unreal", - "qualifiedName": "Unreal", - "href": "topics/Unreal-topic.html", - "type": "Topic", - "overriddenDepth": 0 - }, - { - "name": "anonymous_library", - "qualifiedName": "anonymous_library", - "href": "anonymous_library/anonymous_library-library.html", - "type": "library", - "overriddenDepth": 0 - }, - { - "name": "doesStuff", - "qualifiedName": "anonymous_library.doesStuff", - "href": "anonymous_library/doesStuff.html", - "type": "function", - "overriddenDepth": 0, - "enclosedBy": { - "name": "anonymous_library", - "type": "library" - } - }, - { - "name": "another_anonymous_lib", - "qualifiedName": "another_anonymous_lib", - "href": "another_anonymous_lib/another_anonymous_lib-library.html", - "type": "library", - "overriddenDepth": 0 - }, - { - "name": "greeting", - "qualifiedName": "another_anonymous_lib.greeting", - "href": "another_anonymous_lib/greeting.html", - "type": "function", - "overriddenDepth": 0, - "enclosedBy": { - "name": "another_anonymous_lib", - "type": "library" - } - }, - { - "name": "categoriesExported", - "qualifiedName": "categoriesExported", - "href": "categoriesExported/categoriesExported-library.html", - "type": "library", - "overriddenDepth": 0 - }, - { - "name": "IAmAClassWithCategories", - "qualifiedName": "categoriesExported.IAmAClassWithCategories", - "href": "categoriesExported/IAmAClassWithCategories-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "categoriesExported", - "type": "library" - } - }, - { - "name": "IAmAClassWithCategories", - "qualifiedName": "categoriesExported.IAmAClassWithCategories", - "href": "categoriesExported/IAmAClassWithCategories/IAmAClassWithCategories.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "IAmAClassWithCategories", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "categoriesExported.IAmAClassWithCategories.==", - "href": "categoriesExported/IAmAClassWithCategories/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "IAmAClassWithCategories", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "categoriesExported.IAmAClassWithCategories.hashCode", - "href": "categoriesExported/IAmAClassWithCategories/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "IAmAClassWithCategories", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "categoriesExported.IAmAClassWithCategories.noSuchMethod", - "href": "categoriesExported/IAmAClassWithCategories/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "IAmAClassWithCategories", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "categoriesExported.IAmAClassWithCategories.runtimeType", - "href": "categoriesExported/IAmAClassWithCategories/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "IAmAClassWithCategories", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "categoriesExported.IAmAClassWithCategories.toString", - "href": "categoriesExported/IAmAClassWithCategories/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "IAmAClassWithCategories", - "type": "class" - } - }, - { - "name": "code_in_comments", - "qualifiedName": "code_in_comments", - "href": "code_in_comments/code_in_comments-library.html", - "type": "library", - "overriddenDepth": 0 - }, - { - "name": "css", - "qualifiedName": "css", - "href": "css/css-library.html", - "type": "library", - "overriddenDepth": 0 - }, - { - "name": "theOnlyThingInTheLibrary", - "qualifiedName": "css.theOnlyThingInTheLibrary", - "href": "css/theOnlyThingInTheLibrary.html", - "type": "top-level property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "css", - "type": "library" - } - }, - { - "name": "ex", - "qualifiedName": "ex", - "href": "ex/ex-library.html", - "type": "library", - "overriddenDepth": 0 - }, - { - "name": "Animal", - "qualifiedName": "ex.Animal", - "href": "ex/Animal-class.html", - "type": "enum", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "operator ==", - "qualifiedName": "ex.Animal.==", - "href": "ex/Animal/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Animal", - "type": "enum" - } - }, - { - "name": "hashCode", - "qualifiedName": "ex.Animal.hashCode", - "href": "ex/Animal/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Animal", - "type": "enum" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "ex.Animal.noSuchMethod", - "href": "ex/Animal/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Animal", - "type": "enum" - } - }, - { - "name": "runtimeType", - "qualifiedName": "ex.Animal.runtimeType", - "href": "ex/Animal/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Animal", - "type": "enum" - } - }, - { - "name": "toString", - "qualifiedName": "ex.Animal.toString", - "href": "ex/Animal/toString.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "Animal", - "type": "enum" - } - }, - { - "name": "AnotherParameterizedClass", - "qualifiedName": "ex.AnotherParameterizedClass", - "href": "ex/AnotherParameterizedClass-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "AnotherParameterizedClass", - "qualifiedName": "ex.AnotherParameterizedClass", - "href": "ex/AnotherParameterizedClass/AnotherParameterizedClass.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AnotherParameterizedClass", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "ex.AnotherParameterizedClass.==", - "href": "ex/AnotherParameterizedClass/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AnotherParameterizedClass", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "ex.AnotherParameterizedClass.hashCode", - "href": "ex/AnotherParameterizedClass/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AnotherParameterizedClass", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "ex.AnotherParameterizedClass.noSuchMethod", - "href": "ex/AnotherParameterizedClass/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AnotherParameterizedClass", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "ex.AnotherParameterizedClass.runtimeType", - "href": "ex/AnotherParameterizedClass/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AnotherParameterizedClass", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "ex.AnotherParameterizedClass.toString", - "href": "ex/AnotherParameterizedClass/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AnotherParameterizedClass", - "type": "class" - } - }, - { - "name": "Apple", - "qualifiedName": "ex.Apple", - "href": "ex/Apple-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "Apple", - "qualifiedName": "ex.Apple", - "href": "ex/Apple/Apple.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Apple", - "type": "class" - } - }, - { - "name": "operator *", - "qualifiedName": "ex.Apple.*", - "href": "ex/Apple/operator_multiply.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Apple", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "ex.Apple.==", - "href": "ex/Apple/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Apple", - "type": "class" - } - }, - { - "name": "fieldWithTypedef", - "qualifiedName": "ex.Apple.fieldWithTypedef", - "href": "ex/Apple/fieldWithTypedef.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Apple", - "type": "class" - } - }, - { - "name": "Apple.fromString", - "qualifiedName": "ex.Apple.fromString", - "href": "ex/Apple/Apple.fromString.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Apple", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "ex.Apple.hashCode", - "href": "ex/Apple/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Apple", - "type": "class" - } - }, - { - "name": "isGreaterThan", - "qualifiedName": "ex.Apple.isGreaterThan", - "href": "ex/Apple/isGreaterThan.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Apple", - "type": "class" - } - }, - { - "name": "m", - "qualifiedName": "ex.Apple.m", - "href": "ex/Apple/m.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Apple", - "type": "class" - } - }, - { - "name": "m1", - "qualifiedName": "ex.Apple.m1", - "href": "ex/Apple/m1.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Apple", - "type": "class" - } - }, - { - "name": "methodWithTypedefParam", - "qualifiedName": "ex.Apple.methodWithTypedefParam", - "href": "ex/Apple/methodWithTypedefParam.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Apple", - "type": "class" - } - }, - { - "name": "n", - "qualifiedName": "ex.Apple.n", - "href": "ex/Apple/n-constant.html", - "type": "constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Apple", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "ex.Apple.noSuchMethod", - "href": "ex/Apple/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Apple", - "type": "class" - } - }, - { - "name": "paramFromExportLib", - "qualifiedName": "ex.Apple.paramFromExportLib", - "href": "ex/Apple/paramFromExportLib.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Apple", - "type": "class" - } - }, - { - "name": "printMsg", - "qualifiedName": "ex.Apple.printMsg", - "href": "ex/Apple/printMsg.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Apple", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "ex.Apple.runtimeType", - "href": "ex/Apple/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Apple", - "type": "class" - } - }, - { - "name": "s", - "qualifiedName": "ex.Apple.s", - "href": "ex/Apple/s.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Apple", - "type": "class" - } - }, - { - "name": "string", - "qualifiedName": "ex.Apple.string", - "href": "ex/Apple/string.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Apple", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "ex.Apple.toString", - "href": "ex/Apple/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Apple", - "type": "class" - } - }, - { - "name": "whataclass", - "qualifiedName": "ex.Apple.whataclass", - "href": "ex/Apple/whataclass.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Apple", - "type": "class" - } - }, - { - "name": "B", - "qualifiedName": "ex.B", - "href": "ex/B-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "B", - "qualifiedName": "ex.B", - "href": "ex/B/B.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "B", - "type": "class" - } - }, - { - "name": "abstractMethod", - "qualifiedName": "ex.B.abstractMethod", - "href": "ex/B/abstractMethod.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "B", - "type": "class" - } - }, - { - "name": "autoCompress", - "qualifiedName": "ex.B.autoCompress", - "href": "ex/B/autoCompress.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "B", - "type": "class" - } - }, - { - "name": "doNothing", - "qualifiedName": "ex.B.doNothing", - "href": "ex/B/doNothing.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "B", - "type": "class" - } - }, - { - "name": "isImplemented", - "qualifiedName": "ex.B.isImplemented", - "href": "ex/B/isImplemented.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "B", - "type": "class" - } - }, - { - "name": "list", - "qualifiedName": "ex.B.list", - "href": "ex/B/list.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "B", - "type": "class" - } - }, - { - "name": "m1", - "qualifiedName": "ex.B.m1", - "href": "ex/B/m1.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "B", - "type": "class" - } - }, - { - "name": "s", - "qualifiedName": "ex.B.s", - "href": "ex/B/s.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "B", - "type": "class" - } - }, - { - "name": "writeMsg", - "qualifiedName": "ex.B.writeMsg", - "href": "ex/B/writeMsg.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "B", - "type": "class" - } - }, - { - "name": "COLOR", - "qualifiedName": "ex.COLOR", - "href": "ex/COLOR-constant.html", - "type": "top-level constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "COLOR_GREEN", - "qualifiedName": "ex.COLOR_GREEN", - "href": "ex/COLOR_GREEN-constant.html", - "type": "top-level constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "COLOR_ORANGE", - "qualifiedName": "ex.COLOR_ORANGE", - "href": "ex/COLOR_ORANGE-constant.html", - "type": "top-level constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "COMPLEX_COLOR", - "qualifiedName": "ex.COMPLEX_COLOR", - "href": "ex/COMPLEX_COLOR-constant.html", - "type": "top-level constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "Cat", - "qualifiedName": "ex.Cat", - "href": "ex/Cat-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "Cat", - "qualifiedName": "ex.Cat", - "href": "ex/Cat/Cat.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Cat", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "ex.Cat.==", - "href": "ex/Cat/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Cat", - "type": "class" - } - }, - { - "name": "abstractMethod", - "qualifiedName": "ex.Cat.abstractMethod", - "href": "ex/Cat/abstractMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Cat", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "ex.Cat.hashCode", - "href": "ex/Cat/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Cat", - "type": "class" - } - }, - { - "name": "isImplemented", - "qualifiedName": "ex.Cat.isImplemented", - "href": "ex/Cat/isImplemented.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Cat", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "ex.Cat.noSuchMethod", - "href": "ex/Cat/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Cat", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "ex.Cat.runtimeType", - "href": "ex/Cat/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Cat", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "ex.Cat.toString", - "href": "ex/Cat/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Cat", - "type": "class" - } - }, - { - "name": "CatString", - "qualifiedName": "ex.CatString", - "href": "ex/CatString-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "CatString", - "qualifiedName": "ex.CatString", - "href": "ex/CatString/CatString.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "CatString", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "ex.CatString.==", - "href": "ex/CatString/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "CatString", - "type": "class" - } - }, - { - "name": "clear", - "qualifiedName": "ex.CatString.clear", - "href": "ex/CatString/clear.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "CatString", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "ex.CatString.hashCode", - "href": "ex/CatString/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "CatString", - "type": "class" - } - }, - { - "name": "isEmpty", - "qualifiedName": "ex.CatString.isEmpty", - "href": "ex/CatString/isEmpty.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "CatString", - "type": "class" - } - }, - { - "name": "isNotEmpty", - "qualifiedName": "ex.CatString.isNotEmpty", - "href": "ex/CatString/isNotEmpty.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "CatString", - "type": "class" - } - }, - { - "name": "length", - "qualifiedName": "ex.CatString.length", - "href": "ex/CatString/length.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "CatString", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "ex.CatString.noSuchMethod", - "href": "ex/CatString/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "CatString", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "ex.CatString.runtimeType", - "href": "ex/CatString/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "CatString", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "ex.CatString.toString", - "href": "ex/CatString/toString.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "CatString", - "type": "class" - } - }, - { - "name": "write", - "qualifiedName": "ex.CatString.write", - "href": "ex/CatString/write.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "CatString", - "type": "class" - } - }, - { - "name": "writeAll", - "qualifiedName": "ex.CatString.writeAll", - "href": "ex/CatString/writeAll.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "CatString", - "type": "class" - } - }, - { - "name": "writeCharCode", - "qualifiedName": "ex.CatString.writeCharCode", - "href": "ex/CatString/writeCharCode.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "CatString", - "type": "class" - } - }, - { - "name": "writeln", - "qualifiedName": "ex.CatString.writeln", - "href": "ex/CatString/writeln.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "CatString", - "type": "class" - } - }, - { - "name": "ConstantCat", - "qualifiedName": "ex.ConstantCat", - "href": "ex/ConstantCat-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "ConstantCat", - "qualifiedName": "ex.ConstantCat", - "href": "ex/ConstantCat/ConstantCat.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ConstantCat", - "type": "class" - } - }, - { - "name": "abstractMethod", - "qualifiedName": "ex.ConstantCat.abstractMethod", - "href": "ex/ConstantCat/abstractMethod.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "ConstantCat", - "type": "class" - } - }, - { - "name": "isImplemented", - "qualifiedName": "ex.ConstantCat.isImplemented", - "href": "ex/ConstantCat/isImplemented.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ConstantCat", - "type": "class" - } - }, - { - "name": "name", - "qualifiedName": "ex.ConstantCat.name", - "href": "ex/ConstantCat/name.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ConstantCat", - "type": "class" - } - }, - { - "name": "Deprecated", - "qualifiedName": "ex.Deprecated", - "href": "ex/Deprecated-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "Deprecated", - "qualifiedName": "ex.Deprecated", - "href": "ex/Deprecated/Deprecated.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Deprecated", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "ex.Deprecated.==", - "href": "ex/Deprecated/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Deprecated", - "type": "class" - } - }, - { - "name": "expires", - "qualifiedName": "ex.Deprecated.expires", - "href": "ex/Deprecated/expires.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Deprecated", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "ex.Deprecated.hashCode", - "href": "ex/Deprecated/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Deprecated", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "ex.Deprecated.noSuchMethod", - "href": "ex/Deprecated/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Deprecated", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "ex.Deprecated.runtimeType", - "href": "ex/Deprecated/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Deprecated", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "ex.Deprecated.toString", - "href": "ex/Deprecated/toString.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "Deprecated", - "type": "class" - } - }, - { - "name": "Dog", - "qualifiedName": "ex.Dog", - "href": "ex/Dog-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "Dog", - "qualifiedName": "ex.Dog", - "href": "ex/Dog/Dog.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "ex.Dog.==", - "href": "ex/Dog/operator_equals.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "aFinalField", - "qualifiedName": "ex.Dog.aFinalField", - "href": "ex/Dog/aFinalField.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "aGetterReturningRandomThings", - "qualifiedName": "ex.Dog.aGetterReturningRandomThings", - "href": "ex/Dog/aGetterReturningRandomThings.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "aName", - "qualifiedName": "ex.Dog.aName", - "href": "ex/Dog/aName-constant.html", - "type": "constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "aProtectedFinalField", - "qualifiedName": "ex.Dog.aProtectedFinalField", - "href": "ex/Dog/aProtectedFinalField.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "aStaticConstField", - "qualifiedName": "ex.Dog.aStaticConstField", - "href": "ex/Dog/aStaticConstField-constant.html", - "type": "constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "abstractMethod", - "qualifiedName": "ex.Dog.abstractMethod", - "href": "ex/Dog/abstractMethod.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "createDog", - "qualifiedName": "ex.Dog.createDog", - "href": "ex/Dog/createDog.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "Dog.deprecatedCreate", - "qualifiedName": "ex.Dog.deprecatedCreate", - "href": "ex/Dog/Dog.deprecatedCreate.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "deprecatedField", - "qualifiedName": "ex.Dog.deprecatedField", - "href": "ex/Dog/deprecatedField.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "deprecatedGetter", - "qualifiedName": "ex.Dog.deprecatedGetter", - "href": "ex/Dog/deprecatedGetter.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "deprecatedSetter", - "qualifiedName": "ex.Dog.deprecatedSetter", - "href": "ex/Dog/deprecatedSetter.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "foo", - "qualifiedName": "ex.Dog.foo", - "href": "ex/Dog/foo.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "getAnotherClassD", - "qualifiedName": "ex.Dog.getAnotherClassD", - "href": "ex/Dog/getAnotherClassD.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "getClassA", - "qualifiedName": "ex.Dog.getClassA", - "href": "ex/Dog/getClassA.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "isImplemented", - "qualifiedName": "ex.Dog.isImplemented", - "href": "ex/Dog/isImplemented.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "name", - "qualifiedName": "ex.Dog.name", - "href": "ex/Dog/name.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "somethingTasty", - "qualifiedName": "ex.Dog.somethingTasty", - "href": "ex/Dog/somethingTasty.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "staticGetterSetter", - "qualifiedName": "ex.Dog.staticGetterSetter", - "href": "ex/Dog/staticGetterSetter.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "testGeneric", - "qualifiedName": "ex.Dog.testGeneric", - "href": "ex/Dog/testGeneric.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "testGenericMethod", - "qualifiedName": "ex.Dog.testGenericMethod", - "href": "ex/Dog/testGenericMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "testMethod", - "qualifiedName": "ex.Dog.testMethod", - "href": "ex/Dog/testMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "withAnimation", - "qualifiedName": "ex.Dog.withAnimation", - "href": "ex/Dog/withAnimation.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "withAnimationBadHeight", - "qualifiedName": "ex.Dog.withAnimationBadHeight", - "href": "ex/Dog/withAnimationBadHeight.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "withAnimationBadWidth", - "qualifiedName": "ex.Dog.withAnimationBadWidth", - "href": "ex/Dog/withAnimationBadWidth.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "withAnimationInOneLineDoc", - "qualifiedName": "ex.Dog.withAnimationInOneLineDoc", - "href": "ex/Dog/withAnimationInOneLineDoc.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "withAnimationInline", - "qualifiedName": "ex.Dog.withAnimationInline", - "href": "ex/Dog/withAnimationInline.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "withAnimationNonUnique", - "qualifiedName": "ex.Dog.withAnimationNonUnique", - "href": "ex/Dog/withAnimationNonUnique.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "withAnimationNonUniqueDeprecated", - "qualifiedName": "ex.Dog.withAnimationNonUniqueDeprecated", - "href": "ex/Dog/withAnimationNonUniqueDeprecated.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "withAnimationOutOfOrder", - "qualifiedName": "ex.Dog.withAnimationOutOfOrder", - "href": "ex/Dog/withAnimationOutOfOrder.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "withAnimationUnknownArg", - "qualifiedName": "ex.Dog.withAnimationUnknownArg", - "href": "ex/Dog/withAnimationUnknownArg.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "withAnimationWrongParams", - "qualifiedName": "ex.Dog.withAnimationWrongParams", - "href": "ex/Dog/withAnimationWrongParams.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "withDeprecatedAnimation", - "qualifiedName": "ex.Dog.withDeprecatedAnimation", - "href": "ex/Dog/withDeprecatedAnimation.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "withInvalidNamedAnimation", - "qualifiedName": "ex.Dog.withInvalidNamedAnimation", - "href": "ex/Dog/withInvalidNamedAnimation.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "withMacro", - "qualifiedName": "ex.Dog.withMacro", - "href": "ex/Dog/withMacro.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "withMacro2", - "qualifiedName": "ex.Dog.withMacro2", - "href": "ex/Dog/withMacro2.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "withNamedAnimation", - "qualifiedName": "ex.Dog.withNamedAnimation", - "href": "ex/Dog/withNamedAnimation.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "withPrivateMacro", - "qualifiedName": "ex.Dog.withPrivateMacro", - "href": "ex/Dog/withPrivateMacro.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "withQuotedNamedAnimation", - "qualifiedName": "ex.Dog.withQuotedNamedAnimation", - "href": "ex/Dog/withQuotedNamedAnimation.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "withUndefinedMacro", - "qualifiedName": "ex.Dog.withUndefinedMacro", - "href": "ex/Dog/withUndefinedMacro.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Dog", - "type": "class" - } - }, - { - "name": "E", - "qualifiedName": "ex.E", - "href": "ex/E-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "E", - "qualifiedName": "ex.E", - "href": "ex/E/E.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "E", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "ex.E.==", - "href": "ex/E/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "E", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "ex.E.hashCode", - "href": "ex/E/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "E", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "ex.E.noSuchMethod", - "href": "ex/E/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "E", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "ex.E.runtimeType", - "href": "ex/E/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "E", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "ex.E.toString", - "href": "ex/E/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "E", - "type": "class" - } - }, - { - "name": "ExtendedShortName", - "qualifiedName": "ex.ExtendedShortName", - "href": "ex/ExtendedShortName-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "ExtendedShortName", - "qualifiedName": "ex.ExtendedShortName", - "href": "ex/ExtendedShortName/ExtendedShortName.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ExtendedShortName", - "type": "class" - } - }, - { - "name": "F", - "qualifiedName": "ex.F", - "href": "ex/F-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "F", - "qualifiedName": "ex.F", - "href": "ex/F/F.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "F", - "type": "class" - } - }, - { - "name": "methodWithGenericParam", - "qualifiedName": "ex.F.methodWithGenericParam", - "href": "ex/F/methodWithGenericParam.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "F", - "type": "class" - } - }, - { - "name": "test", - "qualifiedName": "ex.F.test", - "href": "ex/F/test.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "F", - "type": "class" - } - }, - { - "name": "ForAnnotation", - "qualifiedName": "ex.ForAnnotation", - "href": "ex/ForAnnotation-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "ForAnnotation", - "qualifiedName": "ex.ForAnnotation", - "href": "ex/ForAnnotation/ForAnnotation.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ForAnnotation", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "ex.ForAnnotation.==", - "href": "ex/ForAnnotation/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ForAnnotation", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "ex.ForAnnotation.hashCode", - "href": "ex/ForAnnotation/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ForAnnotation", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "ex.ForAnnotation.noSuchMethod", - "href": "ex/ForAnnotation/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ForAnnotation", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "ex.ForAnnotation.runtimeType", - "href": "ex/ForAnnotation/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ForAnnotation", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "ex.ForAnnotation.toString", - "href": "ex/ForAnnotation/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ForAnnotation", - "type": "class" - } - }, - { - "name": "value", - "qualifiedName": "ex.ForAnnotation.value", - "href": "ex/ForAnnotation/value.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ForAnnotation", - "type": "class" - } - }, - { - "name": "HasAnnotation", - "qualifiedName": "ex.HasAnnotation", - "href": "ex/HasAnnotation-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "HasAnnotation", - "qualifiedName": "ex.HasAnnotation", - "href": "ex/HasAnnotation/HasAnnotation.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasAnnotation", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "ex.HasAnnotation.==", - "href": "ex/HasAnnotation/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasAnnotation", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "ex.HasAnnotation.hashCode", - "href": "ex/HasAnnotation/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasAnnotation", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "ex.HasAnnotation.noSuchMethod", - "href": "ex/HasAnnotation/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasAnnotation", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "ex.HasAnnotation.runtimeType", - "href": "ex/HasAnnotation/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasAnnotation", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "ex.HasAnnotation.toString", - "href": "ex/HasAnnotation/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasAnnotation", - "type": "class" - } - }, - { - "name": "Helper", - "qualifiedName": "ex.Helper", - "href": "ex/Helper-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "Helper", - "qualifiedName": "ex.Helper", - "href": "ex/Helper/Helper.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Helper", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "ex.Helper.==", - "href": "ex/Helper/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Helper", - "type": "class" - } - }, - { - "name": "getContents", - "qualifiedName": "ex.Helper.getContents", - "href": "ex/Helper/getContents.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Helper", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "ex.Helper.hashCode", - "href": "ex/Helper/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Helper", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "ex.Helper.noSuchMethod", - "href": "ex/Helper/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Helper", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "ex.Helper.runtimeType", - "href": "ex/Helper/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Helper", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "ex.Helper.toString", - "href": "ex/Helper/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Helper", - "type": "class" - } - }, - { - "name": "Klass", - "qualifiedName": "ex.Klass", - "href": "ex/Klass-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "Klass", - "qualifiedName": "ex.Klass", - "href": "ex/Klass/Klass.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Klass", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "ex.Klass.==", - "href": "ex/Klass/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Klass", - "type": "class" - } - }, - { - "name": "another", - "qualifiedName": "ex.Klass.another", - "href": "ex/Klass/another.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Klass", - "type": "class" - } - }, - { - "name": "anotherMethod", - "qualifiedName": "ex.Klass.anotherMethod", - "href": "ex/Klass/anotherMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Klass", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "ex.Klass.hashCode", - "href": "ex/Klass/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Klass", - "type": "class" - } - }, - { - "name": "imAFactoryNoReally", - "qualifiedName": "ex.Klass.imAFactoryNoReally", - "href": "ex/Klass/imAFactoryNoReally.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Klass", - "type": "class" - } - }, - { - "name": "imProtected", - "qualifiedName": "ex.Klass.imProtected", - "href": "ex/Klass/imProtected.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Klass", - "type": "class" - } - }, - { - "name": "method", - "qualifiedName": "ex.Klass.method", - "href": "ex/Klass/method.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Klass", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "ex.Klass.noSuchMethod", - "href": "ex/Klass/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Klass", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "ex.Klass.runtimeType", - "href": "ex/Klass/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Klass", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "ex.Klass.toString", - "href": "ex/Klass/toString.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "Klass", - "type": "class" - } - }, - { - "name": "MY_CAT", - "qualifiedName": "ex.MY_CAT", - "href": "ex/MY_CAT-constant.html", - "type": "top-level constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "MyError", - "qualifiedName": "ex.MyError", - "href": "ex/MyError-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "MyError", - "qualifiedName": "ex.MyError", - "href": "ex/MyError/MyError.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MyError", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "ex.MyError.==", - "href": "ex/MyError/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MyError", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "ex.MyError.hashCode", - "href": "ex/MyError/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MyError", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "ex.MyError.noSuchMethod", - "href": "ex/MyError/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MyError", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "ex.MyError.runtimeType", - "href": "ex/MyError/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MyError", - "type": "class" - } - }, - { - "name": "stackTrace", - "qualifiedName": "ex.MyError.stackTrace", - "href": "ex/MyError/stackTrace.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MyError", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "ex.MyError.toString", - "href": "ex/MyError/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MyError", - "type": "class" - } - }, - { - "name": "MyErrorImplements", - "qualifiedName": "ex.MyErrorImplements", - "href": "ex/MyErrorImplements-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "MyErrorImplements", - "qualifiedName": "ex.MyErrorImplements", - "href": "ex/MyErrorImplements/MyErrorImplements.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MyErrorImplements", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "ex.MyErrorImplements.==", - "href": "ex/MyErrorImplements/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MyErrorImplements", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "ex.MyErrorImplements.hashCode", - "href": "ex/MyErrorImplements/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MyErrorImplements", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "ex.MyErrorImplements.noSuchMethod", - "href": "ex/MyErrorImplements/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MyErrorImplements", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "ex.MyErrorImplements.runtimeType", - "href": "ex/MyErrorImplements/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MyErrorImplements", - "type": "class" - } - }, - { - "name": "stackTrace", - "qualifiedName": "ex.MyErrorImplements.stackTrace", - "href": "ex/MyErrorImplements/stackTrace.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MyErrorImplements", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "ex.MyErrorImplements.toString", - "href": "ex/MyErrorImplements/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MyErrorImplements", - "type": "class" - } - }, - { - "name": "MyException", - "qualifiedName": "ex.MyException", - "href": "ex/MyException-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "MyException", - "qualifiedName": "ex.MyException", - "href": "ex/MyException/MyException.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MyException", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "ex.MyException.==", - "href": "ex/MyException/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MyException", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "ex.MyException.hashCode", - "href": "ex/MyException/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MyException", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "ex.MyException.noSuchMethod", - "href": "ex/MyException/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MyException", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "ex.MyException.runtimeType", - "href": "ex/MyException/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MyException", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "ex.MyException.toString", - "href": "ex/MyException/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MyException", - "type": "class" - } - }, - { - "name": "MyExceptionImplements", - "qualifiedName": "ex.MyExceptionImplements", - "href": "ex/MyExceptionImplements-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "MyExceptionImplements", - "qualifiedName": "ex.MyExceptionImplements", - "href": "ex/MyExceptionImplements/MyExceptionImplements.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MyExceptionImplements", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "ex.MyExceptionImplements.==", - "href": "ex/MyExceptionImplements/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MyExceptionImplements", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "ex.MyExceptionImplements.hashCode", - "href": "ex/MyExceptionImplements/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MyExceptionImplements", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "ex.MyExceptionImplements.noSuchMethod", - "href": "ex/MyExceptionImplements/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MyExceptionImplements", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "ex.MyExceptionImplements.runtimeType", - "href": "ex/MyExceptionImplements/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MyExceptionImplements", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "ex.MyExceptionImplements.toString", - "href": "ex/MyExceptionImplements/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MyExceptionImplements", - "type": "class" - } - }, - { - "name": "PRETTY_COLORS", - "qualifiedName": "ex.PRETTY_COLORS", - "href": "ex/PRETTY_COLORS-constant.html", - "type": "top-level constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "ParameterizedClass", - "qualifiedName": "ex.ParameterizedClass", - "href": "ex/ParameterizedClass-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "ParameterizedClass", - "qualifiedName": "ex.ParameterizedClass", - "href": "ex/ParameterizedClass/ParameterizedClass.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ParameterizedClass", - "type": "class" - } - }, - { - "name": "operator +", - "qualifiedName": "ex.ParameterizedClass.+", - "href": "ex/ParameterizedClass/operator_plus.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ParameterizedClass", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "ex.ParameterizedClass.==", - "href": "ex/ParameterizedClass/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ParameterizedClass", - "type": "class" - } - }, - { - "name": "aInheritedField", - "qualifiedName": "ex.ParameterizedClass.aInheritedField", - "href": "ex/ParameterizedClass/aInheritedField.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ParameterizedClass", - "type": "class" - } - }, - { - "name": "aInheritedGetter", - "qualifiedName": "ex.ParameterizedClass.aInheritedGetter", - "href": "ex/ParameterizedClass/aInheritedGetter.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ParameterizedClass", - "type": "class" - } - }, - { - "name": "aInheritedMethod", - "qualifiedName": "ex.ParameterizedClass.aInheritedMethod", - "href": "ex/ParameterizedClass/aInheritedMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ParameterizedClass", - "type": "class" - } - }, - { - "name": "aInheritedSetter", - "qualifiedName": "ex.ParameterizedClass.aInheritedSetter", - "href": "ex/ParameterizedClass/aInheritedSetter.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ParameterizedClass", - "type": "class" - } - }, - { - "name": "aInheritedTypedefReturningMethod", - "qualifiedName": "ex.ParameterizedClass.aInheritedTypedefReturningMethod", - "href": "ex/ParameterizedClass/aInheritedTypedefReturningMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ParameterizedClass", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "ex.ParameterizedClass.hashCode", - "href": "ex/ParameterizedClass/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ParameterizedClass", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "ex.ParameterizedClass.noSuchMethod", - "href": "ex/ParameterizedClass/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ParameterizedClass", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "ex.ParameterizedClass.runtimeType", - "href": "ex/ParameterizedClass/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ParameterizedClass", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "ex.ParameterizedClass.toString", - "href": "ex/ParameterizedClass/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ParameterizedClass", - "type": "class" - } - }, - { - "name": "ParameterizedTypedef", - "qualifiedName": "ex.ParameterizedTypedef", - "href": "ex/ParameterizedTypedef.html", - "type": "typedef", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "PublicClassExtendsPrivateClass", - "qualifiedName": "ex.PublicClassExtendsPrivateClass", - "href": "ex/PublicClassExtendsPrivateClass-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "PublicClassExtendsPrivateClass", - "qualifiedName": "ex.PublicClassExtendsPrivateClass", - "href": "ex/PublicClassExtendsPrivateClass/PublicClassExtendsPrivateClass.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "PublicClassExtendsPrivateClass", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "ex.PublicClassExtendsPrivateClass.==", - "href": "ex/PublicClassExtendsPrivateClass/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "PublicClassExtendsPrivateClass", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "ex.PublicClassExtendsPrivateClass.hashCode", - "href": "ex/PublicClassExtendsPrivateClass/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "PublicClassExtendsPrivateClass", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "ex.PublicClassExtendsPrivateClass.noSuchMethod", - "href": "ex/PublicClassExtendsPrivateClass/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "PublicClassExtendsPrivateClass", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "ex.PublicClassExtendsPrivateClass.runtimeType", - "href": "ex/PublicClassExtendsPrivateClass/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "PublicClassExtendsPrivateClass", - "type": "class" - } - }, - { - "name": "test", - "qualifiedName": "ex.PublicClassExtendsPrivateClass.test", - "href": "ex/PublicClassExtendsPrivateClass/test.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "PublicClassExtendsPrivateClass", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "ex.PublicClassExtendsPrivateClass.toString", - "href": "ex/PublicClassExtendsPrivateClass/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "PublicClassExtendsPrivateClass", - "type": "class" - } - }, - { - "name": "PublicClassImplementsPrivateInterface", - "qualifiedName": "ex.PublicClassImplementsPrivateInterface", - "href": "ex/PublicClassImplementsPrivateInterface-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "PublicClassImplementsPrivateInterface", - "qualifiedName": "ex.PublicClassImplementsPrivateInterface", - "href": "ex/PublicClassImplementsPrivateInterface/PublicClassImplementsPrivateInterface.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "PublicClassImplementsPrivateInterface", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "ex.PublicClassImplementsPrivateInterface.==", - "href": "ex/PublicClassImplementsPrivateInterface/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "PublicClassImplementsPrivateInterface", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "ex.PublicClassImplementsPrivateInterface.hashCode", - "href": "ex/PublicClassImplementsPrivateInterface/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "PublicClassImplementsPrivateInterface", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "ex.PublicClassImplementsPrivateInterface.noSuchMethod", - "href": "ex/PublicClassImplementsPrivateInterface/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "PublicClassImplementsPrivateInterface", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "ex.PublicClassImplementsPrivateInterface.runtimeType", - "href": "ex/PublicClassImplementsPrivateInterface/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "PublicClassImplementsPrivateInterface", - "type": "class" - } - }, - { - "name": "test", - "qualifiedName": "ex.PublicClassImplementsPrivateInterface.test", - "href": "ex/PublicClassImplementsPrivateInterface/test.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "PublicClassImplementsPrivateInterface", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "ex.PublicClassImplementsPrivateInterface.toString", - "href": "ex/PublicClassImplementsPrivateInterface/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "PublicClassImplementsPrivateInterface", - "type": "class" - } - }, - { - "name": "ShapeType", - "qualifiedName": "ex.ShapeType", - "href": "ex/ShapeType-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "operator ==", - "qualifiedName": "ex.ShapeType.==", - "href": "ex/ShapeType/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ShapeType", - "type": "class" - } - }, - { - "name": "ellipse", - "qualifiedName": "ex.ShapeType.ellipse", - "href": "ex/ShapeType/ellipse-constant.html", - "type": "constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ShapeType", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "ex.ShapeType.hashCode", - "href": "ex/ShapeType/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ShapeType", - "type": "class" - } - }, - { - "name": "name", - "qualifiedName": "ex.ShapeType.name", - "href": "ex/ShapeType/name.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ShapeType", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "ex.ShapeType.noSuchMethod", - "href": "ex/ShapeType/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ShapeType", - "type": "class" - } - }, - { - "name": "rect", - "qualifiedName": "ex.ShapeType.rect", - "href": "ex/ShapeType/rect-constant.html", - "type": "constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ShapeType", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "ex.ShapeType.runtimeType", - "href": "ex/ShapeType/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ShapeType", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "ex.ShapeType.toString", - "href": "ex/ShapeType/toString.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "ShapeType", - "type": "class" - } - }, - { - "name": "ShortName", - "qualifiedName": "ex.ShortName", - "href": "ex/ShortName-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "ShortName", - "qualifiedName": "ex.ShortName", - "href": "ex/ShortName/ShortName.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ShortName", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "ex.ShortName.==", - "href": "ex/ShortName/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ShortName", - "type": "class" - } - }, - { - "name": "aParameter", - "qualifiedName": "ex.ShortName.aParameter", - "href": "ex/ShortName/aParameter.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ShortName", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "ex.ShortName.hashCode", - "href": "ex/ShortName/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ShortName", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "ex.ShortName.noSuchMethod", - "href": "ex/ShortName/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ShortName", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "ex.ShortName.runtimeType", - "href": "ex/ShortName/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ShortName", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "ex.ShortName.toString", - "href": "ex/ShortName/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ShortName", - "type": "class" - } - }, - { - "name": "SpecializedDuration", - "qualifiedName": "ex.SpecializedDuration", - "href": "ex/SpecializedDuration-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "SpecializedDuration", - "qualifiedName": "ex.SpecializedDuration", - "href": "ex/SpecializedDuration/SpecializedDuration.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecializedDuration", - "type": "class" - } - }, - { - "name": "operator *", - "qualifiedName": "ex.SpecializedDuration.*", - "href": "ex/SpecializedDuration/operator_multiply.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecializedDuration", - "type": "class" - } - }, - { - "name": "operator +", - "qualifiedName": "ex.SpecializedDuration.+", - "href": "ex/SpecializedDuration/operator_plus.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecializedDuration", - "type": "class" - } - }, - { - "name": "operator -", - "qualifiedName": "ex.SpecializedDuration.-", - "href": "ex/SpecializedDuration/operator_minus.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecializedDuration", - "type": "class" - } - }, - { - "name": "operator <", - "qualifiedName": "ex.SpecializedDuration.<", - "href": "ex/SpecializedDuration/operator_less.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecializedDuration", - "type": "class" - } - }, - { - "name": "operator <=", - "qualifiedName": "ex.SpecializedDuration.<=", - "href": "ex/SpecializedDuration/operator_less_equal.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecializedDuration", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "ex.SpecializedDuration.==", - "href": "ex/SpecializedDuration/operator_equals.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecializedDuration", - "type": "class" - } - }, - { - "name": "operator >", - "qualifiedName": "ex.SpecializedDuration.>", - "href": "ex/SpecializedDuration/operator_greater.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecializedDuration", - "type": "class" - } - }, - { - "name": "operator >=", - "qualifiedName": "ex.SpecializedDuration.>=", - "href": "ex/SpecializedDuration/operator_greater_equal.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecializedDuration", - "type": "class" - } - }, - { - "name": "abs", - "qualifiedName": "ex.SpecializedDuration.abs", - "href": "ex/SpecializedDuration/abs.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecializedDuration", - "type": "class" - } - }, - { - "name": "compareTo", - "qualifiedName": "ex.SpecializedDuration.compareTo", - "href": "ex/SpecializedDuration/compareTo.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecializedDuration", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "ex.SpecializedDuration.hashCode", - "href": "ex/SpecializedDuration/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecializedDuration", - "type": "class" - } - }, - { - "name": "inDays", - "qualifiedName": "ex.SpecializedDuration.inDays", - "href": "ex/SpecializedDuration/inDays.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecializedDuration", - "type": "class" - } - }, - { - "name": "inHours", - "qualifiedName": "ex.SpecializedDuration.inHours", - "href": "ex/SpecializedDuration/inHours.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecializedDuration", - "type": "class" - } - }, - { - "name": "inMicroseconds", - "qualifiedName": "ex.SpecializedDuration.inMicroseconds", - "href": "ex/SpecializedDuration/inMicroseconds.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecializedDuration", - "type": "class" - } - }, - { - "name": "inMilliseconds", - "qualifiedName": "ex.SpecializedDuration.inMilliseconds", - "href": "ex/SpecializedDuration/inMilliseconds.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecializedDuration", - "type": "class" - } - }, - { - "name": "inMinutes", - "qualifiedName": "ex.SpecializedDuration.inMinutes", - "href": "ex/SpecializedDuration/inMinutes.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecializedDuration", - "type": "class" - } - }, - { - "name": "inSeconds", - "qualifiedName": "ex.SpecializedDuration.inSeconds", - "href": "ex/SpecializedDuration/inSeconds.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecializedDuration", - "type": "class" - } - }, - { - "name": "isNegative", - "qualifiedName": "ex.SpecializedDuration.isNegative", - "href": "ex/SpecializedDuration/isNegative.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecializedDuration", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "ex.SpecializedDuration.noSuchMethod", - "href": "ex/SpecializedDuration/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecializedDuration", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "ex.SpecializedDuration.runtimeType", - "href": "ex/SpecializedDuration/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecializedDuration", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "ex.SpecializedDuration.toString", - "href": "ex/SpecializedDuration/toString.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecializedDuration", - "type": "class" - } - }, - { - "name": "operator unary-", - "qualifiedName": "ex.SpecializedDuration.unary-", - "href": "ex/SpecializedDuration/operator_unary_minus.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecializedDuration", - "type": "class" - } - }, - { - "name": "operator ~/", - "qualifiedName": "ex.SpecializedDuration.~/", - "href": "ex/SpecializedDuration/operator_truncate_divide.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecializedDuration", - "type": "class" - } - }, - { - "name": "TemplatedClass", - "qualifiedName": "ex.TemplatedClass", - "href": "ex/TemplatedClass-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "TemplatedClass", - "qualifiedName": "ex.TemplatedClass", - "href": "ex/TemplatedClass/TemplatedClass.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TemplatedClass", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "ex.TemplatedClass.==", - "href": "ex/TemplatedClass/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TemplatedClass", - "type": "class" - } - }, - { - "name": "aMethod", - "qualifiedName": "ex.TemplatedClass.aMethod", - "href": "ex/TemplatedClass/aMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TemplatedClass", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "ex.TemplatedClass.hashCode", - "href": "ex/TemplatedClass/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TemplatedClass", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "ex.TemplatedClass.noSuchMethod", - "href": "ex/TemplatedClass/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TemplatedClass", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "ex.TemplatedClass.runtimeType", - "href": "ex/TemplatedClass/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TemplatedClass", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "ex.TemplatedClass.toString", - "href": "ex/TemplatedClass/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TemplatedClass", - "type": "class" - } - }, - { - "name": "TemplatedInterface", - "qualifiedName": "ex.TemplatedInterface", - "href": "ex/TemplatedInterface-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "TemplatedInterface", - "qualifiedName": "ex.TemplatedInterface", - "href": "ex/TemplatedInterface/TemplatedInterface.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TemplatedInterface", - "type": "class" - } - }, - { - "name": "aField", - "qualifiedName": "ex.TemplatedInterface.aField", - "href": "ex/TemplatedInterface/aField.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TemplatedInterface", - "type": "class" - } - }, - { - "name": "aGetter", - "qualifiedName": "ex.TemplatedInterface.aGetter", - "href": "ex/TemplatedInterface/aGetter.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TemplatedInterface", - "type": "class" - } - }, - { - "name": "aMethodInterface", - "qualifiedName": "ex.TemplatedInterface.aMethodInterface", - "href": "ex/TemplatedInterface/aMethodInterface.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TemplatedInterface", - "type": "class" - } - }, - { - "name": "aSetter", - "qualifiedName": "ex.TemplatedInterface.aSetter", - "href": "ex/TemplatedInterface/aSetter.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TemplatedInterface", - "type": "class" - } - }, - { - "name": "aTypedefReturningMethodInterface", - "qualifiedName": "ex.TemplatedInterface.aTypedefReturningMethodInterface", - "href": "ex/TemplatedInterface/aTypedefReturningMethodInterface.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TemplatedInterface", - "type": "class" - } - }, - { - "name": "TypedFunctionsWithoutTypedefs", - "qualifiedName": "ex.TypedFunctionsWithoutTypedefs", - "href": "ex/TypedFunctionsWithoutTypedefs-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "TypedFunctionsWithoutTypedefs", - "qualifiedName": "ex.TypedFunctionsWithoutTypedefs", - "href": "ex/TypedFunctionsWithoutTypedefs/TypedFunctionsWithoutTypedefs.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TypedFunctionsWithoutTypedefs", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "ex.TypedFunctionsWithoutTypedefs.==", - "href": "ex/TypedFunctionsWithoutTypedefs/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TypedFunctionsWithoutTypedefs", - "type": "class" - } - }, - { - "name": "getAComplexTypedef", - "qualifiedName": "ex.TypedFunctionsWithoutTypedefs.getAComplexTypedef", - "href": "ex/TypedFunctionsWithoutTypedefs/getAComplexTypedef.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TypedFunctionsWithoutTypedefs", - "type": "class" - } - }, - { - "name": "getAFunctionReturningBool", - "qualifiedName": "ex.TypedFunctionsWithoutTypedefs.getAFunctionReturningBool", - "href": "ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningBool.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TypedFunctionsWithoutTypedefs", - "type": "class" - } - }, - { - "name": "getAFunctionReturningVoid", - "qualifiedName": "ex.TypedFunctionsWithoutTypedefs.getAFunctionReturningVoid", - "href": "ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningVoid.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TypedFunctionsWithoutTypedefs", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "ex.TypedFunctionsWithoutTypedefs.hashCode", - "href": "ex/TypedFunctionsWithoutTypedefs/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TypedFunctionsWithoutTypedefs", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "ex.TypedFunctionsWithoutTypedefs.noSuchMethod", - "href": "ex/TypedFunctionsWithoutTypedefs/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TypedFunctionsWithoutTypedefs", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "ex.TypedFunctionsWithoutTypedefs.runtimeType", - "href": "ex/TypedFunctionsWithoutTypedefs/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TypedFunctionsWithoutTypedefs", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "ex.TypedFunctionsWithoutTypedefs.toString", - "href": "ex/TypedFunctionsWithoutTypedefs/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TypedFunctionsWithoutTypedefs", - "type": "class" - } - }, - { - "name": "WithGeneric", - "qualifiedName": "ex.WithGeneric", - "href": "ex/WithGeneric-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "WithGeneric", - "qualifiedName": "ex.WithGeneric", - "href": "ex/WithGeneric/WithGeneric.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "WithGeneric", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "ex.WithGeneric.==", - "href": "ex/WithGeneric/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "WithGeneric", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "ex.WithGeneric.hashCode", - "href": "ex/WithGeneric/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "WithGeneric", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "ex.WithGeneric.noSuchMethod", - "href": "ex/WithGeneric/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "WithGeneric", - "type": "class" - } - }, - { - "name": "prop", - "qualifiedName": "ex.WithGeneric.prop", - "href": "ex/WithGeneric/prop.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "WithGeneric", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "ex.WithGeneric.runtimeType", - "href": "ex/WithGeneric/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "WithGeneric", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "ex.WithGeneric.toString", - "href": "ex/WithGeneric/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "WithGeneric", - "type": "class" - } - }, - { - "name": "WithGenericSub", - "qualifiedName": "ex.WithGenericSub", - "href": "ex/WithGenericSub-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "WithGenericSub", - "qualifiedName": "ex.WithGenericSub", - "href": "ex/WithGenericSub/WithGenericSub.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "WithGenericSub", - "type": "class" - } - }, - { - "name": "aComplexTypedef", - "qualifiedName": "ex.aComplexTypedef", - "href": "ex/aComplexTypedef.html", - "type": "typedef", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "aThingToDo", - "qualifiedName": "ex.aThingToDo", - "href": "ex/aThingToDo-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "aThingToDo", - "qualifiedName": "ex.aThingToDo", - "href": "ex/aThingToDo/aThingToDo.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "aThingToDo", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "ex.aThingToDo.==", - "href": "ex/aThingToDo/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "aThingToDo", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "ex.aThingToDo.hashCode", - "href": "ex/aThingToDo/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "aThingToDo", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "ex.aThingToDo.noSuchMethod", - "href": "ex/aThingToDo/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "aThingToDo", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "ex.aThingToDo.runtimeType", - "href": "ex/aThingToDo/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "aThingToDo", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "ex.aThingToDo.toString", - "href": "ex/aThingToDo/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "aThingToDo", - "type": "class" - } - }, - { - "name": "what", - "qualifiedName": "ex.aThingToDo.what", - "href": "ex/aThingToDo/what.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "aThingToDo", - "type": "class" - } - }, - { - "name": "who", - "qualifiedName": "ex.aThingToDo.who", - "href": "ex/aThingToDo/who.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "aThingToDo", - "type": "class" - } - }, - { - "name": "deprecated", - "qualifiedName": "ex.deprecated", - "href": "ex/deprecated-constant.html", - "type": "top-level constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "deprecatedField", - "qualifiedName": "ex.deprecatedField", - "href": "ex/deprecatedField.html", - "type": "top-level property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "deprecatedGetter", - "qualifiedName": "ex.deprecatedGetter", - "href": "ex/deprecatedGetter.html", - "type": "top-level property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "deprecatedSetter", - "qualifiedName": "ex.deprecatedSetter", - "href": "ex/deprecatedSetter.html", - "type": "top-level property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "function1", - "qualifiedName": "ex.function1", - "href": "ex/function1.html", - "type": "function", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "genericFunction", - "qualifiedName": "ex.genericFunction", - "href": "ex/genericFunction.html", - "type": "function", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "incorrectDocReference", - "qualifiedName": "ex.incorrectDocReference", - "href": "ex/incorrectDocReference-constant.html", - "type": "top-level constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "incorrectDocReferenceFromEx", - "qualifiedName": "ex.incorrectDocReferenceFromEx", - "href": "ex/incorrectDocReferenceFromEx-constant.html", - "type": "top-level constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "number", - "qualifiedName": "ex.number", - "href": "ex/number.html", - "type": "top-level property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "processMessage", - "qualifiedName": "ex.processMessage", - "href": "ex/processMessage.html", - "type": "typedef", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "y", - "qualifiedName": "ex.y", - "href": "ex/y.html", - "type": "top-level property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ex", - "type": "library" - } - }, - { - "name": "fake", - "qualifiedName": "fake", - "href": "fake/fake-library.html", - "type": "library", - "overriddenDepth": 0 - }, - { - "name": "ABaseClass", - "qualifiedName": "fake.ABaseClass", - "href": "fake/ABaseClass-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "ABaseClass", - "qualifiedName": "fake.ABaseClass", - "href": "fake/ABaseClass/ABaseClass.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ABaseClass", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.ABaseClass.==", - "href": "fake/ABaseClass/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ABaseClass", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.ABaseClass.hashCode", - "href": "fake/ABaseClass/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ABaseClass", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.ABaseClass.noSuchMethod", - "href": "fake/ABaseClass/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ABaseClass", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.ABaseClass.runtimeType", - "href": "fake/ABaseClass/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ABaseClass", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.ABaseClass.toString", - "href": "fake/ABaseClass/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ABaseClass", - "type": "class" - } - }, - { - "name": "AClassUsingASuperMixin", - "qualifiedName": "fake.AClassUsingASuperMixin", - "href": "fake/AClassUsingASuperMixin-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "AClassUsingASuperMixin", - "qualifiedName": "fake.AClassUsingASuperMixin", - "href": "fake/AClassUsingASuperMixin/AClassUsingASuperMixin.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AClassUsingASuperMixin", - "type": "class" - } - }, - { - "name": "AClassWithFancyProperties", - "qualifiedName": "fake.AClassWithFancyProperties", - "href": "fake/AClassWithFancyProperties-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "AClassWithFancyProperties", - "qualifiedName": "fake.AClassWithFancyProperties", - "href": "fake/AClassWithFancyProperties/AClassWithFancyProperties.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AClassWithFancyProperties", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.AClassWithFancyProperties.==", - "href": "fake/AClassWithFancyProperties/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AClassWithFancyProperties", - "type": "class" - } - }, - { - "name": "aProperty", - "qualifiedName": "fake.AClassWithFancyProperties.aProperty", - "href": "fake/AClassWithFancyProperties/aProperty.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AClassWithFancyProperties", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.AClassWithFancyProperties.hashCode", - "href": "fake/AClassWithFancyProperties/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AClassWithFancyProperties", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.AClassWithFancyProperties.noSuchMethod", - "href": "fake/AClassWithFancyProperties/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AClassWithFancyProperties", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.AClassWithFancyProperties.runtimeType", - "href": "fake/AClassWithFancyProperties/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AClassWithFancyProperties", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.AClassWithFancyProperties.toString", - "href": "fake/AClassWithFancyProperties/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AClassWithFancyProperties", - "type": "class" - } - }, - { - "name": "AMixinCallingSuper", - "qualifiedName": "fake.AMixinCallingSuper", - "href": "fake/AMixinCallingSuper-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "AMixinCallingSuper", - "qualifiedName": "fake.AMixinCallingSuper", - "href": "fake/AMixinCallingSuper/AMixinCallingSuper.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AMixinCallingSuper", - "type": "class" - } - }, - { - "name": "superString", - "qualifiedName": "fake.AMixinCallingSuper.superString", - "href": "fake/AMixinCallingSuper/superString.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AMixinCallingSuper", - "type": "class" - } - }, - { - "name": "ATypeTakingClass", - "qualifiedName": "fake.ATypeTakingClass", - "href": "fake/ATypeTakingClass-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "ATypeTakingClass", - "qualifiedName": "fake.ATypeTakingClass", - "href": "fake/ATypeTakingClass/ATypeTakingClass.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ATypeTakingClass", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.ATypeTakingClass.==", - "href": "fake/ATypeTakingClass/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ATypeTakingClass", - "type": "class" - } - }, - { - "name": "aMethodMaybeReturningVoid", - "qualifiedName": "fake.ATypeTakingClass.aMethodMaybeReturningVoid", - "href": "fake/ATypeTakingClass/aMethodMaybeReturningVoid.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ATypeTakingClass", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.ATypeTakingClass.hashCode", - "href": "fake/ATypeTakingClass/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ATypeTakingClass", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.ATypeTakingClass.noSuchMethod", - "href": "fake/ATypeTakingClass/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ATypeTakingClass", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.ATypeTakingClass.runtimeType", - "href": "fake/ATypeTakingClass/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ATypeTakingClass", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.ATypeTakingClass.toString", - "href": "fake/ATypeTakingClass/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ATypeTakingClass", - "type": "class" - } - }, - { - "name": "ATypeTakingClassMixedIn", - "qualifiedName": "fake.ATypeTakingClassMixedIn", - "href": "fake/ATypeTakingClassMixedIn-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "ATypeTakingClassMixedIn", - "qualifiedName": "fake.ATypeTakingClassMixedIn", - "href": "fake/ATypeTakingClassMixedIn/ATypeTakingClassMixedIn.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ATypeTakingClassMixedIn", - "type": "class" - } - }, - { - "name": "Annotation", - "qualifiedName": "fake.Annotation", - "href": "fake/Annotation-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "Annotation", - "qualifiedName": "fake.Annotation", - "href": "fake/Annotation/Annotation.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Annotation", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.Annotation.==", - "href": "fake/Annotation/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Annotation", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.Annotation.hashCode", - "href": "fake/Annotation/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Annotation", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.Annotation.noSuchMethod", - "href": "fake/Annotation/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Annotation", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.Annotation.runtimeType", - "href": "fake/Annotation/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Annotation", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.Annotation.toString", - "href": "fake/Annotation/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Annotation", - "type": "class" - } - }, - { - "name": "value", - "qualifiedName": "fake.Annotation.value", - "href": "fake/Annotation/value.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Annotation", - "type": "class" - } - }, - { - "name": "AnotherInterface", - "qualifiedName": "fake.AnotherInterface", - "href": "fake/AnotherInterface-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "AnotherInterface", - "qualifiedName": "fake.AnotherInterface", - "href": "fake/AnotherInterface/AnotherInterface.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AnotherInterface", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.AnotherInterface.==", - "href": "fake/AnotherInterface/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AnotherInterface", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.AnotherInterface.hashCode", - "href": "fake/AnotherInterface/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AnotherInterface", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.AnotherInterface.noSuchMethod", - "href": "fake/AnotherInterface/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AnotherInterface", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.AnotherInterface.runtimeType", - "href": "fake/AnotherInterface/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AnotherInterface", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.AnotherInterface.toString", - "href": "fake/AnotherInterface/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AnotherInterface", - "type": "class" - } - }, - { - "name": "BaseForDocComments", - "qualifiedName": "fake.BaseForDocComments", - "href": "fake/BaseForDocComments-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "BaseForDocComments", - "qualifiedName": "fake.BaseForDocComments", - "href": "fake/BaseForDocComments/BaseForDocComments.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "BaseForDocComments", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.BaseForDocComments.==", - "href": "fake/BaseForDocComments/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "BaseForDocComments", - "type": "class" - } - }, - { - "name": "operator []", - "qualifiedName": "fake.BaseForDocComments.[]", - "href": "fake/BaseForDocComments/operator_get.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "BaseForDocComments", - "type": "class" - } - }, - { - "name": "anotherMethod", - "qualifiedName": "fake.BaseForDocComments.anotherMethod", - "href": "fake/BaseForDocComments/anotherMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "BaseForDocComments", - "type": "class" - } - }, - { - "name": "doAwesomeStuff", - "qualifiedName": "fake.BaseForDocComments.doAwesomeStuff", - "href": "fake/BaseForDocComments/doAwesomeStuff.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "BaseForDocComments", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.BaseForDocComments.hashCode", - "href": "fake/BaseForDocComments/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "BaseForDocComments", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.BaseForDocComments.noSuchMethod", - "href": "fake/BaseForDocComments/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "BaseForDocComments", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.BaseForDocComments.runtimeType", - "href": "fake/BaseForDocComments/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "BaseForDocComments", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.BaseForDocComments.toString", - "href": "fake/BaseForDocComments/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "BaseForDocComments", - "type": "class" - } - }, - { - "name": "BaseThingy", - "qualifiedName": "fake.BaseThingy", - "href": "fake/BaseThingy-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "BaseThingy", - "qualifiedName": "fake.BaseThingy", - "href": "fake/BaseThingy/BaseThingy.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "BaseThingy", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.BaseThingy.==", - "href": "fake/BaseThingy/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "BaseThingy", - "type": "class" - } - }, - { - "name": "aImplementingThingy", - "qualifiedName": "fake.BaseThingy.aImplementingThingy", - "href": "fake/BaseThingy/aImplementingThingy.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "BaseThingy", - "type": "class" - } - }, - { - "name": "aImplementingThingyField", - "qualifiedName": "fake.BaseThingy.aImplementingThingyField", - "href": "fake/BaseThingy/aImplementingThingyField.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "BaseThingy", - "type": "class" - } - }, - { - "name": "aImplementingThingyMethod", - "qualifiedName": "fake.BaseThingy.aImplementingThingyMethod", - "href": "fake/BaseThingy/aImplementingThingyMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "BaseThingy", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.BaseThingy.hashCode", - "href": "fake/BaseThingy/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "BaseThingy", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.BaseThingy.noSuchMethod", - "href": "fake/BaseThingy/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "BaseThingy", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.BaseThingy.runtimeType", - "href": "fake/BaseThingy/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "BaseThingy", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.BaseThingy.toString", - "href": "fake/BaseThingy/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "BaseThingy", - "type": "class" - } - }, - { - "name": "BaseThingy2", - "qualifiedName": "fake.BaseThingy2", - "href": "fake/BaseThingy2-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "BaseThingy2", - "qualifiedName": "fake.BaseThingy2", - "href": "fake/BaseThingy2/BaseThingy2.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "BaseThingy2", - "type": "class" - } - }, - { - "name": "aImplementingThingy", - "qualifiedName": "fake.BaseThingy2.aImplementingThingy", - "href": "fake/BaseThingy2/aImplementingThingy.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "BaseThingy2", - "type": "class" - } - }, - { - "name": "CUSTOM_CLASS", - "qualifiedName": "fake.CUSTOM_CLASS", - "href": "fake/CUSTOM_CLASS-constant.html", - "type": "top-level constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "CUSTOM_CLASS_PRIVATE", - "qualifiedName": "fake.CUSTOM_CLASS_PRIVATE", - "href": "fake/CUSTOM_CLASS_PRIVATE-constant.html", - "type": "top-level constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "Callback2", - "qualifiedName": "fake.Callback2", - "href": "fake/Callback2.html", - "type": "typedef", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "ClassWithUnusualProperties", - "qualifiedName": "fake.ClassWithUnusualProperties", - "href": "fake/ClassWithUnusualProperties-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "ClassWithUnusualProperties", - "qualifiedName": "fake.ClassWithUnusualProperties", - "href": "fake/ClassWithUnusualProperties/ClassWithUnusualProperties.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ClassWithUnusualProperties", - "type": "class" - } - }, - { - "name": "aMethod", - "qualifiedName": "fake.ClassWithUnusualProperties.aMethod", - "href": "fake/ClassWithUnusualProperties/aMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ClassWithUnusualProperties", - "type": "class" - } - }, - { - "name": "documentedPartialFieldInSubclassOnly", - "qualifiedName": "fake.ClassWithUnusualProperties.documentedPartialFieldInSubclassOnly", - "href": "fake/ClassWithUnusualProperties/documentedPartialFieldInSubclassOnly.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ClassWithUnusualProperties", - "type": "class" - } - }, - { - "name": "explicitGetter", - "qualifiedName": "fake.ClassWithUnusualProperties.explicitGetter", - "href": "fake/ClassWithUnusualProperties/explicitGetter.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ClassWithUnusualProperties", - "type": "class" - } - }, - { - "name": "explicitGetterImplicitSetter", - "qualifiedName": "fake.ClassWithUnusualProperties.explicitGetterImplicitSetter", - "href": "fake/ClassWithUnusualProperties/explicitGetterImplicitSetter.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ClassWithUnusualProperties", - "type": "class" - } - }, - { - "name": "explicitGetterSetter", - "qualifiedName": "fake.ClassWithUnusualProperties.explicitGetterSetter", - "href": "fake/ClassWithUnusualProperties/explicitGetterSetter.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ClassWithUnusualProperties", - "type": "class" - } - }, - { - "name": "explicitNonDocumentedInBaseClassGetter", - "qualifiedName": "fake.ClassWithUnusualProperties.explicitNonDocumentedInBaseClassGetter", - "href": "fake/ClassWithUnusualProperties/explicitNonDocumentedInBaseClassGetter.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ClassWithUnusualProperties", - "type": "class" - } - }, - { - "name": "explicitSetter", - "qualifiedName": "fake.ClassWithUnusualProperties.explicitSetter", - "href": "fake/ClassWithUnusualProperties/explicitSetter.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ClassWithUnusualProperties", - "type": "class" - } - }, - { - "name": "finalProperty", - "qualifiedName": "fake.ClassWithUnusualProperties.finalProperty", - "href": "fake/ClassWithUnusualProperties/finalProperty.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ClassWithUnusualProperties", - "type": "class" - } - }, - { - "name": "implicitGetterExplicitSetter", - "qualifiedName": "fake.ClassWithUnusualProperties.implicitGetterExplicitSetter", - "href": "fake/ClassWithUnusualProperties/implicitGetterExplicitSetter.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ClassWithUnusualProperties", - "type": "class" - } - }, - { - "name": "implicitReadWrite", - "qualifiedName": "fake.ClassWithUnusualProperties.implicitReadWrite", - "href": "fake/ClassWithUnusualProperties/implicitReadWrite.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ClassWithUnusualProperties", - "type": "class" - } - }, - { - "name": "Color", - "qualifiedName": "fake.Color", - "href": "fake/Color-class.html", - "type": "enum", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.Color.==", - "href": "fake/Color/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Color", - "type": "enum" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.Color.hashCode", - "href": "fake/Color/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Color", - "type": "enum" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.Color.noSuchMethod", - "href": "fake/Color/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Color", - "type": "enum" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.Color.runtimeType", - "href": "fake/Color/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Color", - "type": "enum" - } - }, - { - "name": "toString", - "qualifiedName": "fake.Color.toString", - "href": "fake/Color/toString.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "Color", - "type": "enum" - } - }, - { - "name": "ConstantClass", - "qualifiedName": "fake.ConstantClass", - "href": "fake/ConstantClass-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "ConstantClass", - "qualifiedName": "fake.ConstantClass", - "href": "fake/ConstantClass/ConstantClass.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ConstantClass", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.ConstantClass.==", - "href": "fake/ConstantClass/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ConstantClass", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.ConstantClass.hashCode", - "href": "fake/ConstantClass/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ConstantClass", - "type": "class" - } - }, - { - "name": "ConstantClass.isVeryConstant", - "qualifiedName": "fake.ConstantClass.isVeryConstant", - "href": "fake/ConstantClass/ConstantClass.isVeryConstant.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ConstantClass", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.ConstantClass.noSuchMethod", - "href": "fake/ConstantClass/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ConstantClass", - "type": "class" - } - }, - { - "name": "ConstantClass.notConstant", - "qualifiedName": "fake.ConstantClass.notConstant", - "href": "fake/ConstantClass/ConstantClass.notConstant.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ConstantClass", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.ConstantClass.runtimeType", - "href": "fake/ConstantClass/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ConstantClass", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.ConstantClass.toString", - "href": "fake/ConstantClass/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ConstantClass", - "type": "class" - } - }, - { - "name": "value", - "qualifiedName": "fake.ConstantClass.value", - "href": "fake/ConstantClass/value.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ConstantClass", - "type": "class" - } - }, - { - "name": "ConstructorTester", - "qualifiedName": "fake.ConstructorTester", - "href": "fake/ConstructorTester-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "ConstructorTester", - "qualifiedName": "fake.ConstructorTester", - "href": "fake/ConstructorTester/ConstructorTester.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ConstructorTester", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.ConstructorTester.==", - "href": "fake/ConstructorTester/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ConstructorTester", - "type": "class" - } - }, - { - "name": "ConstructorTester.fromSomething", - "qualifiedName": "fake.ConstructorTester.fromSomething", - "href": "fake/ConstructorTester/ConstructorTester.fromSomething.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ConstructorTester", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.ConstructorTester.hashCode", - "href": "fake/ConstructorTester/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ConstructorTester", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.ConstructorTester.noSuchMethod", - "href": "fake/ConstructorTester/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ConstructorTester", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.ConstructorTester.runtimeType", - "href": "fake/ConstructorTester/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ConstructorTester", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.ConstructorTester.toString", - "href": "fake/ConstructorTester/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ConstructorTester", - "type": "class" - } - }, - { - "name": "Cool", - "qualifiedName": "fake.Cool", - "href": "fake/Cool-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "Cool", - "qualifiedName": "fake.Cool", - "href": "fake/Cool/Cool.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Cool", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.Cool.==", - "href": "fake/Cool/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Cool", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.Cool.hashCode", - "href": "fake/Cool/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Cool", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.Cool.noSuchMethod", - "href": "fake/Cool/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Cool", - "type": "class" - } - }, - { - "name": "returnCool", - "qualifiedName": "fake.Cool.returnCool", - "href": "fake/Cool/returnCool.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Cool", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.Cool.runtimeType", - "href": "fake/Cool/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Cool", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.Cool.toString", - "href": "fake/Cool/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Cool", - "type": "class" - } - }, - { - "name": "DOWN", - "qualifiedName": "fake.DOWN", - "href": "fake/DOWN-constant.html", - "type": "top-level constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "DocumentWithATable", - "qualifiedName": "fake.DocumentWithATable", - "href": "fake/DocumentWithATable-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "DocumentWithATable", - "qualifiedName": "fake.DocumentWithATable", - "href": "fake/DocumentWithATable/DocumentWithATable.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "DocumentWithATable", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.DocumentWithATable.==", - "href": "fake/DocumentWithATable/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "DocumentWithATable", - "type": "class" - } - }, - { - "name": "aMethod", - "qualifiedName": "fake.DocumentWithATable.aMethod", - "href": "fake/DocumentWithATable/aMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "DocumentWithATable", - "type": "class" - } - }, - { - "name": "bar", - "qualifiedName": "fake.DocumentWithATable.bar", - "href": "fake/DocumentWithATable/bar-constant.html", - "type": "constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "DocumentWithATable", - "type": "class" - } - }, - { - "name": "foo", - "qualifiedName": "fake.DocumentWithATable.foo", - "href": "fake/DocumentWithATable/foo-constant.html", - "type": "constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "DocumentWithATable", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.DocumentWithATable.hashCode", - "href": "fake/DocumentWithATable/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "DocumentWithATable", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.DocumentWithATable.noSuchMethod", - "href": "fake/DocumentWithATable/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "DocumentWithATable", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.DocumentWithATable.runtimeType", - "href": "fake/DocumentWithATable/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "DocumentWithATable", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.DocumentWithATable.toString", - "href": "fake/DocumentWithATable/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "DocumentWithATable", - "type": "class" - } - }, - { - "name": "Doh", - "qualifiedName": "fake.Doh", - "href": "fake/Doh-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "Doh", - "qualifiedName": "fake.Doh", - "href": "fake/Doh/Doh.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Doh", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.Doh.==", - "href": "fake/Doh/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Doh", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.Doh.hashCode", - "href": "fake/Doh/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Doh", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.Doh.noSuchMethod", - "href": "fake/Doh/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Doh", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.Doh.runtimeType", - "href": "fake/Doh/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Doh", - "type": "class" - } - }, - { - "name": "stackTrace", - "qualifiedName": "fake.Doh.stackTrace", - "href": "fake/Doh/stackTrace.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Doh", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.Doh.toString", - "href": "fake/Doh/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Doh", - "type": "class" - } - }, - { - "name": "ExtendsFutureVoid", - "qualifiedName": "fake.ExtendsFutureVoid", - "href": "fake/ExtendsFutureVoid-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "ExtendsFutureVoid", - "qualifiedName": "fake.ExtendsFutureVoid", - "href": "fake/ExtendsFutureVoid/ExtendsFutureVoid.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ExtendsFutureVoid", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.ExtendsFutureVoid.==", - "href": "fake/ExtendsFutureVoid/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ExtendsFutureVoid", - "type": "class" - } - }, - { - "name": "asStream", - "qualifiedName": "fake.ExtendsFutureVoid.asStream", - "href": "fake/ExtendsFutureVoid/asStream.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ExtendsFutureVoid", - "type": "class" - } - }, - { - "name": "catchError", - "qualifiedName": "fake.ExtendsFutureVoid.catchError", - "href": "fake/ExtendsFutureVoid/catchError.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ExtendsFutureVoid", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.ExtendsFutureVoid.hashCode", - "href": "fake/ExtendsFutureVoid/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ExtendsFutureVoid", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.ExtendsFutureVoid.noSuchMethod", - "href": "fake/ExtendsFutureVoid/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ExtendsFutureVoid", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.ExtendsFutureVoid.runtimeType", - "href": "fake/ExtendsFutureVoid/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ExtendsFutureVoid", - "type": "class" - } - }, - { - "name": "then", - "qualifiedName": "fake.ExtendsFutureVoid.then", - "href": "fake/ExtendsFutureVoid/then.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ExtendsFutureVoid", - "type": "class" - } - }, - { - "name": "timeout", - "qualifiedName": "fake.ExtendsFutureVoid.timeout", - "href": "fake/ExtendsFutureVoid/timeout.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ExtendsFutureVoid", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.ExtendsFutureVoid.toString", - "href": "fake/ExtendsFutureVoid/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ExtendsFutureVoid", - "type": "class" - } - }, - { - "name": "whenComplete", - "qualifiedName": "fake.ExtendsFutureVoid.whenComplete", - "href": "fake/ExtendsFutureVoid/whenComplete.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ExtendsFutureVoid", - "type": "class" - } - }, - { - "name": "ExtraSpecialList", - "qualifiedName": "fake.ExtraSpecialList", - "href": "fake/ExtraSpecialList-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "ExtraSpecialList", - "qualifiedName": "fake.ExtraSpecialList", - "href": "fake/ExtraSpecialList/ExtraSpecialList.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ExtraSpecialList", - "type": "class" - } - }, - { - "name": "FakeProcesses", - "qualifiedName": "fake.FakeProcesses", - "href": "fake/FakeProcesses.html", - "type": "typedef", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "Foo2", - "qualifiedName": "fake.Foo2", - "href": "fake/Foo2-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "Foo2", - "qualifiedName": "fake.Foo2", - "href": "fake/Foo2/Foo2.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Foo2", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.Foo2.==", - "href": "fake/Foo2/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Foo2", - "type": "class" - } - }, - { - "name": "BAR", - "qualifiedName": "fake.Foo2.BAR", - "href": "fake/Foo2/BAR-constant.html", - "type": "constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Foo2", - "type": "class" - } - }, - { - "name": "BAZ", - "qualifiedName": "fake.Foo2.BAZ", - "href": "fake/Foo2/BAZ-constant.html", - "type": "constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Foo2", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.Foo2.hashCode", - "href": "fake/Foo2/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Foo2", - "type": "class" - } - }, - { - "name": "index", - "qualifiedName": "fake.Foo2.index", - "href": "fake/Foo2/index.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Foo2", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.Foo2.noSuchMethod", - "href": "fake/Foo2/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Foo2", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.Foo2.runtimeType", - "href": "fake/Foo2/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Foo2", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.Foo2.toString", - "href": "fake/Foo2/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Foo2", - "type": "class" - } - }, - { - "name": "GenericTypedef", - "qualifiedName": "fake.GenericTypedef", - "href": "fake/GenericTypedef.html", - "type": "typedef", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "HasGenericWithExtends", - "qualifiedName": "fake.HasGenericWithExtends", - "href": "fake/HasGenericWithExtends-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "HasGenericWithExtends", - "qualifiedName": "fake.HasGenericWithExtends", - "href": "fake/HasGenericWithExtends/HasGenericWithExtends.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasGenericWithExtends", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.HasGenericWithExtends.==", - "href": "fake/HasGenericWithExtends/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasGenericWithExtends", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.HasGenericWithExtends.hashCode", - "href": "fake/HasGenericWithExtends/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasGenericWithExtends", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.HasGenericWithExtends.noSuchMethod", - "href": "fake/HasGenericWithExtends/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasGenericWithExtends", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.HasGenericWithExtends.runtimeType", - "href": "fake/HasGenericWithExtends/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasGenericWithExtends", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.HasGenericWithExtends.toString", - "href": "fake/HasGenericWithExtends/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasGenericWithExtends", - "type": "class" - } - }, - { - "name": "HasGenerics", - "qualifiedName": "fake.HasGenerics", - "href": "fake/HasGenerics-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "HasGenerics", - "qualifiedName": "fake.HasGenerics", - "href": "fake/HasGenerics/HasGenerics.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasGenerics", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.HasGenerics.==", - "href": "fake/HasGenerics/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasGenerics", - "type": "class" - } - }, - { - "name": "convertToMap", - "qualifiedName": "fake.HasGenerics.convertToMap", - "href": "fake/HasGenerics/convertToMap.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasGenerics", - "type": "class" - } - }, - { - "name": "doStuff", - "qualifiedName": "fake.HasGenerics.doStuff", - "href": "fake/HasGenerics/doStuff.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasGenerics", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.HasGenerics.hashCode", - "href": "fake/HasGenerics/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasGenerics", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.HasGenerics.noSuchMethod", - "href": "fake/HasGenerics/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasGenerics", - "type": "class" - } - }, - { - "name": "returnX", - "qualifiedName": "fake.HasGenerics.returnX", - "href": "fake/HasGenerics/returnX.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasGenerics", - "type": "class" - } - }, - { - "name": "returnZ", - "qualifiedName": "fake.HasGenerics.returnZ", - "href": "fake/HasGenerics/returnZ.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasGenerics", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.HasGenerics.runtimeType", - "href": "fake/HasGenerics/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasGenerics", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.HasGenerics.toString", - "href": "fake/HasGenerics/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasGenerics", - "type": "class" - } - }, - { - "name": "HasPragma", - "qualifiedName": "fake.HasPragma", - "href": "fake/HasPragma-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "HasPragma", - "qualifiedName": "fake.HasPragma", - "href": "fake/HasPragma/HasPragma.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasPragma", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.HasPragma.==", - "href": "fake/HasPragma/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasPragma", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.HasPragma.hashCode", - "href": "fake/HasPragma/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasPragma", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.HasPragma.noSuchMethod", - "href": "fake/HasPragma/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasPragma", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.HasPragma.runtimeType", - "href": "fake/HasPragma/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasPragma", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.HasPragma.toString", - "href": "fake/HasPragma/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "HasPragma", - "type": "class" - } - }, - { - "name": "ImplementingThingy", - "qualifiedName": "fake.ImplementingThingy", - "href": "fake/ImplementingThingy-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "ImplementingThingy", - "qualifiedName": "fake.ImplementingThingy", - "href": "fake/ImplementingThingy/ImplementingThingy.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ImplementingThingy", - "type": "class" - } - }, - { - "name": "ImplementingThingy2", - "qualifiedName": "fake.ImplementingThingy2", - "href": "fake/ImplementingThingy2-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "ImplementingThingy2", - "qualifiedName": "fake.ImplementingThingy2", - "href": "fake/ImplementingThingy2/ImplementingThingy2.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ImplementingThingy2", - "type": "class" - } - }, - { - "name": "ImplementsFutureVoid", - "qualifiedName": "fake.ImplementsFutureVoid", - "href": "fake/ImplementsFutureVoid-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "ImplementsFutureVoid", - "qualifiedName": "fake.ImplementsFutureVoid", - "href": "fake/ImplementsFutureVoid/ImplementsFutureVoid.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ImplementsFutureVoid", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.ImplementsFutureVoid.==", - "href": "fake/ImplementsFutureVoid/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ImplementsFutureVoid", - "type": "class" - } - }, - { - "name": "asStream", - "qualifiedName": "fake.ImplementsFutureVoid.asStream", - "href": "fake/ImplementsFutureVoid/asStream.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ImplementsFutureVoid", - "type": "class" - } - }, - { - "name": "catchError", - "qualifiedName": "fake.ImplementsFutureVoid.catchError", - "href": "fake/ImplementsFutureVoid/catchError.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ImplementsFutureVoid", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.ImplementsFutureVoid.hashCode", - "href": "fake/ImplementsFutureVoid/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ImplementsFutureVoid", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.ImplementsFutureVoid.noSuchMethod", - "href": "fake/ImplementsFutureVoid/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ImplementsFutureVoid", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.ImplementsFutureVoid.runtimeType", - "href": "fake/ImplementsFutureVoid/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ImplementsFutureVoid", - "type": "class" - } - }, - { - "name": "then", - "qualifiedName": "fake.ImplementsFutureVoid.then", - "href": "fake/ImplementsFutureVoid/then.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ImplementsFutureVoid", - "type": "class" - } - }, - { - "name": "timeout", - "qualifiedName": "fake.ImplementsFutureVoid.timeout", - "href": "fake/ImplementsFutureVoid/timeout.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ImplementsFutureVoid", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.ImplementsFutureVoid.toString", - "href": "fake/ImplementsFutureVoid/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ImplementsFutureVoid", - "type": "class" - } - }, - { - "name": "whenComplete", - "qualifiedName": "fake.ImplementsFutureVoid.whenComplete", - "href": "fake/ImplementsFutureVoid/whenComplete.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ImplementsFutureVoid", - "type": "class" - } - }, - { - "name": "ImplicitProperties", - "qualifiedName": "fake.ImplicitProperties", - "href": "fake/ImplicitProperties-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "ImplicitProperties", - "qualifiedName": "fake.ImplicitProperties", - "href": "fake/ImplicitProperties/ImplicitProperties.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ImplicitProperties", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.ImplicitProperties.==", - "href": "fake/ImplicitProperties/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ImplicitProperties", - "type": "class" - } - }, - { - "name": "explicitGetterImplicitSetter", - "qualifiedName": "fake.ImplicitProperties.explicitGetterImplicitSetter", - "href": "fake/ImplicitProperties/explicitGetterImplicitSetter.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ImplicitProperties", - "type": "class" - } - }, - { - "name": "explicitGetterSetterForInheriting", - "qualifiedName": "fake.ImplicitProperties.explicitGetterSetterForInheriting", - "href": "fake/ImplicitProperties/explicitGetterSetterForInheriting.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ImplicitProperties", - "type": "class" - } - }, - { - "name": "explicitPartiallyDocumentedField", - "qualifiedName": "fake.ImplicitProperties.explicitPartiallyDocumentedField", - "href": "fake/ImplicitProperties/explicitPartiallyDocumentedField.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ImplicitProperties", - "type": "class" - } - }, - { - "name": "forInheriting", - "qualifiedName": "fake.ImplicitProperties.forInheriting", - "href": "fake/ImplicitProperties/forInheriting.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ImplicitProperties", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.ImplicitProperties.hashCode", - "href": "fake/ImplicitProperties/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ImplicitProperties", - "type": "class" - } - }, - { - "name": "implicitGetterExplicitSetter", - "qualifiedName": "fake.ImplicitProperties.implicitGetterExplicitSetter", - "href": "fake/ImplicitProperties/implicitGetterExplicitSetter.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ImplicitProperties", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.ImplicitProperties.noSuchMethod", - "href": "fake/ImplicitProperties/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ImplicitProperties", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.ImplicitProperties.runtimeType", - "href": "fake/ImplicitProperties/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ImplicitProperties", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.ImplicitProperties.toString", - "href": "fake/ImplicitProperties/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ImplicitProperties", - "type": "class" - } - }, - { - "name": "InheritingClassOne", - "qualifiedName": "fake.InheritingClassOne", - "href": "fake/InheritingClassOne-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "InheritingClassOne", - "qualifiedName": "fake.InheritingClassOne", - "href": "fake/InheritingClassOne/InheritingClassOne.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "InheritingClassOne", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.InheritingClassOne.==", - "href": "fake/InheritingClassOne/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "InheritingClassOne", - "type": "class" - } - }, - { - "name": "aMethod", - "qualifiedName": "fake.InheritingClassOne.aMethod", - "href": "fake/InheritingClassOne/aMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "InheritingClassOne", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.InheritingClassOne.hashCode", - "href": "fake/InheritingClassOne/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "InheritingClassOne", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.InheritingClassOne.noSuchMethod", - "href": "fake/InheritingClassOne/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "InheritingClassOne", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.InheritingClassOne.runtimeType", - "href": "fake/InheritingClassOne/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "InheritingClassOne", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.InheritingClassOne.toString", - "href": "fake/InheritingClassOne/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "InheritingClassOne", - "type": "class" - } - }, - { - "name": "InheritingClassTwo", - "qualifiedName": "fake.InheritingClassTwo", - "href": "fake/InheritingClassTwo-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "InheritingClassTwo", - "qualifiedName": "fake.InheritingClassTwo", - "href": "fake/InheritingClassTwo/InheritingClassTwo.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "InheritingClassTwo", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.InheritingClassTwo.==", - "href": "fake/InheritingClassTwo/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "InheritingClassTwo", - "type": "class" - } - }, - { - "name": "aMethod", - "qualifiedName": "fake.InheritingClassTwo.aMethod", - "href": "fake/InheritingClassTwo/aMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "InheritingClassTwo", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.InheritingClassTwo.hashCode", - "href": "fake/InheritingClassTwo/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "InheritingClassTwo", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.InheritingClassTwo.noSuchMethod", - "href": "fake/InheritingClassTwo/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "InheritingClassTwo", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.InheritingClassTwo.runtimeType", - "href": "fake/InheritingClassTwo/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "InheritingClassTwo", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.InheritingClassTwo.toString", - "href": "fake/InheritingClassTwo/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "InheritingClassTwo", - "type": "class" - } - }, - { - "name": "Interface", - "qualifiedName": "fake.Interface", - "href": "fake/Interface-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "Interface", - "qualifiedName": "fake.Interface", - "href": "fake/Interface/Interface.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Interface", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.Interface.==", - "href": "fake/Interface/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Interface", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.Interface.hashCode", - "href": "fake/Interface/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Interface", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.Interface.noSuchMethod", - "href": "fake/Interface/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Interface", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.Interface.runtimeType", - "href": "fake/Interface/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Interface", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.Interface.toString", - "href": "fake/Interface/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Interface", - "type": "class" - } - }, - { - "name": "LongFirstLine", - "qualifiedName": "fake.LongFirstLine", - "href": "fake/LongFirstLine-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "LongFirstLine", - "qualifiedName": "fake.LongFirstLine", - "href": "fake/LongFirstLine/LongFirstLine.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "LongFirstLine", - "type": "class" - } - }, - { - "name": "operator *", - "qualifiedName": "fake.LongFirstLine.*", - "href": "fake/LongFirstLine/operator_multiply.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "LongFirstLine", - "type": "class" - } - }, - { - "name": "operator +", - "qualifiedName": "fake.LongFirstLine.+", - "href": "fake/LongFirstLine/operator_plus.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "LongFirstLine", - "type": "class" - } - }, - { - "name": "ANSWER", - "qualifiedName": "fake.LongFirstLine.ANSWER", - "href": "fake/LongFirstLine/ANSWER-constant.html", - "type": "constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "LongFirstLine", - "type": "class" - } - }, - { - "name": "THING", - "qualifiedName": "fake.LongFirstLine.THING", - "href": "fake/LongFirstLine/THING-constant.html", - "type": "constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "LongFirstLine", - "type": "class" - } - }, - { - "name": "aStringProperty", - "qualifiedName": "fake.LongFirstLine.aStringProperty", - "href": "fake/LongFirstLine/aStringProperty.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "LongFirstLine", - "type": "class" - } - }, - { - "name": "dynamicGetter", - "qualifiedName": "fake.LongFirstLine.dynamicGetter", - "href": "fake/LongFirstLine/dynamicGetter.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "LongFirstLine", - "type": "class" - } - }, - { - "name": "LongFirstLine.fromHasGenerics", - "qualifiedName": "fake.LongFirstLine.fromHasGenerics", - "href": "fake/LongFirstLine/LongFirstLine.fromHasGenerics.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "LongFirstLine", - "type": "class" - } - }, - { - "name": "LongFirstLine.fromMap", - "qualifiedName": "fake.LongFirstLine.fromMap", - "href": "fake/LongFirstLine/LongFirstLine.fromMap.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "LongFirstLine", - "type": "class" - } - }, - { - "name": "meaningOfLife", - "qualifiedName": "fake.LongFirstLine.meaningOfLife", - "href": "fake/LongFirstLine/meaningOfLife.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "LongFirstLine", - "type": "class" - } - }, - { - "name": "noParams", - "qualifiedName": "fake.LongFirstLine.noParams", - "href": "fake/LongFirstLine/noParams.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "LongFirstLine", - "type": "class" - } - }, - { - "name": "onlySetter", - "qualifiedName": "fake.LongFirstLine.onlySetter", - "href": "fake/LongFirstLine/onlySetter.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "LongFirstLine", - "type": "class" - } - }, - { - "name": "optionalParams", - "qualifiedName": "fake.LongFirstLine.optionalParams", - "href": "fake/LongFirstLine/optionalParams.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "LongFirstLine", - "type": "class" - } - }, - { - "name": "returnString", - "qualifiedName": "fake.LongFirstLine.returnString", - "href": "fake/LongFirstLine/returnString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "LongFirstLine", - "type": "class" - } - }, - { - "name": "staticGetter", - "qualifiedName": "fake.LongFirstLine.staticGetter", - "href": "fake/LongFirstLine/staticGetter.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "LongFirstLine", - "type": "class" - } - }, - { - "name": "staticMethodNoParams", - "qualifiedName": "fake.LongFirstLine.staticMethodNoParams", - "href": "fake/LongFirstLine/staticMethodNoParams.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "LongFirstLine", - "type": "class" - } - }, - { - "name": "staticMethodReturnsVoid", - "qualifiedName": "fake.LongFirstLine.staticMethodReturnsVoid", - "href": "fake/LongFirstLine/staticMethodReturnsVoid.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "LongFirstLine", - "type": "class" - } - }, - { - "name": "staticOnlySetter", - "qualifiedName": "fake.LongFirstLine.staticOnlySetter", - "href": "fake/LongFirstLine/staticOnlySetter.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "LongFirstLine", - "type": "class" - } - }, - { - "name": "twoParams", - "qualifiedName": "fake.LongFirstLine.twoParams", - "href": "fake/LongFirstLine/twoParams.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "LongFirstLine", - "type": "class" - } - }, - { - "name": "LotsAndLotsOfParameters", - "qualifiedName": "fake.LotsAndLotsOfParameters", - "href": "fake/LotsAndLotsOfParameters.html", - "type": "typedef", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "MIEEBase", - "qualifiedName": "fake.MIEEBase", - "href": "fake/MIEEBase-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "MIEEBase", - "qualifiedName": "fake.MIEEBase", - "href": "fake/MIEEBase/MIEEBase.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MIEEBase", - "type": "class" - } - }, - { - "name": "MIEEMixin", - "qualifiedName": "fake.MIEEMixin", - "href": "fake/MIEEMixin-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "MIEEMixin", - "qualifiedName": "fake.MIEEMixin", - "href": "fake/MIEEMixin/MIEEMixin.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MIEEMixin", - "type": "class" - } - }, - { - "name": "operator []=", - "qualifiedName": "fake.MIEEMixin.[]=", - "href": "fake/MIEEMixin/operator_put.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "MIEEMixin", - "type": "class" - } - }, - { - "name": "MIEEMixinWithOverride", - "qualifiedName": "fake.MIEEMixinWithOverride", - "href": "fake/MIEEMixinWithOverride-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "MIEEMixinWithOverride", - "qualifiedName": "fake.MIEEMixinWithOverride", - "href": "fake/MIEEMixinWithOverride/MIEEMixinWithOverride.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MIEEMixinWithOverride", - "type": "class" - } - }, - { - "name": "operator []=", - "qualifiedName": "fake.MIEEMixinWithOverride.[]=", - "href": "fake/MIEEMixinWithOverride/operator_put.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "MIEEMixinWithOverride", - "type": "class" - } - }, - { - "name": "MIEEThing", - "qualifiedName": "fake.MIEEThing", - "href": "fake/MIEEThing-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "MIEEThing", - "qualifiedName": "fake.MIEEThing", - "href": "fake/MIEEThing/MIEEThing.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MIEEThing", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.MIEEThing.==", - "href": "fake/MIEEThing/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MIEEThing", - "type": "class" - } - }, - { - "name": "operator []=", - "qualifiedName": "fake.MIEEThing.[]=", - "href": "fake/MIEEThing/operator_put.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MIEEThing", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.MIEEThing.hashCode", - "href": "fake/MIEEThing/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MIEEThing", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.MIEEThing.noSuchMethod", - "href": "fake/MIEEThing/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MIEEThing", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.MIEEThing.runtimeType", - "href": "fake/MIEEThing/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MIEEThing", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.MIEEThing.toString", - "href": "fake/MIEEThing/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MIEEThing", - "type": "class" - } - }, - { - "name": "MixMeIn", - "qualifiedName": "fake.MixMeIn", - "href": "fake/MixMeIn-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "MixMeIn", - "qualifiedName": "fake.MixMeIn", - "href": "fake/MixMeIn/MixMeIn.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MixMeIn", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.MixMeIn.==", - "href": "fake/MixMeIn/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MixMeIn", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.MixMeIn.hashCode", - "href": "fake/MixMeIn/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MixMeIn", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.MixMeIn.noSuchMethod", - "href": "fake/MixMeIn/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MixMeIn", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.MixMeIn.runtimeType", - "href": "fake/MixMeIn/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MixMeIn", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.MixMeIn.toString", - "href": "fake/MixMeIn/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "MixMeIn", - "type": "class" - } - }, - { - "name": "NAME_SINGLEUNDERSCORE", - "qualifiedName": "fake.NAME_SINGLEUNDERSCORE", - "href": "fake/NAME_SINGLEUNDERSCORE-constant.html", - "type": "top-level constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "NAME_WITH_TWO_UNDERSCORES", - "qualifiedName": "fake.NAME_WITH_TWO_UNDERSCORES", - "href": "fake/NAME_WITH_TWO_UNDERSCORES-constant.html", - "type": "top-level constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "NewGenericTypedef", - "qualifiedName": "fake.NewGenericTypedef", - "href": "fake/NewGenericTypedef.html", - "type": "typedef", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "NotAMixin", - "qualifiedName": "fake.NotAMixin", - "href": "fake/NotAMixin-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "NotAMixin", - "qualifiedName": "fake.NotAMixin", - "href": "fake/NotAMixin/NotAMixin.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "NotAMixin", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.NotAMixin.==", - "href": "fake/NotAMixin/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "NotAMixin", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.NotAMixin.hashCode", - "href": "fake/NotAMixin/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "NotAMixin", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.NotAMixin.noSuchMethod", - "href": "fake/NotAMixin/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "NotAMixin", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.NotAMixin.runtimeType", - "href": "fake/NotAMixin/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "NotAMixin", - "type": "class" - } - }, - { - "name": "superString", - "qualifiedName": "fake.NotAMixin.superString", - "href": "fake/NotAMixin/superString.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "NotAMixin", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.NotAMixin.toString", - "href": "fake/NotAMixin/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "NotAMixin", - "type": "class" - } - }, - { - "name": "Oops", - "qualifiedName": "fake.Oops", - "href": "fake/Oops-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "Oops", - "qualifiedName": "fake.Oops", - "href": "fake/Oops/Oops.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Oops", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.Oops.==", - "href": "fake/Oops/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Oops", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.Oops.hashCode", - "href": "fake/Oops/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Oops", - "type": "class" - } - }, - { - "name": "message", - "qualifiedName": "fake.Oops.message", - "href": "fake/Oops/message.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Oops", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.Oops.noSuchMethod", - "href": "fake/Oops/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Oops", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.Oops.runtimeType", - "href": "fake/Oops/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Oops", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.Oops.toString", - "href": "fake/Oops/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Oops", - "type": "class" - } - }, - { - "name": "OperatorReferenceClass", - "qualifiedName": "fake.OperatorReferenceClass", - "href": "fake/OperatorReferenceClass-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "OperatorReferenceClass", - "qualifiedName": "fake.OperatorReferenceClass", - "href": "fake/OperatorReferenceClass/OperatorReferenceClass.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "OperatorReferenceClass", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.OperatorReferenceClass.==", - "href": "fake/OperatorReferenceClass/operator_equals.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "OperatorReferenceClass", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.OperatorReferenceClass.hashCode", - "href": "fake/OperatorReferenceClass/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "OperatorReferenceClass", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.OperatorReferenceClass.noSuchMethod", - "href": "fake/OperatorReferenceClass/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "OperatorReferenceClass", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.OperatorReferenceClass.runtimeType", - "href": "fake/OperatorReferenceClass/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "OperatorReferenceClass", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.OperatorReferenceClass.toString", - "href": "fake/OperatorReferenceClass/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "OperatorReferenceClass", - "type": "class" - } - }, - { - "name": "OtherGenericsThing", - "qualifiedName": "fake.OtherGenericsThing", - "href": "fake/OtherGenericsThing-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "OtherGenericsThing", - "qualifiedName": "fake.OtherGenericsThing", - "href": "fake/OtherGenericsThing/OtherGenericsThing.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "OtherGenericsThing", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.OtherGenericsThing.==", - "href": "fake/OtherGenericsThing/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "OtherGenericsThing", - "type": "class" - } - }, - { - "name": "convert", - "qualifiedName": "fake.OtherGenericsThing.convert", - "href": "fake/OtherGenericsThing/convert.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "OtherGenericsThing", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.OtherGenericsThing.hashCode", - "href": "fake/OtherGenericsThing/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "OtherGenericsThing", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.OtherGenericsThing.noSuchMethod", - "href": "fake/OtherGenericsThing/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "OtherGenericsThing", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.OtherGenericsThing.runtimeType", - "href": "fake/OtherGenericsThing/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "OtherGenericsThing", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.OtherGenericsThing.toString", - "href": "fake/OtherGenericsThing/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "OtherGenericsThing", - "type": "class" - } - }, - { - "name": "PI", - "qualifiedName": "fake.PI", - "href": "fake/PI-constant.html", - "type": "top-level constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "ReferringClass", - "qualifiedName": "fake.ReferringClass", - "href": "fake/ReferringClass-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "ReferringClass", - "qualifiedName": "fake.ReferringClass", - "href": "fake/ReferringClass/ReferringClass.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ReferringClass", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.ReferringClass.==", - "href": "fake/ReferringClass/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ReferringClass", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.ReferringClass.hashCode", - "href": "fake/ReferringClass/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ReferringClass", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.ReferringClass.noSuchMethod", - "href": "fake/ReferringClass/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ReferringClass", - "type": "class" - } - }, - { - "name": "notAMethodFromPrivateClass", - "qualifiedName": "fake.ReferringClass.notAMethodFromPrivateClass", - "href": "fake/ReferringClass/notAMethodFromPrivateClass.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ReferringClass", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.ReferringClass.runtimeType", - "href": "fake/ReferringClass/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ReferringClass", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.ReferringClass.toString", - "href": "fake/ReferringClass/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ReferringClass", - "type": "class" - } - }, - { - "name": "SpecialList", - "qualifiedName": "fake.SpecialList", - "href": "fake/SpecialList-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "SpecialList", - "qualifiedName": "fake.SpecialList", - "href": "fake/SpecialList/SpecialList.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "operator +", - "qualifiedName": "fake.SpecialList.+", - "href": "fake/SpecialList/operator_plus.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.SpecialList.==", - "href": "fake/SpecialList/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "operator []", - "qualifiedName": "fake.SpecialList.[]", - "href": "fake/SpecialList/operator_get.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "operator []=", - "qualifiedName": "fake.SpecialList.[]=", - "href": "fake/SpecialList/operator_put.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "add", - "qualifiedName": "fake.SpecialList.add", - "href": "fake/SpecialList/add.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "addAll", - "qualifiedName": "fake.SpecialList.addAll", - "href": "fake/SpecialList/addAll.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "any", - "qualifiedName": "fake.SpecialList.any", - "href": "fake/SpecialList/any.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "asMap", - "qualifiedName": "fake.SpecialList.asMap", - "href": "fake/SpecialList/asMap.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "cast", - "qualifiedName": "fake.SpecialList.cast", - "href": "fake/SpecialList/cast.html", - "type": "method", - "overriddenDepth": 2, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "clear", - "qualifiedName": "fake.SpecialList.clear", - "href": "fake/SpecialList/clear.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "contains", - "qualifiedName": "fake.SpecialList.contains", - "href": "fake/SpecialList/contains.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "elementAt", - "qualifiedName": "fake.SpecialList.elementAt", - "href": "fake/SpecialList/elementAt.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "every", - "qualifiedName": "fake.SpecialList.every", - "href": "fake/SpecialList/every.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "expand", - "qualifiedName": "fake.SpecialList.expand", - "href": "fake/SpecialList/expand.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "fillRange", - "qualifiedName": "fake.SpecialList.fillRange", - "href": "fake/SpecialList/fillRange.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "first", - "qualifiedName": "fake.SpecialList.first", - "href": "fake/SpecialList/first.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "firstWhere", - "qualifiedName": "fake.SpecialList.firstWhere", - "href": "fake/SpecialList/firstWhere.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "fold", - "qualifiedName": "fake.SpecialList.fold", - "href": "fake/SpecialList/fold.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "followedBy", - "qualifiedName": "fake.SpecialList.followedBy", - "href": "fake/SpecialList/followedBy.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "forEach", - "qualifiedName": "fake.SpecialList.forEach", - "href": "fake/SpecialList/forEach.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "getRange", - "qualifiedName": "fake.SpecialList.getRange", - "href": "fake/SpecialList/getRange.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.SpecialList.hashCode", - "href": "fake/SpecialList/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "indexOf", - "qualifiedName": "fake.SpecialList.indexOf", - "href": "fake/SpecialList/indexOf.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "indexWhere", - "qualifiedName": "fake.SpecialList.indexWhere", - "href": "fake/SpecialList/indexWhere.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "insert", - "qualifiedName": "fake.SpecialList.insert", - "href": "fake/SpecialList/insert.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "insertAll", - "qualifiedName": "fake.SpecialList.insertAll", - "href": "fake/SpecialList/insertAll.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "isEmpty", - "qualifiedName": "fake.SpecialList.isEmpty", - "href": "fake/SpecialList/isEmpty.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "isNotEmpty", - "qualifiedName": "fake.SpecialList.isNotEmpty", - "href": "fake/SpecialList/isNotEmpty.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "iterator", - "qualifiedName": "fake.SpecialList.iterator", - "href": "fake/SpecialList/iterator.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "join", - "qualifiedName": "fake.SpecialList.join", - "href": "fake/SpecialList/join.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "last", - "qualifiedName": "fake.SpecialList.last", - "href": "fake/SpecialList/last.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "lastIndexOf", - "qualifiedName": "fake.SpecialList.lastIndexOf", - "href": "fake/SpecialList/lastIndexOf.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "lastIndexWhere", - "qualifiedName": "fake.SpecialList.lastIndexWhere", - "href": "fake/SpecialList/lastIndexWhere.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "lastWhere", - "qualifiedName": "fake.SpecialList.lastWhere", - "href": "fake/SpecialList/lastWhere.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "length", - "qualifiedName": "fake.SpecialList.length", - "href": "fake/SpecialList/length.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "map", - "qualifiedName": "fake.SpecialList.map", - "href": "fake/SpecialList/map.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.SpecialList.noSuchMethod", - "href": "fake/SpecialList/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "reduce", - "qualifiedName": "fake.SpecialList.reduce", - "href": "fake/SpecialList/reduce.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "remove", - "qualifiedName": "fake.SpecialList.remove", - "href": "fake/SpecialList/remove.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "removeAt", - "qualifiedName": "fake.SpecialList.removeAt", - "href": "fake/SpecialList/removeAt.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "removeLast", - "qualifiedName": "fake.SpecialList.removeLast", - "href": "fake/SpecialList/removeLast.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "removeRange", - "qualifiedName": "fake.SpecialList.removeRange", - "href": "fake/SpecialList/removeRange.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "removeWhere", - "qualifiedName": "fake.SpecialList.removeWhere", - "href": "fake/SpecialList/removeWhere.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "replaceRange", - "qualifiedName": "fake.SpecialList.replaceRange", - "href": "fake/SpecialList/replaceRange.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "retainWhere", - "qualifiedName": "fake.SpecialList.retainWhere", - "href": "fake/SpecialList/retainWhere.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "reversed", - "qualifiedName": "fake.SpecialList.reversed", - "href": "fake/SpecialList/reversed.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.SpecialList.runtimeType", - "href": "fake/SpecialList/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "setAll", - "qualifiedName": "fake.SpecialList.setAll", - "href": "fake/SpecialList/setAll.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "setRange", - "qualifiedName": "fake.SpecialList.setRange", - "href": "fake/SpecialList/setRange.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "shuffle", - "qualifiedName": "fake.SpecialList.shuffle", - "href": "fake/SpecialList/shuffle.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "single", - "qualifiedName": "fake.SpecialList.single", - "href": "fake/SpecialList/single.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "singleWhere", - "qualifiedName": "fake.SpecialList.singleWhere", - "href": "fake/SpecialList/singleWhere.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "skip", - "qualifiedName": "fake.SpecialList.skip", - "href": "fake/SpecialList/skip.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "skipWhile", - "qualifiedName": "fake.SpecialList.skipWhile", - "href": "fake/SpecialList/skipWhile.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "sort", - "qualifiedName": "fake.SpecialList.sort", - "href": "fake/SpecialList/sort.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "sublist", - "qualifiedName": "fake.SpecialList.sublist", - "href": "fake/SpecialList/sublist.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "take", - "qualifiedName": "fake.SpecialList.take", - "href": "fake/SpecialList/take.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "takeWhile", - "qualifiedName": "fake.SpecialList.takeWhile", - "href": "fake/SpecialList/takeWhile.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "toList", - "qualifiedName": "fake.SpecialList.toList", - "href": "fake/SpecialList/toList.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "toSet", - "qualifiedName": "fake.SpecialList.toSet", - "href": "fake/SpecialList/toSet.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.SpecialList.toString", - "href": "fake/SpecialList/toString.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "where", - "qualifiedName": "fake.SpecialList.where", - "href": "fake/SpecialList/where.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "whereType", - "qualifiedName": "fake.SpecialList.whereType", - "href": "fake/SpecialList/whereType.html", - "type": "method", - "overriddenDepth": 1, - "enclosedBy": { - "name": "SpecialList", - "type": "class" - } - }, - { - "name": "SubForDocComments", - "qualifiedName": "fake.SubForDocComments", - "href": "fake/SubForDocComments-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "SubForDocComments", - "qualifiedName": "fake.SubForDocComments", - "href": "fake/SubForDocComments/SubForDocComments.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SubForDocComments", - "type": "class" - } - }, - { - "name": "localMethod", - "qualifiedName": "fake.SubForDocComments.localMethod", - "href": "fake/SubForDocComments/localMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SubForDocComments", - "type": "class" - } - }, - { - "name": "SuperAwesomeClass", - "qualifiedName": "fake.SuperAwesomeClass", - "href": "fake/SuperAwesomeClass-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "SuperAwesomeClass", - "qualifiedName": "fake.SuperAwesomeClass", - "href": "fake/SuperAwesomeClass/SuperAwesomeClass.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SuperAwesomeClass", - "type": "class" - } - }, - { - "name": "operator -", - "qualifiedName": "fake.SuperAwesomeClass.-", - "href": "fake/SuperAwesomeClass/operator_minus.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SuperAwesomeClass", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.SuperAwesomeClass.==", - "href": "fake/SuperAwesomeClass/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SuperAwesomeClass", - "type": "class" - } - }, - { - "name": "fly", - "qualifiedName": "fake.SuperAwesomeClass.fly", - "href": "fake/SuperAwesomeClass/fly.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SuperAwesomeClass", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.SuperAwesomeClass.hashCode", - "href": "fake/SuperAwesomeClass/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SuperAwesomeClass", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.SuperAwesomeClass.noSuchMethod", - "href": "fake/SuperAwesomeClass/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SuperAwesomeClass", - "type": "class" - } - }, - { - "name": "powers", - "qualifiedName": "fake.SuperAwesomeClass.powers", - "href": "fake/SuperAwesomeClass/powers.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SuperAwesomeClass", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.SuperAwesomeClass.runtimeType", - "href": "fake/SuperAwesomeClass/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SuperAwesomeClass", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.SuperAwesomeClass.toString", - "href": "fake/SuperAwesomeClass/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SuperAwesomeClass", - "type": "class" - } - }, - { - "name": "TypedefUsingClass", - "qualifiedName": "fake.TypedefUsingClass", - "href": "fake/TypedefUsingClass-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "TypedefUsingClass", - "qualifiedName": "fake.TypedefUsingClass", - "href": "fake/TypedefUsingClass/TypedefUsingClass.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TypedefUsingClass", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.TypedefUsingClass.==", - "href": "fake/TypedefUsingClass/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TypedefUsingClass", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.TypedefUsingClass.hashCode", - "href": "fake/TypedefUsingClass/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TypedefUsingClass", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.TypedefUsingClass.noSuchMethod", - "href": "fake/TypedefUsingClass/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TypedefUsingClass", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.TypedefUsingClass.runtimeType", - "href": "fake/TypedefUsingClass/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TypedefUsingClass", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.TypedefUsingClass.toString", - "href": "fake/TypedefUsingClass/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TypedefUsingClass", - "type": "class" - } - }, - { - "name": "x", - "qualifiedName": "fake.TypedefUsingClass.x", - "href": "fake/TypedefUsingClass/x.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "TypedefUsingClass", - "type": "class" - } - }, - { - "name": "UP", - "qualifiedName": "fake.UP", - "href": "fake/UP-constant.html", - "type": "top-level constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "VoidCallback", - "qualifiedName": "fake.VoidCallback", - "href": "fake/VoidCallback.html", - "type": "typedef", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "WithGetterAndSetter", - "qualifiedName": "fake.WithGetterAndSetter", - "href": "fake/WithGetterAndSetter-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "WithGetterAndSetter", - "qualifiedName": "fake.WithGetterAndSetter", - "href": "fake/WithGetterAndSetter/WithGetterAndSetter.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "WithGetterAndSetter", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "fake.WithGetterAndSetter.==", - "href": "fake/WithGetterAndSetter/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "WithGetterAndSetter", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "fake.WithGetterAndSetter.hashCode", - "href": "fake/WithGetterAndSetter/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "WithGetterAndSetter", - "type": "class" - } - }, - { - "name": "lengthX", - "qualifiedName": "fake.WithGetterAndSetter.lengthX", - "href": "fake/WithGetterAndSetter/lengthX.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "WithGetterAndSetter", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "fake.WithGetterAndSetter.noSuchMethod", - "href": "fake/WithGetterAndSetter/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "WithGetterAndSetter", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "fake.WithGetterAndSetter.runtimeType", - "href": "fake/WithGetterAndSetter/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "WithGetterAndSetter", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "fake.WithGetterAndSetter.toString", - "href": "fake/WithGetterAndSetter/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "WithGetterAndSetter", - "type": "class" - } - }, - { - "name": "ZERO", - "qualifiedName": "fake.ZERO", - "href": "fake/ZERO-constant.html", - "type": "top-level constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "aCoolVariable", - "qualifiedName": "fake.aCoolVariable", - "href": "fake/aCoolVariable.html", - "type": "top-level property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "aVoidParameter", - "qualifiedName": "fake.aVoidParameter", - "href": "fake/aVoidParameter.html", - "type": "function", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "addCallback", - "qualifiedName": "fake.addCallback", - "href": "fake/addCallback.html", - "type": "function", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "addCallback2", - "qualifiedName": "fake.addCallback2", - "href": "fake/addCallback2.html", - "type": "function", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "bulletDoced", - "qualifiedName": "fake.bulletDoced", - "href": "fake/bulletDoced-constant.html", - "type": "top-level constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "complicatedReturn", - "qualifiedName": "fake.complicatedReturn", - "href": "fake/complicatedReturn.html", - "type": "top-level property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "dynamicGetter", - "qualifiedName": "fake.dynamicGetter", - "href": "fake/dynamicGetter.html", - "type": "top-level property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "functionWithFunctionParameters", - "qualifiedName": "fake.functionWithFunctionParameters", - "href": "fake/functionWithFunctionParameters.html", - "type": "function", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "getterSetterNodocGetter", - "qualifiedName": "fake.getterSetterNodocGetter", - "href": "fake/getterSetterNodocGetter.html", - "type": "top-level property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "getterSetterNodocSetter", - "qualifiedName": "fake.getterSetterNodocSetter", - "href": "fake/getterSetterNodocSetter.html", - "type": "top-level property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "greatAnnotation", - "qualifiedName": "fake.greatAnnotation", - "href": "fake/greatAnnotation-constant.html", - "type": "top-level constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "greatestAnnotation", - "qualifiedName": "fake.greatestAnnotation", - "href": "fake/greatestAnnotation-constant.html", - "type": "top-level constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "importantComputations", - "qualifiedName": "fake.importantComputations", - "href": "fake/importantComputations.html", - "type": "top-level property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "incorrectDocReference", - "qualifiedName": "fake.incorrectDocReference", - "href": "fake/incorrectDocReference-constant.html", - "type": "top-level constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "justGetter", - "qualifiedName": "fake.justGetter", - "href": "fake/justGetter.html", - "type": "top-level property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "justSetter", - "qualifiedName": "fake.justSetter", - "href": "fake/justSetter.html", - "type": "top-level property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "mapWithDynamicKeys", - "qualifiedName": "fake.mapWithDynamicKeys", - "href": "fake/mapWithDynamicKeys.html", - "type": "top-level property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "meaningOfLife", - "qualifiedName": "fake.meaningOfLife", - "href": "fake/meaningOfLife.html", - "type": "top-level property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "mustGetThis", - "qualifiedName": "fake.mustGetThis", - "href": "fake/mustGetThis.html", - "type": "top-level property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "myCoolTypedef", - "qualifiedName": "fake.myCoolTypedef", - "href": "fake/myCoolTypedef.html", - "type": "typedef", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "myGenericFunction", - "qualifiedName": "fake.myGenericFunction", - "href": "fake/myGenericFunction.html", - "type": "function", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "myMap", - "qualifiedName": "fake.myMap", - "href": "fake/myMap-constant.html", - "type": "top-level constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "onlyPositionalWithNoDefaultNoType", - "qualifiedName": "fake.onlyPositionalWithNoDefaultNoType", - "href": "fake/onlyPositionalWithNoDefaultNoType.html", - "type": "function", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "paintImage1", - "qualifiedName": "fake.paintImage1", - "href": "fake/paintImage1.html", - "type": "function", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "paintImage2", - "qualifiedName": "fake.paintImage2", - "href": "fake/paintImage2.html", - "type": "function", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "paramFromAnotherLib", - "qualifiedName": "fake.paramFromAnotherLib", - "href": "fake/paramFromAnotherLib.html", - "type": "function", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "paramOfFutureOrNull", - "qualifiedName": "fake.paramOfFutureOrNull", - "href": "fake/paramOfFutureOrNull.html", - "type": "function", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "required", - "qualifiedName": "fake.required", - "href": "fake/required-constant.html", - "type": "top-level constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "returningFutureVoid", - "qualifiedName": "fake.returningFutureVoid", - "href": "fake/returningFutureVoid.html", - "type": "function", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "setAndGet", - "qualifiedName": "fake.setAndGet", - "href": "fake/setAndGet.html", - "type": "top-level property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "short", - "qualifiedName": "fake.short", - "href": "fake/short.html", - "type": "function", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "simpleProperty", - "qualifiedName": "fake.simpleProperty", - "href": "fake/simpleProperty.html", - "type": "top-level property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "soIntense", - "qualifiedName": "fake.soIntense", - "href": "fake/soIntense.html", - "type": "function", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "testingCodeSyntaxInOneLiners", - "qualifiedName": "fake.testingCodeSyntaxInOneLiners", - "href": "fake/testingCodeSyntaxInOneLiners-constant.html", - "type": "top-level constant", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "thisIsAlsoAsync", - "qualifiedName": "fake.thisIsAlsoAsync", - "href": "fake/thisIsAlsoAsync.html", - "type": "function", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "thisIsAsync", - "qualifiedName": "fake.thisIsAsync", - "href": "fake/thisIsAsync.html", - "type": "function", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "thisIsFutureOr", - "qualifiedName": "fake.thisIsFutureOr", - "href": "fake/thisIsFutureOr.html", - "type": "function", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "thisIsFutureOrNull", - "qualifiedName": "fake.thisIsFutureOrNull", - "href": "fake/thisIsFutureOrNull.html", - "type": "function", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "thisIsFutureOrT", - "qualifiedName": "fake.thisIsFutureOrT", - "href": "fake/thisIsFutureOrT.html", - "type": "function", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "topLevelFunction", - "qualifiedName": "fake.topLevelFunction", - "href": "fake/topLevelFunction.html", - "type": "function", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "typeParamOfFutureOr", - "qualifiedName": "fake.typeParamOfFutureOr", - "href": "fake/typeParamOfFutureOr.html", - "type": "function", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "useSomethingInAnotherPackage", - "qualifiedName": "fake.useSomethingInAnotherPackage", - "href": "fake/useSomethingInAnotherPackage.html", - "type": "top-level property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "useSomethingInTheSdk", - "qualifiedName": "fake.useSomethingInTheSdk", - "href": "fake/useSomethingInTheSdk.html", - "type": "top-level property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "fake", - "type": "library" - } - }, - { - "name": "is_deprecated", - "qualifiedName": "is_deprecated", - "href": "is_deprecated/is_deprecated-library.html", - "type": "library", - "overriddenDepth": 0 - }, - { - "name": "reexport_one", - "qualifiedName": "reexport_one", - "href": "reexport_one/reexport_one-library.html", - "type": "library", - "overriddenDepth": 0 - }, - { - "name": "SomeOtherClass", - "qualifiedName": "reexport_one.SomeOtherClass", - "href": "reexport_one/SomeOtherClass-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "reexport_one", - "type": "library" - } - }, - { - "name": "SomeOtherClass", - "qualifiedName": "reexport_one.SomeOtherClass", - "href": "reexport_one/SomeOtherClass/SomeOtherClass.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SomeOtherClass", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "reexport_one.SomeOtherClass.==", - "href": "reexport_one/SomeOtherClass/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SomeOtherClass", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "reexport_one.SomeOtherClass.hashCode", - "href": "reexport_one/SomeOtherClass/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SomeOtherClass", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "reexport_one.SomeOtherClass.noSuchMethod", - "href": "reexport_one/SomeOtherClass/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SomeOtherClass", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "reexport_one.SomeOtherClass.runtimeType", - "href": "reexport_one/SomeOtherClass/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SomeOtherClass", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "reexport_one.SomeOtherClass.toString", - "href": "reexport_one/SomeOtherClass/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SomeOtherClass", - "type": "class" - } - }, - { - "name": "reexport_two", - "qualifiedName": "reexport_two", - "href": "reexport_two/reexport_two-library.html", - "type": "library", - "overriddenDepth": 0 - }, - { - "name": "AUnicornClass", - "qualifiedName": "reexport_two.AUnicornClass", - "href": "reexport_two/AUnicornClass-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "reexport_two", - "type": "library" - } - }, - { - "name": "AUnicornClass", - "qualifiedName": "reexport_two.AUnicornClass", - "href": "reexport_two/AUnicornClass/AUnicornClass.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AUnicornClass", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "reexport_two.AUnicornClass.==", - "href": "reexport_two/AUnicornClass/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AUnicornClass", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "reexport_two.AUnicornClass.hashCode", - "href": "reexport_two/AUnicornClass/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AUnicornClass", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "reexport_two.AUnicornClass.noSuchMethod", - "href": "reexport_two/AUnicornClass/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AUnicornClass", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "reexport_two.AUnicornClass.runtimeType", - "href": "reexport_two/AUnicornClass/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AUnicornClass", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "reexport_two.AUnicornClass.toString", - "href": "reexport_two/AUnicornClass/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "AUnicornClass", - "type": "class" - } - }, - { - "name": "SomeClass", - "qualifiedName": "reexport_two.SomeClass", - "href": "reexport_two/SomeClass-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "reexport_two", - "type": "library" - } - }, - { - "name": "SomeClass", - "qualifiedName": "reexport_two.SomeClass", - "href": "reexport_two/SomeClass/SomeClass.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SomeClass", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "reexport_two.SomeClass.==", - "href": "reexport_two/SomeClass/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SomeClass", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "reexport_two.SomeClass.hashCode", - "href": "reexport_two/SomeClass/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SomeClass", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "reexport_two.SomeClass.noSuchMethod", - "href": "reexport_two/SomeClass/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SomeClass", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "reexport_two.SomeClass.runtimeType", - "href": "reexport_two/SomeClass/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SomeClass", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "reexport_two.SomeClass.toString", - "href": "reexport_two/SomeClass/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "SomeClass", - "type": "class" - } - }, - { - "name": "YetAnotherClass", - "qualifiedName": "reexport_two.YetAnotherClass", - "href": "reexport_two/YetAnotherClass-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "reexport_two", - "type": "library" - } - }, - { - "name": "YetAnotherClass", - "qualifiedName": "reexport_two.YetAnotherClass", - "href": "reexport_two/YetAnotherClass/YetAnotherClass.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "YetAnotherClass", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "reexport_two.YetAnotherClass.==", - "href": "reexport_two/YetAnotherClass/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "YetAnotherClass", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "reexport_two.YetAnotherClass.hashCode", - "href": "reexport_two/YetAnotherClass/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "YetAnotherClass", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "reexport_two.YetAnotherClass.noSuchMethod", - "href": "reexport_two/YetAnotherClass/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "YetAnotherClass", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "reexport_two.YetAnotherClass.runtimeType", - "href": "reexport_two/YetAnotherClass/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "YetAnotherClass", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "reexport_two.YetAnotherClass.toString", - "href": "reexport_two/YetAnotherClass/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "YetAnotherClass", - "type": "class" - } - }, - { - "name": "test_package_imported.main", - "qualifiedName": "test_package_imported.main", - "href": "test_package_imported.main/test_package_imported.main-library.html", - "type": "library", - "overriddenDepth": 0 - }, - { - "name": "Whataclass", - "qualifiedName": "test_package_imported.main.Whataclass", - "href": "test_package_imported.main/Whataclass-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "test_package_imported.main", - "type": "library" - } - }, - { - "name": "Whataclass", - "qualifiedName": "test_package_imported.main.Whataclass", - "href": "test_package_imported.main/Whataclass/Whataclass.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Whataclass", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "test_package_imported.main.Whataclass.==", - "href": "test_package_imported.main/Whataclass/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Whataclass", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "test_package_imported.main.Whataclass.hashCode", - "href": "test_package_imported.main/Whataclass/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Whataclass", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "test_package_imported.main.Whataclass.noSuchMethod", - "href": "test_package_imported.main/Whataclass/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Whataclass", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "test_package_imported.main.Whataclass.runtimeType", - "href": "test_package_imported.main/Whataclass/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Whataclass", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "test_package_imported.main.Whataclass.toString", - "href": "test_package_imported.main/Whataclass/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Whataclass", - "type": "class" - } - }, - { - "name": "Whataclass2", - "qualifiedName": "test_package_imported.main.Whataclass2", - "href": "test_package_imported.main/Whataclass2-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "test_package_imported.main", - "type": "library" - } - }, - { - "name": "Whataclass2", - "qualifiedName": "test_package_imported.main.Whataclass2", - "href": "test_package_imported.main/Whataclass2/Whataclass2.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Whataclass2", - "type": "class" - } - }, - { - "name": "operator ==", - "qualifiedName": "test_package_imported.main.Whataclass2.==", - "href": "test_package_imported.main/Whataclass2/operator_equals.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Whataclass2", - "type": "class" - } - }, - { - "name": "hashCode", - "qualifiedName": "test_package_imported.main.Whataclass2.hashCode", - "href": "test_package_imported.main/Whataclass2/hashCode.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Whataclass2", - "type": "class" - } - }, - { - "name": "noSuchMethod", - "qualifiedName": "test_package_imported.main.Whataclass2.noSuchMethod", - "href": "test_package_imported.main/Whataclass2/noSuchMethod.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Whataclass2", - "type": "class" - } - }, - { - "name": "runtimeType", - "qualifiedName": "test_package_imported.main.Whataclass2.runtimeType", - "href": "test_package_imported.main/Whataclass2/runtimeType.html", - "type": "property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Whataclass2", - "type": "class" - } - }, - { - "name": "toString", - "qualifiedName": "test_package_imported.main.Whataclass2.toString", - "href": "test_package_imported.main/Whataclass2/toString.html", - "type": "method", - "overriddenDepth": 0, - "enclosedBy": { - "name": "Whataclass2", - "type": "class" - } - }, - { - "name": "two_exports", - "qualifiedName": "two_exports", - "href": "two_exports/two_exports-library.html", - "type": "library", - "overriddenDepth": 0 - }, - { - "name": "BaseClass", - "qualifiedName": "two_exports.BaseClass", - "href": "two_exports/BaseClass-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "two_exports", - "type": "library" - } - }, - { - "name": "BaseClass", - "qualifiedName": "two_exports.BaseClass", - "href": "two_exports/BaseClass/BaseClass.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "BaseClass", - "type": "class" - } - }, - { - "name": "ExtendingClass", - "qualifiedName": "two_exports.ExtendingClass", - "href": "two_exports/ExtendingClass-class.html", - "type": "class", - "overriddenDepth": 0, - "enclosedBy": { - "name": "two_exports", - "type": "library" - } - }, - { - "name": "ExtendingClass", - "qualifiedName": "two_exports.ExtendingClass", - "href": "two_exports/ExtendingClass/ExtendingClass.html", - "type": "constructor", - "overriddenDepth": 0, - "enclosedBy": { - "name": "ExtendingClass", - "type": "class" - } - }, - { - "name": "topLevelVariable", - "qualifiedName": "two_exports.topLevelVariable", - "href": "two_exports/topLevelVariable.html", - "type": "top-level property", - "overriddenDepth": 0, - "enclosedBy": { - "name": "two_exports", - "type": "library" - } - } -] diff --git a/testing/test_package_docs/is_deprecated/is_deprecated-library.html b/testing/test_package_docs/is_deprecated/is_deprecated-library.html deleted file mode 100644 index 4cac1680f9..0000000000 --- a/testing/test_package_docs/is_deprecated/is_deprecated-library.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - is_deprecated library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    is_deprecated
    - -
    - -
    - - - -
    -

    is_deprecated library

    - -
    -

    This lib is deprecated. It never had a chance

    -
    - - - - - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/reexport_one/SomeOtherClass-class.html b/testing/test_package_docs/reexport_one/SomeOtherClass-class.html deleted file mode 100644 index 6974015a20..0000000000 --- a/testing/test_package_docs/reexport_one/SomeOtherClass-class.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - SomeOtherClass class - reexport_one library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    SomeOtherClass
    - -
    - -
    - - - -
    -

    SomeOtherClass class

    - - - -
    -

    Constructors

    - -
    -
    - SomeOtherClass() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

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

    Operators

    -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/reexport_one/SomeOtherClass/SomeOtherClass.html b/testing/test_package_docs/reexport_one/SomeOtherClass/SomeOtherClass.html deleted file mode 100644 index 7a1d9b07b4..0000000000 --- a/testing/test_package_docs/reexport_one/SomeOtherClass/SomeOtherClass.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - SomeOtherClass constructor - SomeOtherClass class - reexport_one library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    SomeOtherClass
    - -
    - -
    - - - -
    -

    SomeOtherClass constructor

    - -
    - - SomeOtherClass() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/reexport_one/SomeOtherClass/hashCode.html b/testing/test_package_docs/reexport_one/SomeOtherClass/hashCode.html deleted file mode 100644 index d13ebd9287..0000000000 --- a/testing/test_package_docs/reexport_one/SomeOtherClass/hashCode.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - hashCode property - SomeOtherClass class - reexport_one library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/reexport_one/SomeOtherClass/noSuchMethod.html b/testing/test_package_docs/reexport_one/SomeOtherClass/noSuchMethod.html deleted file mode 100644 index 6dcbf3aa70..0000000000 --- a/testing/test_package_docs/reexport_one/SomeOtherClass/noSuchMethod.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - noSuchMethod method - SomeOtherClass class - reexport_one library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

    - -
    - dynamic - noSuchMethod -(Invocation invocation) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/reexport_one/SomeOtherClass/operator_equals.html b/testing/test_package_docs/reexport_one/SomeOtherClass/operator_equals.html deleted file mode 100644 index 411c8c6f3f..0000000000 --- a/testing/test_package_docs/reexport_one/SomeOtherClass/operator_equals.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - operator == method - SomeOtherClass class - reexport_one library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator ==
    - -
    - -
    - - - -
    -

    operator == method

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

    runtimeType property

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

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/reexport_one/reexport_one-library.html b/testing/test_package_docs/reexport_one/reexport_one-library.html deleted file mode 100644 index f21f42c9c5..0000000000 --- a/testing/test_package_docs/reexport_one/reexport_one-library.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - reexport_one library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    reexport_one
    - -
    - -
    - - - -
    -

    reexport_one library Unreal -

    - -
    - -
    - -
    -

    Classes

    - -
    -
    - AUnicornClass -
    -
    - -
    -
    - SomeClass -
    -
    - -
    -
    - SomeOtherClass -
    -
    - -
    -
    - YetAnotherClass -
    -
    - -
    -
    -
    - - - - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/reexport_two/AUnicornClass-class.html b/testing/test_package_docs/reexport_two/AUnicornClass-class.html deleted file mode 100644 index 5b7a42df18..0000000000 --- a/testing/test_package_docs/reexport_two/AUnicornClass-class.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - AUnicornClass class - reexport_two library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    AUnicornClass
    - -
    - -
    - - - -
    -

    AUnicornClass class

    - - - -
    -

    Constructors

    - -
    -
    - AUnicornClass() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

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

    Operators

    -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/reexport_two/AUnicornClass/AUnicornClass.html b/testing/test_package_docs/reexport_two/AUnicornClass/AUnicornClass.html deleted file mode 100644 index 82ce22fd53..0000000000 --- a/testing/test_package_docs/reexport_two/AUnicornClass/AUnicornClass.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - AUnicornClass constructor - AUnicornClass class - reexport_two library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    AUnicornClass
    - -
    - -
    - - - -
    -

    AUnicornClass constructor

    - -
    - - AUnicornClass() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/reexport_two/AUnicornClass/hashCode.html b/testing/test_package_docs/reexport_two/AUnicornClass/hashCode.html deleted file mode 100644 index 7c86a02d20..0000000000 --- a/testing/test_package_docs/reexport_two/AUnicornClass/hashCode.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - hashCode property - AUnicornClass class - reexport_two library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/reexport_two/AUnicornClass/noSuchMethod.html b/testing/test_package_docs/reexport_two/AUnicornClass/noSuchMethod.html deleted file mode 100644 index 688ec41d81..0000000000 --- a/testing/test_package_docs/reexport_two/AUnicornClass/noSuchMethod.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - noSuchMethod method - AUnicornClass class - reexport_two library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

    - -
    - dynamic - noSuchMethod -(Invocation invocation) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/reexport_two/AUnicornClass/operator_equals.html b/testing/test_package_docs/reexport_two/AUnicornClass/operator_equals.html deleted file mode 100644 index 5f6fc5e783..0000000000 --- a/testing/test_package_docs/reexport_two/AUnicornClass/operator_equals.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - operator == method - AUnicornClass class - reexport_two library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator ==
    - -
    - -
    - - - -
    -

    operator == method

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

    runtimeType property

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

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/reexport_two/SomeClass-class.html b/testing/test_package_docs/reexport_two/SomeClass-class.html deleted file mode 100644 index 2cff883f72..0000000000 --- a/testing/test_package_docs/reexport_two/SomeClass-class.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - SomeClass class - reexport_two library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    SomeClass
    - -
    - -
    - - - -
    -

    SomeClass class

    - - - -
    -

    Constructors

    - -
    -
    - SomeClass() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

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

    Operators

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

    SomeClass constructor

    - -
    - - SomeClass() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/reexport_two/SomeClass/hashCode.html b/testing/test_package_docs/reexport_two/SomeClass/hashCode.html deleted file mode 100644 index 663ea51bec..0000000000 --- a/testing/test_package_docs/reexport_two/SomeClass/hashCode.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - hashCode property - SomeClass class - reexport_two library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

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

    noSuchMethod method

    - -
    - dynamic - noSuchMethod -(Invocation invocation) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/reexport_two/SomeClass/operator_equals.html b/testing/test_package_docs/reexport_two/SomeClass/operator_equals.html deleted file mode 100644 index 2dad9c48a1..0000000000 --- a/testing/test_package_docs/reexport_two/SomeClass/operator_equals.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - operator == method - SomeClass class - reexport_two library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator ==
    - -
    - -
    - - - -
    -

    operator == method

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

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/reexport_two/SomeClass/toString.html b/testing/test_package_docs/reexport_two/SomeClass/toString.html deleted file mode 100644 index 7b72dcfb7f..0000000000 --- a/testing/test_package_docs/reexport_two/SomeClass/toString.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - toString method - SomeClass class - reexport_two library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/reexport_two/YetAnotherClass-class.html b/testing/test_package_docs/reexport_two/YetAnotherClass-class.html deleted file mode 100644 index e9153f403c..0000000000 --- a/testing/test_package_docs/reexport_two/YetAnotherClass-class.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - YetAnotherClass class - reexport_two library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    YetAnotherClass
    - -
    - -
    - - - -
    -

    YetAnotherClass class

    - - - -
    -

    Constructors

    - -
    -
    - YetAnotherClass() -
    -
    - -
    -
    -
    - -
    -

    Properties

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

    Methods

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

    Operators

    -
    -
    - operator ==(dynamic other) - → bool - -
    -
    - -
    inherited
    -
    -
    -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/reexport_two/YetAnotherClass/YetAnotherClass.html b/testing/test_package_docs/reexport_two/YetAnotherClass/YetAnotherClass.html deleted file mode 100644 index 69dfd0f94f..0000000000 --- a/testing/test_package_docs/reexport_two/YetAnotherClass/YetAnotherClass.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - YetAnotherClass constructor - YetAnotherClass class - reexport_two library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    YetAnotherClass
    - -
    - -
    - - - -
    -

    YetAnotherClass constructor

    - -
    - - YetAnotherClass() -
    - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/reexport_two/YetAnotherClass/hashCode.html b/testing/test_package_docs/reexport_two/YetAnotherClass/hashCode.html deleted file mode 100644 index 772ce5575e..0000000000 --- a/testing/test_package_docs/reexport_two/YetAnotherClass/hashCode.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - hashCode property - YetAnotherClass class - reexport_two library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    hashCode
    - -
    - -
    - - - -
    -

    hashCode property

    - - -
    - -
    - int - hashCode -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/reexport_two/YetAnotherClass/noSuchMethod.html b/testing/test_package_docs/reexport_two/YetAnotherClass/noSuchMethod.html deleted file mode 100644 index 2cebc289ec..0000000000 --- a/testing/test_package_docs/reexport_two/YetAnotherClass/noSuchMethod.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - noSuchMethod method - YetAnotherClass class - reexport_two library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    noSuchMethod
    - -
    - -
    - - - -
    -

    noSuchMethod method

    - -
    - dynamic - noSuchMethod -(Invocation invocation) -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/reexport_two/YetAnotherClass/operator_equals.html b/testing/test_package_docs/reexport_two/YetAnotherClass/operator_equals.html deleted file mode 100644 index 534d52fe53..0000000000 --- a/testing/test_package_docs/reexport_two/YetAnotherClass/operator_equals.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - operator == method - YetAnotherClass class - reexport_two library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    operator ==
    - -
    - -
    - - - -
    -

    operator == method

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

    runtimeType property

    - - -
    - -
    - Type - runtimeType -
    inherited
    -
    - - -
    - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/reexport_two/YetAnotherClass/toString.html b/testing/test_package_docs/reexport_two/YetAnotherClass/toString.html deleted file mode 100644 index 374d54b924..0000000000 --- a/testing/test_package_docs/reexport_two/YetAnotherClass/toString.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - toString method - YetAnotherClass class - reexport_two library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    toString
    - -
    - -
    - - - -
    -

    toString method

    - -
    - String - toString -() -
    - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/reexport_two/reexport_two-library.html b/testing/test_package_docs/reexport_two/reexport_two-library.html deleted file mode 100644 index e09900e665..0000000000 --- a/testing/test_package_docs/reexport_two/reexport_two-library.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - reexport_two library - Dart API - - - - - - - - - - - - -
    - -
    - - -
    reexport_two
    - -
    - -
    - - - -
    -

    reexport_two library Unreal -

    - -
    - -
    - -
    -

    Classes

    - -
    -
    - AUnicornClass -
    -
    - -
    -
    - SomeClass -
    -
    - -
    -
    - SomeOtherClass -
    -
    - -
    -
    - YetAnotherClass -
    -
    - -
    -
    -
    - - - - - - - -
    - - - -
    - -
    - - test_package 0.0.1 - - -
    - - - - - - - - - - - diff --git a/testing/test_package_docs/static-assets/URI.js b/testing/test_package_docs/static-assets/URI.js deleted file mode 100644 index 5d73a4b5c6..0000000000 --- a/testing/test_package_docs/static-assets/URI.js +++ /dev/null @@ -1,56 +0,0 @@ -/*! URI.js v1.17.1 http://medialize.github.io/URI.js/ */ -/* build contains: URI.js */ -(function(p,w){"object"===typeof exports?module.exports=w(require("./punycode"),require("./IPv6"),require("./SecondLevelDomains")):"function"===typeof define&&define.amd?define(["./punycode","./IPv6","./SecondLevelDomains"],w):p.URI=w(p.punycode,p.IPv6,p.SecondLevelDomains,p)})(this,function(p,w,u,m){function d(a,b){var c=1<=arguments.length,f=2<=arguments.length;if(!(this instanceof d))return c?f?new d(a,b):new d(a):new d;if(void 0===a){if(c)throw new TypeError("undefined is not a valid argument for URI"); -a="undefined"!==typeof location?location.href+"":""}this.href(a);return void 0!==b?this.absoluteTo(b):this}function r(a){return a.replace(/([.*+?^=!:${}()|[\]\/\\])/g,"\\$1")}function v(a){return void 0===a?"Undefined":String(Object.prototype.toString.call(a)).slice(8,-1)}function h(a){return"Array"===v(a)}function D(a,b){var c={},d,g;if("RegExp"===v(b))c=null;else if(h(b))for(d=0,g=b.length;d]+|\(([^\s()<>]+|(\([^\s()<>]+\)))*\))+(?:\(([^\s()<>]+|(\([^\s()<>]+\)))*\)|[^\s`!()\[\]{};:'".,<>?\u00ab\u00bb\u201c\u201d\u2018\u2019]))/ig;d.findUri={start:/\b(?:([a-z][a-z0-9.+-]*:\/\/)|www\.)/gi,end:/[\s\r\n]|$/,trim:/[`!()\[\]{};:'".,<>?\u00ab\u00bb\u201c\u201d\u201e\u2018\u2019]+$/};d.defaultPorts={http:"80",https:"443",ftp:"21",gopher:"70",ws:"80",wss:"443"};d.invalid_hostname_characters= -/[^a-zA-Z0-9\.-]/;d.domAttributes={a:"href",blockquote:"cite",link:"href",base:"href",script:"src",form:"action",img:"src",area:"href",iframe:"src",embed:"src",source:"src",track:"src",input:"src",audio:"src",video:"src"};d.getDomAttribute=function(a){if(a&&a.nodeName){var b=a.nodeName.toLowerCase();return"input"===b&&"image"!==a.type?void 0:d.domAttributes[b]}};d.encode=B;d.decode=decodeURIComponent;d.iso8859=function(){d.encode=escape;d.decode=unescape};d.unicode=function(){d.encode=B;d.decode= -decodeURIComponent};d.characters={pathname:{encode:{expression:/%(24|26|2B|2C|3B|3D|3A|40)/ig,map:{"%24":"$","%26":"&","%2B":"+","%2C":",","%3B":";","%3D":"=","%3A":":","%40":"@"}},decode:{expression:/[\/\?#]/g,map:{"/":"%2F","?":"%3F","#":"%23"}}},reserved:{encode:{expression:/%(21|23|24|26|27|28|29|2A|2B|2C|2F|3A|3B|3D|3F|40|5B|5D)/ig,map:{"%3A":":","%2F":"/","%3F":"?","%23":"#","%5B":"[","%5D":"]","%40":"@","%21":"!","%24":"$","%26":"&","%27":"'","%28":"(","%29":")","%2A":"*","%2B":"+","%2C":",", -"%3B":";","%3D":"="}}},urnpath:{encode:{expression:/%(21|24|27|28|29|2A|2B|2C|3B|3D|40)/ig,map:{"%21":"!","%24":"$","%27":"'","%28":"(","%29":")","%2A":"*","%2B":"+","%2C":",","%3B":";","%3D":"=","%40":"@"}},decode:{expression:/[\/\?#:]/g,map:{"/":"%2F","?":"%3F","#":"%23",":":"%3A"}}}};d.encodeQuery=function(a,b){var c=d.encode(a+"");void 0===b&&(b=d.escapeQuerySpace);return b?c.replace(/%20/g,"+"):c};d.decodeQuery=function(a,b){a+="";void 0===b&&(b=d.escapeQuerySpace);try{return d.decode(b?a.replace(/\+/g, -"%20"):a)}catch(c){return a}};var t={encode:"encode",decode:"decode"},y,C=function(a,b){return function(c){try{return d[b](c+"").replace(d.characters[a][b].expression,function(c){return d.characters[a][b].map[c]})}catch(f){return c}}};for(y in t)d[y+"PathSegment"]=C("pathname",t[y]),d[y+"UrnPathSegment"]=C("urnpath",t[y]);t=function(a,b,c){return function(f){var g;g=c?function(a){return d[b](d[c](a))}:d[b];f=(f+"").split(a);for(var e=0,l=f.length;ed)return a.charAt(0)===b.charAt(0)&&"/"===a.charAt(0)?"/":"";if("/"!==a.charAt(d)||"/"!==b.charAt(d))d=a.substring(0,d).lastIndexOf("/"); -return a.substring(0,d+1)};d.withinString=function(a,b,c){c||(c={});var f=c.start||d.findUri.start,e=c.end||d.findUri.end,k=c.trim||d.findUri.trim,l=/[a-z0-9-]=["']?$/i;for(f.lastIndex=0;;){var n=f.exec(a);if(!n)break;n=n.index;if(c.ignoreHtml){var h=a.slice(Math.max(n-3,0),n);if(h&&l.test(h))continue}var h=n+a.slice(n).search(e),m=a.slice(n,h).replace(k,"");c.ignore&&c.ignore.test(m)||(h=n+m.length,m=b(m,n,h,a),a=a.slice(0,n)+m+a.slice(h),f.lastIndex=n+m.length)}f.lastIndex=0;return a};d.ensureValidHostname= -function(a){if(a.match(d.invalid_hostname_characters)){if(!p)throw new TypeError('Hostname "'+a+'" contains characters other than [A-Z0-9.-] and Punycode.js is not available');if(p.toASCII(a).match(d.invalid_hostname_characters))throw new TypeError('Hostname "'+a+'" contains characters other than [A-Z0-9.-]');}};d.noConflict=function(a){if(a)return a={URI:this.noConflict()},m.URITemplate&&"function"===typeof m.URITemplate.noConflict&&(a.URITemplate=m.URITemplate.noConflict()),m.IPv6&&"function"=== -typeof m.IPv6.noConflict&&(a.IPv6=m.IPv6.noConflict()),m.SecondLevelDomains&&"function"===typeof m.SecondLevelDomains.noConflict&&(a.SecondLevelDomains=m.SecondLevelDomains.noConflict()),a;m.URI===this&&(m.URI=H);return this};e.build=function(a){if(!0===a)this._deferred_build=!0;else if(void 0===a||this._deferred_build)this._string=d.build(this._parts),this._deferred_build=!1;return this};e.clone=function(){return new d(this)};e.valueOf=e.toString=function(){return this.build(!1)._string};e.protocol= -x("protocol");e.username=x("username");e.password=x("password");e.hostname=x("hostname");e.port=x("port");e.query=F("query","?");e.fragment=F("fragment","#");e.search=function(a,b){var c=this.query(a,b);return"string"===typeof c&&c.length?"?"+c:c};e.hash=function(a,b){var c=this.fragment(a,b);return"string"===typeof c&&c.length?"#"+c:c};e.pathname=function(a,b){if(void 0===a||!0===a){var c=this._parts.path||(this._parts.hostname?"/":"");return a?(this._parts.urn?d.decodeUrnPath:d.decodePath)(c):c}this._parts.path= -this._parts.urn?a?d.recodeUrnPath(a):"":a?d.recodePath(a):"/";this.build(!b);return this};e.path=e.pathname;e.href=function(a,b){var c;if(void 0===a)return this.toString();this._string="";this._parts=d._parts();var f=a instanceof d,e="object"===typeof a&&(a.hostname||a.path||a.pathname);a.nodeName&&(e=d.getDomAttribute(a),a=a[e]||"",e=!1);!f&&e&&void 0!==a.pathname&&(a=a.toString());if("string"===typeof a||a instanceof String)this._parts=d.parse(String(a),this._parts);else if(f||e)for(c in f=f?a._parts: -a,f)q.call(this._parts,c)&&(this._parts[c]=f[c]);else throw new TypeError("invalid input");this.build(!b);return this};e.is=function(a){var b=!1,c=!1,f=!1,e=!1,k=!1,l=!1,h=!1,m=!this._parts.urn;this._parts.hostname&&(m=!1,c=d.ip4_expression.test(this._parts.hostname),f=d.ip6_expression.test(this._parts.hostname),b=c||f,k=(e=!b)&&u&&u.has(this._parts.hostname),l=e&&d.idn_expression.test(this._parts.hostname),h=e&&d.punycode_expression.test(this._parts.hostname));switch(a.toLowerCase()){case "relative":return m; -case "absolute":return!m;case "domain":case "name":return e;case "sld":return k;case "ip":return b;case "ip4":case "ipv4":case "inet4":return c;case "ip6":case "ipv6":case "inet6":return f;case "idn":return l;case "url":return!this._parts.urn;case "urn":return!!this._parts.urn;case "punycode":return h}return null};var I=e.protocol,J=e.port,K=e.hostname;e.protocol=function(a,b){if(void 0!==a&&a&&(a=a.replace(/:(\/\/)?$/,""),!a.match(d.protocol_expression)))throw new TypeError('Protocol "'+a+"\" contains characters other than [A-Z0-9.+-] or doesn't start with [A-Z]"); -return I.call(this,a,b)};e.scheme=e.protocol;e.port=function(a,b){if(this._parts.urn)return void 0===a?"":this;if(void 0!==a&&(0===a&&(a=null),a&&(a+="",":"===a.charAt(0)&&(a=a.substring(1)),a.match(/[^0-9]/))))throw new TypeError('Port "'+a+'" contains characters other than [0-9]');return J.call(this,a,b)};e.hostname=function(a,b){if(this._parts.urn)return void 0===a?"":this;if(void 0!==a){var c={};if("/"!==d.parseHost(a,c))throw new TypeError('Hostname "'+a+'" contains characters other than [A-Z0-9.-]'); -a=c.hostname}return K.call(this,a,b)};e.origin=function(a,b){if(this._parts.urn)return void 0===a?"":this;if(void 0===a){var c=this.protocol();return this.authority()?(c?c+"://":"")+this.authority():""}c=d(a);this.protocol(c.protocol()).authority(c.authority()).build(!b);return this};e.host=function(a,b){if(this._parts.urn)return void 0===a?"":this;if(void 0===a)return this._parts.hostname?d.buildHost(this._parts):"";if("/"!==d.parseHost(a,this._parts))throw new TypeError('Hostname "'+a+'" contains characters other than [A-Z0-9.-]'); -this.build(!b);return this};e.authority=function(a,b){if(this._parts.urn)return void 0===a?"":this;if(void 0===a)return this._parts.hostname?d.buildAuthority(this._parts):"";if("/"!==d.parseAuthority(a,this._parts))throw new TypeError('Hostname "'+a+'" contains characters other than [A-Z0-9.-]');this.build(!b);return this};e.userinfo=function(a,b){if(this._parts.urn)return void 0===a?"":this;if(void 0===a){if(!this._parts.username)return"";var c=d.buildUserinfo(this._parts);return c.substring(0,c.length- -1)}"@"!==a[a.length-1]&&(a+="@");d.parseUserinfo(a,this._parts);this.build(!b);return this};e.resource=function(a,b){var c;if(void 0===a)return this.path()+this.search()+this.hash();c=d.parse(a);this._parts.path=c.path;this._parts.query=c.query;this._parts.fragment=c.fragment;this.build(!b);return this};e.subdomain=function(a,b){if(this._parts.urn)return void 0===a?"":this;if(void 0===a){if(!this._parts.hostname||this.is("IP"))return"";var c=this._parts.hostname.length-this.domain().length-1;return this._parts.hostname.substring(0, -c)||""}c=this._parts.hostname.length-this.domain().length;c=this._parts.hostname.substring(0,c);c=new RegExp("^"+r(c));a&&"."!==a.charAt(a.length-1)&&(a+=".");a&&d.ensureValidHostname(a);this._parts.hostname=this._parts.hostname.replace(c,a);this.build(!b);return this};e.domain=function(a,b){if(this._parts.urn)return void 0===a?"":this;"boolean"===typeof a&&(b=a,a=void 0);if(void 0===a){if(!this._parts.hostname||this.is("IP"))return"";var c=this._parts.hostname.match(/\./g);if(c&&2>c.length)return this._parts.hostname; -c=this._parts.hostname.length-this.tld(b).length-1;c=this._parts.hostname.lastIndexOf(".",c-1)+1;return this._parts.hostname.substring(c)||""}if(!a)throw new TypeError("cannot set domain empty");d.ensureValidHostname(a);!this._parts.hostname||this.is("IP")?this._parts.hostname=a:(c=new RegExp(r(this.domain())+"$"),this._parts.hostname=this._parts.hostname.replace(c,a));this.build(!b);return this};e.tld=function(a,b){if(this._parts.urn)return void 0===a?"":this;"boolean"===typeof a&&(b=a,a=void 0); -if(void 0===a){if(!this._parts.hostname||this.is("IP"))return"";var c=this._parts.hostname.lastIndexOf("."),c=this._parts.hostname.substring(c+1);return!0!==b&&u&&u.list[c.toLowerCase()]?u.get(this._parts.hostname)||c:c}if(a)if(a.match(/[^a-zA-Z0-9-]/))if(u&&u.is(a))c=new RegExp(r(this.tld())+"$"),this._parts.hostname=this._parts.hostname.replace(c,a);else throw new TypeError('TLD "'+a+'" contains characters other than [A-Z0-9]');else{if(!this._parts.hostname||this.is("IP"))throw new ReferenceError("cannot set TLD on non-domain host"); -c=new RegExp(r(this.tld())+"$");this._parts.hostname=this._parts.hostname.replace(c,a)}else throw new TypeError("cannot set TLD empty");this.build(!b);return this};e.directory=function(a,b){if(this._parts.urn)return void 0===a?"":this;if(void 0===a||!0===a){if(!this._parts.path&&!this._parts.hostname)return"";if("/"===this._parts.path)return"/";var c=this._parts.path.length-this.filename().length-1,c=this._parts.path.substring(0,c)||(this._parts.hostname?"/":"");return a?d.decodePath(c):c}c=this._parts.path.length- -this.filename().length;c=this._parts.path.substring(0,c);c=new RegExp("^"+r(c));this.is("relative")||(a||(a="/"),"/"!==a.charAt(0)&&(a="/"+a));a&&"/"!==a.charAt(a.length-1)&&(a+="/");a=d.recodePath(a);this._parts.path=this._parts.path.replace(c,a);this.build(!b);return this};e.filename=function(a,b){if(this._parts.urn)return void 0===a?"":this;if(void 0===a||!0===a){if(!this._parts.path||"/"===this._parts.path)return"";var c=this._parts.path.lastIndexOf("/"),c=this._parts.path.substring(c+1);return a? -d.decodePathSegment(c):c}c=!1;"/"===a.charAt(0)&&(a=a.substring(1));a.match(/\.?\//)&&(c=!0);var f=new RegExp(r(this.filename())+"$");a=d.recodePath(a);this._parts.path=this._parts.path.replace(f,a);c?this.normalizePath(b):this.build(!b);return this};e.suffix=function(a,b){if(this._parts.urn)return void 0===a?"":this;if(void 0===a||!0===a){if(!this._parts.path||"/"===this._parts.path)return"";var c=this.filename(),f=c.lastIndexOf(".");if(-1===f)return"";c=c.substring(f+1);c=/^[a-z0-9%]+$/i.test(c)? -c:"";return a?d.decodePathSegment(c):c}"."===a.charAt(0)&&(a=a.substring(1));if(c=this.suffix())f=a?new RegExp(r(c)+"$"):new RegExp(r("."+c)+"$");else{if(!a)return this;this._parts.path+="."+d.recodePath(a)}f&&(a=d.recodePath(a),this._parts.path=this._parts.path.replace(f,a));this.build(!b);return this};e.segment=function(a,b,c){var d=this._parts.urn?":":"/",e=this.path(),k="/"===e.substring(0,1),e=e.split(d);void 0!==a&&"number"!==typeof a&&(c=b,b=a,a=void 0);if(void 0!==a&&"number"!==typeof a)throw Error('Bad segment "'+ -a+'", must be 0-based integer');k&&e.shift();0>a&&(a=Math.max(e.length+a,0));if(void 0===b)return void 0===a?e:e[a];if(null===a||void 0===e[a])if(h(b)){e=[];a=0;for(var l=b.length;a .caret, - .dropup > .btn > .caret { - border-top-color: #000 !important; - } - .label { - border: 1px solid #000; - } - .table { - border-collapse: collapse !important; - } - .table td, - .table th { - background-color: #fff !important; - } - .table-bordered th, - .table-bordered td { - border: 1px solid #ddd !important; - } -} -@font-face { - font-family: 'Glyphicons Halflings'; - - src: url('../fonts/glyphicons-halflings-regular.eot'); - src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); -} -.glyphicon { - position: relative; - top: 1px; - display: inline-block; - font-family: 'Glyphicons Halflings'; - font-style: normal; - font-weight: normal; - line-height: 1; - - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -.glyphicon-asterisk:before { - content: "\2a"; -} -.glyphicon-plus:before { - content: "\2b"; -} -.glyphicon-euro:before, -.glyphicon-eur:before { - content: "\20ac"; -} -.glyphicon-minus:before { - content: "\2212"; -} -.glyphicon-cloud:before { - content: "\2601"; -} -.glyphicon-envelope:before { - content: "\2709"; -} -.glyphicon-pencil:before { - content: "\270f"; -} -.glyphicon-glass:before { - content: "\e001"; -} -.glyphicon-music:before { - content: "\e002"; -} -.glyphicon-search:before { - content: "\e003"; -} -.glyphicon-heart:before { - content: "\e005"; -} -.glyphicon-star:before { - content: "\e006"; -} -.glyphicon-star-empty:before { - content: "\e007"; -} -.glyphicon-user:before { - content: "\e008"; -} -.glyphicon-film:before { - content: "\e009"; -} -.glyphicon-th-large:before { - content: "\e010"; -} -.glyphicon-th:before { - content: "\e011"; -} -.glyphicon-th-list:before { - content: "\e012"; -} -.glyphicon-ok:before { - content: "\e013"; -} -.glyphicon-remove:before { - content: "\e014"; -} -.glyphicon-zoom-in:before { - content: "\e015"; -} -.glyphicon-zoom-out:before { - content: "\e016"; -} -.glyphicon-off:before { - content: "\e017"; -} -.glyphicon-signal:before { - content: "\e018"; -} -.glyphicon-cog:before { - content: "\e019"; -} -.glyphicon-trash:before { - content: "\e020"; -} -.glyphicon-home:before { - content: "\e021"; -} -.glyphicon-file:before { - content: "\e022"; -} -.glyphicon-time:before { - content: "\e023"; -} -.glyphicon-road:before { - content: "\e024"; -} -.glyphicon-download-alt:before { - content: "\e025"; -} -.glyphicon-download:before { - content: "\e026"; -} -.glyphicon-upload:before { - content: "\e027"; -} -.glyphicon-inbox:before { - content: "\e028"; -} -.glyphicon-play-circle:before { - content: "\e029"; -} -.glyphicon-repeat:before { - content: "\e030"; -} -.glyphicon-refresh:before { - content: "\e031"; -} -.glyphicon-list-alt:before { - content: "\e032"; -} -.glyphicon-lock:before { - content: "\e033"; -} -.glyphicon-flag:before { - content: "\e034"; -} -.glyphicon-headphones:before { - content: "\e035"; -} -.glyphicon-volume-off:before { - content: "\e036"; -} -.glyphicon-volume-down:before { - content: "\e037"; -} -.glyphicon-volume-up:before { - content: "\e038"; -} -.glyphicon-qrcode:before { - content: "\e039"; -} -.glyphicon-barcode:before { - content: "\e040"; -} -.glyphicon-tag:before { - content: "\e041"; -} -.glyphicon-tags:before { - content: "\e042"; -} -.glyphicon-book:before { - content: "\e043"; -} -.glyphicon-bookmark:before { - content: "\e044"; -} -.glyphicon-print:before { - content: "\e045"; -} -.glyphicon-camera:before { - content: "\e046"; -} -.glyphicon-font:before { - content: "\e047"; -} -.glyphicon-bold:before { - content: "\e048"; -} -.glyphicon-italic:before { - content: "\e049"; -} -.glyphicon-text-height:before { - content: "\e050"; -} -.glyphicon-text-width:before { - content: "\e051"; -} -.glyphicon-align-left:before { - content: "\e052"; -} -.glyphicon-align-center:before { - content: "\e053"; -} -.glyphicon-align-right:before { - content: "\e054"; -} -.glyphicon-align-justify:before { - content: "\e055"; -} -.glyphicon-list:before { - content: "\e056"; -} -.glyphicon-indent-left:before { - content: "\e057"; -} -.glyphicon-indent-right:before { - content: "\e058"; -} -.glyphicon-facetime-video:before { - content: "\e059"; -} -.glyphicon-picture:before { - content: "\e060"; -} -.glyphicon-map-marker:before { - content: "\e062"; -} -.glyphicon-adjust:before { - content: "\e063"; -} -.glyphicon-tint:before { - content: "\e064"; -} -.glyphicon-edit:before { - content: "\e065"; -} -.glyphicon-share:before { - content: "\e066"; -} -.glyphicon-check:before { - content: "\e067"; -} -.glyphicon-move:before { - content: "\e068"; -} -.glyphicon-step-backward:before { - content: "\e069"; -} -.glyphicon-fast-backward:before { - content: "\e070"; -} -.glyphicon-backward:before { - content: "\e071"; -} -.glyphicon-play:before { - content: "\e072"; -} -.glyphicon-pause:before { - content: "\e073"; -} -.glyphicon-stop:before { - content: "\e074"; -} -.glyphicon-forward:before { - content: "\e075"; -} -.glyphicon-fast-forward:before { - content: "\e076"; -} -.glyphicon-step-forward:before { - content: "\e077"; -} -.glyphicon-eject:before { - content: "\e078"; -} -.glyphicon-chevron-left:before { - content: "\e079"; -} -.glyphicon-chevron-right:before { - content: "\e080"; -} -.glyphicon-plus-sign:before { - content: "\e081"; -} -.glyphicon-minus-sign:before { - content: "\e082"; -} -.glyphicon-remove-sign:before { - content: "\e083"; -} -.glyphicon-ok-sign:before { - content: "\e084"; -} -.glyphicon-question-sign:before { - content: "\e085"; -} -.glyphicon-info-sign:before { - content: "\e086"; -} -.glyphicon-screenshot:before { - content: "\e087"; -} -.glyphicon-remove-circle:before { - content: "\e088"; -} -.glyphicon-ok-circle:before { - content: "\e089"; -} -.glyphicon-ban-circle:before { - content: "\e090"; -} -.glyphicon-arrow-left:before { - content: "\e091"; -} -.glyphicon-arrow-right:before { - content: "\e092"; -} -.glyphicon-arrow-up:before { - content: "\e093"; -} -.glyphicon-arrow-down:before { - content: "\e094"; -} -.glyphicon-share-alt:before { - content: "\e095"; -} -.glyphicon-resize-full:before { - content: "\e096"; -} -.glyphicon-resize-small:before { - content: "\e097"; -} -.glyphicon-exclamation-sign:before { - content: "\e101"; -} -.glyphicon-gift:before { - content: "\e102"; -} -.glyphicon-leaf:before { - content: "\e103"; -} -.glyphicon-fire:before { - content: "\e104"; -} -.glyphicon-eye-open:before { - content: "\e105"; -} -.glyphicon-eye-close:before { - content: "\e106"; -} -.glyphicon-warning-sign:before { - content: "\e107"; -} -.glyphicon-plane:before { - content: "\e108"; -} -.glyphicon-calendar:before { - content: "\e109"; -} -.glyphicon-random:before { - content: "\e110"; -} -.glyphicon-comment:before { - content: "\e111"; -} -.glyphicon-magnet:before { - content: "\e112"; -} -.glyphicon-chevron-up:before { - content: "\e113"; -} -.glyphicon-chevron-down:before { - content: "\e114"; -} -.glyphicon-retweet:before { - content: "\e115"; -} -.glyphicon-shopping-cart:before { - content: "\e116"; -} -.glyphicon-folder-close:before { - content: "\e117"; -} -.glyphicon-folder-open:before { - content: "\e118"; -} -.glyphicon-resize-vertical:before { - content: "\e119"; -} -.glyphicon-resize-horizontal:before { - content: "\e120"; -} -.glyphicon-hdd:before { - content: "\e121"; -} -.glyphicon-bullhorn:before { - content: "\e122"; -} -.glyphicon-bell:before { - content: "\e123"; -} -.glyphicon-certificate:before { - content: "\e124"; -} -.glyphicon-thumbs-up:before { - content: "\e125"; -} -.glyphicon-thumbs-down:before { - content: "\e126"; -} -.glyphicon-hand-right:before { - content: "\e127"; -} -.glyphicon-hand-left:before { - content: "\e128"; -} -.glyphicon-hand-up:before { - content: "\e129"; -} -.glyphicon-hand-down:before { - content: "\e130"; -} -.glyphicon-circle-arrow-right:before { - content: "\e131"; -} -.glyphicon-circle-arrow-left:before { - content: "\e132"; -} -.glyphicon-circle-arrow-up:before { - content: "\e133"; -} -.glyphicon-circle-arrow-down:before { - content: "\e134"; -} -.glyphicon-globe:before { - content: "\e135"; -} -.glyphicon-wrench:before { - content: "\e136"; -} -.glyphicon-tasks:before { - content: "\e137"; -} -.glyphicon-filter:before { - content: "\e138"; -} -.glyphicon-briefcase:before { - content: "\e139"; -} -.glyphicon-fullscreen:before { - content: "\e140"; -} -.glyphicon-dashboard:before { - content: "\e141"; -} -.glyphicon-paperclip:before { - content: "\e142"; -} -.glyphicon-heart-empty:before { - content: "\e143"; -} -.glyphicon-link:before { - content: "\e144"; -} -.glyphicon-phone:before { - content: "\e145"; -} -.glyphicon-pushpin:before { - content: "\e146"; -} -.glyphicon-usd:before { - content: "\e148"; -} -.glyphicon-gbp:before { - content: "\e149"; -} -.glyphicon-sort:before { - content: "\e150"; -} -.glyphicon-sort-by-alphabet:before { - content: "\e151"; -} -.glyphicon-sort-by-alphabet-alt:before { - content: "\e152"; -} -.glyphicon-sort-by-order:before { - content: "\e153"; -} -.glyphicon-sort-by-order-alt:before { - content: "\e154"; -} -.glyphicon-sort-by-attributes:before { - content: "\e155"; -} -.glyphicon-sort-by-attributes-alt:before { - content: "\e156"; -} -.glyphicon-unchecked:before { - content: "\e157"; -} -.glyphicon-expand:before { - content: "\e158"; -} -.glyphicon-collapse-down:before { - content: "\e159"; -} -.glyphicon-collapse-up:before { - content: "\e160"; -} -.glyphicon-log-in:before { - content: "\e161"; -} -.glyphicon-flash:before { - content: "\e162"; -} -.glyphicon-log-out:before { - content: "\e163"; -} -.glyphicon-new-window:before { - content: "\e164"; -} -.glyphicon-record:before { - content: "\e165"; -} -.glyphicon-save:before { - content: "\e166"; -} -.glyphicon-open:before { - content: "\e167"; -} -.glyphicon-saved:before { - content: "\e168"; -} -.glyphicon-import:before { - content: "\e169"; -} -.glyphicon-export:before { - content: "\e170"; -} -.glyphicon-send:before { - content: "\e171"; -} -.glyphicon-floppy-disk:before { - content: "\e172"; -} -.glyphicon-floppy-saved:before { - content: "\e173"; -} -.glyphicon-floppy-remove:before { - content: "\e174"; -} -.glyphicon-floppy-save:before { - content: "\e175"; -} -.glyphicon-floppy-open:before { - content: "\e176"; -} -.glyphicon-credit-card:before { - content: "\e177"; -} -.glyphicon-transfer:before { - content: "\e178"; -} -.glyphicon-cutlery:before { - content: "\e179"; -} -.glyphicon-header:before { - content: "\e180"; -} -.glyphicon-compressed:before { - content: "\e181"; -} -.glyphicon-earphone:before { - content: "\e182"; -} -.glyphicon-phone-alt:before { - content: "\e183"; -} -.glyphicon-tower:before { - content: "\e184"; -} -.glyphicon-stats:before { - content: "\e185"; -} -.glyphicon-sd-video:before { - content: "\e186"; -} -.glyphicon-hd-video:before { - content: "\e187"; -} -.glyphicon-subtitles:before { - content: "\e188"; -} -.glyphicon-sound-stereo:before { - content: "\e189"; -} -.glyphicon-sound-dolby:before { - content: "\e190"; -} -.glyphicon-sound-5-1:before { - content: "\e191"; -} -.glyphicon-sound-6-1:before { - content: "\e192"; -} -.glyphicon-sound-7-1:before { - content: "\e193"; -} -.glyphicon-copyright-mark:before { - content: "\e194"; -} -.glyphicon-registration-mark:before { - content: "\e195"; -} -.glyphicon-cloud-download:before { - content: "\e197"; -} -.glyphicon-cloud-upload:before { - content: "\e198"; -} -.glyphicon-tree-conifer:before { - content: "\e199"; -} -.glyphicon-tree-deciduous:before { - content: "\e200"; -} -.glyphicon-cd:before { - content: "\e201"; -} -.glyphicon-save-file:before { - content: "\e202"; -} -.glyphicon-open-file:before { - content: "\e203"; -} -.glyphicon-level-up:before { - content: "\e204"; -} -.glyphicon-copy:before { - content: "\e205"; -} -.glyphicon-paste:before { - content: "\e206"; -} -.glyphicon-alert:before { - content: "\e209"; -} -.glyphicon-equalizer:before { - content: "\e210"; -} -.glyphicon-king:before { - content: "\e211"; -} -.glyphicon-queen:before { - content: "\e212"; -} -.glyphicon-pawn:before { - content: "\e213"; -} -.glyphicon-bishop:before { - content: "\e214"; -} -.glyphicon-knight:before { - content: "\e215"; -} -.glyphicon-baby-formula:before { - content: "\e216"; -} -.glyphicon-tent:before { - content: "\26fa"; -} -.glyphicon-blackboard:before { - content: "\e218"; -} -.glyphicon-bed:before { - content: "\e219"; -} -.glyphicon-apple:before { - content: "\f8ff"; -} -.glyphicon-erase:before { - content: "\e221"; -} -.glyphicon-hourglass:before { - content: "\231b"; -} -.glyphicon-lamp:before { - content: "\e223"; -} -.glyphicon-duplicate:before { - content: "\e224"; -} -.glyphicon-piggy-bank:before { - content: "\e225"; -} -.glyphicon-scissors:before { - content: "\e226"; -} -.glyphicon-bitcoin:before { - content: "\e227"; -} -.glyphicon-btc:before { - content: "\e227"; -} -.glyphicon-xbt:before { - content: "\e227"; -} -.glyphicon-yen:before { - content: "\00a5"; -} -.glyphicon-jpy:before { - content: "\00a5"; -} -.glyphicon-ruble:before { - content: "\20bd"; -} -.glyphicon-rub:before { - content: "\20bd"; -} -.glyphicon-scale:before { - content: "\e230"; -} -.glyphicon-ice-lolly:before { - content: "\e231"; -} -.glyphicon-ice-lolly-tasted:before { - content: "\e232"; -} -.glyphicon-education:before { - content: "\e233"; -} -.glyphicon-option-horizontal:before { - content: "\e234"; -} -.glyphicon-option-vertical:before { - content: "\e235"; -} -.glyphicon-menu-hamburger:before { - content: "\e236"; -} -.glyphicon-modal-window:before { - content: "\e237"; -} -.glyphicon-oil:before { - content: "\e238"; -} -.glyphicon-grain:before { - content: "\e239"; -} -.glyphicon-sunglasses:before { - content: "\e240"; -} -.glyphicon-text-size:before { - content: "\e241"; -} -.glyphicon-text-color:before { - content: "\e242"; -} -.glyphicon-text-background:before { - content: "\e243"; -} -.glyphicon-object-align-top:before { - content: "\e244"; -} -.glyphicon-object-align-bottom:before { - content: "\e245"; -} -.glyphicon-object-align-horizontal:before { - content: "\e246"; -} -.glyphicon-object-align-left:before { - content: "\e247"; -} -.glyphicon-object-align-vertical:before { - content: "\e248"; -} -.glyphicon-object-align-right:before { - content: "\e249"; -} -.glyphicon-triangle-right:before { - content: "\e250"; -} -.glyphicon-triangle-left:before { - content: "\e251"; -} -.glyphicon-triangle-bottom:before { - content: "\e252"; -} -.glyphicon-triangle-top:before { - content: "\e253"; -} -.glyphicon-console:before { - content: "\e254"; -} -.glyphicon-superscript:before { - content: "\e255"; -} -.glyphicon-subscript:before { - content: "\e256"; -} -.glyphicon-menu-left:before { - content: "\e257"; -} -.glyphicon-menu-right:before { - content: "\e258"; -} -.glyphicon-menu-down:before { - content: "\e259"; -} -.glyphicon-menu-up:before { - content: "\e260"; -} -* { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -*:before, -*:after { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -html { - font-size: 10px; - - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} -body { - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 14px; - line-height: 1.42857143; - color: #333; - background-color: #fff; -} -input, -button, -select, -textarea { - font-family: inherit; - font-size: inherit; - line-height: inherit; -} -a { - color: #337ab7; - text-decoration: none; -} -a:hover, -a:focus { - color: #23527c; - text-decoration: underline; -} -a:focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -figure { - margin: 0; -} -img { - vertical-align: middle; -} -.img-responsive, -.thumbnail > img, -.thumbnail a > img, -.carousel-inner > .item > img, -.carousel-inner > .item > a > img { - display: block; - max-width: 100%; - height: auto; -} -.img-rounded { - border-radius: 6px; -} -.img-thumbnail { - display: inline-block; - max-width: 100%; - height: auto; - padding: 4px; - line-height: 1.42857143; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 4px; - -webkit-transition: all .2s ease-in-out; - -o-transition: all .2s ease-in-out; - transition: all .2s ease-in-out; -} -.img-circle { - border-radius: 50%; -} -hr { - margin-top: 20px; - margin-bottom: 20px; - border: 0; - border-top: 1px solid #eee; -} -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - border: 0; -} -.sr-only-focusable:active, -.sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; -} -[role="button"] { - cursor: pointer; -} -h1, -h2, -h3, -h4, -h5, -h6, -.h1, -.h2, -.h3, -.h4, -.h5, -.h6 { - font-family: inherit; - font-weight: 500; - line-height: 1.1; - color: inherit; -} -h1 small, -h2 small, -h3 small, -h4 small, -h5 small, -h6 small, -.h1 small, -.h2 small, -.h3 small, -.h4 small, -.h5 small, -.h6 small, -h1 .small, -h2 .small, -h3 .small, -h4 .small, -h5 .small, -h6 .small, -.h1 .small, -.h2 .small, -.h3 .small, -.h4 .small, -.h5 .small, -.h6 .small { - font-weight: normal; - line-height: 1; - color: #777; -} -h1, -.h1, -h2, -.h2, -h3, -.h3 { - margin-top: 20px; - margin-bottom: 10px; -} -h1 small, -.h1 small, -h2 small, -.h2 small, -h3 small, -.h3 small, -h1 .small, -.h1 .small, -h2 .small, -.h2 .small, -h3 .small, -.h3 .small { - font-size: 65%; -} -h4, -.h4, -h5, -.h5, -h6, -.h6 { - margin-top: 10px; - margin-bottom: 10px; -} -h4 small, -.h4 small, -h5 small, -.h5 small, -h6 small, -.h6 small, -h4 .small, -.h4 .small, -h5 .small, -.h5 .small, -h6 .small, -.h6 .small { - font-size: 75%; -} -h1, -.h1 { - font-size: 36px; -} -h2, -.h2 { - font-size: 30px; -} -h3, -.h3 { - font-size: 24px; -} -h4, -.h4 { - font-size: 18px; -} -h5, -.h5 { - font-size: 14px; -} -h6, -.h6 { - font-size: 12px; -} -p { - margin: 0 0 10px; -} -.lead { - margin-bottom: 20px; - font-size: 16px; - font-weight: 300; - line-height: 1.4; -} -@media (min-width: 768px) { - .lead { - font-size: 21px; - } -} -small, -.small { - font-size: 85%; -} -mark, -.mark { - padding: .2em; - background-color: #fcf8e3; -} -.text-left { - text-align: left; -} -.text-right { - text-align: right; -} -.text-center { - text-align: center; -} -.text-justify { - text-align: justify; -} -.text-nowrap { - white-space: nowrap; -} -.text-lowercase { - text-transform: lowercase; -} -.text-uppercase { - text-transform: uppercase; -} -.text-capitalize { - text-transform: capitalize; -} -.text-muted { - color: #777; -} -.text-primary { - color: #337ab7; -} -a.text-primary:hover { - color: #286090; -} -.text-success { - color: #3c763d; -} -a.text-success:hover { - color: #2b542c; -} -.text-info { - color: #31708f; -} -a.text-info:hover { - color: #245269; -} -.text-warning { - color: #8a6d3b; -} -a.text-warning:hover { - color: #66512c; -} -.text-danger { - color: #a94442; -} -a.text-danger:hover { - color: #843534; -} -.bg-primary { - color: #fff; - background-color: #337ab7; -} -a.bg-primary:hover { - background-color: #286090; -} -.bg-success { - background-color: #dff0d8; -} -a.bg-success:hover { - background-color: #c1e2b3; -} -.bg-info { - background-color: #d9edf7; -} -a.bg-info:hover { - background-color: #afd9ee; -} -.bg-warning { - background-color: #fcf8e3; -} -a.bg-warning:hover { - background-color: #f7ecb5; -} -.bg-danger { - background-color: #f2dede; -} -a.bg-danger:hover { - background-color: #e4b9b9; -} -.page-header { - padding-bottom: 9px; - margin: 40px 0 20px; - border-bottom: 1px solid #eee; -} -ul, -ol { - margin-top: 0; - margin-bottom: 10px; -} -ul ul, -ol ul, -ul ol, -ol ol { - margin-bottom: 0; -} -.list-unstyled { - padding-left: 0; - list-style: none; -} -.list-inline { - padding-left: 0; - margin-left: -5px; - list-style: none; -} -.list-inline > li { - display: inline-block; - padding-right: 5px; - padding-left: 5px; -} -dl { - margin-top: 0; - margin-bottom: 20px; -} -dt, -dd { - line-height: 1.42857143; -} -dt { - font-weight: bold; -} -dd { - margin-left: 0; -} -@media (min-width: 768px) { - .dl-horizontal dt { - float: left; - width: 160px; - overflow: hidden; - clear: left; - text-align: right; - text-overflow: ellipsis; - white-space: nowrap; - } - .dl-horizontal dd { - margin-left: 180px; - } -} -abbr[title], -abbr[data-original-title] { - cursor: help; - border-bottom: 1px dotted #777; -} -.initialism { - font-size: 90%; - text-transform: uppercase; -} -blockquote { - padding: 10px 20px; - margin: 0 0 20px; - font-size: 17.5px; - border-left: 5px solid #eee; -} -blockquote p:last-child, -blockquote ul:last-child, -blockquote ol:last-child { - margin-bottom: 0; -} -blockquote footer, -blockquote small, -blockquote .small { - display: block; - font-size: 80%; - line-height: 1.42857143; - color: #777; -} -blockquote footer:before, -blockquote small:before, -blockquote .small:before { - content: '\2014 \00A0'; -} -.blockquote-reverse, -blockquote.pull-right { - padding-right: 15px; - padding-left: 0; - text-align: right; - border-right: 5px solid #eee; - border-left: 0; -} -.blockquote-reverse footer:before, -blockquote.pull-right footer:before, -.blockquote-reverse small:before, -blockquote.pull-right small:before, -.blockquote-reverse .small:before, -blockquote.pull-right .small:before { - content: ''; -} -.blockquote-reverse footer:after, -blockquote.pull-right footer:after, -.blockquote-reverse small:after, -blockquote.pull-right small:after, -.blockquote-reverse .small:after, -blockquote.pull-right .small:after { - content: '\00A0 \2014'; -} -address { - margin-bottom: 20px; - font-style: normal; - line-height: 1.42857143; -} -code, -kbd, -pre, -samp { - font-family: Menlo, Monaco, Consolas, "Courier New", monospace; -} -code { - padding: 2px 4px; - font-size: 90%; - color: #c7254e; - background-color: #f9f2f4; - border-radius: 4px; -} -kbd { - padding: 2px 4px; - font-size: 90%; - color: #fff; - background-color: #333; - border-radius: 3px; - -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); -} -kbd kbd { - padding: 0; - font-size: 100%; - font-weight: bold; - -webkit-box-shadow: none; - box-shadow: none; -} -pre { - display: block; - padding: 9.5px; - margin: 0 0 10px; - font-size: 13px; - line-height: 1.42857143; - color: #333; - word-break: break-all; - word-wrap: break-word; - background-color: #f5f5f5; - border: 1px solid #ccc; - border-radius: 4px; -} -pre code { - padding: 0; - font-size: inherit; - color: inherit; - white-space: pre-wrap; - background-color: transparent; - border-radius: 0; -} -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; -} -.container { - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} -@media (min-width: 768px) { - .container { - width: 750px; - } -} -@media (min-width: 992px) { - .container { - width: 970px; - } -} -@media (min-width: 1200px) { - .container { - width: 1170px; - } -} -.container-fluid { - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} -.row { - margin-right: -15px; - margin-left: -15px; -} -.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { - position: relative; - min-height: 1px; - padding-right: 15px; - padding-left: 15px; -} -.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { - float: left; -} -.col-xs-12 { - width: 100%; -} -.col-xs-11 { - width: 91.66666667%; -} -.col-xs-10 { - width: 83.33333333%; -} -.col-xs-9 { - width: 75%; -} -.col-xs-8 { - width: 66.66666667%; -} -.col-xs-7 { - width: 58.33333333%; -} -.col-xs-6 { - width: 50%; -} -.col-xs-5 { - width: 41.66666667%; -} -.col-xs-4 { - width: 33.33333333%; -} -.col-xs-3 { - width: 25%; -} -.col-xs-2 { - width: 16.66666667%; -} -.col-xs-1 { - width: 8.33333333%; -} -.col-xs-pull-12 { - right: 100%; -} -.col-xs-pull-11 { - right: 91.66666667%; -} -.col-xs-pull-10 { - right: 83.33333333%; -} -.col-xs-pull-9 { - right: 75%; -} -.col-xs-pull-8 { - right: 66.66666667%; -} -.col-xs-pull-7 { - right: 58.33333333%; -} -.col-xs-pull-6 { - right: 50%; -} -.col-xs-pull-5 { - right: 41.66666667%; -} -.col-xs-pull-4 { - right: 33.33333333%; -} -.col-xs-pull-3 { - right: 25%; -} -.col-xs-pull-2 { - right: 16.66666667%; -} -.col-xs-pull-1 { - right: 8.33333333%; -} -.col-xs-pull-0 { - right: auto; -} -.col-xs-push-12 { - left: 100%; -} -.col-xs-push-11 { - left: 91.66666667%; -} -.col-xs-push-10 { - left: 83.33333333%; -} -.col-xs-push-9 { - left: 75%; -} -.col-xs-push-8 { - left: 66.66666667%; -} -.col-xs-push-7 { - left: 58.33333333%; -} -.col-xs-push-6 { - left: 50%; -} -.col-xs-push-5 { - left: 41.66666667%; -} -.col-xs-push-4 { - left: 33.33333333%; -} -.col-xs-push-3 { - left: 25%; -} -.col-xs-push-2 { - left: 16.66666667%; -} -.col-xs-push-1 { - left: 8.33333333%; -} -.col-xs-push-0 { - left: auto; -} -.col-xs-offset-12 { - margin-left: 100%; -} -.col-xs-offset-11 { - margin-left: 91.66666667%; -} -.col-xs-offset-10 { - margin-left: 83.33333333%; -} -.col-xs-offset-9 { - margin-left: 75%; -} -.col-xs-offset-8 { - margin-left: 66.66666667%; -} -.col-xs-offset-7 { - margin-left: 58.33333333%; -} -.col-xs-offset-6 { - margin-left: 50%; -} -.col-xs-offset-5 { - margin-left: 41.66666667%; -} -.col-xs-offset-4 { - margin-left: 33.33333333%; -} -.col-xs-offset-3 { - margin-left: 25%; -} -.col-xs-offset-2 { - margin-left: 16.66666667%; -} -.col-xs-offset-1 { - margin-left: 8.33333333%; -} -.col-xs-offset-0 { - margin-left: 0; -} -@media (min-width: 768px) { - .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { - float: left; - } - .col-sm-12 { - width: 100%; - } - .col-sm-11 { - width: 91.66666667%; - } - .col-sm-10 { - width: 83.33333333%; - } - .col-sm-9 { - width: 75%; - } - .col-sm-8 { - width: 66.66666667%; - } - .col-sm-7 { - width: 58.33333333%; - } - .col-sm-6 { - width: 50%; - } - .col-sm-5 { - width: 41.66666667%; - } - .col-sm-4 { - width: 33.33333333%; - } - .col-sm-3 { - width: 25%; - } - .col-sm-2 { - width: 16.66666667%; - } - .col-sm-1 { - width: 8.33333333%; - } - .col-sm-pull-12 { - right: 100%; - } - .col-sm-pull-11 { - right: 91.66666667%; - } - .col-sm-pull-10 { - right: 83.33333333%; - } - .col-sm-pull-9 { - right: 75%; - } - .col-sm-pull-8 { - right: 66.66666667%; - } - .col-sm-pull-7 { - right: 58.33333333%; - } - .col-sm-pull-6 { - right: 50%; - } - .col-sm-pull-5 { - right: 41.66666667%; - } - .col-sm-pull-4 { - right: 33.33333333%; - } - .col-sm-pull-3 { - right: 25%; - } - .col-sm-pull-2 { - right: 16.66666667%; - } - .col-sm-pull-1 { - right: 8.33333333%; - } - .col-sm-pull-0 { - right: auto; - } - .col-sm-push-12 { - left: 100%; - } - .col-sm-push-11 { - left: 91.66666667%; - } - .col-sm-push-10 { - left: 83.33333333%; - } - .col-sm-push-9 { - left: 75%; - } - .col-sm-push-8 { - left: 66.66666667%; - } - .col-sm-push-7 { - left: 58.33333333%; - } - .col-sm-push-6 { - left: 50%; - } - .col-sm-push-5 { - left: 41.66666667%; - } - .col-sm-push-4 { - left: 33.33333333%; - } - .col-sm-push-3 { - left: 25%; - } - .col-sm-push-2 { - left: 16.66666667%; - } - .col-sm-push-1 { - left: 8.33333333%; - } - .col-sm-push-0 { - left: auto; - } - .col-sm-offset-12 { - margin-left: 100%; - } - .col-sm-offset-11 { - margin-left: 91.66666667%; - } - .col-sm-offset-10 { - margin-left: 83.33333333%; - } - .col-sm-offset-9 { - margin-left: 75%; - } - .col-sm-offset-8 { - margin-left: 66.66666667%; - } - .col-sm-offset-7 { - margin-left: 58.33333333%; - } - .col-sm-offset-6 { - margin-left: 50%; - } - .col-sm-offset-5 { - margin-left: 41.66666667%; - } - .col-sm-offset-4 { - margin-left: 33.33333333%; - } - .col-sm-offset-3 { - margin-left: 25%; - } - .col-sm-offset-2 { - margin-left: 16.66666667%; - } - .col-sm-offset-1 { - margin-left: 8.33333333%; - } - .col-sm-offset-0 { - margin-left: 0; - } -} -@media (min-width: 992px) { - .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { - float: left; - } - .col-md-12 { - width: 100%; - } - .col-md-11 { - width: 91.66666667%; - } - .col-md-10 { - width: 83.33333333%; - } - .col-md-9 { - width: 75%; - } - .col-md-8 { - width: 66.66666667%; - } - .col-md-7 { - width: 58.33333333%; - } - .col-md-6 { - width: 50%; - } - .col-md-5 { - width: 41.66666667%; - } - .col-md-4 { - width: 33.33333333%; - } - .col-md-3 { - width: 25%; - } - .col-md-2 { - width: 16.66666667%; - } - .col-md-1 { - width: 8.33333333%; - } - .col-md-pull-12 { - right: 100%; - } - .col-md-pull-11 { - right: 91.66666667%; - } - .col-md-pull-10 { - right: 83.33333333%; - } - .col-md-pull-9 { - right: 75%; - } - .col-md-pull-8 { - right: 66.66666667%; - } - .col-md-pull-7 { - right: 58.33333333%; - } - .col-md-pull-6 { - right: 50%; - } - .col-md-pull-5 { - right: 41.66666667%; - } - .col-md-pull-4 { - right: 33.33333333%; - } - .col-md-pull-3 { - right: 25%; - } - .col-md-pull-2 { - right: 16.66666667%; - } - .col-md-pull-1 { - right: 8.33333333%; - } - .col-md-pull-0 { - right: auto; - } - .col-md-push-12 { - left: 100%; - } - .col-md-push-11 { - left: 91.66666667%; - } - .col-md-push-10 { - left: 83.33333333%; - } - .col-md-push-9 { - left: 75%; - } - .col-md-push-8 { - left: 66.66666667%; - } - .col-md-push-7 { - left: 58.33333333%; - } - .col-md-push-6 { - left: 50%; - } - .col-md-push-5 { - left: 41.66666667%; - } - .col-md-push-4 { - left: 33.33333333%; - } - .col-md-push-3 { - left: 25%; - } - .col-md-push-2 { - left: 16.66666667%; - } - .col-md-push-1 { - left: 8.33333333%; - } - .col-md-push-0 { - left: auto; - } - .col-md-offset-12 { - margin-left: 100%; - } - .col-md-offset-11 { - margin-left: 91.66666667%; - } - .col-md-offset-10 { - margin-left: 83.33333333%; - } - .col-md-offset-9 { - margin-left: 75%; - } - .col-md-offset-8 { - margin-left: 66.66666667%; - } - .col-md-offset-7 { - margin-left: 58.33333333%; - } - .col-md-offset-6 { - margin-left: 50%; - } - .col-md-offset-5 { - margin-left: 41.66666667%; - } - .col-md-offset-4 { - margin-left: 33.33333333%; - } - .col-md-offset-3 { - margin-left: 25%; - } - .col-md-offset-2 { - margin-left: 16.66666667%; - } - .col-md-offset-1 { - margin-left: 8.33333333%; - } - .col-md-offset-0 { - margin-left: 0; - } -} -@media (min-width: 1200px) { - .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { - float: left; - } - .col-lg-12 { - width: 100%; - } - .col-lg-11 { - width: 91.66666667%; - } - .col-lg-10 { - width: 83.33333333%; - } - .col-lg-9 { - width: 75%; - } - .col-lg-8 { - width: 66.66666667%; - } - .col-lg-7 { - width: 58.33333333%; - } - .col-lg-6 { - width: 50%; - } - .col-lg-5 { - width: 41.66666667%; - } - .col-lg-4 { - width: 33.33333333%; - } - .col-lg-3 { - width: 25%; - } - .col-lg-2 { - width: 16.66666667%; - } - .col-lg-1 { - width: 8.33333333%; - } - .col-lg-pull-12 { - right: 100%; - } - .col-lg-pull-11 { - right: 91.66666667%; - } - .col-lg-pull-10 { - right: 83.33333333%; - } - .col-lg-pull-9 { - right: 75%; - } - .col-lg-pull-8 { - right: 66.66666667%; - } - .col-lg-pull-7 { - right: 58.33333333%; - } - .col-lg-pull-6 { - right: 50%; - } - .col-lg-pull-5 { - right: 41.66666667%; - } - .col-lg-pull-4 { - right: 33.33333333%; - } - .col-lg-pull-3 { - right: 25%; - } - .col-lg-pull-2 { - right: 16.66666667%; - } - .col-lg-pull-1 { - right: 8.33333333%; - } - .col-lg-pull-0 { - right: auto; - } - .col-lg-push-12 { - left: 100%; - } - .col-lg-push-11 { - left: 91.66666667%; - } - .col-lg-push-10 { - left: 83.33333333%; - } - .col-lg-push-9 { - left: 75%; - } - .col-lg-push-8 { - left: 66.66666667%; - } - .col-lg-push-7 { - left: 58.33333333%; - } - .col-lg-push-6 { - left: 50%; - } - .col-lg-push-5 { - left: 41.66666667%; - } - .col-lg-push-4 { - left: 33.33333333%; - } - .col-lg-push-3 { - left: 25%; - } - .col-lg-push-2 { - left: 16.66666667%; - } - .col-lg-push-1 { - left: 8.33333333%; - } - .col-lg-push-0 { - left: auto; - } - .col-lg-offset-12 { - margin-left: 100%; - } - .col-lg-offset-11 { - margin-left: 91.66666667%; - } - .col-lg-offset-10 { - margin-left: 83.33333333%; - } - .col-lg-offset-9 { - margin-left: 75%; - } - .col-lg-offset-8 { - margin-left: 66.66666667%; - } - .col-lg-offset-7 { - margin-left: 58.33333333%; - } - .col-lg-offset-6 { - margin-left: 50%; - } - .col-lg-offset-5 { - margin-left: 41.66666667%; - } - .col-lg-offset-4 { - margin-left: 33.33333333%; - } - .col-lg-offset-3 { - margin-left: 25%; - } - .col-lg-offset-2 { - margin-left: 16.66666667%; - } - .col-lg-offset-1 { - margin-left: 8.33333333%; - } - .col-lg-offset-0 { - margin-left: 0; - } -} -table { - background-color: transparent; -} -caption { - padding-top: 8px; - padding-bottom: 8px; - color: #777; - text-align: left; -} -th { - text-align: left; -} -.table { - width: 100%; - max-width: 100%; - margin-bottom: 20px; -} -.table > thead > tr > th, -.table > tbody > tr > th, -.table > tfoot > tr > th, -.table > thead > tr > td, -.table > tbody > tr > td, -.table > tfoot > tr > td { - padding: 8px; - line-height: 1.42857143; - vertical-align: top; - border-top: 1px solid #ddd; -} -.table > thead > tr > th { - vertical-align: bottom; - border-bottom: 2px solid #ddd; -} -.table > caption + thead > tr:first-child > th, -.table > colgroup + thead > tr:first-child > th, -.table > thead:first-child > tr:first-child > th, -.table > caption + thead > tr:first-child > td, -.table > colgroup + thead > tr:first-child > td, -.table > thead:first-child > tr:first-child > td { - border-top: 0; -} -.table > tbody + tbody { - border-top: 2px solid #ddd; -} -.table .table { - background-color: #fff; -} -.table-condensed > thead > tr > th, -.table-condensed > tbody > tr > th, -.table-condensed > tfoot > tr > th, -.table-condensed > thead > tr > td, -.table-condensed > tbody > tr > td, -.table-condensed > tfoot > tr > td { - padding: 5px; -} -.table-bordered { - border: 1px solid #ddd; -} -.table-bordered > thead > tr > th, -.table-bordered > tbody > tr > th, -.table-bordered > tfoot > tr > th, -.table-bordered > thead > tr > td, -.table-bordered > tbody > tr > td, -.table-bordered > tfoot > tr > td { - border: 1px solid #ddd; -} -.table-bordered > thead > tr > th, -.table-bordered > thead > tr > td { - border-bottom-width: 2px; -} -.table-striped > tbody > tr:nth-of-type(odd) { - background-color: #f9f9f9; -} -.table-hover > tbody > tr:hover { - background-color: #f5f5f5; -} -table col[class*="col-"] { - position: static; - display: table-column; - float: none; -} -table td[class*="col-"], -table th[class*="col-"] { - position: static; - display: table-cell; - float: none; -} -.table > thead > tr > td.active, -.table > tbody > tr > td.active, -.table > tfoot > tr > td.active, -.table > thead > tr > th.active, -.table > tbody > tr > th.active, -.table > tfoot > tr > th.active, -.table > thead > tr.active > td, -.table > tbody > tr.active > td, -.table > tfoot > tr.active > td, -.table > thead > tr.active > th, -.table > tbody > tr.active > th, -.table > tfoot > tr.active > th { - background-color: #f5f5f5; -} -.table-hover > tbody > tr > td.active:hover, -.table-hover > tbody > tr > th.active:hover, -.table-hover > tbody > tr.active:hover > td, -.table-hover > tbody > tr:hover > .active, -.table-hover > tbody > tr.active:hover > th { - background-color: #e8e8e8; -} -.table > thead > tr > td.success, -.table > tbody > tr > td.success, -.table > tfoot > tr > td.success, -.table > thead > tr > th.success, -.table > tbody > tr > th.success, -.table > tfoot > tr > th.success, -.table > thead > tr.success > td, -.table > tbody > tr.success > td, -.table > tfoot > tr.success > td, -.table > thead > tr.success > th, -.table > tbody > tr.success > th, -.table > tfoot > tr.success > th { - background-color: #dff0d8; -} -.table-hover > tbody > tr > td.success:hover, -.table-hover > tbody > tr > th.success:hover, -.table-hover > tbody > tr.success:hover > td, -.table-hover > tbody > tr:hover > .success, -.table-hover > tbody > tr.success:hover > th { - background-color: #d0e9c6; -} -.table > thead > tr > td.info, -.table > tbody > tr > td.info, -.table > tfoot > tr > td.info, -.table > thead > tr > th.info, -.table > tbody > tr > th.info, -.table > tfoot > tr > th.info, -.table > thead > tr.info > td, -.table > tbody > tr.info > td, -.table > tfoot > tr.info > td, -.table > thead > tr.info > th, -.table > tbody > tr.info > th, -.table > tfoot > tr.info > th { - background-color: #d9edf7; -} -.table-hover > tbody > tr > td.info:hover, -.table-hover > tbody > tr > th.info:hover, -.table-hover > tbody > tr.info:hover > td, -.table-hover > tbody > tr:hover > .info, -.table-hover > tbody > tr.info:hover > th { - background-color: #c4e3f3; -} -.table > thead > tr > td.warning, -.table > tbody > tr > td.warning, -.table > tfoot > tr > td.warning, -.table > thead > tr > th.warning, -.table > tbody > tr > th.warning, -.table > tfoot > tr > th.warning, -.table > thead > tr.warning > td, -.table > tbody > tr.warning > td, -.table > tfoot > tr.warning > td, -.table > thead > tr.warning > th, -.table > tbody > tr.warning > th, -.table > tfoot > tr.warning > th { - background-color: #fcf8e3; -} -.table-hover > tbody > tr > td.warning:hover, -.table-hover > tbody > tr > th.warning:hover, -.table-hover > tbody > tr.warning:hover > td, -.table-hover > tbody > tr:hover > .warning, -.table-hover > tbody > tr.warning:hover > th { - background-color: #faf2cc; -} -.table > thead > tr > td.danger, -.table > tbody > tr > td.danger, -.table > tfoot > tr > td.danger, -.table > thead > tr > th.danger, -.table > tbody > tr > th.danger, -.table > tfoot > tr > th.danger, -.table > thead > tr.danger > td, -.table > tbody > tr.danger > td, -.table > tfoot > tr.danger > td, -.table > thead > tr.danger > th, -.table > tbody > tr.danger > th, -.table > tfoot > tr.danger > th { - background-color: #f2dede; -} -.table-hover > tbody > tr > td.danger:hover, -.table-hover > tbody > tr > th.danger:hover, -.table-hover > tbody > tr.danger:hover > td, -.table-hover > tbody > tr:hover > .danger, -.table-hover > tbody > tr.danger:hover > th { - background-color: #ebcccc; -} -.table-responsive { - min-height: .01%; - overflow-x: auto; -} -@media screen and (max-width: 767px) { - .table-responsive { - width: 100%; - margin-bottom: 15px; - overflow-y: hidden; - -ms-overflow-style: -ms-autohiding-scrollbar; - border: 1px solid #ddd; - } - .table-responsive > .table { - margin-bottom: 0; - } - .table-responsive > .table > thead > tr > th, - .table-responsive > .table > tbody > tr > th, - .table-responsive > .table > tfoot > tr > th, - .table-responsive > .table > thead > tr > td, - .table-responsive > .table > tbody > tr > td, - .table-responsive > .table > tfoot > tr > td { - white-space: nowrap; - } - .table-responsive > .table-bordered { - border: 0; - } - .table-responsive > .table-bordered > thead > tr > th:first-child, - .table-responsive > .table-bordered > tbody > tr > th:first-child, - .table-responsive > .table-bordered > tfoot > tr > th:first-child, - .table-responsive > .table-bordered > thead > tr > td:first-child, - .table-responsive > .table-bordered > tbody > tr > td:first-child, - .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; - } - .table-responsive > .table-bordered > thead > tr > th:last-child, - .table-responsive > .table-bordered > tbody > tr > th:last-child, - .table-responsive > .table-bordered > tfoot > tr > th:last-child, - .table-responsive > .table-bordered > thead > tr > td:last-child, - .table-responsive > .table-bordered > tbody > tr > td:last-child, - .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; - } - .table-responsive > .table-bordered > tbody > tr:last-child > th, - .table-responsive > .table-bordered > tfoot > tr:last-child > th, - .table-responsive > .table-bordered > tbody > tr:last-child > td, - .table-responsive > .table-bordered > tfoot > tr:last-child > td { - border-bottom: 0; - } -} -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; -} -legend { - display: block; - width: 100%; - padding: 0; - margin-bottom: 20px; - font-size: 21px; - line-height: inherit; - color: #333; - border: 0; - border-bottom: 1px solid #e5e5e5; -} -label { - display: inline-block; - max-width: 100%; - margin-bottom: 5px; - font-weight: bold; -} -input[type="search"] { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -input[type="radio"], -input[type="checkbox"] { - margin: 4px 0 0; - margin-top: 1px \9; - line-height: normal; -} -input[type="file"] { - display: block; -} -input[type="range"] { - display: block; - width: 100%; -} -select[multiple], -select[size] { - height: auto; -} -input[type="file"]:focus, -input[type="radio"]:focus, -input[type="checkbox"]:focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -output { - display: block; - padding-top: 7px; - font-size: 14px; - line-height: 1.42857143; - color: #555; -} -.form-control { - display: block; - width: 100%; - height: 34px; - padding: 6px 12px; - font-size: 14px; - line-height: 1.42857143; - color: #555; - background-color: #fff; - background-image: none; - border: 1px solid #ccc; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; - -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; - transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; -} -.form-control:focus { - border-color: #66afe9; - outline: 0; - -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); - box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); -} -.form-control::-moz-placeholder { - color: #999; - opacity: 1; -} -.form-control:-ms-input-placeholder { - color: #999; -} -.form-control::-webkit-input-placeholder { - color: #999; -} -.form-control[disabled], -.form-control[readonly], -fieldset[disabled] .form-control { - background-color: #eee; - opacity: 1; -} -.form-control[disabled], -fieldset[disabled] .form-control { - cursor: not-allowed; -} -textarea.form-control { - height: auto; -} -input[type="search"] { - -webkit-appearance: none; -} -@media screen and (-webkit-min-device-pixel-ratio: 0) { - input[type="date"], - input[type="time"], - input[type="datetime-local"], - input[type="month"] { - line-height: 34px; - } - input[type="date"].input-sm, - input[type="time"].input-sm, - input[type="datetime-local"].input-sm, - input[type="month"].input-sm, - .input-group-sm input[type="date"], - .input-group-sm input[type="time"], - .input-group-sm input[type="datetime-local"], - .input-group-sm input[type="month"] { - line-height: 30px; - } - input[type="date"].input-lg, - input[type="time"].input-lg, - input[type="datetime-local"].input-lg, - input[type="month"].input-lg, - .input-group-lg input[type="date"], - .input-group-lg input[type="time"], - .input-group-lg input[type="datetime-local"], - .input-group-lg input[type="month"] { - line-height: 46px; - } -} -.form-group { - margin-bottom: 15px; -} -.radio, -.checkbox { - position: relative; - display: block; - margin-top: 10px; - margin-bottom: 10px; -} -.radio label, -.checkbox label { - min-height: 20px; - padding-left: 20px; - margin-bottom: 0; - font-weight: normal; - cursor: pointer; -} -.radio input[type="radio"], -.radio-inline input[type="radio"], -.checkbox input[type="checkbox"], -.checkbox-inline input[type="checkbox"] { - position: absolute; - margin-top: 4px \9; - margin-left: -20px; -} -.radio + .radio, -.checkbox + .checkbox { - margin-top: -5px; -} -.radio-inline, -.checkbox-inline { - position: relative; - display: inline-block; - padding-left: 20px; - margin-bottom: 0; - font-weight: normal; - vertical-align: middle; - cursor: pointer; -} -.radio-inline + .radio-inline, -.checkbox-inline + .checkbox-inline { - margin-top: 0; - margin-left: 10px; -} -input[type="radio"][disabled], -input[type="checkbox"][disabled], -input[type="radio"].disabled, -input[type="checkbox"].disabled, -fieldset[disabled] input[type="radio"], -fieldset[disabled] input[type="checkbox"] { - cursor: not-allowed; -} -.radio-inline.disabled, -.checkbox-inline.disabled, -fieldset[disabled] .radio-inline, -fieldset[disabled] .checkbox-inline { - cursor: not-allowed; -} -.radio.disabled label, -.checkbox.disabled label, -fieldset[disabled] .radio label, -fieldset[disabled] .checkbox label { - cursor: not-allowed; -} -.form-control-static { - min-height: 34px; - padding-top: 7px; - padding-bottom: 7px; - margin-bottom: 0; -} -.form-control-static.input-lg, -.form-control-static.input-sm { - padding-right: 0; - padding-left: 0; -} -.input-sm { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -select.input-sm { - height: 30px; - line-height: 30px; -} -textarea.input-sm, -select[multiple].input-sm { - height: auto; -} -.form-group-sm .form-control { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -select.form-group-sm .form-control { - height: 30px; - line-height: 30px; -} -textarea.form-group-sm .form-control, -select[multiple].form-group-sm .form-control { - height: auto; -} -.form-group-sm .form-control-static { - height: 30px; - min-height: 32px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; -} -.input-lg { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; - border-radius: 6px; -} -select.input-lg { - height: 46px; - line-height: 46px; -} -textarea.input-lg, -select[multiple].input-lg { - height: auto; -} -.form-group-lg .form-control { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; - border-radius: 6px; -} -select.form-group-lg .form-control { - height: 46px; - line-height: 46px; -} -textarea.form-group-lg .form-control, -select[multiple].form-group-lg .form-control { - height: auto; -} -.form-group-lg .form-control-static { - height: 46px; - min-height: 38px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; -} -.has-feedback { - position: relative; -} -.has-feedback .form-control { - padding-right: 42.5px; -} -.form-control-feedback { - position: absolute; - top: 0; - right: 0; - z-index: 2; - display: block; - width: 34px; - height: 34px; - line-height: 34px; - text-align: center; - pointer-events: none; -} -.input-lg + .form-control-feedback { - width: 46px; - height: 46px; - line-height: 46px; -} -.input-sm + .form-control-feedback { - width: 30px; - height: 30px; - line-height: 30px; -} -.has-success .help-block, -.has-success .control-label, -.has-success .radio, -.has-success .checkbox, -.has-success .radio-inline, -.has-success .checkbox-inline, -.has-success.radio label, -.has-success.checkbox label, -.has-success.radio-inline label, -.has-success.checkbox-inline label { - color: #3c763d; -} -.has-success .form-control { - border-color: #3c763d; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); -} -.has-success .form-control:focus { - border-color: #2b542c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; -} -.has-success .input-group-addon { - color: #3c763d; - background-color: #dff0d8; - border-color: #3c763d; -} -.has-success .form-control-feedback { - color: #3c763d; -} -.has-warning .help-block, -.has-warning .control-label, -.has-warning .radio, -.has-warning .checkbox, -.has-warning .radio-inline, -.has-warning .checkbox-inline, -.has-warning.radio label, -.has-warning.checkbox label, -.has-warning.radio-inline label, -.has-warning.checkbox-inline label { - color: #8a6d3b; -} -.has-warning .form-control { - border-color: #8a6d3b; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); -} -.has-warning .form-control:focus { - border-color: #66512c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; -} -.has-warning .input-group-addon { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #8a6d3b; -} -.has-warning .form-control-feedback { - color: #8a6d3b; -} -.has-error .help-block, -.has-error .control-label, -.has-error .radio, -.has-error .checkbox, -.has-error .radio-inline, -.has-error .checkbox-inline, -.has-error.radio label, -.has-error.checkbox label, -.has-error.radio-inline label, -.has-error.checkbox-inline label { - color: #a94442; -} -.has-error .form-control { - border-color: #a94442; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); -} -.has-error .form-control:focus { - border-color: #843534; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; -} -.has-error .input-group-addon { - color: #a94442; - background-color: #f2dede; - border-color: #a94442; -} -.has-error .form-control-feedback { - color: #a94442; -} -.has-feedback label ~ .form-control-feedback { - top: 25px; -} -.has-feedback label.sr-only ~ .form-control-feedback { - top: 0; -} -.help-block { - display: block; - margin-top: 5px; - margin-bottom: 10px; - color: #737373; -} -@media (min-width: 768px) { - .form-inline .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .form-inline .form-control-static { - display: inline-block; - } - .form-inline .input-group { - display: inline-table; - vertical-align: middle; - } - .form-inline .input-group .input-group-addon, - .form-inline .input-group .input-group-btn, - .form-inline .input-group .form-control { - width: auto; - } - .form-inline .input-group > .form-control { - width: 100%; - } - .form-inline .control-label { - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .radio, - .form-inline .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .radio label, - .form-inline .checkbox label { - padding-left: 0; - } - .form-inline .radio input[type="radio"], - .form-inline .checkbox input[type="checkbox"] { - position: relative; - margin-left: 0; - } - .form-inline .has-feedback .form-control-feedback { - top: 0; - } -} -.form-horizontal .radio, -.form-horizontal .checkbox, -.form-horizontal .radio-inline, -.form-horizontal .checkbox-inline { - padding-top: 7px; - margin-top: 0; - margin-bottom: 0; -} -.form-horizontal .radio, -.form-horizontal .checkbox { - min-height: 27px; -} -.form-horizontal .form-group { - margin-right: -15px; - margin-left: -15px; -} -@media (min-width: 768px) { - .form-horizontal .control-label { - padding-top: 7px; - margin-bottom: 0; - text-align: right; - } -} -.form-horizontal .has-feedback .form-control-feedback { - right: 15px; -} -@media (min-width: 768px) { - .form-horizontal .form-group-lg .control-label { - padding-top: 14.333333px; - } -} -@media (min-width: 768px) { - .form-horizontal .form-group-sm .control-label { - padding-top: 6px; - } -} -.btn { - display: inline-block; - padding: 6px 12px; - margin-bottom: 0; - font-size: 14px; - font-weight: normal; - line-height: 1.42857143; - text-align: center; - white-space: nowrap; - vertical-align: middle; - -ms-touch-action: manipulation; - touch-action: manipulation; - cursor: pointer; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - background-image: none; - border: 1px solid transparent; - border-radius: 4px; -} -.btn:focus, -.btn:active:focus, -.btn.active:focus, -.btn.focus, -.btn:active.focus, -.btn.active.focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -.btn:hover, -.btn:focus, -.btn.focus { - color: #333; - text-decoration: none; -} -.btn:active, -.btn.active { - background-image: none; - outline: 0; - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); -} -.btn.disabled, -.btn[disabled], -fieldset[disabled] .btn { - pointer-events: none; - cursor: not-allowed; - filter: alpha(opacity=65); - -webkit-box-shadow: none; - box-shadow: none; - opacity: .65; -} -.btn-default { - color: #333; - background-color: #fff; - border-color: #ccc; -} -.btn-default:hover, -.btn-default:focus, -.btn-default.focus, -.btn-default:active, -.btn-default.active, -.open > .dropdown-toggle.btn-default { - color: #333; - background-color: #e6e6e6; - border-color: #adadad; -} -.btn-default:active, -.btn-default.active, -.open > .dropdown-toggle.btn-default { - background-image: none; -} -.btn-default.disabled, -.btn-default[disabled], -fieldset[disabled] .btn-default, -.btn-default.disabled:hover, -.btn-default[disabled]:hover, -fieldset[disabled] .btn-default:hover, -.btn-default.disabled:focus, -.btn-default[disabled]:focus, -fieldset[disabled] .btn-default:focus, -.btn-default.disabled.focus, -.btn-default[disabled].focus, -fieldset[disabled] .btn-default.focus, -.btn-default.disabled:active, -.btn-default[disabled]:active, -fieldset[disabled] .btn-default:active, -.btn-default.disabled.active, -.btn-default[disabled].active, -fieldset[disabled] .btn-default.active { - background-color: #fff; - border-color: #ccc; -} -.btn-default .badge { - color: #fff; - background-color: #333; -} -.btn-primary { - color: #fff; - background-color: #337ab7; - border-color: #2e6da4; -} -.btn-primary:hover, -.btn-primary:focus, -.btn-primary.focus, -.btn-primary:active, -.btn-primary.active, -.open > .dropdown-toggle.btn-primary { - color: #fff; - background-color: #286090; - border-color: #204d74; -} -.btn-primary:active, -.btn-primary.active, -.open > .dropdown-toggle.btn-primary { - background-image: none; -} -.btn-primary.disabled, -.btn-primary[disabled], -fieldset[disabled] .btn-primary, -.btn-primary.disabled:hover, -.btn-primary[disabled]:hover, -fieldset[disabled] .btn-primary:hover, -.btn-primary.disabled:focus, -.btn-primary[disabled]:focus, -fieldset[disabled] .btn-primary:focus, -.btn-primary.disabled.focus, -.btn-primary[disabled].focus, -fieldset[disabled] .btn-primary.focus, -.btn-primary.disabled:active, -.btn-primary[disabled]:active, -fieldset[disabled] .btn-primary:active, -.btn-primary.disabled.active, -.btn-primary[disabled].active, -fieldset[disabled] .btn-primary.active { - background-color: #337ab7; - border-color: #2e6da4; -} -.btn-primary .badge { - color: #337ab7; - background-color: #fff; -} -.btn-success { - color: #fff; - background-color: #5cb85c; - border-color: #4cae4c; -} -.btn-success:hover, -.btn-success:focus, -.btn-success.focus, -.btn-success:active, -.btn-success.active, -.open > .dropdown-toggle.btn-success { - color: #fff; - background-color: #449d44; - border-color: #398439; -} -.btn-success:active, -.btn-success.active, -.open > .dropdown-toggle.btn-success { - background-image: none; -} -.btn-success.disabled, -.btn-success[disabled], -fieldset[disabled] .btn-success, -.btn-success.disabled:hover, -.btn-success[disabled]:hover, -fieldset[disabled] .btn-success:hover, -.btn-success.disabled:focus, -.btn-success[disabled]:focus, -fieldset[disabled] .btn-success:focus, -.btn-success.disabled.focus, -.btn-success[disabled].focus, -fieldset[disabled] .btn-success.focus, -.btn-success.disabled:active, -.btn-success[disabled]:active, -fieldset[disabled] .btn-success:active, -.btn-success.disabled.active, -.btn-success[disabled].active, -fieldset[disabled] .btn-success.active { - background-color: #5cb85c; - border-color: #4cae4c; -} -.btn-success .badge { - color: #5cb85c; - background-color: #fff; -} -.btn-info { - color: #fff; - background-color: #5bc0de; - border-color: #46b8da; -} -.btn-info:hover, -.btn-info:focus, -.btn-info.focus, -.btn-info:active, -.btn-info.active, -.open > .dropdown-toggle.btn-info { - color: #fff; - background-color: #31b0d5; - border-color: #269abc; -} -.btn-info:active, -.btn-info.active, -.open > .dropdown-toggle.btn-info { - background-image: none; -} -.btn-info.disabled, -.btn-info[disabled], -fieldset[disabled] .btn-info, -.btn-info.disabled:hover, -.btn-info[disabled]:hover, -fieldset[disabled] .btn-info:hover, -.btn-info.disabled:focus, -.btn-info[disabled]:focus, -fieldset[disabled] .btn-info:focus, -.btn-info.disabled.focus, -.btn-info[disabled].focus, -fieldset[disabled] .btn-info.focus, -.btn-info.disabled:active, -.btn-info[disabled]:active, -fieldset[disabled] .btn-info:active, -.btn-info.disabled.active, -.btn-info[disabled].active, -fieldset[disabled] .btn-info.active { - background-color: #5bc0de; - border-color: #46b8da; -} -.btn-info .badge { - color: #5bc0de; - background-color: #fff; -} -.btn-warning { - color: #fff; - background-color: #f0ad4e; - border-color: #eea236; -} -.btn-warning:hover, -.btn-warning:focus, -.btn-warning.focus, -.btn-warning:active, -.btn-warning.active, -.open > .dropdown-toggle.btn-warning { - color: #fff; - background-color: #ec971f; - border-color: #d58512; -} -.btn-warning:active, -.btn-warning.active, -.open > .dropdown-toggle.btn-warning { - background-image: none; -} -.btn-warning.disabled, -.btn-warning[disabled], -fieldset[disabled] .btn-warning, -.btn-warning.disabled:hover, -.btn-warning[disabled]:hover, -fieldset[disabled] .btn-warning:hover, -.btn-warning.disabled:focus, -.btn-warning[disabled]:focus, -fieldset[disabled] .btn-warning:focus, -.btn-warning.disabled.focus, -.btn-warning[disabled].focus, -fieldset[disabled] .btn-warning.focus, -.btn-warning.disabled:active, -.btn-warning[disabled]:active, -fieldset[disabled] .btn-warning:active, -.btn-warning.disabled.active, -.btn-warning[disabled].active, -fieldset[disabled] .btn-warning.active { - background-color: #f0ad4e; - border-color: #eea236; -} -.btn-warning .badge { - color: #f0ad4e; - background-color: #fff; -} -.btn-danger { - color: #fff; - background-color: #d9534f; - border-color: #d43f3a; -} -.btn-danger:hover, -.btn-danger:focus, -.btn-danger.focus, -.btn-danger:active, -.btn-danger.active, -.open > .dropdown-toggle.btn-danger { - color: #fff; - background-color: #c9302c; - border-color: #ac2925; -} -.btn-danger:active, -.btn-danger.active, -.open > .dropdown-toggle.btn-danger { - background-image: none; -} -.btn-danger.disabled, -.btn-danger[disabled], -fieldset[disabled] .btn-danger, -.btn-danger.disabled:hover, -.btn-danger[disabled]:hover, -fieldset[disabled] .btn-danger:hover, -.btn-danger.disabled:focus, -.btn-danger[disabled]:focus, -fieldset[disabled] .btn-danger:focus, -.btn-danger.disabled.focus, -.btn-danger[disabled].focus, -fieldset[disabled] .btn-danger.focus, -.btn-danger.disabled:active, -.btn-danger[disabled]:active, -fieldset[disabled] .btn-danger:active, -.btn-danger.disabled.active, -.btn-danger[disabled].active, -fieldset[disabled] .btn-danger.active { - background-color: #d9534f; - border-color: #d43f3a; -} -.btn-danger .badge { - color: #d9534f; - background-color: #fff; -} -.btn-link { - font-weight: normal; - color: #337ab7; - border-radius: 0; -} -.btn-link, -.btn-link:active, -.btn-link.active, -.btn-link[disabled], -fieldset[disabled] .btn-link { - background-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; -} -.btn-link, -.btn-link:hover, -.btn-link:focus, -.btn-link:active { - border-color: transparent; -} -.btn-link:hover, -.btn-link:focus { - color: #23527c; - text-decoration: underline; - background-color: transparent; -} -.btn-link[disabled]:hover, -fieldset[disabled] .btn-link:hover, -.btn-link[disabled]:focus, -fieldset[disabled] .btn-link:focus { - color: #777; - text-decoration: none; -} -.btn-lg, -.btn-group-lg > .btn { - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; - border-radius: 6px; -} -.btn-sm, -.btn-group-sm > .btn { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -.btn-xs, -.btn-group-xs > .btn { - padding: 1px 5px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -.btn-block { - display: block; - width: 100%; -} -.btn-block + .btn-block { - margin-top: 5px; -} -input[type="submit"].btn-block, -input[type="reset"].btn-block, -input[type="button"].btn-block { - width: 100%; -} -.fade { - opacity: 0; - -webkit-transition: opacity .15s linear; - -o-transition: opacity .15s linear; - transition: opacity .15s linear; -} -.fade.in { - opacity: 1; -} -.collapse { - display: none; -} -.collapse.in { - display: block; -} -tr.collapse.in { - display: table-row; -} -tbody.collapse.in { - display: table-row-group; -} -.collapsing { - position: relative; - height: 0; - overflow: hidden; - -webkit-transition-timing-function: ease; - -o-transition-timing-function: ease; - transition-timing-function: ease; - -webkit-transition-duration: .35s; - -o-transition-duration: .35s; - transition-duration: .35s; - -webkit-transition-property: height, visibility; - -o-transition-property: height, visibility; - transition-property: height, visibility; -} -.caret { - display: inline-block; - width: 0; - height: 0; - margin-left: 2px; - vertical-align: middle; - border-top: 4px dashed; - border-right: 4px solid transparent; - border-left: 4px solid transparent; -} -.dropup, -.dropdown { - position: relative; -} -.dropdown-toggle:focus { - outline: 0; -} -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 160px; - padding: 5px 0; - margin: 2px 0 0; - font-size: 14px; - text-align: left; - list-style: none; - background-color: #fff; - -webkit-background-clip: padding-box; - background-clip: padding-box; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, .15); - border-radius: 4px; - -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175); - box-shadow: 0 6px 12px rgba(0, 0, 0, .175); -} -.dropdown-menu.pull-right { - right: 0; - left: auto; -} -.dropdown-menu .divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; -} -.dropdown-menu > li > a { - display: block; - padding: 3px 20px; - clear: both; - font-weight: normal; - line-height: 1.42857143; - color: #333; - white-space: nowrap; -} -.dropdown-menu > li > a:hover, -.dropdown-menu > li > a:focus { - color: #262626; - text-decoration: none; - background-color: #f5f5f5; -} -.dropdown-menu > .active > a, -.dropdown-menu > .active > a:hover, -.dropdown-menu > .active > a:focus { - color: #fff; - text-decoration: none; - background-color: #337ab7; - outline: 0; -} -.dropdown-menu > .disabled > a, -.dropdown-menu > .disabled > a:hover, -.dropdown-menu > .disabled > a:focus { - color: #777; -} -.dropdown-menu > .disabled > a:hover, -.dropdown-menu > .disabled > a:focus { - text-decoration: none; - cursor: not-allowed; - background-color: transparent; - background-image: none; - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); -} -.open > .dropdown-menu { - display: block; -} -.open > a { - outline: 0; -} -.dropdown-menu-right { - right: 0; - left: auto; -} -.dropdown-menu-left { - right: auto; - left: 0; -} -.dropdown-header { - display: block; - padding: 3px 20px; - font-size: 12px; - line-height: 1.42857143; - color: #777; - white-space: nowrap; -} -.dropdown-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 990; -} -.pull-right > .dropdown-menu { - right: 0; - left: auto; -} -.dropup .caret, -.navbar-fixed-bottom .dropdown .caret { - content: ""; - border-top: 0; - border-bottom: 4px solid; -} -.dropup .dropdown-menu, -.navbar-fixed-bottom .dropdown .dropdown-menu { - top: auto; - bottom: 100%; - margin-bottom: 2px; -} -@media (min-width: 768px) { - .navbar-right .dropdown-menu { - right: 0; - left: auto; - } - .navbar-right .dropdown-menu-left { - right: auto; - left: 0; - } -} -.btn-group, -.btn-group-vertical { - position: relative; - display: inline-block; - vertical-align: middle; -} -.btn-group > .btn, -.btn-group-vertical > .btn { - position: relative; - float: left; -} -.btn-group > .btn:hover, -.btn-group-vertical > .btn:hover, -.btn-group > .btn:focus, -.btn-group-vertical > .btn:focus, -.btn-group > .btn:active, -.btn-group-vertical > .btn:active, -.btn-group > .btn.active, -.btn-group-vertical > .btn.active { - z-index: 2; -} -.btn-group .btn + .btn, -.btn-group .btn + .btn-group, -.btn-group .btn-group + .btn, -.btn-group .btn-group + .btn-group { - margin-left: -1px; -} -.btn-toolbar { - margin-left: -5px; -} -.btn-toolbar .btn-group, -.btn-toolbar .input-group { - float: left; -} -.btn-toolbar > .btn, -.btn-toolbar > .btn-group, -.btn-toolbar > .input-group { - margin-left: 5px; -} -.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { - border-radius: 0; -} -.btn-group > .btn:first-child { - margin-left: 0; -} -.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.btn-group > .btn:last-child:not(:first-child), -.btn-group > .dropdown-toggle:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group > .btn-group { - float: left; -} -.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; -} -.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, -.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group .dropdown-toggle:active, -.btn-group.open .dropdown-toggle { - outline: 0; -} -.btn-group > .btn + .dropdown-toggle { - padding-right: 8px; - padding-left: 8px; -} -.btn-group > .btn-lg + .dropdown-toggle { - padding-right: 12px; - padding-left: 12px; -} -.btn-group.open .dropdown-toggle { - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); -} -.btn-group.open .dropdown-toggle.btn-link { - -webkit-box-shadow: none; - box-shadow: none; -} -.btn .caret { - margin-left: 0; -} -.btn-lg .caret { - border-width: 5px 5px 0; - border-bottom-width: 0; -} -.dropup .btn-lg .caret { - border-width: 0 5px 5px; -} -.btn-group-vertical > .btn, -.btn-group-vertical > .btn-group, -.btn-group-vertical > .btn-group > .btn { - display: block; - float: none; - width: 100%; - max-width: 100%; -} -.btn-group-vertical > .btn-group > .btn { - float: none; -} -.btn-group-vertical > .btn + .btn, -.btn-group-vertical > .btn + .btn-group, -.btn-group-vertical > .btn-group + .btn, -.btn-group-vertical > .btn-group + .btn-group { - margin-top: -1px; - margin-left: 0; -} -.btn-group-vertical > .btn:not(:first-child):not(:last-child) { - border-radius: 0; -} -.btn-group-vertical > .btn:first-child:not(:last-child) { - border-top-right-radius: 4px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical > .btn:last-child:not(:first-child) { - border-top-left-radius: 0; - border-top-right-radius: 0; - border-bottom-left-radius: 4px; -} -.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; -} -.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, -.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { - border-top-left-radius: 0; - border-top-right-radius: 0; -} -.btn-group-justified { - display: table; - width: 100%; - table-layout: fixed; - border-collapse: separate; -} -.btn-group-justified > .btn, -.btn-group-justified > .btn-group { - display: table-cell; - float: none; - width: 1%; -} -.btn-group-justified > .btn-group .btn { - width: 100%; -} -.btn-group-justified > .btn-group .dropdown-menu { - left: auto; -} -[data-toggle="buttons"] > .btn input[type="radio"], -[data-toggle="buttons"] > .btn-group > .btn input[type="radio"], -[data-toggle="buttons"] > .btn input[type="checkbox"], -[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; -} -.input-group { - position: relative; - display: table; - border-collapse: separate; -} -.input-group[class*="col-"] { - float: none; - padding-right: 0; - padding-left: 0; -} -.input-group .form-control { - position: relative; - z-index: 2; - float: left; - width: 100%; - margin-bottom: 0; -} -.input-group-lg > .form-control, -.input-group-lg > .input-group-addon, -.input-group-lg > .input-group-btn > .btn { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; - border-radius: 6px; -} -select.input-group-lg > .form-control, -select.input-group-lg > .input-group-addon, -select.input-group-lg > .input-group-btn > .btn { - height: 46px; - line-height: 46px; -} -textarea.input-group-lg > .form-control, -textarea.input-group-lg > .input-group-addon, -textarea.input-group-lg > .input-group-btn > .btn, -select[multiple].input-group-lg > .form-control, -select[multiple].input-group-lg > .input-group-addon, -select[multiple].input-group-lg > .input-group-btn > .btn { - height: auto; -} -.input-group-sm > .form-control, -.input-group-sm > .input-group-addon, -.input-group-sm > .input-group-btn > .btn { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -select.input-group-sm > .form-control, -select.input-group-sm > .input-group-addon, -select.input-group-sm > .input-group-btn > .btn { - height: 30px; - line-height: 30px; -} -textarea.input-group-sm > .form-control, -textarea.input-group-sm > .input-group-addon, -textarea.input-group-sm > .input-group-btn > .btn, -select[multiple].input-group-sm > .form-control, -select[multiple].input-group-sm > .input-group-addon, -select[multiple].input-group-sm > .input-group-btn > .btn { - height: auto; -} -.input-group-addon, -.input-group-btn, -.input-group .form-control { - display: table-cell; -} -.input-group-addon:not(:first-child):not(:last-child), -.input-group-btn:not(:first-child):not(:last-child), -.input-group .form-control:not(:first-child):not(:last-child) { - border-radius: 0; -} -.input-group-addon, -.input-group-btn { - width: 1%; - white-space: nowrap; - vertical-align: middle; -} -.input-group-addon { - padding: 6px 12px; - font-size: 14px; - font-weight: normal; - line-height: 1; - color: #555; - text-align: center; - background-color: #eee; - border: 1px solid #ccc; - border-radius: 4px; -} -.input-group-addon.input-sm { - padding: 5px 10px; - font-size: 12px; - border-radius: 3px; -} -.input-group-addon.input-lg { - padding: 10px 16px; - font-size: 18px; - border-radius: 6px; -} -.input-group-addon input[type="radio"], -.input-group-addon input[type="checkbox"] { - margin-top: 0; -} -.input-group .form-control:first-child, -.input-group-addon:first-child, -.input-group-btn:first-child > .btn, -.input-group-btn:first-child > .btn-group > .btn, -.input-group-btn:first-child > .dropdown-toggle, -.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), -.input-group-btn:last-child > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.input-group-addon:first-child { - border-right: 0; -} -.input-group .form-control:last-child, -.input-group-addon:last-child, -.input-group-btn:last-child > .btn, -.input-group-btn:last-child > .btn-group > .btn, -.input-group-btn:last-child > .dropdown-toggle, -.input-group-btn:first-child > .btn:not(:first-child), -.input-group-btn:first-child > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} -.input-group-addon:last-child { - border-left: 0; -} -.input-group-btn { - position: relative; - font-size: 0; - white-space: nowrap; -} -.input-group-btn > .btn { - position: relative; -} -.input-group-btn > .btn + .btn { - margin-left: -1px; -} -.input-group-btn > .btn:hover, -.input-group-btn > .btn:focus, -.input-group-btn > .btn:active { - z-index: 2; -} -.input-group-btn:first-child > .btn, -.input-group-btn:first-child > .btn-group { - margin-right: -1px; -} -.input-group-btn:last-child > .btn, -.input-group-btn:last-child > .btn-group { - margin-left: -1px; -} -.nav { - padding-left: 0; - margin-bottom: 0; - list-style: none; -} -.nav > li { - position: relative; - display: block; -} -.nav > li > a { - position: relative; - display: block; - padding: 10px 15px; -} -.nav > li > a:hover, -.nav > li > a:focus { - text-decoration: none; - background-color: #eee; -} -.nav > li.disabled > a { - color: #777; -} -.nav > li.disabled > a:hover, -.nav > li.disabled > a:focus { - color: #777; - text-decoration: none; - cursor: not-allowed; - background-color: transparent; -} -.nav .open > a, -.nav .open > a:hover, -.nav .open > a:focus { - background-color: #eee; - border-color: #337ab7; -} -.nav .nav-divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; -} -.nav > li > a > img { - max-width: none; -} -.nav-tabs { - border-bottom: 1px solid #ddd; -} -.nav-tabs > li { - float: left; - margin-bottom: -1px; -} -.nav-tabs > li > a { - margin-right: 2px; - line-height: 1.42857143; - border: 1px solid transparent; - border-radius: 4px 4px 0 0; -} -.nav-tabs > li > a:hover { - border-color: #eee #eee #ddd; -} -.nav-tabs > li.active > a, -.nav-tabs > li.active > a:hover, -.nav-tabs > li.active > a:focus { - color: #555; - cursor: default; - background-color: #fff; - border: 1px solid #ddd; - border-bottom-color: transparent; -} -.nav-tabs.nav-justified { - width: 100%; - border-bottom: 0; -} -.nav-tabs.nav-justified > li { - float: none; -} -.nav-tabs.nav-justified > li > a { - margin-bottom: 5px; - text-align: center; -} -.nav-tabs.nav-justified > .dropdown .dropdown-menu { - top: auto; - left: auto; -} -@media (min-width: 768px) { - .nav-tabs.nav-justified > li { - display: table-cell; - width: 1%; - } - .nav-tabs.nav-justified > li > a { - margin-bottom: 0; - } -} -.nav-tabs.nav-justified > li > a { - margin-right: 0; - border-radius: 4px; -} -.nav-tabs.nav-justified > .active > a, -.nav-tabs.nav-justified > .active > a:hover, -.nav-tabs.nav-justified > .active > a:focus { - border: 1px solid #ddd; -} -@media (min-width: 768px) { - .nav-tabs.nav-justified > li > a { - border-bottom: 1px solid #ddd; - border-radius: 4px 4px 0 0; - } - .nav-tabs.nav-justified > .active > a, - .nav-tabs.nav-justified > .active > a:hover, - .nav-tabs.nav-justified > .active > a:focus { - border-bottom-color: #fff; - } -} -.nav-pills > li { - float: left; -} -.nav-pills > li > a { - border-radius: 4px; -} -.nav-pills > li + li { - margin-left: 2px; -} -.nav-pills > li.active > a, -.nav-pills > li.active > a:hover, -.nav-pills > li.active > a:focus { - color: #fff; - background-color: #337ab7; -} -.nav-stacked > li { - float: none; -} -.nav-stacked > li + li { - margin-top: 2px; - margin-left: 0; -} -.nav-justified { - width: 100%; -} -.nav-justified > li { - float: none; -} -.nav-justified > li > a { - margin-bottom: 5px; - text-align: center; -} -.nav-justified > .dropdown .dropdown-menu { - top: auto; - left: auto; -} -@media (min-width: 768px) { - .nav-justified > li { - display: table-cell; - width: 1%; - } - .nav-justified > li > a { - margin-bottom: 0; - } -} -.nav-tabs-justified { - border-bottom: 0; -} -.nav-tabs-justified > li > a { - margin-right: 0; - border-radius: 4px; -} -.nav-tabs-justified > .active > a, -.nav-tabs-justified > .active > a:hover, -.nav-tabs-justified > .active > a:focus { - border: 1px solid #ddd; -} -@media (min-width: 768px) { - .nav-tabs-justified > li > a { - border-bottom: 1px solid #ddd; - border-radius: 4px 4px 0 0; - } - .nav-tabs-justified > .active > a, - .nav-tabs-justified > .active > a:hover, - .nav-tabs-justified > .active > a:focus { - border-bottom-color: #fff; - } -} -.tab-content > .tab-pane { - display: none; -} -.tab-content > .active { - display: block; -} -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; -} -.navbar { - position: relative; - min-height: 50px; - margin-bottom: 20px; - border: 1px solid transparent; -} -@media (min-width: 768px) { - .navbar { - border-radius: 4px; - } -} -@media (min-width: 768px) { - .navbar-header { - float: left; - } -} -.navbar-collapse { - padding-right: 15px; - padding-left: 15px; - overflow-x: visible; - -webkit-overflow-scrolling: touch; - border-top: 1px solid transparent; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); -} -.navbar-collapse.in { - overflow-y: auto; -} -@media (min-width: 768px) { - .navbar-collapse { - width: auto; - border-top: 0; - -webkit-box-shadow: none; - box-shadow: none; - } - .navbar-collapse.collapse { - display: block !important; - height: auto !important; - padding-bottom: 0; - overflow: visible !important; - } - .navbar-collapse.in { - overflow-y: visible; - } - .navbar-fixed-top .navbar-collapse, - .navbar-static-top .navbar-collapse, - .navbar-fixed-bottom .navbar-collapse { - padding-right: 0; - padding-left: 0; - } -} -.navbar-fixed-top .navbar-collapse, -.navbar-fixed-bottom .navbar-collapse { - max-height: 340px; -} -@media (max-device-width: 480px) and (orientation: landscape) { - .navbar-fixed-top .navbar-collapse, - .navbar-fixed-bottom .navbar-collapse { - max-height: 200px; - } -} -.container > .navbar-header, -.container-fluid > .navbar-header, -.container > .navbar-collapse, -.container-fluid > .navbar-collapse { - margin-right: -15px; - margin-left: -15px; -} -@media (min-width: 768px) { - .container > .navbar-header, - .container-fluid > .navbar-header, - .container > .navbar-collapse, - .container-fluid > .navbar-collapse { - margin-right: 0; - margin-left: 0; - } -} -.navbar-static-top { - z-index: 1000; - border-width: 0 0 1px; -} -@media (min-width: 768px) { - .navbar-static-top { - border-radius: 0; - } -} -.navbar-fixed-top, -.navbar-fixed-bottom { - position: fixed; - right: 0; - left: 0; - z-index: 1030; -} -@media (min-width: 768px) { - .navbar-fixed-top, - .navbar-fixed-bottom { - border-radius: 0; - } -} -.navbar-fixed-top { - top: 0; - border-width: 0 0 1px; -} -.navbar-fixed-bottom { - bottom: 0; - margin-bottom: 0; - border-width: 1px 0 0; -} -.navbar-brand { - float: left; - height: 50px; - padding: 15px 15px; - font-size: 18px; - line-height: 20px; -} -.navbar-brand:hover, -.navbar-brand:focus { - text-decoration: none; -} -.navbar-brand > img { - display: block; -} -@media (min-width: 768px) { - .navbar > .container .navbar-brand, - .navbar > .container-fluid .navbar-brand { - margin-left: -15px; - } -} -.navbar-toggle { - position: relative; - float: right; - padding: 9px 10px; - margin-top: 8px; - margin-right: 15px; - margin-bottom: 8px; - background-color: transparent; - background-image: none; - border: 1px solid transparent; - border-radius: 4px; -} -.navbar-toggle:focus { - outline: 0; -} -.navbar-toggle .icon-bar { - display: block; - width: 22px; - height: 2px; - border-radius: 1px; -} -.navbar-toggle .icon-bar + .icon-bar { - margin-top: 4px; -} -@media (min-width: 768px) { - .navbar-toggle { - display: none; - } -} -.navbar-nav { - margin: 7.5px -15px; -} -.navbar-nav > li > a { - padding-top: 10px; - padding-bottom: 10px; - line-height: 20px; -} -@media (max-width: 767px) { - .navbar-nav .open .dropdown-menu { - position: static; - float: none; - width: auto; - margin-top: 0; - background-color: transparent; - border: 0; - -webkit-box-shadow: none; - box-shadow: none; - } - .navbar-nav .open .dropdown-menu > li > a, - .navbar-nav .open .dropdown-menu .dropdown-header { - padding: 5px 15px 5px 25px; - } - .navbar-nav .open .dropdown-menu > li > a { - line-height: 20px; - } - .navbar-nav .open .dropdown-menu > li > a:hover, - .navbar-nav .open .dropdown-menu > li > a:focus { - background-image: none; - } -} -@media (min-width: 768px) { - .navbar-nav { - float: left; - margin: 0; - } - .navbar-nav > li { - float: left; - } - .navbar-nav > li > a { - padding-top: 15px; - padding-bottom: 15px; - } -} -.navbar-form { - padding: 10px 15px; - margin-top: 8px; - margin-right: -15px; - margin-bottom: 8px; - margin-left: -15px; - border-top: 1px solid transparent; - border-bottom: 1px solid transparent; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); -} -@media (min-width: 768px) { - .navbar-form .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; - } - .navbar-form .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .navbar-form .form-control-static { - display: inline-block; - } - .navbar-form .input-group { - display: inline-table; - vertical-align: middle; - } - .navbar-form .input-group .input-group-addon, - .navbar-form .input-group .input-group-btn, - .navbar-form .input-group .form-control { - width: auto; - } - .navbar-form .input-group > .form-control { - width: 100%; - } - .navbar-form .control-label { - margin-bottom: 0; - vertical-align: middle; - } - .navbar-form .radio, - .navbar-form .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; - } - .navbar-form .radio label, - .navbar-form .checkbox label { - padding-left: 0; - } - .navbar-form .radio input[type="radio"], - .navbar-form .checkbox input[type="checkbox"] { - position: relative; - margin-left: 0; - } - .navbar-form .has-feedback .form-control-feedback { - top: 0; - } -} -@media (max-width: 767px) { - .navbar-form .form-group { - margin-bottom: 5px; - } - .navbar-form .form-group:last-child { - margin-bottom: 0; - } -} -@media (min-width: 768px) { - .navbar-form { - width: auto; - padding-top: 0; - padding-bottom: 0; - margin-right: 0; - margin-left: 0; - border: 0; - -webkit-box-shadow: none; - box-shadow: none; - } -} -.navbar-nav > li > .dropdown-menu { - margin-top: 0; - border-top-left-radius: 0; - border-top-right-radius: 0; -} -.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { - margin-bottom: 0; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.navbar-btn { - margin-top: 8px; - margin-bottom: 8px; -} -.navbar-btn.btn-sm { - margin-top: 10px; - margin-bottom: 10px; -} -.navbar-btn.btn-xs { - margin-top: 14px; - margin-bottom: 14px; -} -.navbar-text { - margin-top: 15px; - margin-bottom: 15px; -} -@media (min-width: 768px) { - .navbar-text { - float: left; - margin-right: 15px; - margin-left: 15px; - } -} -@media (min-width: 768px) { - .navbar-left { - float: left !important; - } - .navbar-right { - float: right !important; - margin-right: -15px; - } - .navbar-right ~ .navbar-right { - margin-right: 0; - } -} -.navbar-default { - background-color: #f8f8f8; - border-color: #e7e7e7; -} -.navbar-default .navbar-brand { - color: #777; -} -.navbar-default .navbar-brand:hover, -.navbar-default .navbar-brand:focus { - color: #5e5e5e; - background-color: transparent; -} -.navbar-default .navbar-text { - color: #777; -} -.navbar-default .navbar-nav > li > a { - color: #777; -} -.navbar-default .navbar-nav > li > a:hover, -.navbar-default .navbar-nav > li > a:focus { - color: #333; - background-color: transparent; -} -.navbar-default .navbar-nav > .active > a, -.navbar-default .navbar-nav > .active > a:hover, -.navbar-default .navbar-nav > .active > a:focus { - color: #555; - background-color: #e7e7e7; -} -.navbar-default .navbar-nav > .disabled > a, -.navbar-default .navbar-nav > .disabled > a:hover, -.navbar-default .navbar-nav > .disabled > a:focus { - color: #ccc; - background-color: transparent; -} -.navbar-default .navbar-toggle { - border-color: #ddd; -} -.navbar-default .navbar-toggle:hover, -.navbar-default .navbar-toggle:focus { - background-color: #ddd; -} -.navbar-default .navbar-toggle .icon-bar { - background-color: #888; -} -.navbar-default .navbar-collapse, -.navbar-default .navbar-form { - border-color: #e7e7e7; -} -.navbar-default .navbar-nav > .open > a, -.navbar-default .navbar-nav > .open > a:hover, -.navbar-default .navbar-nav > .open > a:focus { - color: #555; - background-color: #e7e7e7; -} -@media (max-width: 767px) { - .navbar-default .navbar-nav .open .dropdown-menu > li > a { - color: #777; - } - .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, - .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { - color: #333; - background-color: transparent; - } - .navbar-default .navbar-nav .open .dropdown-menu > .active > a, - .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, - .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #555; - background-color: #e7e7e7; - } - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #ccc; - background-color: transparent; - } -} -.navbar-default .navbar-link { - color: #777; -} -.navbar-default .navbar-link:hover { - color: #333; -} -.navbar-default .btn-link { - color: #777; -} -.navbar-default .btn-link:hover, -.navbar-default .btn-link:focus { - color: #333; -} -.navbar-default .btn-link[disabled]:hover, -fieldset[disabled] .navbar-default .btn-link:hover, -.navbar-default .btn-link[disabled]:focus, -fieldset[disabled] .navbar-default .btn-link:focus { - color: #ccc; -} -.navbar-inverse { - background-color: #222; - border-color: #080808; -} -.navbar-inverse .navbar-brand { - color: #9d9d9d; -} -.navbar-inverse .navbar-brand:hover, -.navbar-inverse .navbar-brand:focus { - color: #fff; - background-color: transparent; -} -.navbar-inverse .navbar-text { - color: #9d9d9d; -} -.navbar-inverse .navbar-nav > li > a { - color: #9d9d9d; -} -.navbar-inverse .navbar-nav > li > a:hover, -.navbar-inverse .navbar-nav > li > a:focus { - color: #fff; - background-color: transparent; -} -.navbar-inverse .navbar-nav > .active > a, -.navbar-inverse .navbar-nav > .active > a:hover, -.navbar-inverse .navbar-nav > .active > a:focus { - color: #fff; - background-color: #080808; -} -.navbar-inverse .navbar-nav > .disabled > a, -.navbar-inverse .navbar-nav > .disabled > a:hover, -.navbar-inverse .navbar-nav > .disabled > a:focus { - color: #444; - background-color: transparent; -} -.navbar-inverse .navbar-toggle { - border-color: #333; -} -.navbar-inverse .navbar-toggle:hover, -.navbar-inverse .navbar-toggle:focus { - background-color: #333; -} -.navbar-inverse .navbar-toggle .icon-bar { - background-color: #fff; -} -.navbar-inverse .navbar-collapse, -.navbar-inverse .navbar-form { - border-color: #101010; -} -.navbar-inverse .navbar-nav > .open > a, -.navbar-inverse .navbar-nav > .open > a:hover, -.navbar-inverse .navbar-nav > .open > a:focus { - color: #fff; - background-color: #080808; -} -@media (max-width: 767px) { - .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { - border-color: #080808; - } - .navbar-inverse .navbar-nav .open .dropdown-menu .divider { - background-color: #080808; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { - color: #9d9d9d; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { - color: #fff; - background-color: transparent; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #fff; - background-color: #080808; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #444; - background-color: transparent; - } -} -.navbar-inverse .navbar-link { - color: #9d9d9d; -} -.navbar-inverse .navbar-link:hover { - color: #fff; -} -.navbar-inverse .btn-link { - color: #9d9d9d; -} -.navbar-inverse .btn-link:hover, -.navbar-inverse .btn-link:focus { - color: #fff; -} -.navbar-inverse .btn-link[disabled]:hover, -fieldset[disabled] .navbar-inverse .btn-link:hover, -.navbar-inverse .btn-link[disabled]:focus, -fieldset[disabled] .navbar-inverse .btn-link:focus { - color: #444; -} -.breadcrumb { - padding: 8px 15px; - margin-bottom: 20px; - list-style: none; - background-color: #f5f5f5; - border-radius: 4px; -} -.breadcrumb > li { - display: inline-block; -} -.breadcrumb > li + li:before { - padding: 0 5px; - color: #ccc; - content: "/\00a0"; -} -.breadcrumb > .active { - color: #777; -} -.pagination { - display: inline-block; - padding-left: 0; - margin: 20px 0; - border-radius: 4px; -} -.pagination > li { - display: inline; -} -.pagination > li > a, -.pagination > li > span { - position: relative; - float: left; - padding: 6px 12px; - margin-left: -1px; - line-height: 1.42857143; - color: #337ab7; - text-decoration: none; - background-color: #fff; - border: 1px solid #ddd; -} -.pagination > li:first-child > a, -.pagination > li:first-child > span { - margin-left: 0; - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; -} -.pagination > li:last-child > a, -.pagination > li:last-child > span { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; -} -.pagination > li > a:hover, -.pagination > li > span:hover, -.pagination > li > a:focus, -.pagination > li > span:focus { - color: #23527c; - background-color: #eee; - border-color: #ddd; -} -.pagination > .active > a, -.pagination > .active > span, -.pagination > .active > a:hover, -.pagination > .active > span:hover, -.pagination > .active > a:focus, -.pagination > .active > span:focus { - z-index: 2; - color: #fff; - cursor: default; - background-color: #337ab7; - border-color: #337ab7; -} -.pagination > .disabled > span, -.pagination > .disabled > span:hover, -.pagination > .disabled > span:focus, -.pagination > .disabled > a, -.pagination > .disabled > a:hover, -.pagination > .disabled > a:focus { - color: #777; - cursor: not-allowed; - background-color: #fff; - border-color: #ddd; -} -.pagination-lg > li > a, -.pagination-lg > li > span { - padding: 10px 16px; - font-size: 18px; -} -.pagination-lg > li:first-child > a, -.pagination-lg > li:first-child > span { - border-top-left-radius: 6px; - border-bottom-left-radius: 6px; -} -.pagination-lg > li:last-child > a, -.pagination-lg > li:last-child > span { - border-top-right-radius: 6px; - border-bottom-right-radius: 6px; -} -.pagination-sm > li > a, -.pagination-sm > li > span { - padding: 5px 10px; - font-size: 12px; -} -.pagination-sm > li:first-child > a, -.pagination-sm > li:first-child > span { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; -} -.pagination-sm > li:last-child > a, -.pagination-sm > li:last-child > span { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; -} -.pager { - padding-left: 0; - margin: 20px 0; - text-align: center; - list-style: none; -} -.pager li { - display: inline; -} -.pager li > a, -.pager li > span { - display: inline-block; - padding: 5px 14px; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 15px; -} -.pager li > a:hover, -.pager li > a:focus { - text-decoration: none; - background-color: #eee; -} -.pager .next > a, -.pager .next > span { - float: right; -} -.pager .previous > a, -.pager .previous > span { - float: left; -} -.pager .disabled > a, -.pager .disabled > a:hover, -.pager .disabled > a:focus, -.pager .disabled > span { - color: #777; - cursor: not-allowed; - background-color: #fff; -} -.label { - display: inline; - padding: .2em .6em .3em; - font-size: 75%; - font-weight: bold; - line-height: 1; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: .25em; -} -a.label:hover, -a.label:focus { - color: #fff; - text-decoration: none; - cursor: pointer; -} -.label:empty { - display: none; -} -.btn .label { - position: relative; - top: -1px; -} -.label-default { - background-color: #777; -} -.label-default[href]:hover, -.label-default[href]:focus { - background-color: #5e5e5e; -} -.label-primary { - background-color: #337ab7; -} -.label-primary[href]:hover, -.label-primary[href]:focus { - background-color: #286090; -} -.label-success { - background-color: #5cb85c; -} -.label-success[href]:hover, -.label-success[href]:focus { - background-color: #449d44; -} -.label-info { - background-color: #5bc0de; -} -.label-info[href]:hover, -.label-info[href]:focus { - background-color: #31b0d5; -} -.label-warning { - background-color: #f0ad4e; -} -.label-warning[href]:hover, -.label-warning[href]:focus { - background-color: #ec971f; -} -.label-danger { - background-color: #d9534f; -} -.label-danger[href]:hover, -.label-danger[href]:focus { - background-color: #c9302c; -} -.badge { - display: inline-block; - min-width: 10px; - padding: 3px 7px; - font-size: 12px; - font-weight: bold; - line-height: 1; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - background-color: #777; - border-radius: 10px; -} -.badge:empty { - display: none; -} -.btn .badge { - position: relative; - top: -1px; -} -.btn-xs .badge, -.btn-group-xs > .btn .badge { - top: 0; - padding: 1px 5px; -} -a.badge:hover, -a.badge:focus { - color: #fff; - text-decoration: none; - cursor: pointer; -} -.list-group-item.active > .badge, -.nav-pills > .active > a > .badge { - color: #337ab7; - background-color: #fff; -} -.list-group-item > .badge { - float: right; -} -.list-group-item > .badge + .badge { - margin-right: 5px; -} -.nav-pills > li > a > .badge { - margin-left: 3px; -} -.jumbotron { - padding: 30px 15px; - margin-bottom: 30px; - color: inherit; - background-color: #eee; -} -.jumbotron h1, -.jumbotron .h1 { - color: inherit; -} -.jumbotron p { - margin-bottom: 15px; - font-size: 21px; - font-weight: 200; -} -.jumbotron > hr { - border-top-color: #d5d5d5; -} -.container .jumbotron, -.container-fluid .jumbotron { - border-radius: 6px; -} -.jumbotron .container { - max-width: 100%; -} -@media screen and (min-width: 768px) { - .jumbotron { - padding: 48px 0; - } - .container .jumbotron, - .container-fluid .jumbotron { - padding-right: 60px; - padding-left: 60px; - } - .jumbotron h1, - .jumbotron .h1 { - font-size: 63px; - } -} -.thumbnail { - display: block; - padding: 4px; - margin-bottom: 20px; - line-height: 1.42857143; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 4px; - -webkit-transition: border .2s ease-in-out; - -o-transition: border .2s ease-in-out; - transition: border .2s ease-in-out; -} -.thumbnail > img, -.thumbnail a > img { - margin-right: auto; - margin-left: auto; -} -a.thumbnail:hover, -a.thumbnail:focus, -a.thumbnail.active { - border-color: #337ab7; -} -.thumbnail .caption { - padding: 9px; - color: #333; -} -.alert { - padding: 15px; - margin-bottom: 20px; - border: 1px solid transparent; - border-radius: 4px; -} -.alert h4 { - margin-top: 0; - color: inherit; -} -.alert .alert-link { - font-weight: bold; -} -.alert > p, -.alert > ul { - margin-bottom: 0; -} -.alert > p + p { - margin-top: 5px; -} -.alert-dismissable, -.alert-dismissible { - padding-right: 35px; -} -.alert-dismissable .close, -.alert-dismissible .close { - position: relative; - top: -2px; - right: -21px; - color: inherit; -} -.alert-success { - color: #3c763d; - background-color: #dff0d8; - border-color: #d6e9c6; -} -.alert-success hr { - border-top-color: #c9e2b3; -} -.alert-success .alert-link { - color: #2b542c; -} -.alert-info { - color: #31708f; - background-color: #d9edf7; - border-color: #bce8f1; -} -.alert-info hr { - border-top-color: #a6e1ec; -} -.alert-info .alert-link { - color: #245269; -} -.alert-warning { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #faebcc; -} -.alert-warning hr { - border-top-color: #f7e1b5; -} -.alert-warning .alert-link { - color: #66512c; -} -.alert-danger { - color: #a94442; - background-color: #f2dede; - border-color: #ebccd1; -} -.alert-danger hr { - border-top-color: #e4b9c0; -} -.alert-danger .alert-link { - color: #843534; -} -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 40px 0; - } - to { - background-position: 0 0; - } -} -@-o-keyframes progress-bar-stripes { - from { - background-position: 40px 0; - } - to { - background-position: 0 0; - } -} -@keyframes progress-bar-stripes { - from { - background-position: 40px 0; - } - to { - background-position: 0 0; - } -} -.progress { - height: 20px; - margin-bottom: 20px; - overflow: hidden; - background-color: #f5f5f5; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); -} -.progress-bar { - float: left; - width: 0; - height: 100%; - font-size: 12px; - line-height: 20px; - color: #fff; - text-align: center; - background-color: #337ab7; - -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); - -webkit-transition: width .6s ease; - -o-transition: width .6s ease; - transition: width .6s ease; -} -.progress-striped .progress-bar, -.progress-bar-striped { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - -webkit-background-size: 40px 40px; - background-size: 40px 40px; -} -.progress.active .progress-bar, -.progress-bar.active { - -webkit-animation: progress-bar-stripes 2s linear infinite; - -o-animation: progress-bar-stripes 2s linear infinite; - animation: progress-bar-stripes 2s linear infinite; -} -.progress-bar-success { - background-color: #5cb85c; -} -.progress-striped .progress-bar-success { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); -} -.progress-bar-info { - background-color: #5bc0de; -} -.progress-striped .progress-bar-info { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); -} -.progress-bar-warning { - background-color: #f0ad4e; -} -.progress-striped .progress-bar-warning { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); -} -.progress-bar-danger { - background-color: #d9534f; -} -.progress-striped .progress-bar-danger { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); -} -.media { - margin-top: 15px; -} -.media:first-child { - margin-top: 0; -} -.media, -.media-body { - overflow: hidden; - zoom: 1; -} -.media-body { - width: 10000px; -} -.media-object { - display: block; -} -.media-right, -.media > .pull-right { - padding-left: 10px; -} -.media-left, -.media > .pull-left { - padding-right: 10px; -} -.media-left, -.media-right, -.media-body { - display: table-cell; - vertical-align: top; -} -.media-middle { - vertical-align: middle; -} -.media-bottom { - vertical-align: bottom; -} -.media-heading { - margin-top: 0; - margin-bottom: 5px; -} -.media-list { - padding-left: 0; - list-style: none; -} -.list-group { - padding-left: 0; - margin-bottom: 20px; -} -.list-group-item { - position: relative; - display: block; - padding: 10px 15px; - margin-bottom: -1px; - background-color: #fff; - border: 1px solid #ddd; -} -.list-group-item:first-child { - border-top-left-radius: 4px; - border-top-right-radius: 4px; -} -.list-group-item:last-child { - margin-bottom: 0; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; -} -a.list-group-item { - color: #555; -} -a.list-group-item .list-group-item-heading { - color: #333; -} -a.list-group-item:hover, -a.list-group-item:focus { - color: #555; - text-decoration: none; - background-color: #f5f5f5; -} -.list-group-item.disabled, -.list-group-item.disabled:hover, -.list-group-item.disabled:focus { - color: #777; - cursor: not-allowed; - background-color: #eee; -} -.list-group-item.disabled .list-group-item-heading, -.list-group-item.disabled:hover .list-group-item-heading, -.list-group-item.disabled:focus .list-group-item-heading { - color: inherit; -} -.list-group-item.disabled .list-group-item-text, -.list-group-item.disabled:hover .list-group-item-text, -.list-group-item.disabled:focus .list-group-item-text { - color: #777; -} -.list-group-item.active, -.list-group-item.active:hover, -.list-group-item.active:focus { - z-index: 2; - color: #fff; - background-color: #337ab7; - border-color: #337ab7; -} -.list-group-item.active .list-group-item-heading, -.list-group-item.active:hover .list-group-item-heading, -.list-group-item.active:focus .list-group-item-heading, -.list-group-item.active .list-group-item-heading > small, -.list-group-item.active:hover .list-group-item-heading > small, -.list-group-item.active:focus .list-group-item-heading > small, -.list-group-item.active .list-group-item-heading > .small, -.list-group-item.active:hover .list-group-item-heading > .small, -.list-group-item.active:focus .list-group-item-heading > .small { - color: inherit; -} -.list-group-item.active .list-group-item-text, -.list-group-item.active:hover .list-group-item-text, -.list-group-item.active:focus .list-group-item-text { - color: #c7ddef; -} -.list-group-item-success { - color: #3c763d; - background-color: #dff0d8; -} -a.list-group-item-success { - color: #3c763d; -} -a.list-group-item-success .list-group-item-heading { - color: inherit; -} -a.list-group-item-success:hover, -a.list-group-item-success:focus { - color: #3c763d; - background-color: #d0e9c6; -} -a.list-group-item-success.active, -a.list-group-item-success.active:hover, -a.list-group-item-success.active:focus { - color: #fff; - background-color: #3c763d; - border-color: #3c763d; -} -.list-group-item-info { - color: #31708f; - background-color: #d9edf7; -} -a.list-group-item-info { - color: #31708f; -} -a.list-group-item-info .list-group-item-heading { - color: inherit; -} -a.list-group-item-info:hover, -a.list-group-item-info:focus { - color: #31708f; - background-color: #c4e3f3; -} -a.list-group-item-info.active, -a.list-group-item-info.active:hover, -a.list-group-item-info.active:focus { - color: #fff; - background-color: #31708f; - border-color: #31708f; -} -.list-group-item-warning { - color: #8a6d3b; - background-color: #fcf8e3; -} -a.list-group-item-warning { - color: #8a6d3b; -} -a.list-group-item-warning .list-group-item-heading { - color: inherit; -} -a.list-group-item-warning:hover, -a.list-group-item-warning:focus { - color: #8a6d3b; - background-color: #faf2cc; -} -a.list-group-item-warning.active, -a.list-group-item-warning.active:hover, -a.list-group-item-warning.active:focus { - color: #fff; - background-color: #8a6d3b; - border-color: #8a6d3b; -} -.list-group-item-danger { - color: #a94442; - background-color: #f2dede; -} -a.list-group-item-danger { - color: #a94442; -} -a.list-group-item-danger .list-group-item-heading { - color: inherit; -} -a.list-group-item-danger:hover, -a.list-group-item-danger:focus { - color: #a94442; - background-color: #ebcccc; -} -a.list-group-item-danger.active, -a.list-group-item-danger.active:hover, -a.list-group-item-danger.active:focus { - color: #fff; - background-color: #a94442; - border-color: #a94442; -} -.list-group-item-heading { - margin-top: 0; - margin-bottom: 5px; -} -.list-group-item-text { - margin-bottom: 0; - line-height: 1.3; -} -.panel { - margin-bottom: 20px; - background-color: #fff; - border: 1px solid transparent; - border-radius: 4px; - -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05); - box-shadow: 0 1px 1px rgba(0, 0, 0, .05); -} -.panel-body { - padding: 15px; -} -.panel-heading { - padding: 10px 15px; - border-bottom: 1px solid transparent; - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} -.panel-heading > .dropdown .dropdown-toggle { - color: inherit; -} -.panel-title { - margin-top: 0; - margin-bottom: 0; - font-size: 16px; - color: inherit; -} -.panel-title > a, -.panel-title > small, -.panel-title > .small, -.panel-title > small > a, -.panel-title > .small > a { - color: inherit; -} -.panel-footer { - padding: 10px 15px; - background-color: #f5f5f5; - border-top: 1px solid #ddd; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .list-group, -.panel > .panel-collapse > .list-group { - margin-bottom: 0; -} -.panel > .list-group .list-group-item, -.panel > .panel-collapse > .list-group .list-group-item { - border-width: 1px 0; - border-radius: 0; -} -.panel > .list-group:first-child .list-group-item:first-child, -.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { - border-top: 0; - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} -.panel > .list-group:last-child .list-group-item:last-child, -.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { - border-bottom: 0; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel-heading + .list-group .list-group-item:first-child { - border-top-width: 0; -} -.list-group + .panel-footer { - border-top-width: 0; -} -.panel > .table, -.panel > .table-responsive > .table, -.panel > .panel-collapse > .table { - margin-bottom: 0; -} -.panel > .table caption, -.panel > .table-responsive > .table caption, -.panel > .panel-collapse > .table caption { - padding-right: 15px; - padding-left: 15px; -} -.panel > .table:first-child, -.panel > .table-responsive:first-child > .table:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} -.panel > .table:first-child > thead:first-child > tr:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { - border-top-left-radius: 3px; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, -.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:last-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, -.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { - border-top-right-radius: 3px; -} -.panel > .table:last-child, -.panel > .table-responsive:last-child > .table:last-child { - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, -.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { - border-bottom-left-radius: 3px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, -.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { - border-bottom-right-radius: 3px; -} -.panel > .panel-body + .table, -.panel > .panel-body + .table-responsive, -.panel > .table + .panel-body, -.panel > .table-responsive + .panel-body { - border-top: 1px solid #ddd; -} -.panel > .table > tbody:first-child > tr:first-child th, -.panel > .table > tbody:first-child > tr:first-child td { - border-top: 0; -} -.panel > .table-bordered, -.panel > .table-responsive > .table-bordered { - border: 0; -} -.panel > .table-bordered > thead > tr > th:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:first-child, -.panel > .table-bordered > tbody > tr > th:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, -.panel > .table-bordered > tfoot > tr > th:first-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, -.panel > .table-bordered > thead > tr > td:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, -.panel > .table-bordered > tbody > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, -.panel > .table-bordered > tfoot > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; -} -.panel > .table-bordered > thead > tr > th:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:last-child, -.panel > .table-bordered > tbody > tr > th:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, -.panel > .table-bordered > tfoot > tr > th:last-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, -.panel > .table-bordered > thead > tr > td:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, -.panel > .table-bordered > tbody > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, -.panel > .table-bordered > tfoot > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; -} -.panel > .table-bordered > thead > tr:first-child > td, -.panel > .table-responsive > .table-bordered > thead > tr:first-child > td, -.panel > .table-bordered > tbody > tr:first-child > td, -.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, -.panel > .table-bordered > thead > tr:first-child > th, -.panel > .table-responsive > .table-bordered > thead > tr:first-child > th, -.panel > .table-bordered > tbody > tr:first-child > th, -.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { - border-bottom: 0; -} -.panel > .table-bordered > tbody > tr:last-child > td, -.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, -.panel > .table-bordered > tfoot > tr:last-child > td, -.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, -.panel > .table-bordered > tbody > tr:last-child > th, -.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, -.panel > .table-bordered > tfoot > tr:last-child > th, -.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { - border-bottom: 0; -} -.panel > .table-responsive { - margin-bottom: 0; - border: 0; -} -.panel-group { - margin-bottom: 20px; -} -.panel-group .panel { - margin-bottom: 0; - border-radius: 4px; -} -.panel-group .panel + .panel { - margin-top: 5px; -} -.panel-group .panel-heading { - border-bottom: 0; -} -.panel-group .panel-heading + .panel-collapse > .panel-body, -.panel-group .panel-heading + .panel-collapse > .list-group { - border-top: 1px solid #ddd; -} -.panel-group .panel-footer { - border-top: 0; -} -.panel-group .panel-footer + .panel-collapse .panel-body { - border-bottom: 1px solid #ddd; -} -.panel-default { - border-color: #ddd; -} -.panel-default > .panel-heading { - color: #333; - background-color: #f5f5f5; - border-color: #ddd; -} -.panel-default > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ddd; -} -.panel-default > .panel-heading .badge { - color: #f5f5f5; - background-color: #333; -} -.panel-default > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ddd; -} -.panel-primary { - border-color: #337ab7; -} -.panel-primary > .panel-heading { - color: #fff; - background-color: #337ab7; - border-color: #337ab7; -} -.panel-primary > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #337ab7; -} -.panel-primary > .panel-heading .badge { - color: #337ab7; - background-color: #fff; -} -.panel-primary > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #337ab7; -} -.panel-success { - border-color: #d6e9c6; -} -.panel-success > .panel-heading { - color: #3c763d; - background-color: #dff0d8; - border-color: #d6e9c6; -} -.panel-success > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #d6e9c6; -} -.panel-success > .panel-heading .badge { - color: #dff0d8; - background-color: #3c763d; -} -.panel-success > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #d6e9c6; -} -.panel-info { - border-color: #bce8f1; -} -.panel-info > .panel-heading { - color: #31708f; - background-color: #d9edf7; - border-color: #bce8f1; -} -.panel-info > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #bce8f1; -} -.panel-info > .panel-heading .badge { - color: #d9edf7; - background-color: #31708f; -} -.panel-info > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #bce8f1; -} -.panel-warning { - border-color: #faebcc; -} -.panel-warning > .panel-heading { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #faebcc; -} -.panel-warning > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #faebcc; -} -.panel-warning > .panel-heading .badge { - color: #fcf8e3; - background-color: #8a6d3b; -} -.panel-warning > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #faebcc; -} -.panel-danger { - border-color: #ebccd1; -} -.panel-danger > .panel-heading { - color: #a94442; - background-color: #f2dede; - border-color: #ebccd1; -} -.panel-danger > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ebccd1; -} -.panel-danger > .panel-heading .badge { - color: #f2dede; - background-color: #a94442; -} -.panel-danger > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ebccd1; -} -.embed-responsive { - position: relative; - display: block; - height: 0; - padding: 0; - overflow: hidden; -} -.embed-responsive .embed-responsive-item, -.embed-responsive iframe, -.embed-responsive embed, -.embed-responsive object, -.embed-responsive video { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border: 0; -} -.embed-responsive-16by9 { - padding-bottom: 56.25%; -} -.embed-responsive-4by3 { - padding-bottom: 75%; -} -.well { - min-height: 20px; - padding: 19px; - margin-bottom: 20px; - background-color: #f5f5f5; - border: 1px solid #e3e3e3; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); -} -.well blockquote { - border-color: #ddd; - border-color: rgba(0, 0, 0, .15); -} -.well-lg { - padding: 24px; - border-radius: 6px; -} -.well-sm { - padding: 9px; - border-radius: 3px; -} -.close { - float: right; - font-size: 21px; - font-weight: bold; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - filter: alpha(opacity=20); - opacity: .2; -} -.close:hover, -.close:focus { - color: #000; - text-decoration: none; - cursor: pointer; - filter: alpha(opacity=50); - opacity: .5; -} -button.close { - -webkit-appearance: none; - padding: 0; - cursor: pointer; - background: transparent; - border: 0; -} -.modal-open { - overflow: hidden; -} -.modal { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1050; - display: none; - overflow: hidden; - -webkit-overflow-scrolling: touch; - outline: 0; -} -.modal.fade .modal-dialog { - -webkit-transition: -webkit-transform .3s ease-out; - -o-transition: -o-transform .3s ease-out; - transition: transform .3s ease-out; - -webkit-transform: translate(0, -25%); - -ms-transform: translate(0, -25%); - -o-transform: translate(0, -25%); - transform: translate(0, -25%); -} -.modal.in .modal-dialog { - -webkit-transform: translate(0, 0); - -ms-transform: translate(0, 0); - -o-transform: translate(0, 0); - transform: translate(0, 0); -} -.modal-open .modal { - overflow-x: hidden; - overflow-y: auto; -} -.modal-dialog { - position: relative; - width: auto; - margin: 10px; -} -.modal-content { - position: relative; - background-color: #fff; - -webkit-background-clip: padding-box; - background-clip: padding-box; - border: 1px solid #999; - border: 1px solid rgba(0, 0, 0, .2); - border-radius: 6px; - outline: 0; - -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5); - box-shadow: 0 3px 9px rgba(0, 0, 0, .5); -} -.modal-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1040; - background-color: #000; -} -.modal-backdrop.fade { - filter: alpha(opacity=0); - opacity: 0; -} -.modal-backdrop.in { - filter: alpha(opacity=50); - opacity: .5; -} -.modal-header { - min-height: 16.42857143px; - padding: 15px; - border-bottom: 1px solid #e5e5e5; -} -.modal-header .close { - margin-top: -2px; -} -.modal-title { - margin: 0; - line-height: 1.42857143; -} -.modal-body { - position: relative; - padding: 15px; -} -.modal-footer { - padding: 15px; - text-align: right; - border-top: 1px solid #e5e5e5; -} -.modal-footer .btn + .btn { - margin-bottom: 0; - margin-left: 5px; -} -.modal-footer .btn-group .btn + .btn { - margin-left: -1px; -} -.modal-footer .btn-block + .btn-block { - margin-left: 0; -} -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; -} -@media (min-width: 768px) { - .modal-dialog { - width: 600px; - margin: 30px auto; - } - .modal-content { - -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5); - box-shadow: 0 5px 15px rgba(0, 0, 0, .5); - } - .modal-sm { - width: 300px; - } -} -@media (min-width: 992px) { - .modal-lg { - width: 900px; - } -} -.tooltip { - position: absolute; - z-index: 1070; - display: block; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 12px; - font-weight: normal; - line-height: 1.4; - filter: alpha(opacity=0); - opacity: 0; -} -.tooltip.in { - filter: alpha(opacity=90); - opacity: .9; -} -.tooltip.top { - padding: 5px 0; - margin-top: -3px; -} -.tooltip.right { - padding: 0 5px; - margin-left: 3px; -} -.tooltip.bottom { - padding: 5px 0; - margin-top: 3px; -} -.tooltip.left { - padding: 0 5px; - margin-left: -3px; -} -.tooltip-inner { - max-width: 200px; - padding: 3px 8px; - color: #fff; - text-align: center; - text-decoration: none; - background-color: #000; - border-radius: 4px; -} -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; -} -.tooltip.top .tooltip-arrow { - bottom: 0; - left: 50%; - margin-left: -5px; - border-width: 5px 5px 0; - border-top-color: #000; -} -.tooltip.top-left .tooltip-arrow { - right: 5px; - bottom: 0; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000; -} -.tooltip.top-right .tooltip-arrow { - bottom: 0; - left: 5px; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000; -} -.tooltip.right .tooltip-arrow { - top: 50%; - left: 0; - margin-top: -5px; - border-width: 5px 5px 5px 0; - border-right-color: #000; -} -.tooltip.left .tooltip-arrow { - top: 50%; - right: 0; - margin-top: -5px; - border-width: 5px 0 5px 5px; - border-left-color: #000; -} -.tooltip.bottom .tooltip-arrow { - top: 0; - left: 50%; - margin-left: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; -} -.tooltip.bottom-left .tooltip-arrow { - top: 0; - right: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; -} -.tooltip.bottom-right .tooltip-arrow { - top: 0; - left: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; -} -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1060; - display: none; - max-width: 276px; - padding: 1px; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 14px; - font-weight: normal; - line-height: 1.42857143; - text-align: left; - white-space: normal; - background-color: #fff; - -webkit-background-clip: padding-box; - background-clip: padding-box; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, .2); - border-radius: 6px; - -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2); - box-shadow: 0 5px 10px rgba(0, 0, 0, .2); -} -.popover.top { - margin-top: -10px; -} -.popover.right { - margin-left: 10px; -} -.popover.bottom { - margin-top: 10px; -} -.popover.left { - margin-left: -10px; -} -.popover-title { - padding: 8px 14px; - margin: 0; - font-size: 14px; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-radius: 5px 5px 0 0; -} -.popover-content { - padding: 9px 14px; -} -.popover > .arrow, -.popover > .arrow:after { - position: absolute; - display: block; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; -} -.popover > .arrow { - border-width: 11px; -} -.popover > .arrow:after { - content: ""; - border-width: 10px; -} -.popover.top > .arrow { - bottom: -11px; - left: 50%; - margin-left: -11px; - border-top-color: #999; - border-top-color: rgba(0, 0, 0, .25); - border-bottom-width: 0; -} -.popover.top > .arrow:after { - bottom: 1px; - margin-left: -10px; - content: " "; - border-top-color: #fff; - border-bottom-width: 0; -} -.popover.right > .arrow { - top: 50%; - left: -11px; - margin-top: -11px; - border-right-color: #999; - border-right-color: rgba(0, 0, 0, .25); - border-left-width: 0; -} -.popover.right > .arrow:after { - bottom: -10px; - left: 1px; - content: " "; - border-right-color: #fff; - border-left-width: 0; -} -.popover.bottom > .arrow { - top: -11px; - left: 50%; - margin-left: -11px; - border-top-width: 0; - border-bottom-color: #999; - border-bottom-color: rgba(0, 0, 0, .25); -} -.popover.bottom > .arrow:after { - top: 1px; - margin-left: -10px; - content: " "; - border-top-width: 0; - border-bottom-color: #fff; -} -.popover.left > .arrow { - top: 50%; - right: -11px; - margin-top: -11px; - border-right-width: 0; - border-left-color: #999; - border-left-color: rgba(0, 0, 0, .25); -} -.popover.left > .arrow:after { - right: 1px; - bottom: -10px; - content: " "; - border-right-width: 0; - border-left-color: #fff; -} -.carousel { - position: relative; -} -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden; -} -.carousel-inner > .item { - position: relative; - display: none; - -webkit-transition: .6s ease-in-out left; - -o-transition: .6s ease-in-out left; - transition: .6s ease-in-out left; -} -.carousel-inner > .item > img, -.carousel-inner > .item > a > img { - line-height: 1; -} -@media all and (transform-3d), (-webkit-transform-3d) { - .carousel-inner > .item { - -webkit-transition: -webkit-transform .6s ease-in-out; - -o-transition: -o-transform .6s ease-in-out; - transition: transform .6s ease-in-out; - - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-perspective: 1000; - perspective: 1000; - } - .carousel-inner > .item.next, - .carousel-inner > .item.active.right { - left: 0; - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - } - .carousel-inner > .item.prev, - .carousel-inner > .item.active.left { - left: 0; - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - } - .carousel-inner > .item.next.left, - .carousel-inner > .item.prev.right, - .carousel-inner > .item.active { - left: 0; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.carousel-inner > .active, -.carousel-inner > .next, -.carousel-inner > .prev { - display: block; -} -.carousel-inner > .active { - left: 0; -} -.carousel-inner > .next, -.carousel-inner > .prev { - position: absolute; - top: 0; - width: 100%; -} -.carousel-inner > .next { - left: 100%; -} -.carousel-inner > .prev { - left: -100%; -} -.carousel-inner > .next.left, -.carousel-inner > .prev.right { - left: 0; -} -.carousel-inner > .active.left { - left: -100%; -} -.carousel-inner > .active.right { - left: 100%; -} -.carousel-control { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 15%; - font-size: 20px; - color: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, .6); - filter: alpha(opacity=50); - opacity: .5; -} -.carousel-control.left { - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); - background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001))); - background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); - background-repeat: repeat-x; -} -.carousel-control.right { - right: 0; - left: auto; - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); - background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5))); - background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); - background-repeat: repeat-x; -} -.carousel-control:hover, -.carousel-control:focus { - color: #fff; - text-decoration: none; - filter: alpha(opacity=90); - outline: 0; - opacity: .9; -} -.carousel-control .icon-prev, -.carousel-control .icon-next, -.carousel-control .glyphicon-chevron-left, -.carousel-control .glyphicon-chevron-right { - position: absolute; - top: 50%; - z-index: 5; - display: inline-block; -} -.carousel-control .icon-prev, -.carousel-control .glyphicon-chevron-left { - left: 50%; - margin-left: -10px; -} -.carousel-control .icon-next, -.carousel-control .glyphicon-chevron-right { - right: 50%; - margin-right: -10px; -} -.carousel-control .icon-prev, -.carousel-control .icon-next { - width: 20px; - height: 20px; - margin-top: -10px; - font-family: serif; - line-height: 1; -} -.carousel-control .icon-prev:before { - content: '\2039'; -} -.carousel-control .icon-next:before { - content: '\203a'; -} -.carousel-indicators { - position: absolute; - bottom: 10px; - left: 50%; - z-index: 15; - width: 60%; - padding-left: 0; - margin-left: -30%; - text-align: center; - list-style: none; -} -.carousel-indicators li { - display: inline-block; - width: 10px; - height: 10px; - margin: 1px; - text-indent: -999px; - cursor: pointer; - background-color: #000 \9; - background-color: rgba(0, 0, 0, 0); - border: 1px solid #fff; - border-radius: 10px; -} -.carousel-indicators .active { - width: 12px; - height: 12px; - margin: 0; - background-color: #fff; -} -.carousel-caption { - position: absolute; - right: 15%; - bottom: 20px; - left: 15%; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, .6); -} -.carousel-caption .btn { - text-shadow: none; -} -@media screen and (min-width: 768px) { - .carousel-control .glyphicon-chevron-left, - .carousel-control .glyphicon-chevron-right, - .carousel-control .icon-prev, - .carousel-control .icon-next { - width: 30px; - height: 30px; - margin-top: -15px; - font-size: 30px; - } - .carousel-control .glyphicon-chevron-left, - .carousel-control .icon-prev { - margin-left: -15px; - } - .carousel-control .glyphicon-chevron-right, - .carousel-control .icon-next { - margin-right: -15px; - } - .carousel-caption { - right: 20%; - left: 20%; - padding-bottom: 30px; - } - .carousel-indicators { - bottom: 20px; - } -} -.clearfix:before, -.clearfix:after, -.dl-horizontal dd:before, -.dl-horizontal dd:after, -.container:before, -.container:after, -.container-fluid:before, -.container-fluid:after, -.row:before, -.row:after, -.form-horizontal .form-group:before, -.form-horizontal .form-group:after, -.btn-toolbar:before, -.btn-toolbar:after, -.btn-group-vertical > .btn-group:before, -.btn-group-vertical > .btn-group:after, -.nav:before, -.nav:after, -.navbar:before, -.navbar:after, -.navbar-header:before, -.navbar-header:after, -.navbar-collapse:before, -.navbar-collapse:after, -.pager:before, -.pager:after, -.panel-body:before, -.panel-body:after, -.modal-footer:before, -.modal-footer:after { - display: table; - content: " "; -} -.clearfix:after, -.dl-horizontal dd:after, -.container:after, -.container-fluid:after, -.row:after, -.form-horizontal .form-group:after, -.btn-toolbar:after, -.btn-group-vertical > .btn-group:after, -.nav:after, -.navbar:after, -.navbar-header:after, -.navbar-collapse:after, -.pager:after, -.panel-body:after, -.modal-footer:after { - clear: both; -} -.center-block { - display: block; - margin-right: auto; - margin-left: auto; -} -.pull-right { - float: right !important; -} -.pull-left { - float: left !important; -} -.hide { - display: none !important; -} -.show { - display: block !important; -} -.invisible { - visibility: hidden; -} -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; -} -.hidden { - display: none !important; -} -.affix { - position: fixed; -} -@-ms-viewport { - width: device-width; -} -.visible-xs, -.visible-sm, -.visible-md, -.visible-lg { - display: none !important; -} -.visible-xs-block, -.visible-xs-inline, -.visible-xs-inline-block, -.visible-sm-block, -.visible-sm-inline, -.visible-sm-inline-block, -.visible-md-block, -.visible-md-inline, -.visible-md-inline-block, -.visible-lg-block, -.visible-lg-inline, -.visible-lg-inline-block { - display: none !important; -} -@media (max-width: 767px) { - .visible-xs { - display: block !important; - } - table.visible-xs { - display: table; - } - tr.visible-xs { - display: table-row !important; - } - th.visible-xs, - td.visible-xs { - display: table-cell !important; - } -} -@media (max-width: 767px) { - .visible-xs-block { - display: block !important; - } -} -@media (max-width: 767px) { - .visible-xs-inline { - display: inline !important; - } -} -@media (max-width: 767px) { - .visible-xs-inline-block { - display: inline-block !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm { - display: block !important; - } - table.visible-sm { - display: table; - } - tr.visible-sm { - display: table-row !important; - } - th.visible-sm, - td.visible-sm { - display: table-cell !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-block { - display: block !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline { - display: inline !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline-block { - display: inline-block !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md { - display: block !important; - } - table.visible-md { - display: table; - } - tr.visible-md { - display: table-row !important; - } - th.visible-md, - td.visible-md { - display: table-cell !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-block { - display: block !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline { - display: inline !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline-block { - display: inline-block !important; - } -} -@media (min-width: 1200px) { - .visible-lg { - display: block !important; - } - table.visible-lg { - display: table; - } - tr.visible-lg { - display: table-row !important; - } - th.visible-lg, - td.visible-lg { - display: table-cell !important; - } -} -@media (min-width: 1200px) { - .visible-lg-block { - display: block !important; - } -} -@media (min-width: 1200px) { - .visible-lg-inline { - display: inline !important; - } -} -@media (min-width: 1200px) { - .visible-lg-inline-block { - display: inline-block !important; - } -} -@media (max-width: 767px) { - .hidden-xs { - display: none !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .hidden-sm { - display: none !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .hidden-md { - display: none !important; - } -} -@media (min-width: 1200px) { - .hidden-lg { - display: none !important; - } -} -.visible-print { - display: none !important; -} -@media print { - .visible-print { - display: block !important; - } - table.visible-print { - display: table; - } - tr.visible-print { - display: table-row !important; - } - th.visible-print, - td.visible-print { - display: table-cell !important; - } -} -.visible-print-block { - display: none !important; -} -@media print { - .visible-print-block { - display: block !important; - } -} -.visible-print-inline { - display: none !important; -} -@media print { - .visible-print-inline { - display: inline !important; - } -} -.visible-print-inline-block { - display: none !important; -} -@media print { - .visible-print-inline-block { - display: inline-block !important; - } -} -@media print { - .hidden-print { - display: none !important; - } -} -/*# sourceMappingURL=bootstrap.css.map */ diff --git a/testing/test_package_docs/static-assets/css/bootstrap.css.map b/testing/test_package_docs/static-assets/css/bootstrap.css.map deleted file mode 100644 index 2fd84f36eb..0000000000 --- a/testing/test_package_docs/static-assets/css/bootstrap.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["bootstrap.css","less/normalize.less","less/print.less","less/glyphicons.less","less/scaffolding.less","less/mixins/vendor-prefixes.less","less/mixins/tab-focus.less","less/mixins/image.less","less/type.less","less/mixins/text-emphasis.less","less/mixins/background-variant.less","less/mixins/text-overflow.less","less/code.less","less/grid.less","less/mixins/grid.less","less/mixins/grid-framework.less","less/tables.less","less/mixins/table-row.less","less/forms.less","less/mixins/forms.less","less/buttons.less","less/mixins/buttons.less","less/mixins/opacity.less","less/component-animations.less","less/dropdowns.less","less/mixins/nav-divider.less","less/mixins/reset-filter.less","less/button-groups.less","less/mixins/border-radius.less","less/input-groups.less","less/navs.less","less/navbar.less","less/mixins/nav-vertical-align.less","less/utilities.less","less/breadcrumbs.less","less/pagination.less","less/mixins/pagination.less","less/pager.less","less/labels.less","less/mixins/labels.less","less/badges.less","less/jumbotron.less","less/thumbnails.less","less/alerts.less","less/mixins/alerts.less","less/progress-bars.less","less/mixins/gradients.less","less/mixins/progress-bar.less","less/media.less","less/list-group.less","less/mixins/list-group.less","less/panels.less","less/mixins/panels.less","less/responsive-embed.less","less/wells.less","less/close.less","less/modals.less","less/tooltip.less","less/popovers.less","less/carousel.less","less/mixins/clearfix.less","less/mixins/center-block.less","less/mixins/hide-text.less","less/responsive-utilities.less","less/mixins/responsive-visibility.less"],"names":[],"mappings":"AAAA,6DAA4D;ACQ5D;EACE,yBAAA;EACA,4BAAA;EACA,gCAAA;EDND;ACaD;EACE,WAAA;EDXD;ACwBD;;;;;;;;;;;;;EAaE,gBAAA;EDtBD;AC8BD;;;;EAIE,uBAAA;EACA,0BAAA;ED5BD;ACoCD;EACE,eAAA;EACA,WAAA;EDlCD;AC0CD;;EAEE,eAAA;EDxCD;ACkDD;EACE,+BAAA;EDhDD;ACuDD;;EAEE,YAAA;EDrDD;AC+DD;EACE,2BAAA;ED7DD;ACoED;;EAEE,mBAAA;EDlED;ACyED;EACE,oBAAA;EDvED;AC+ED;EACE,gBAAA;EACA,kBAAA;ED7ED;ACoFD;EACE,kBAAA;EACA,aAAA;EDlFD;ACyFD;EACE,gBAAA;EDvFD;AC8FD;;EAEE,gBAAA;EACA,gBAAA;EACA,oBAAA;EACA,0BAAA;ED5FD;AC+FD;EACE,aAAA;ED7FD;ACgGD;EACE,iBAAA;ED9FD;ACwGD;EACE,WAAA;EDtGD;AC6GD;EACE,kBAAA;ED3GD;ACqHD;EACE,kBAAA;EDnHD;AC0HD;EACE,8BAAA;EACA,iCAAA;UAAA,yBAAA;EACA,WAAA;EDxHD;AC+HD;EACE,gBAAA;ED7HD;ACoID;;;;EAIE,mCAAA;EACA,gBAAA;EDlID;ACoJD;;;;;EAKE,gBAAA;EACA,eAAA;EACA,WAAA;EDlJD;ACyJD;EACE,mBAAA;EDvJD;ACiKD;;EAEE,sBAAA;ED/JD;AC0KD;;;;EAIE,4BAAA;EACA,iBAAA;EDxKD;AC+KD;;EAEE,iBAAA;ED7KD;ACoLD;;EAEE,WAAA;EACA,YAAA;EDlLD;AC0LD;EACE,qBAAA;EDxLD;ACmMD;;EAEE,gCAAA;KAAA,6BAAA;UAAA,wBAAA;EACA,YAAA;EDjMD;AC0MD;;EAEE,cAAA;EDxMD;ACiND;EACE,+BAAA;EACA,8BAAA;EACA,iCAAA;EACA,yBAAA;ED/MD;ACwND;;EAEE,0BAAA;EDtND;AC6ND;EACE,2BAAA;EACA,eAAA;EACA,gCAAA;ED3ND;ACmOD;EACE,WAAA;EACA,YAAA;EDjOD;ACwOD;EACE,gBAAA;EDtOD;AC8OD;EACE,mBAAA;ED5OD;ACsPD;EACE,2BAAA;EACA,mBAAA;EDpPD;ACuPD;;EAEE,YAAA;EDrPD;AACD,sFAAqF;AE1ErF;EAnGI;;;IAGI,oCAAA;IACA,wBAAA;IACA,qCAAA;YAAA,6BAAA;IACA,8BAAA;IFgLL;EE7KC;;IAEI,4BAAA;IF+KL;EE5KC;IACI,8BAAA;IF8KL;EE3KC;IACI,+BAAA;IF6KL;EExKC;;IAEI,aAAA;IF0KL;EEvKC;;IAEI,wBAAA;IACA,0BAAA;IFyKL;EEtKC;IACI,6BAAA;IFwKL;EErKC;;IAEI,0BAAA;IFuKL;EEpKC;IACI,4BAAA;IFsKL;EEnKC;;;IAGI,YAAA;IACA,WAAA;IFqKL;EElKC;;IAEI,yBAAA;IFoKL;EE7JC;IACI,6BAAA;IF+JL;EE3JC;IACI,eAAA;IF6JL;EE3JC;;IAGQ,mCAAA;IF4JT;EEzJC;IACI,wBAAA;IF2JL;EExJC;IACI,sCAAA;IF0JL;EE3JC;;IAKQ,mCAAA;IF0JT;EEvJC;;IAGQ,mCAAA;IFwJT;EACF;AGpPD;EACE,qCAAA;EACA,uDAAA;EACA,iYAAA;EHsPD;AG9OD;EACE,oBAAA;EACA,UAAA;EACA,uBAAA;EACA,qCAAA;EACA,oBAAA;EACA,qBAAA;EACA,gBAAA;EACA,qCAAA;EACA,oCAAA;EHgPD;AG5OmC;EAAW,gBAAA;EH+O9C;AG9OmC;EAAW,gBAAA;EHiP9C;AG/OmC;;EAAW,kBAAA;EHmP9C;AGlPmC;EAAW,kBAAA;EHqP9C;AGpPmC;EAAW,kBAAA;EHuP9C;AGtPmC;EAAW,kBAAA;EHyP9C;AGxPmC;EAAW,kBAAA;EH2P9C;AG1PmC;EAAW,kBAAA;EH6P9C;AG5PmC;EAAW,kBAAA;EH+P9C;AG9PmC;EAAW,kBAAA;EHiQ9C;AGhQmC;EAAW,kBAAA;EHmQ9C;AGlQmC;EAAW,kBAAA;EHqQ9C;AGpQmC;EAAW,kBAAA;EHuQ9C;AGtQmC;EAAW,kBAAA;EHyQ9C;AGxQmC;EAAW,kBAAA;EH2Q9C;AG1QmC;EAAW,kBAAA;EH6Q9C;AG5QmC;EAAW,kBAAA;EH+Q9C;AG9QmC;EAAW,kBAAA;EHiR9C;AGhRmC;EAAW,kBAAA;EHmR9C;AGlRmC;EAAW,kBAAA;EHqR9C;AGpRmC;EAAW,kBAAA;EHuR9C;AGtRmC;EAAW,kBAAA;EHyR9C;AGxRmC;EAAW,kBAAA;EH2R9C;AG1RmC;EAAW,kBAAA;EH6R9C;AG5RmC;EAAW,kBAAA;EH+R9C;AG9RmC;EAAW,kBAAA;EHiS9C;AGhSmC;EAAW,kBAAA;EHmS9C;AGlSmC;EAAW,kBAAA;EHqS9C;AGpSmC;EAAW,kBAAA;EHuS9C;AGtSmC;EAAW,kBAAA;EHyS9C;AGxSmC;EAAW,kBAAA;EH2S9C;AG1SmC;EAAW,kBAAA;EH6S9C;AG5SmC;EAAW,kBAAA;EH+S9C;AG9SmC;EAAW,kBAAA;EHiT9C;AGhTmC;EAAW,kBAAA;EHmT9C;AGlTmC;EAAW,kBAAA;EHqT9C;AGpTmC;EAAW,kBAAA;EHuT9C;AGtTmC;EAAW,kBAAA;EHyT9C;AGxTmC;EAAW,kBAAA;EH2T9C;AG1TmC;EAAW,kBAAA;EH6T9C;AG5TmC;EAAW,kBAAA;EH+T9C;AG9TmC;EAAW,kBAAA;EHiU9C;AGhUmC;EAAW,kBAAA;EHmU9C;AGlUmC;EAAW,kBAAA;EHqU9C;AGpUmC;EAAW,kBAAA;EHuU9C;AGtUmC;EAAW,kBAAA;EHyU9C;AGxUmC;EAAW,kBAAA;EH2U9C;AG1UmC;EAAW,kBAAA;EH6U9C;AG5UmC;EAAW,kBAAA;EH+U9C;AG9UmC;EAAW,kBAAA;EHiV9C;AGhVmC;EAAW,kBAAA;EHmV9C;AGlVmC;EAAW,kBAAA;EHqV9C;AGpVmC;EAAW,kBAAA;EHuV9C;AGtVmC;EAAW,kBAAA;EHyV9C;AGxVmC;EAAW,kBAAA;EH2V9C;AG1VmC;EAAW,kBAAA;EH6V9C;AG5VmC;EAAW,kBAAA;EH+V9C;AG9VmC;EAAW,kBAAA;EHiW9C;AGhWmC;EAAW,kBAAA;EHmW9C;AGlWmC;EAAW,kBAAA;EHqW9C;AGpWmC;EAAW,kBAAA;EHuW9C;AGtWmC;EAAW,kBAAA;EHyW9C;AGxWmC;EAAW,kBAAA;EH2W9C;AG1WmC;EAAW,kBAAA;EH6W9C;AG5WmC;EAAW,kBAAA;EH+W9C;AG9WmC;EAAW,kBAAA;EHiX9C;AGhXmC;EAAW,kBAAA;EHmX9C;AGlXmC;EAAW,kBAAA;EHqX9C;AGpXmC;EAAW,kBAAA;EHuX9C;AGtXmC;EAAW,kBAAA;EHyX9C;AGxXmC;EAAW,kBAAA;EH2X9C;AG1XmC;EAAW,kBAAA;EH6X9C;AG5XmC;EAAW,kBAAA;EH+X9C;AG9XmC;EAAW,kBAAA;EHiY9C;AGhYmC;EAAW,kBAAA;EHmY9C;AGlYmC;EAAW,kBAAA;EHqY9C;AGpYmC;EAAW,kBAAA;EHuY9C;AGtYmC;EAAW,kBAAA;EHyY9C;AGxYmC;EAAW,kBAAA;EH2Y9C;AG1YmC;EAAW,kBAAA;EH6Y9C;AG5YmC;EAAW,kBAAA;EH+Y9C;AG9YmC;EAAW,kBAAA;EHiZ9C;AGhZmC;EAAW,kBAAA;EHmZ9C;AGlZmC;EAAW,kBAAA;EHqZ9C;AGpZmC;EAAW,kBAAA;EHuZ9C;AGtZmC;EAAW,kBAAA;EHyZ9C;AGxZmC;EAAW,kBAAA;EH2Z9C;AG1ZmC;EAAW,kBAAA;EH6Z9C;AG5ZmC;EAAW,kBAAA;EH+Z9C;AG9ZmC;EAAW,kBAAA;EHia9C;AGhamC;EAAW,kBAAA;EHma9C;AGlamC;EAAW,kBAAA;EHqa9C;AGpamC;EAAW,kBAAA;EHua9C;AGtamC;EAAW,kBAAA;EHya9C;AGxamC;EAAW,kBAAA;EH2a9C;AG1amC;EAAW,kBAAA;EH6a9C;AG5amC;EAAW,kBAAA;EH+a9C;AG9amC;EAAW,kBAAA;EHib9C;AGhbmC;EAAW,kBAAA;EHmb9C;AGlbmC;EAAW,kBAAA;EHqb9C;AGpbmC;EAAW,kBAAA;EHub9C;AGtbmC;EAAW,kBAAA;EHyb9C;AGxbmC;EAAW,kBAAA;EH2b9C;AG1bmC;EAAW,kBAAA;EH6b9C;AG5bmC;EAAW,kBAAA;EH+b9C;AG9bmC;EAAW,kBAAA;EHic9C;AGhcmC;EAAW,kBAAA;EHmc9C;AGlcmC;EAAW,kBAAA;EHqc9C;AGpcmC;EAAW,kBAAA;EHuc9C;AGtcmC;EAAW,kBAAA;EHyc9C;AGxcmC;EAAW,kBAAA;EH2c9C;AG1cmC;EAAW,kBAAA;EH6c9C;AG5cmC;EAAW,kBAAA;EH+c9C;AG9cmC;EAAW,kBAAA;EHid9C;AGhdmC;EAAW,kBAAA;EHmd9C;AGldmC;EAAW,kBAAA;EHqd9C;AGpdmC;EAAW,kBAAA;EHud9C;AGtdmC;EAAW,kBAAA;EHyd9C;AGxdmC;EAAW,kBAAA;EH2d9C;AG1dmC;EAAW,kBAAA;EH6d9C;AG5dmC;EAAW,kBAAA;EH+d9C;AG9dmC;EAAW,kBAAA;EHie9C;AGhemC;EAAW,kBAAA;EHme9C;AGlemC;EAAW,kBAAA;EHqe9C;AGpemC;EAAW,kBAAA;EHue9C;AGtemC;EAAW,kBAAA;EHye9C;AGxemC;EAAW,kBAAA;EH2e9C;AG1emC;EAAW,kBAAA;EH6e9C;AG5emC;EAAW,kBAAA;EH+e9C;AG9emC;EAAW,kBAAA;EHif9C;AGhfmC;EAAW,kBAAA;EHmf9C;AGlfmC;EAAW,kBAAA;EHqf9C;AGpfmC;EAAW,kBAAA;EHuf9C;AGtfmC;EAAW,kBAAA;EHyf9C;AGxfmC;EAAW,kBAAA;EH2f9C;AG1fmC;EAAW,kBAAA;EH6f9C;AG5fmC;EAAW,kBAAA;EH+f9C;AG9fmC;EAAW,kBAAA;EHigB9C;AGhgBmC;EAAW,kBAAA;EHmgB9C;AGlgBmC;EAAW,kBAAA;EHqgB9C;AGpgBmC;EAAW,kBAAA;EHugB9C;AGtgBmC;EAAW,kBAAA;EHygB9C;AGxgBmC;EAAW,kBAAA;EH2gB9C;AG1gBmC;EAAW,kBAAA;EH6gB9C;AG5gBmC;EAAW,kBAAA;EH+gB9C;AG9gBmC;EAAW,kBAAA;EHihB9C;AGhhBmC;EAAW,kBAAA;EHmhB9C;AGlhBmC;EAAW,kBAAA;EHqhB9C;AGphBmC;EAAW,kBAAA;EHuhB9C;AGthBmC;EAAW,kBAAA;EHyhB9C;AGxhBmC;EAAW,kBAAA;EH2hB9C;AG1hBmC;EAAW,kBAAA;EH6hB9C;AG5hBmC;EAAW,kBAAA;EH+hB9C;AG9hBmC;EAAW,kBAAA;EHiiB9C;AGhiBmC;EAAW,kBAAA;EHmiB9C;AGliBmC;EAAW,kBAAA;EHqiB9C;AGpiBmC;EAAW,kBAAA;EHuiB9C;AGtiBmC;EAAW,kBAAA;EHyiB9C;AGxiBmC;EAAW,kBAAA;EH2iB9C;AG1iBmC;EAAW,kBAAA;EH6iB9C;AG5iBmC;EAAW,kBAAA;EH+iB9C;AG9iBmC;EAAW,kBAAA;EHijB9C;AGhjBmC;EAAW,kBAAA;EHmjB9C;AGljBmC;EAAW,kBAAA;EHqjB9C;AGpjBmC;EAAW,kBAAA;EHujB9C;AGtjBmC;EAAW,kBAAA;EHyjB9C;AGxjBmC;EAAW,kBAAA;EH2jB9C;AG1jBmC;EAAW,kBAAA;EH6jB9C;AG5jBmC;EAAW,kBAAA;EH+jB9C;AG9jBmC;EAAW,kBAAA;EHikB9C;AGhkBmC;EAAW,kBAAA;EHmkB9C;AGlkBmC;EAAW,kBAAA;EHqkB9C;AGpkBmC;EAAW,kBAAA;EHukB9C;AGtkBmC;EAAW,kBAAA;EHykB9C;AGxkBmC;EAAW,kBAAA;EH2kB9C;AG1kBmC;EAAW,kBAAA;EH6kB9C;AG5kBmC;EAAW,kBAAA;EH+kB9C;AG9kBmC;EAAW,kBAAA;EHilB9C;AGhlBmC;EAAW,kBAAA;EHmlB9C;AGllBmC;EAAW,kBAAA;EHqlB9C;AGplBmC;EAAW,kBAAA;EHulB9C;AGtlBmC;EAAW,kBAAA;EHylB9C;AGxlBmC;EAAW,kBAAA;EH2lB9C;AG1lBmC;EAAW,kBAAA;EH6lB9C;AG5lBmC;EAAW,kBAAA;EH+lB9C;AG9lBmC;EAAW,kBAAA;EHimB9C;AGhmBmC;EAAW,kBAAA;EHmmB9C;AGlmBmC;EAAW,kBAAA;EHqmB9C;AGpmBmC;EAAW,kBAAA;EHumB9C;AGtmBmC;EAAW,kBAAA;EHymB9C;AGxmBmC;EAAW,kBAAA;EH2mB9C;AG1mBmC;EAAW,kBAAA;EH6mB9C;AG5mBmC;EAAW,kBAAA;EH+mB9C;AG9mBmC;EAAW,kBAAA;EHinB9C;AGhnBmC;EAAW,kBAAA;EHmnB9C;AGlnBmC;EAAW,kBAAA;EHqnB9C;AGpnBmC;EAAW,kBAAA;EHunB9C;AGtnBmC;EAAW,kBAAA;EHynB9C;AGxnBmC;EAAW,kBAAA;EH2nB9C;AG1nBmC;EAAW,kBAAA;EH6nB9C;AG5nBmC;EAAW,kBAAA;EH+nB9C;AG9nBmC;EAAW,kBAAA;EHioB9C;AGhoBmC;EAAW,kBAAA;EHmoB9C;AGloBmC;EAAW,kBAAA;EHqoB9C;AGpoBmC;EAAW,kBAAA;EHuoB9C;AGtoBmC;EAAW,kBAAA;EHyoB9C;AGhoBmC;EAAW,kBAAA;EHmoB9C;AGloBmC;EAAW,kBAAA;EHqoB9C;AGpoBmC;EAAW,kBAAA;EHuoB9C;AGtoBmC;EAAW,kBAAA;EHyoB9C;AGxoBmC;EAAW,kBAAA;EH2oB9C;AG1oBmC;EAAW,kBAAA;EH6oB9C;AG5oBmC;EAAW,kBAAA;EH+oB9C;AG9oBmC;EAAW,kBAAA;EHipB9C;AGhpBmC;EAAW,kBAAA;EHmpB9C;AGlpBmC;EAAW,kBAAA;EHqpB9C;AGppBmC;EAAW,kBAAA;EHupB9C;AGtpBmC;EAAW,kBAAA;EHypB9C;AGxpBmC;EAAW,kBAAA;EH2pB9C;AG1pBmC;EAAW,kBAAA;EH6pB9C;AG5pBmC;EAAW,kBAAA;EH+pB9C;AG9pBmC;EAAW,kBAAA;EHiqB9C;AGhqBmC;EAAW,kBAAA;EHmqB9C;AGlqBmC;EAAW,kBAAA;EHqqB9C;AGpqBmC;EAAW,kBAAA;EHuqB9C;AGtqBmC;EAAW,kBAAA;EHyqB9C;AGxqBmC;EAAW,kBAAA;EH2qB9C;AG1qBmC;EAAW,kBAAA;EH6qB9C;AG5qBmC;EAAW,kBAAA;EH+qB9C;AG9qBmC;EAAW,kBAAA;EHirB9C;AGhrBmC;EAAW,kBAAA;EHmrB9C;AGlrBmC;EAAW,kBAAA;EHqrB9C;AGprBmC;EAAW,kBAAA;EHurB9C;AGtrBmC;EAAW,kBAAA;EHyrB9C;AGxrBmC;EAAW,kBAAA;EH2rB9C;AG1rBmC;EAAW,kBAAA;EH6rB9C;AG5rBmC;EAAW,kBAAA;EH+rB9C;AG9rBmC;EAAW,kBAAA;EHisB9C;AGhsBmC;EAAW,kBAAA;EHmsB9C;AGlsBmC;EAAW,kBAAA;EHqsB9C;AGpsBmC;EAAW,kBAAA;EHusB9C;AGtsBmC;EAAW,kBAAA;EHysB9C;AGxsBmC;EAAW,kBAAA;EH2sB9C;AG1sBmC;EAAW,kBAAA;EH6sB9C;AG5sBmC;EAAW,kBAAA;EH+sB9C;AG9sBmC;EAAW,kBAAA;EHitB9C;AGhtBmC;EAAW,kBAAA;EHmtB9C;AGltBmC;EAAW,kBAAA;EHqtB9C;AGptBmC;EAAW,kBAAA;EHutB9C;AGttBmC;EAAW,kBAAA;EHytB9C;AGxtBmC;EAAW,kBAAA;EH2tB9C;AG1tBmC;EAAW,kBAAA;EH6tB9C;AG5tBmC;EAAW,kBAAA;EH+tB9C;AG9tBmC;EAAW,kBAAA;EHiuB9C;AGhuBmC;EAAW,kBAAA;EHmuB9C;AGluBmC;EAAW,kBAAA;EHquB9C;AGpuBmC;EAAW,kBAAA;EHuuB9C;AGtuBmC;EAAW,kBAAA;EHyuB9C;AGxuBmC;EAAW,kBAAA;EH2uB9C;AG1uBmC;EAAW,kBAAA;EH6uB9C;AG5uBmC;EAAW,kBAAA;EH+uB9C;AG9uBmC;EAAW,kBAAA;EHivB9C;AIvhCD;ECgEE,gCAAA;EACG,6BAAA;EACK,wBAAA;EL09BT;AIzhCD;;EC6DE,gCAAA;EACG,6BAAA;EACK,wBAAA;ELg+BT;AIvhCD;EACE,iBAAA;EACA,+CAAA;EJyhCD;AIthCD;EACE,6DAAA;EACA,iBAAA;EACA,yBAAA;EACA,gBAAA;EACA,2BAAA;EJwhCD;AIphCD;;;;EAIE,sBAAA;EACA,oBAAA;EACA,sBAAA;EJshCD;AIhhCD;EACE,gBAAA;EACA,uBAAA;EJkhCD;AIhhCC;;EAEE,gBAAA;EACA,4BAAA;EJkhCH;AI/gCC;EErDA,sBAAA;EAEA,4CAAA;EACA,sBAAA;ENskCD;AIzgCD;EACE,WAAA;EJ2gCD;AIrgCD;EACE,wBAAA;EJugCD;AIngCD;;;;;EGvEE,gBAAA;EACA,iBAAA;EACA,cAAA;EPilCD;AIvgCD;EACE,oBAAA;EJygCD;AIngCD;EACE,cAAA;EACA,yBAAA;EACA,2BAAA;EACA,2BAAA;EACA,oBAAA;EC6FA,0CAAA;EACK,qCAAA;EACG,kCAAA;EEvLR,uBAAA;EACA,iBAAA;EACA,cAAA;EPimCD;AIngCD;EACE,oBAAA;EJqgCD;AI//BD;EACE,kBAAA;EACA,qBAAA;EACA,WAAA;EACA,+BAAA;EJigCD;AIz/BD;EACE,oBAAA;EACA,YAAA;EACA,aAAA;EACA,cAAA;EACA,YAAA;EACA,kBAAA;EACA,wBAAA;EACA,WAAA;EJ2/BD;AIn/BC;;EAEE,kBAAA;EACA,aAAA;EACA,cAAA;EACA,WAAA;EACA,mBAAA;EACA,YAAA;EJq/BH;AIz+BD;EACE,iBAAA;EJ2+BD;AQnoCD;;;;;;;;;;;;EAEE,sBAAA;EACA,kBAAA;EACA,kBAAA;EACA,gBAAA;ER+oCD;AQppCD;;;;;;;;;;;;;;;;;;;;;;;;EASI,qBAAA;EACA,gBAAA;EACA,gBAAA;ERqqCH;AQjqCD;;;;;;EAGE,kBAAA;EACA,qBAAA;ERsqCD;AQ1qCD;;;;;;;;;;;;EAQI,gBAAA;ERgrCH;AQ7qCD;;;;;;EAGE,kBAAA;EACA,qBAAA;ERkrCD;AQtrCD;;;;;;;;;;;;EAQI,gBAAA;ER4rCH;AQxrCD;;EAAU,iBAAA;ER4rCT;AQ3rCD;;EAAU,iBAAA;ER+rCT;AQ9rCD;;EAAU,iBAAA;ERksCT;AQjsCD;;EAAU,iBAAA;ERqsCT;AQpsCD;;EAAU,iBAAA;ERwsCT;AQvsCD;;EAAU,iBAAA;ER2sCT;AQrsCD;EACE,kBAAA;ERusCD;AQpsCD;EACE,qBAAA;EACA,iBAAA;EACA,kBAAA;EACA,kBAAA;ERssCD;AQjsCD;EAAA;IAFI,iBAAA;IRusCD;EACF;AQ/rCD;;EAEE,gBAAA;ERisCD;AQ9rCD;;EAEE,2BAAA;EACA,eAAA;ERgsCD;AQ5rCD;EAAuB,kBAAA;ER+rCtB;AQ9rCD;EAAuB,mBAAA;ERisCtB;AQhsCD;EAAuB,oBAAA;ERmsCtB;AQlsCD;EAAuB,qBAAA;ERqsCtB;AQpsCD;EAAuB,qBAAA;ERusCtB;AQpsCD;EAAuB,2BAAA;ERusCtB;AQtsCD;EAAuB,2BAAA;ERysCtB;AQxsCD;EAAuB,4BAAA;ER2sCtB;AQxsCD;EACE,gBAAA;ER0sCD;AQxsCD;ECrGE,gBAAA;ETgzCD;AS/yCC;EACE,gBAAA;ETizCH;AQ3sCD;ECxGE,gBAAA;ETszCD;ASrzCC;EACE,gBAAA;ETuzCH;AQ9sCD;EC3GE,gBAAA;ET4zCD;AS3zCC;EACE,gBAAA;ET6zCH;AQjtCD;EC9GE,gBAAA;ETk0CD;ASj0CC;EACE,gBAAA;ETm0CH;AQptCD;ECjHE,gBAAA;ETw0CD;ASv0CC;EACE,gBAAA;ETy0CH;AQntCD;EAGE,aAAA;EE3HA,2BAAA;EV+0CD;AU90CC;EACE,2BAAA;EVg1CH;AQptCD;EE9HE,2BAAA;EVq1CD;AUp1CC;EACE,2BAAA;EVs1CH;AQvtCD;EEjIE,2BAAA;EV21CD;AU11CC;EACE,2BAAA;EV41CH;AQ1tCD;EEpIE,2BAAA;EVi2CD;AUh2CC;EACE,2BAAA;EVk2CH;AQ7tCD;EEvIE,2BAAA;EVu2CD;AUt2CC;EACE,2BAAA;EVw2CH;AQ3tCD;EACE,qBAAA;EACA,qBAAA;EACA,kCAAA;ER6tCD;AQrtCD;;EAEE,eAAA;EACA,qBAAA;ERutCD;AQ1tCD;;;;EAMI,kBAAA;ER0tCH;AQntCD;EACE,iBAAA;EACA,kBAAA;ERqtCD;AQjtCD;EALE,iBAAA;EACA,kBAAA;EAMA,mBAAA;ERotCD;AQttCD;EAKI,uBAAA;EACA,mBAAA;EACA,oBAAA;ERotCH;AQ/sCD;EACE,eAAA;EACA,qBAAA;ERitCD;AQ/sCD;;EAEE,yBAAA;ERitCD;AQ/sCD;EACE,mBAAA;ERitCD;AQ/sCD;EACE,gBAAA;ERitCD;AQxrCD;EAAA;IAVM,aAAA;IACA,cAAA;IACA,aAAA;IACA,mBAAA;IGtNJ,kBAAA;IACA,yBAAA;IACA,qBAAA;IX65CC;EQlsCH;IAHM,oBAAA;IRwsCH;EACF;AQ/rCD;;EAGE,cAAA;EACA,mCAAA;ERgsCD;AQ9rCD;EACE,gBAAA;EA9IqB,2BAAA;ER+0CtB;AQ5rCD;EACE,oBAAA;EACA,kBAAA;EACA,mBAAA;EACA,gCAAA;ER8rCD;AQzrCG;;;EACE,kBAAA;ER6rCL;AQvsCD;;;EAmBI,gBAAA;EACA,gBAAA;EACA,yBAAA;EACA,gBAAA;ERyrCH;AQvrCG;;;EACE,wBAAA;ER2rCL;AQnrCD;;EAEE,qBAAA;EACA,iBAAA;EACA,iCAAA;EACA,gBAAA;EACA,mBAAA;ERqrCD;AQ/qCG;;;;;;EAAW,aAAA;ERurCd;AQtrCG;;;;;;EACE,wBAAA;ER6rCL;AQvrCD;EACE,qBAAA;EACA,oBAAA;EACA,yBAAA;ERyrCD;AY/9CD;;;;EAIE,gEAAA;EZi+CD;AY79CD;EACE,kBAAA;EACA,gBAAA;EACA,gBAAA;EACA,2BAAA;EACA,oBAAA;EZ+9CD;AY39CD;EACE,kBAAA;EACA,gBAAA;EACA,gBAAA;EACA,2BAAA;EACA,oBAAA;EACA,wDAAA;UAAA,gDAAA;EZ69CD;AYn+CD;EASI,YAAA;EACA,iBAAA;EACA,mBAAA;EACA,0BAAA;UAAA,kBAAA;EZ69CH;AYx9CD;EACE,gBAAA;EACA,gBAAA;EACA,kBAAA;EACA,iBAAA;EACA,yBAAA;EACA,uBAAA;EACA,uBAAA;EACA,gBAAA;EACA,2BAAA;EACA,2BAAA;EACA,oBAAA;EZ09CD;AYr+CD;EAeI,YAAA;EACA,oBAAA;EACA,gBAAA;EACA,uBAAA;EACA,+BAAA;EACA,kBAAA;EZy9CH;AYp9CD;EACE,mBAAA;EACA,oBAAA;EZs9CD;AahhDD;ECHE,oBAAA;EACA,mBAAA;EACA,oBAAA;EACA,qBAAA;EdshDD;AahhDC;EAAA;IAFE,cAAA;IbshDD;EACF;AalhDC;EAAA;IAFE,cAAA;IbwhDD;EACF;AaphDD;EAAA;IAFI,eAAA;Ib0hDD;EACF;AajhDD;ECvBE,oBAAA;EACA,mBAAA;EACA,oBAAA;EACA,qBAAA;Ed2iDD;Aa9gDD;ECvBE,oBAAA;EACA,qBAAA;EdwiDD;AexiDG;EACE,oBAAA;EAEA,iBAAA;EAEA,oBAAA;EACA,qBAAA;EfwiDL;AexhDG;EACE,aAAA;Ef0hDL;AenhDC;EACE,aAAA;EfqhDH;AethDC;EACE,qBAAA;EfwhDH;AezhDC;EACE,qBAAA;Ef2hDH;Ae5hDC;EACE,YAAA;Ef8hDH;Ae/hDC;EACE,qBAAA;EfiiDH;AeliDC;EACE,qBAAA;EfoiDH;AeriDC;EACE,YAAA;EfuiDH;AexiDC;EACE,qBAAA;Ef0iDH;Ae3iDC;EACE,qBAAA;Ef6iDH;Ae9iDC;EACE,YAAA;EfgjDH;AejjDC;EACE,qBAAA;EfmjDH;AepjDC;EACE,oBAAA;EfsjDH;AexiDC;EACE,aAAA;Ef0iDH;Ae3iDC;EACE,qBAAA;Ef6iDH;Ae9iDC;EACE,qBAAA;EfgjDH;AejjDC;EACE,YAAA;EfmjDH;AepjDC;EACE,qBAAA;EfsjDH;AevjDC;EACE,qBAAA;EfyjDH;Ae1jDC;EACE,YAAA;Ef4jDH;Ae7jDC;EACE,qBAAA;Ef+jDH;AehkDC;EACE,qBAAA;EfkkDH;AenkDC;EACE,YAAA;EfqkDH;AetkDC;EACE,qBAAA;EfwkDH;AezkDC;EACE,oBAAA;Ef2kDH;AevkDC;EACE,aAAA;EfykDH;AezlDC;EACE,YAAA;Ef2lDH;Ae5lDC;EACE,oBAAA;Ef8lDH;Ae/lDC;EACE,oBAAA;EfimDH;AelmDC;EACE,WAAA;EfomDH;AermDC;EACE,oBAAA;EfumDH;AexmDC;EACE,oBAAA;Ef0mDH;Ae3mDC;EACE,WAAA;Ef6mDH;Ae9mDC;EACE,oBAAA;EfgnDH;AejnDC;EACE,oBAAA;EfmnDH;AepnDC;EACE,WAAA;EfsnDH;AevnDC;EACE,oBAAA;EfynDH;Ae1nDC;EACE,mBAAA;Ef4nDH;AexnDC;EACE,YAAA;Ef0nDH;Ae5mDC;EACE,mBAAA;Ef8mDH;Ae/mDC;EACE,2BAAA;EfinDH;AelnDC;EACE,2BAAA;EfonDH;AernDC;EACE,kBAAA;EfunDH;AexnDC;EACE,2BAAA;Ef0nDH;Ae3nDC;EACE,2BAAA;Ef6nDH;Ae9nDC;EACE,kBAAA;EfgoDH;AejoDC;EACE,2BAAA;EfmoDH;AepoDC;EACE,2BAAA;EfsoDH;AevoDC;EACE,kBAAA;EfyoDH;Ae1oDC;EACE,2BAAA;Ef4oDH;Ae7oDC;EACE,0BAAA;Ef+oDH;AehpDC;EACE,iBAAA;EfkpDH;AalpDD;EElCI;IACE,aAAA;IfurDH;EehrDD;IACE,aAAA;IfkrDD;EenrDD;IACE,qBAAA;IfqrDD;EetrDD;IACE,qBAAA;IfwrDD;EezrDD;IACE,YAAA;If2rDD;Ee5rDD;IACE,qBAAA;If8rDD;Ee/rDD;IACE,qBAAA;IfisDD;EelsDD;IACE,YAAA;IfosDD;EersDD;IACE,qBAAA;IfusDD;EexsDD;IACE,qBAAA;If0sDD;Ee3sDD;IACE,YAAA;If6sDD;Ee9sDD;IACE,qBAAA;IfgtDD;EejtDD;IACE,oBAAA;IfmtDD;EersDD;IACE,aAAA;IfusDD;EexsDD;IACE,qBAAA;If0sDD;Ee3sDD;IACE,qBAAA;If6sDD;Ee9sDD;IACE,YAAA;IfgtDD;EejtDD;IACE,qBAAA;IfmtDD;EeptDD;IACE,qBAAA;IfstDD;EevtDD;IACE,YAAA;IfytDD;Ee1tDD;IACE,qBAAA;If4tDD;Ee7tDD;IACE,qBAAA;If+tDD;EehuDD;IACE,YAAA;IfkuDD;EenuDD;IACE,qBAAA;IfquDD;EetuDD;IACE,oBAAA;IfwuDD;EepuDD;IACE,aAAA;IfsuDD;EetvDD;IACE,YAAA;IfwvDD;EezvDD;IACE,oBAAA;If2vDD;Ee5vDD;IACE,oBAAA;If8vDD;Ee/vDD;IACE,WAAA;IfiwDD;EelwDD;IACE,oBAAA;IfowDD;EerwDD;IACE,oBAAA;IfuwDD;EexwDD;IACE,WAAA;If0wDD;Ee3wDD;IACE,oBAAA;If6wDD;Ee9wDD;IACE,oBAAA;IfgxDD;EejxDD;IACE,WAAA;IfmxDD;EepxDD;IACE,oBAAA;IfsxDD;EevxDD;IACE,mBAAA;IfyxDD;EerxDD;IACE,YAAA;IfuxDD;EezwDD;IACE,mBAAA;If2wDD;Ee5wDD;IACE,2BAAA;If8wDD;Ee/wDD;IACE,2BAAA;IfixDD;EelxDD;IACE,kBAAA;IfoxDD;EerxDD;IACE,2BAAA;IfuxDD;EexxDD;IACE,2BAAA;If0xDD;Ee3xDD;IACE,kBAAA;If6xDD;Ee9xDD;IACE,2BAAA;IfgyDD;EejyDD;IACE,2BAAA;IfmyDD;EepyDD;IACE,kBAAA;IfsyDD;EevyDD;IACE,2BAAA;IfyyDD;Ee1yDD;IACE,0BAAA;If4yDD;Ee7yDD;IACE,iBAAA;If+yDD;EACF;AavyDD;EE3CI;IACE,aAAA;Ifq1DH;Ee90DD;IACE,aAAA;Ifg1DD;Eej1DD;IACE,qBAAA;Ifm1DD;Eep1DD;IACE,qBAAA;Ifs1DD;Eev1DD;IACE,YAAA;Ify1DD;Ee11DD;IACE,qBAAA;If41DD;Ee71DD;IACE,qBAAA;If+1DD;Eeh2DD;IACE,YAAA;Ifk2DD;Een2DD;IACE,qBAAA;Ifq2DD;Eet2DD;IACE,qBAAA;Ifw2DD;Eez2DD;IACE,YAAA;If22DD;Ee52DD;IACE,qBAAA;If82DD;Ee/2DD;IACE,oBAAA;Ifi3DD;Een2DD;IACE,aAAA;Ifq2DD;Eet2DD;IACE,qBAAA;Ifw2DD;Eez2DD;IACE,qBAAA;If22DD;Ee52DD;IACE,YAAA;If82DD;Ee/2DD;IACE,qBAAA;Ifi3DD;Eel3DD;IACE,qBAAA;Ifo3DD;Eer3DD;IACE,YAAA;Ifu3DD;Eex3DD;IACE,qBAAA;If03DD;Ee33DD;IACE,qBAAA;If63DD;Ee93DD;IACE,YAAA;Ifg4DD;Eej4DD;IACE,qBAAA;Ifm4DD;Eep4DD;IACE,oBAAA;Ifs4DD;Eel4DD;IACE,aAAA;Ifo4DD;Eep5DD;IACE,YAAA;Ifs5DD;Eev5DD;IACE,oBAAA;Ify5DD;Ee15DD;IACE,oBAAA;If45DD;Ee75DD;IACE,WAAA;If+5DD;Eeh6DD;IACE,oBAAA;Ifk6DD;Een6DD;IACE,oBAAA;Ifq6DD;Eet6DD;IACE,WAAA;Ifw6DD;Eez6DD;IACE,oBAAA;If26DD;Ee56DD;IACE,oBAAA;If86DD;Ee/6DD;IACE,WAAA;Ifi7DD;Eel7DD;IACE,oBAAA;Ifo7DD;Eer7DD;IACE,mBAAA;Ifu7DD;Een7DD;IACE,YAAA;Ifq7DD;Eev6DD;IACE,mBAAA;Ify6DD;Ee16DD;IACE,2BAAA;If46DD;Ee76DD;IACE,2BAAA;If+6DD;Eeh7DD;IACE,kBAAA;Ifk7DD;Een7DD;IACE,2BAAA;Ifq7DD;Eet7DD;IACE,2BAAA;Ifw7DD;Eez7DD;IACE,kBAAA;If27DD;Ee57DD;IACE,2BAAA;If87DD;Ee/7DD;IACE,2BAAA;Ifi8DD;Eel8DD;IACE,kBAAA;Ifo8DD;Eer8DD;IACE,2BAAA;Ifu8DD;Eex8DD;IACE,0BAAA;If08DD;Ee38DD;IACE,iBAAA;If68DD;EACF;Aal8DD;EE9CI;IACE,aAAA;Ifm/DH;Ee5+DD;IACE,aAAA;If8+DD;Ee/+DD;IACE,qBAAA;Ifi/DD;Eel/DD;IACE,qBAAA;Ifo/DD;Eer/DD;IACE,YAAA;Ifu/DD;Eex/DD;IACE,qBAAA;If0/DD;Ee3/DD;IACE,qBAAA;If6/DD;Ee9/DD;IACE,YAAA;IfggED;EejgED;IACE,qBAAA;IfmgED;EepgED;IACE,qBAAA;IfsgED;EevgED;IACE,YAAA;IfygED;Ee1gED;IACE,qBAAA;If4gED;Ee7gED;IACE,oBAAA;If+gED;EejgED;IACE,aAAA;IfmgED;EepgED;IACE,qBAAA;IfsgED;EevgED;IACE,qBAAA;IfygED;Ee1gED;IACE,YAAA;If4gED;Ee7gED;IACE,qBAAA;If+gED;EehhED;IACE,qBAAA;IfkhED;EenhED;IACE,YAAA;IfqhED;EethED;IACE,qBAAA;IfwhED;EezhED;IACE,qBAAA;If2hED;Ee5hED;IACE,YAAA;If8hED;Ee/hED;IACE,qBAAA;IfiiED;EeliED;IACE,oBAAA;IfoiED;EehiED;IACE,aAAA;IfkiED;EeljED;IACE,YAAA;IfojED;EerjED;IACE,oBAAA;IfujED;EexjED;IACE,oBAAA;If0jED;Ee3jED;IACE,WAAA;If6jED;Ee9jED;IACE,oBAAA;IfgkED;EejkED;IACE,oBAAA;IfmkED;EepkED;IACE,WAAA;IfskED;EevkED;IACE,oBAAA;IfykED;Ee1kED;IACE,oBAAA;If4kED;Ee7kED;IACE,WAAA;If+kED;EehlED;IACE,oBAAA;IfklED;EenlED;IACE,mBAAA;IfqlED;EejlED;IACE,YAAA;IfmlED;EerkED;IACE,mBAAA;IfukED;EexkED;IACE,2BAAA;If0kED;Ee3kED;IACE,2BAAA;If6kED;Ee9kED;IACE,kBAAA;IfglED;EejlED;IACE,2BAAA;IfmlED;EeplED;IACE,2BAAA;IfslED;EevlED;IACE,kBAAA;IfylED;Ee1lED;IACE,2BAAA;If4lED;Ee7lED;IACE,2BAAA;If+lED;EehmED;IACE,kBAAA;IfkmED;EenmED;IACE,2BAAA;IfqmED;EetmED;IACE,0BAAA;IfwmED;EezmED;IACE,iBAAA;If2mED;EACF;AgB/qED;EACE,+BAAA;EhBirED;AgB/qED;EACE,kBAAA;EACA,qBAAA;EACA,gBAAA;EACA,kBAAA;EhBirED;AgB/qED;EACE,kBAAA;EhBirED;AgB3qED;EACE,aAAA;EACA,iBAAA;EACA,qBAAA;EhB6qED;AgBhrED;;;;;;EAWQ,cAAA;EACA,yBAAA;EACA,qBAAA;EACA,+BAAA;EhB6qEP;AgB3rED;EAoBI,wBAAA;EACA,kCAAA;EhB0qEH;AgB/rED;;;;;;EA8BQ,eAAA;EhByqEP;AgBvsED;EAoCI,+BAAA;EhBsqEH;AgB1sED;EAyCI,2BAAA;EhBoqEH;AgB7pED;;;;;;EAOQ,cAAA;EhB8pEP;AgBnpED;EACE,2BAAA;EhBqpED;AgBtpED;;;;;;EAQQ,2BAAA;EhBspEP;AgB9pED;;EAeM,0BAAA;EhBmpEL;AgBzoED;EAEI,2BAAA;EhB0oEH;AgBjoED;EAEI,2BAAA;EhBkoEH;AgBznED;EACE,kBAAA;EACA,aAAA;EACA,uBAAA;EhB2nED;AgBtnEG;;EACE,kBAAA;EACA,aAAA;EACA,qBAAA;EhBynEL;AiBrwEC;;;;;;;;;;;;EAOI,2BAAA;EjB4wEL;AiBtwEC;;;;;EAMI,2BAAA;EjBuwEL;AiB1xEC;;;;;;;;;;;;EAOI,2BAAA;EjBiyEL;AiB3xEC;;;;;EAMI,2BAAA;EjB4xEL;AiB/yEC;;;;;;;;;;;;EAOI,2BAAA;EjBszEL;AiBhzEC;;;;;EAMI,2BAAA;EjBizEL;AiBp0EC;;;;;;;;;;;;EAOI,2BAAA;EjB20EL;AiBr0EC;;;;;EAMI,2BAAA;EjBs0EL;AiBz1EC;;;;;;;;;;;;EAOI,2BAAA;EjBg2EL;AiB11EC;;;;;EAMI,2BAAA;EjB21EL;AgBzsED;EACE,kBAAA;EACA,mBAAA;EhB2sED;AgB9oED;EAAA;IA1DI,aAAA;IACA,qBAAA;IACA,oBAAA;IACA,8CAAA;IACA,2BAAA;IhB4sED;EgBtpEH;IAlDM,kBAAA;IhB2sEH;EgBzpEH;;;;;;IAzCY,qBAAA;IhB0sET;EgBjqEH;IAjCM,WAAA;IhBqsEH;EgBpqEH;;;;;;IAxBY,gBAAA;IhBosET;EgB5qEH;;;;;;IApBY,iBAAA;IhBwsET;EgBprEH;;;;IAPY,kBAAA;IhBisET;EACF;AkB35ED;EACE,YAAA;EACA,WAAA;EACA,WAAA;EAIA,cAAA;ElB05ED;AkBv5ED;EACE,gBAAA;EACA,aAAA;EACA,YAAA;EACA,qBAAA;EACA,iBAAA;EACA,sBAAA;EACA,gBAAA;EACA,WAAA;EACA,kCAAA;ElBy5ED;AkBt5ED;EACE,uBAAA;EACA,iBAAA;EACA,oBAAA;EACA,mBAAA;ElBw5ED;AkB74ED;Eb4BE,gCAAA;EACG,6BAAA;EACK,wBAAA;ELo3ET;AkB74ED;;EAEE,iBAAA;EACA,oBAAA;EACA,qBAAA;ElB+4ED;AkB34ED;EACE,gBAAA;ElB64ED;AkBz4ED;EACE,gBAAA;EACA,aAAA;ElB24ED;AkBv4ED;;EAEE,cAAA;ElBy4ED;AkBr4ED;;;EZxEE,sBAAA;EAEA,4CAAA;EACA,sBAAA;ENi9ED;AkBr4ED;EACE,gBAAA;EACA,kBAAA;EACA,iBAAA;EACA,yBAAA;EACA,gBAAA;ElBu4ED;AkB72ED;EACE,gBAAA;EACA,aAAA;EACA,cAAA;EACA,mBAAA;EACA,iBAAA;EACA,yBAAA;EACA,gBAAA;EACA,2BAAA;EACA,wBAAA;EACA,2BAAA;EACA,oBAAA;EbzDA,0DAAA;EACQ,kDAAA;EAyHR,wFAAA;EACK,2EAAA;EACG,wEAAA;ELizET;AmBz7EC;EACE,uBAAA;EACA,YAAA;EdUF,wFAAA;EACQ,gFAAA;ELk7ET;AKj5EC;EACE,gBAAA;EACA,YAAA;ELm5EH;AKj5EC;EAA0B,gBAAA;ELo5E3B;AKn5EC;EAAgC,gBAAA;ELs5EjC;AkBr3EC;;;EAGE,2BAAA;EACA,YAAA;ElBu3EH;AkBp3EC;;EAEE,qBAAA;ElBs3EH;AkBl3EC;EACE,cAAA;ElBo3EH;AkBx2ED;EACE,0BAAA;ElB02ED;AkBt0ED;EAxBE;;;;IAIE,mBAAA;IlBi2ED;EkB/1EC;;;;;;;;IAEE,mBAAA;IlBu2EH;EkBp2EC;;;;;;;;IAEE,mBAAA;IlB42EH;EACF;AkBl2ED;EACE,qBAAA;ElBo2ED;AkB51ED;;EAEE,oBAAA;EACA,gBAAA;EACA,kBAAA;EACA,qBAAA;ElB81ED;AkBn2ED;;EAQI,kBAAA;EACA,oBAAA;EACA,kBAAA;EACA,qBAAA;EACA,iBAAA;ElB+1EH;AkB51ED;;;;EAIE,oBAAA;EACA,oBAAA;EACA,oBAAA;ElB81ED;AkB31ED;;EAEE,kBAAA;ElB61ED;AkBz1ED;;EAEE,oBAAA;EACA,uBAAA;EACA,oBAAA;EACA,kBAAA;EACA,wBAAA;EACA,qBAAA;EACA,iBAAA;ElB21ED;AkBz1ED;;EAEE,eAAA;EACA,mBAAA;ElB21ED;AkBl1EC;;;;;;EAGE,qBAAA;ElBu1EH;AkBj1EC;;;;EAEE,qBAAA;ElBq1EH;AkB/0EC;;;;EAGI,qBAAA;ElBk1EL;AkBv0ED;EAEE,kBAAA;EACA,qBAAA;EAEA,kBAAA;EACA,kBAAA;ElBu0ED;AkBr0EC;;EAEE,iBAAA;EACA,kBAAA;ElBu0EH;AkB1zED;EC1PE,cAAA;EACA,mBAAA;EACA,iBAAA;EACA,kBAAA;EACA,oBAAA;EnBujFD;AmBrjFC;EACE,cAAA;EACA,mBAAA;EnBujFH;AmBpjFC;;EAEE,cAAA;EnBsjFH;AkBt0ED;EC7PE,cAAA;EACA,mBAAA;EACA,iBAAA;EACA,kBAAA;EACA,oBAAA;EnBskFD;AmBpkFC;EACE,cAAA;EACA,mBAAA;EnBskFH;AmBnkFC;;EAEE,cAAA;EnBqkFH;AkBr1ED;EAKI,cAAA;EACA,mBAAA;EACA,iBAAA;EACA,kBAAA;EACA,kBAAA;ElBm1EH;AkB/0ED;EC1QE,cAAA;EACA,oBAAA;EACA,iBAAA;EACA,wBAAA;EACA,oBAAA;EnB4lFD;AmB1lFC;EACE,cAAA;EACA,mBAAA;EnB4lFH;AmBzlFC;;EAEE,cAAA;EnB2lFH;AkB31ED;EC7QE,cAAA;EACA,oBAAA;EACA,iBAAA;EACA,wBAAA;EACA,oBAAA;EnB2mFD;AmBzmFC;EACE,cAAA;EACA,mBAAA;EnB2mFH;AmBxmFC;;EAEE,cAAA;EnB0mFH;AkB12ED;EAKI,cAAA;EACA,oBAAA;EACA,iBAAA;EACA,wBAAA;EACA,kBAAA;ElBw2EH;AkB/1ED;EAEE,oBAAA;ElBg2ED;AkBl2ED;EAMI,uBAAA;ElB+1EH;AkB31ED;EACE,oBAAA;EACA,QAAA;EACA,UAAA;EACA,YAAA;EACA,gBAAA;EACA,aAAA;EACA,cAAA;EACA,mBAAA;EACA,oBAAA;EACA,sBAAA;ElB61ED;AkB31ED;EACE,aAAA;EACA,cAAA;EACA,mBAAA;ElB61ED;AkB31ED;EACE,aAAA;EACA,cAAA;EACA,mBAAA;ElB61ED;AkBz1ED;;;;;;;;;;ECrXI,gBAAA;EnB0tFH;AkBr2ED;ECjXI,uBAAA;Ed+CF,0DAAA;EACQ,kDAAA;EL2qFT;AmBztFG;EACE,uBAAA;Ed4CJ,2EAAA;EACQ,mEAAA;ELgrFT;AkB/2ED;ECvWI,gBAAA;EACA,uBAAA;EACA,2BAAA;EnBytFH;AkBp3ED;ECjWI,gBAAA;EnBwtFH;AkBp3ED;;;;;;;;;;ECxXI,gBAAA;EnBwvFH;AkBh4ED;ECpXI,uBAAA;Ed+CF,0DAAA;EACQ,kDAAA;ELysFT;AmBvvFG;EACE,uBAAA;Ed4CJ,2EAAA;EACQ,mEAAA;EL8sFT;AkB14ED;EC1WI,gBAAA;EACA,uBAAA;EACA,2BAAA;EnBuvFH;AkB/4ED;ECpWI,gBAAA;EnBsvFH;AkB/4ED;;;;;;;;;;EC3XI,gBAAA;EnBsxFH;AkB35ED;ECvXI,uBAAA;Ed+CF,0DAAA;EACQ,kDAAA;ELuuFT;AmBrxFG;EACE,uBAAA;Ed4CJ,2EAAA;EACQ,mEAAA;EL4uFT;AkBr6ED;EC7WI,gBAAA;EACA,uBAAA;EACA,2BAAA;EnBqxFH;AkB16ED;ECvWI,gBAAA;EnBoxFH;AkBt6EC;EACG,WAAA;ElBw6EJ;AkBt6EC;EACG,QAAA;ElBw6EJ;AkB95ED;EACE,gBAAA;EACA,iBAAA;EACA,qBAAA;EACA,gBAAA;ElBg6ED;AkB70ED;EAAA;IA9DM,uBAAA;IACA,kBAAA;IACA,wBAAA;IlB+4EH;EkBn1EH;IAvDM,uBAAA;IACA,aAAA;IACA,wBAAA;IlB64EH;EkBx1EH;IAhDM,uBAAA;IlB24EH;EkB31EH;IA5CM,uBAAA;IACA,wBAAA;IlB04EH;EkB/1EH;;;IAtCQ,aAAA;IlB04EL;EkBp2EH;IAhCM,aAAA;IlBu4EH;EkBv2EH;IA5BM,kBAAA;IACA,wBAAA;IlBs4EH;EkB32EH;;IApBM,uBAAA;IACA,eAAA;IACA,kBAAA;IACA,wBAAA;IlBm4EH;EkBl3EH;;IAdQ,iBAAA;IlBo4EL;EkBt3EH;;IATM,oBAAA;IACA,gBAAA;IlBm4EH;EkB33EH;IAHM,QAAA;IlBi4EH;EACF;AkBv3ED;;;;EASI,eAAA;EACA,kBAAA;EACA,kBAAA;ElBo3EH;AkB/3ED;;EAiBI,kBAAA;ElBk3EH;AkBn4ED;EJjfE,oBAAA;EACA,qBAAA;Edu3FD;AkBh2EC;EAAA;IAVI,mBAAA;IACA,kBAAA;IACA,kBAAA;IlB82EH;EACF;AkB94ED;EAwCI,aAAA;ElBy2EH;AkB51EC;EAAA;IAHM,0BAAA;IlBm2EL;EACF;AkB11EC;EAAA;IAHM,kBAAA;IlBi2EL;EACF;AoBn5FD;EACE,uBAAA;EACA,kBAAA;EACA,qBAAA;EACA,oBAAA;EACA,wBAAA;EACA,gCAAA;MAAA,4BAAA;EACA,iBAAA;EACA,wBAAA;EACA,+BAAA;EACA,qBAAA;EC6BA,mBAAA;EACA,iBAAA;EACA,yBAAA;EACA,oBAAA;EhB4KA,2BAAA;EACG,wBAAA;EACC,uBAAA;EACI,mBAAA;EL8sFT;AoBt5FG;;;;;;EdrBF,sBAAA;EAEA,4CAAA;EACA,sBAAA;ENk7FD;AoB15FC;;;EAGE,gBAAA;EACA,uBAAA;EpB45FH;AoBz5FC;;EAEE,YAAA;EACA,wBAAA;Ef2BF,0DAAA;EACQ,kDAAA;ELi4FT;AoBz5FC;;;EAGE,qBAAA;EACA,sBAAA;EE9CF,eAAA;EAGA,2BAAA;EjB8DA,0BAAA;EACQ,kBAAA;EL24FT;AoBr5FD;ECrDE,gBAAA;EACA,2BAAA;EACA,uBAAA;ErB68FD;AqB38FC;;;;;;EAME,gBAAA;EACA,2BAAA;EACI,uBAAA;ErB68FP;AqB38FC;;;EAGE,wBAAA;ErB68FH;AqBx8FG;;;;;;;;;;;;;;;;;;EAME,2BAAA;EACI,uBAAA;ErBs9FT;AoB97FD;ECnBI,gBAAA;EACA,2BAAA;ErBo9FH;AoB/7FD;ECxDE,gBAAA;EACA,2BAAA;EACA,uBAAA;ErB0/FD;AqBx/FC;;;;;;EAME,gBAAA;EACA,2BAAA;EACI,uBAAA;ErB0/FP;AqBx/FC;;;EAGE,wBAAA;ErB0/FH;AqBr/FG;;;;;;;;;;;;;;;;;;EAME,2BAAA;EACI,uBAAA;ErBmgGT;AoBx+FD;ECtBI,gBAAA;EACA,2BAAA;ErBigGH;AoBx+FD;EC5DE,gBAAA;EACA,2BAAA;EACA,uBAAA;ErBuiGD;AqBriGC;;;;;;EAME,gBAAA;EACA,2BAAA;EACI,uBAAA;ErBuiGP;AqBriGC;;;EAGE,wBAAA;ErBuiGH;AqBliGG;;;;;;;;;;;;;;;;;;EAME,2BAAA;EACI,uBAAA;ErBgjGT;AoBjhGD;EC1BI,gBAAA;EACA,2BAAA;ErB8iGH;AoBjhGD;EChEE,gBAAA;EACA,2BAAA;EACA,uBAAA;ErBolGD;AqBllGC;;;;;;EAME,gBAAA;EACA,2BAAA;EACI,uBAAA;ErBolGP;AqBllGC;;;EAGE,wBAAA;ErBolGH;AqB/kGG;;;;;;;;;;;;;;;;;;EAME,2BAAA;EACI,uBAAA;ErB6lGT;AoB1jGD;EC9BI,gBAAA;EACA,2BAAA;ErB2lGH;AoB1jGD;ECpEE,gBAAA;EACA,2BAAA;EACA,uBAAA;ErBioGD;AqB/nGC;;;;;;EAME,gBAAA;EACA,2BAAA;EACI,uBAAA;ErBioGP;AqB/nGC;;;EAGE,wBAAA;ErBioGH;AqB5nGG;;;;;;;;;;;;;;;;;;EAME,2BAAA;EACI,uBAAA;ErB0oGT;AoBnmGD;EClCI,gBAAA;EACA,2BAAA;ErBwoGH;AoBnmGD;ECxEE,gBAAA;EACA,2BAAA;EACA,uBAAA;ErB8qGD;AqB5qGC;;;;;;EAME,gBAAA;EACA,2BAAA;EACI,uBAAA;ErB8qGP;AqB5qGC;;;EAGE,wBAAA;ErB8qGH;AqBzqGG;;;;;;;;;;;;;;;;;;EAME,2BAAA;EACI,uBAAA;ErBurGT;AoB5oGD;ECtCI,gBAAA;EACA,2BAAA;ErBqrGH;AoBvoGD;EACE,gBAAA;EACA,qBAAA;EACA,kBAAA;EpByoGD;AoBvoGC;;;;;EAKE,+BAAA;Ef7BF,0BAAA;EACQ,kBAAA;ELuqGT;AoBxoGC;;;;EAIE,2BAAA;EpB0oGH;AoBxoGC;;EAEE,gBAAA;EACA,4BAAA;EACA,+BAAA;EpB0oGH;AoBtoGG;;;;EAEE,gBAAA;EACA,uBAAA;EpB0oGL;AoBjoGD;;EC/EE,oBAAA;EACA,iBAAA;EACA,wBAAA;EACA,oBAAA;ErBotGD;AoBpoGD;;ECnFE,mBAAA;EACA,iBAAA;EACA,kBAAA;EACA,oBAAA;ErB2tGD;AoBvoGD;;ECvFE,kBAAA;EACA,iBAAA;EACA,kBAAA;EACA,oBAAA;ErBkuGD;AoBtoGD;EACE,gBAAA;EACA,aAAA;EpBwoGD;AoBpoGD;EACE,iBAAA;EpBsoGD;AoB/nGC;;;EACE,aAAA;EpBmoGH;AuBvxGD;EACE,YAAA;ElBoLA,0CAAA;EACK,qCAAA;EACG,kCAAA;ELsmGT;AuB1xGC;EACE,YAAA;EvB4xGH;AuBxxGD;EACE,eAAA;EvB0xGD;AuBxxGC;EAAY,gBAAA;EvB2xGb;AuB1xGC;EAAY,oBAAA;EvB6xGb;AuB5xGC;EAAY,0BAAA;EvB+xGb;AuB5xGD;EACE,oBAAA;EACA,WAAA;EACA,kBAAA;ElBuKA,iDAAA;EACQ,4CAAA;KAAA,yCAAA;EAOR,oCAAA;EACQ,+BAAA;KAAA,4BAAA;EAGR,0CAAA;EACQ,qCAAA;KAAA,kCAAA;ELgnGT;AwB1zGD;EACE,uBAAA;EACA,UAAA;EACA,WAAA;EACA,kBAAA;EACA,wBAAA;EACA,wBAAA;EACA,qCAAA;EACA,oCAAA;ExB4zGD;AwBxzGD;;EAEE,oBAAA;ExB0zGD;AwBtzGD;EACE,YAAA;ExBwzGD;AwBpzGD;EACE,oBAAA;EACA,WAAA;EACA,SAAA;EACA,eAAA;EACA,eAAA;EACA,aAAA;EACA,kBAAA;EACA,gBAAA;EACA,iBAAA;EACA,kBAAA;EACA,iBAAA;EACA,kBAAA;EACA,2BAAA;EACA,2BAAA;EACA,uCAAA;EACA,oBAAA;EnBuBA,qDAAA;EACQ,6CAAA;EmBtBR,sCAAA;UAAA,8BAAA;ExBuzGD;AwBlzGC;EACE,UAAA;EACA,YAAA;ExBozGH;AwB70GD;ECxBE,aAAA;EACA,eAAA;EACA,kBAAA;EACA,2BAAA;EzBw2GD;AwBn1GD;EAmCI,gBAAA;EACA,mBAAA;EACA,aAAA;EACA,qBAAA;EACA,yBAAA;EACA,gBAAA;EACA,qBAAA;ExBmzGH;AwB7yGC;;EAEE,uBAAA;EACA,gBAAA;EACA,2BAAA;ExB+yGH;AwBzyGC;;;EAGE,gBAAA;EACA,uBAAA;EACA,YAAA;EACA,2BAAA;ExB2yGH;AwBlyGC;;;EAGE,gBAAA;ExBoyGH;AwBhyGC;;EAEE,uBAAA;EACA,+BAAA;EACA,wBAAA;EE1GF,qEAAA;EF4GE,qBAAA;ExBkyGH;AwB7xGD;EAGI,gBAAA;ExB6xGH;AwBhyGD;EAQI,YAAA;ExB2xGH;AwBnxGD;EACE,YAAA;EACA,UAAA;ExBqxGD;AwB7wGD;EACE,SAAA;EACA,aAAA;ExB+wGD;AwB3wGD;EACE,gBAAA;EACA,mBAAA;EACA,iBAAA;EACA,yBAAA;EACA,gBAAA;EACA,qBAAA;ExB6wGD;AwBzwGD;EACE,iBAAA;EACA,SAAA;EACA,UAAA;EACA,WAAA;EACA,QAAA;EACA,cAAA;ExB2wGD;AwBvwGD;EACE,UAAA;EACA,YAAA;ExBywGD;AwBjwGD;;EAII,eAAA;EACA,0BAAA;EACA,aAAA;ExBiwGH;AwBvwGD;;EAUI,WAAA;EACA,cAAA;EACA,oBAAA;ExBiwGH;AwB5uGD;EAXE;IAnEA,YAAA;IACA,UAAA;IxB8zGC;EwB5vGD;IAzDA,SAAA;IACA,aAAA;IxBwzGC;EACF;A2Bv8GD;;EAEE,oBAAA;EACA,uBAAA;EACA,wBAAA;E3By8GD;A2B78GD;;EAMI,oBAAA;EACA,aAAA;E3B28GH;A2Bz8GG;;;;;;;;EAIE,YAAA;E3B+8GL;A2Bz8GD;;;;EAKI,mBAAA;E3B08GH;A2Br8GD;EACE,mBAAA;E3Bu8GD;A2Bx8GD;;EAMI,aAAA;E3Bs8GH;A2B58GD;;;EAWI,kBAAA;E3Bs8GH;A2Bl8GD;EACE,kBAAA;E3Bo8GD;A2Bh8GD;EACE,gBAAA;E3Bk8GD;A2Bj8GC;ECjDA,+BAAA;EACG,4BAAA;E5Bq/GJ;A2Bh8GD;;EC9CE,8BAAA;EACG,2BAAA;E5Bk/GJ;A2B/7GD;EACE,aAAA;E3Bi8GD;A2B/7GD;EACE,kBAAA;E3Bi8GD;A2B/7GD;;EClEE,+BAAA;EACG,4BAAA;E5BqgHJ;A2B97GD;EChEE,8BAAA;EACG,2BAAA;E5BigHJ;A2B77GD;;EAEE,YAAA;E3B+7GD;A2B96GD;EACE,mBAAA;EACA,oBAAA;E3Bg7GD;A2B96GD;EACE,oBAAA;EACA,qBAAA;E3Bg7GD;A2B36GD;EtB9CE,0DAAA;EACQ,kDAAA;EL49GT;A2B36GC;EtBlDA,0BAAA;EACQ,kBAAA;ELg+GT;A2Bx6GD;EACE,gBAAA;E3B06GD;A2Bv6GD;EACE,yBAAA;EACA,wBAAA;E3By6GD;A2Bt6GD;EACE,yBAAA;E3Bw6GD;A2Bj6GD;;;EAII,gBAAA;EACA,aAAA;EACA,aAAA;EACA,iBAAA;E3Bk6GH;A2Bz6GD;EAcM,aAAA;E3B85GL;A2B56GD;;;;EAsBI,kBAAA;EACA,gBAAA;E3B45GH;A2Bv5GC;EACE,kBAAA;E3By5GH;A2Bv5GC;EACE,8BAAA;ECnKF,+BAAA;EACC,8BAAA;E5B6jHF;A2Bx5GC;EACE,gCAAA;EC/KF,4BAAA;EACC,2BAAA;E5B0kHF;A2Bx5GD;EACE,kBAAA;E3B05GD;A2Bx5GD;;EC9KE,+BAAA;EACC,8BAAA;E5B0kHF;A2Bv5GD;EC5LE,4BAAA;EACC,2BAAA;E5BslHF;A2Bn5GD;EACE,gBAAA;EACA,aAAA;EACA,qBAAA;EACA,2BAAA;E3Bq5GD;A2Bz5GD;;EAOI,aAAA;EACA,qBAAA;EACA,WAAA;E3Bs5GH;A2B/5GD;EAYI,aAAA;E3Bs5GH;A2Bl6GD;EAgBI,YAAA;E3Bq5GH;A2Bp4GD;;;;EAKM,oBAAA;EACA,wBAAA;EACA,sBAAA;E3Bq4GL;A6B9mHD;EACE,oBAAA;EACA,gBAAA;EACA,2BAAA;E7BgnHD;A6B7mHC;EACE,aAAA;EACA,iBAAA;EACA,kBAAA;E7B+mHH;A6BxnHD;EAeI,oBAAA;EACA,YAAA;EAKA,aAAA;EAEA,aAAA;EACA,kBAAA;E7BumHH;A6B9lHD;;;EV8BE,cAAA;EACA,oBAAA;EACA,iBAAA;EACA,wBAAA;EACA,oBAAA;EnBqkHD;AmBnkHC;;;EACE,cAAA;EACA,mBAAA;EnBukHH;AmBpkHC;;;;;;EAEE,cAAA;EnB0kHH;A6BhnHD;;;EVyBE,cAAA;EACA,mBAAA;EACA,iBAAA;EACA,kBAAA;EACA,oBAAA;EnB4lHD;AmB1lHC;;;EACE,cAAA;EACA,mBAAA;EnB8lHH;AmB3lHC;;;;;;EAEE,cAAA;EnBimHH;A6B9nHD;;;EAGE,qBAAA;E7BgoHD;A6B9nHC;;;EACE,kBAAA;E7BkoHH;A6B9nHD;;EAEE,WAAA;EACA,qBAAA;EACA,wBAAA;E7BgoHD;A6B3nHD;EACE,mBAAA;EACA,iBAAA;EACA,qBAAA;EACA,gBAAA;EACA,gBAAA;EACA,oBAAA;EACA,2BAAA;EACA,2BAAA;EACA,oBAAA;E7B6nHD;A6B1nHC;EACE,mBAAA;EACA,iBAAA;EACA,oBAAA;E7B4nHH;A6B1nHC;EACE,oBAAA;EACA,iBAAA;EACA,oBAAA;E7B4nHH;A6BhpHD;;EA0BI,eAAA;E7B0nHH;A6BrnHD;;;;;;;EDhGE,+BAAA;EACG,4BAAA;E5B8tHJ;A6BtnHD;EACE,iBAAA;E7BwnHD;A6BtnHD;;;;;;;EDpGE,8BAAA;EACG,2BAAA;E5BmuHJ;A6BvnHD;EACE,gBAAA;E7BynHD;A6BpnHD;EACE,oBAAA;EAGA,cAAA;EACA,qBAAA;E7BonHD;A6BznHD;EAUI,oBAAA;E7BknHH;A6B5nHD;EAYM,mBAAA;E7BmnHL;A6BhnHG;;;EAGE,YAAA;E7BknHL;A6B7mHC;;EAGI,oBAAA;E7B8mHL;A6B3mHC;;EAGI,mBAAA;E7B4mHL;A8BtwHD;EACE,kBAAA;EACA,iBAAA;EACA,kBAAA;E9BwwHD;A8B3wHD;EAOI,oBAAA;EACA,gBAAA;E9BuwHH;A8B/wHD;EAWM,oBAAA;EACA,gBAAA;EACA,oBAAA;E9BuwHL;A8BtwHK;;EAEE,uBAAA;EACA,2BAAA;E9BwwHP;A8BnwHG;EACE,gBAAA;E9BqwHL;A8BnwHK;;EAEE,gBAAA;EACA,uBAAA;EACA,+BAAA;EACA,qBAAA;E9BqwHP;A8B9vHG;;;EAGE,2BAAA;EACA,uBAAA;E9BgwHL;A8BzyHD;ELHE,aAAA;EACA,eAAA;EACA,kBAAA;EACA,2BAAA;EzB+yHD;A8B/yHD;EA0DI,iBAAA;E9BwvHH;A8B/uHD;EACE,kCAAA;E9BivHD;A8BlvHD;EAGI,aAAA;EAEA,qBAAA;E9BivHH;A8BtvHD;EASM,mBAAA;EACA,yBAAA;EACA,+BAAA;EACA,4BAAA;E9BgvHL;A8B/uHK;EACE,uCAAA;E9BivHP;A8B3uHK;;;EAGE,gBAAA;EACA,2BAAA;EACA,2BAAA;EACA,kCAAA;EACA,iBAAA;E9B6uHP;A8BxuHC;EAqDA,aAAA;EA8BA,kBAAA;E9BypHD;A8B5uHC;EAwDE,aAAA;E9BurHH;A8B/uHC;EA0DI,oBAAA;EACA,oBAAA;E9BwrHL;A8BnvHC;EAgEE,WAAA;EACA,YAAA;E9BsrHH;A8B1qHD;EAAA;IAPM,qBAAA;IACA,WAAA;I9BqrHH;E8B/qHH;IAJQ,kBAAA;I9BsrHL;EACF;A8BhwHC;EAuFE,iBAAA;EACA,oBAAA;E9B4qHH;A8BpwHC;;;EA8FE,2BAAA;E9B2qHH;A8B7pHD;EAAA;IATM,kCAAA;IACA,4BAAA;I9B0qHH;E8BlqHH;;;IAHM,8BAAA;I9B0qHH;EACF;A8B3wHD;EAEI,aAAA;E9B4wHH;A8B9wHD;EAMM,oBAAA;E9B2wHL;A8BjxHD;EASM,kBAAA;E9B2wHL;A8BtwHK;;;EAGE,gBAAA;EACA,2BAAA;E9BwwHP;A8BhwHD;EAEI,aAAA;E9BiwHH;A8BnwHD;EAIM,iBAAA;EACA,gBAAA;E9BkwHL;A8BtvHD;EACE,aAAA;E9BwvHD;A8BzvHD;EAII,aAAA;E9BwvHH;A8B5vHD;EAMM,oBAAA;EACA,oBAAA;E9ByvHL;A8BhwHD;EAYI,WAAA;EACA,YAAA;E9BuvHH;A8B3uHD;EAAA;IAPM,qBAAA;IACA,WAAA;I9BsvHH;E8BhvHH;IAJQ,kBAAA;I9BuvHL;EACF;A8B/uHD;EACE,kBAAA;E9BivHD;A8BlvHD;EAKI,iBAAA;EACA,oBAAA;E9BgvHH;A8BtvHD;;;EAYI,2BAAA;E9B+uHH;A8BjuHD;EAAA;IATM,kCAAA;IACA,4BAAA;I9B8uHH;E8BtuHH;;;IAHM,8BAAA;I9B8uHH;EACF;A8BruHD;EAEI,eAAA;E9BsuHH;A8BxuHD;EAKI,gBAAA;E9BsuHH;A8B7tHD;EAEE,kBAAA;EF3OA,4BAAA;EACC,2BAAA;E5B08HF;A+Bp8HD;EACE,oBAAA;EACA,kBAAA;EACA,qBAAA;EACA,+BAAA;E/Bs8HD;A+B97HD;EAAA;IAFI,oBAAA;I/Bo8HD;EACF;A+Br7HD;EAAA;IAFI,aAAA;I/B27HD;EACF;A+B76HD;EACE,qBAAA;EACA,qBAAA;EACA,oBAAA;EACA,mCAAA;EACA,4DAAA;UAAA,oDAAA;EAEA,mCAAA;E/B86HD;A+B56HC;EACE,kBAAA;E/B86HH;A+Bl5HD;EAAA;IAxBI,aAAA;IACA,eAAA;IACA,0BAAA;YAAA,kBAAA;I/B86HD;E+B56HC;IACE,2BAAA;IACA,yBAAA;IACA,mBAAA;IACA,8BAAA;I/B86HH;E+B36HC;IACE,qBAAA;I/B66HH;E+Bx6HC;;;IAGE,iBAAA;IACA,kBAAA;I/B06HH;EACF;A+Bt6HD;;EAGI,mBAAA;E/Bu6HH;A+Bl6HC;EAAA;;IAFI,mBAAA;I/By6HH;EACF;A+Bh6HD;;;;EAII,qBAAA;EACA,oBAAA;E/Bk6HH;A+B55HC;EAAA;;;;IAHI,iBAAA;IACA,gBAAA;I/Bs6HH;EACF;A+B15HD;EACE,eAAA;EACA,uBAAA;E/B45HD;A+Bv5HD;EAAA;IAFI,kBAAA;I/B65HD;EACF;A+Bz5HD;;EAEE,iBAAA;EACA,UAAA;EACA,SAAA;EACA,eAAA;E/B25HD;A+Br5HD;EAAA;;IAFI,kBAAA;I/B45HD;EACF;A+B15HD;EACE,QAAA;EACA,uBAAA;E/B45HD;A+B15HD;EACE,WAAA;EACA,kBAAA;EACA,uBAAA;E/B45HD;A+Bt5HD;EACE,aAAA;EACA,oBAAA;EACA,iBAAA;EACA,mBAAA;EACA,cAAA;E/Bw5HD;A+Bt5HC;;EAEE,uBAAA;E/Bw5HH;A+Bj6HD;EAaI,gBAAA;E/Bu5HH;A+B94HD;EALI;;IAEE,oBAAA;I/Bs5HH;EACF;A+B54HD;EACE,oBAAA;EACA,cAAA;EACA,oBAAA;EACA,mBAAA;EC9LA,iBAAA;EACA,oBAAA;ED+LA,+BAAA;EACA,wBAAA;EACA,+BAAA;EACA,oBAAA;E/B+4HD;A+B34HC;EACE,YAAA;E/B64HH;A+B35HD;EAmBI,gBAAA;EACA,aAAA;EACA,aAAA;EACA,oBAAA;E/B24HH;A+Bj6HD;EAyBI,iBAAA;E/B24HH;A+Br4HD;EAAA;IAFI,eAAA;I/B24HD;EACF;A+Bl4HD;EACE,qBAAA;E/Bo4HD;A+Br4HD;EAII,mBAAA;EACA,sBAAA;EACA,mBAAA;E/Bo4HH;A+Bx2HC;EAAA;IAtBI,kBAAA;IACA,aAAA;IACA,aAAA;IACA,eAAA;IACA,+BAAA;IACA,WAAA;IACA,0BAAA;YAAA,kBAAA;I/Bk4HH;E+Bl3HD;;IAbM,4BAAA;I/Bm4HL;E+Bt3HD;IAVM,mBAAA;I/Bm4HL;E+Bl4HK;;IAEE,wBAAA;I/Bo4HP;EACF;A+Bl3HD;EAAA;IAXI,aAAA;IACA,WAAA;I/Bi4HD;E+Bv3HH;IAPM,aAAA;I/Bi4HH;E+B13HH;IALQ,mBAAA;IACA,sBAAA;I/Bk4HL;EACF;A+Bv3HD;EACE,oBAAA;EACA,qBAAA;EACA,oBAAA;EACA,mCAAA;EACA,sCAAA;E1B9NA,8FAAA;EACQ,sFAAA;E2B/DR,iBAAA;EACA,oBAAA;EhCwpID;AkBvqHD;EAAA;IA9DM,uBAAA;IACA,kBAAA;IACA,wBAAA;IlByuHH;EkB7qHH;IAvDM,uBAAA;IACA,aAAA;IACA,wBAAA;IlBuuHH;EkBlrHH;IAhDM,uBAAA;IlBquHH;EkBrrHH;IA5CM,uBAAA;IACA,wBAAA;IlBouHH;EkBzrHH;;;IAtCQ,aAAA;IlBouHL;EkB9rHH;IAhCM,aAAA;IlBiuHH;EkBjsHH;IA5BM,kBAAA;IACA,wBAAA;IlBguHH;EkBrsHH;;IApBM,uBAAA;IACA,eAAA;IACA,kBAAA;IACA,wBAAA;IlB6tHH;EkB5sHH;;IAdQ,iBAAA;IlB8tHL;EkBhtHH;;IATM,oBAAA;IACA,gBAAA;IlB6tHH;EkBrtHH;IAHM,QAAA;IlB2tHH;EACF;A+Bh6HC;EAAA;IANI,oBAAA;I/B06HH;E+Bx6HG;IACE,kBAAA;I/B06HL;EACF;A+Bz5HD;EAAA;IARI,aAAA;IACA,WAAA;IACA,gBAAA;IACA,iBAAA;IACA,gBAAA;IACA,mBAAA;I1BzPF,0BAAA;IACQ,kBAAA;IL+pIP;EACF;A+B/5HD;EACE,eAAA;EHpUA,4BAAA;EACC,2BAAA;E5BsuIF;A+B/5HD;EACE,kBAAA;EHzUA,8BAAA;EACC,6BAAA;EAOD,+BAAA;EACC,8BAAA;E5BquIF;A+B35HD;EChVE,iBAAA;EACA,oBAAA;EhC8uID;A+B55HC;ECnVA,kBAAA;EACA,qBAAA;EhCkvID;A+B75HC;ECtVA,kBAAA;EACA,qBAAA;EhCsvID;A+Bv5HD;EChWE,kBAAA;EACA,qBAAA;EhC0vID;A+Bn5HD;EAAA;IAJI,aAAA;IACA,mBAAA;IACA,oBAAA;I/B25HD;EACF;A+B93HD;EAhBE;IExWA,wBAAA;IjC0vIC;E+Bj5HD;IE5WA,yBAAA;IF8WE,qBAAA;I/Bm5HD;E+Br5HD;IAKI,iBAAA;I/Bm5HH;EACF;A+B14HD;EACE,2BAAA;EACA,uBAAA;E/B44HD;A+B94HD;EAKI,gBAAA;E/B44HH;A+B34HG;;EAEE,gBAAA;EACA,+BAAA;E/B64HL;A+Bt5HD;EAcI,gBAAA;E/B24HH;A+Bz5HD;EAmBM,gBAAA;E/By4HL;A+Bv4HK;;EAEE,gBAAA;EACA,+BAAA;E/By4HP;A+Br4HK;;;EAGE,gBAAA;EACA,2BAAA;E/Bu4HP;A+Bn4HK;;;EAGE,gBAAA;EACA,+BAAA;E/Bq4HP;A+B76HD;EA8CI,uBAAA;E/Bk4HH;A+Bj4HG;;EAEE,2BAAA;E/Bm4HL;A+Bp7HD;EAoDM,2BAAA;E/Bm4HL;A+Bv7HD;;EA0DI,uBAAA;E/Bi4HH;A+B13HK;;;EAGE,2BAAA;EACA,gBAAA;E/B43HP;A+B31HC;EAAA;IAzBQ,gBAAA;I/Bw3HP;E+Bv3HO;;IAEE,gBAAA;IACA,+BAAA;I/By3HT;E+Br3HO;;;IAGE,gBAAA;IACA,2BAAA;I/Bu3HT;E+Bn3HO;;;IAGE,gBAAA;IACA,+BAAA;I/Bq3HT;EACF;A+Bv9HD;EA8GI,gBAAA;E/B42HH;A+B32HG;EACE,gBAAA;E/B62HL;A+B79HD;EAqHI,gBAAA;E/B22HH;A+B12HG;;EAEE,gBAAA;E/B42HL;A+Bx2HK;;;;EAEE,gBAAA;E/B42HP;A+Bp2HD;EACE,2BAAA;EACA,uBAAA;E/Bs2HD;A+Bx2HD;EAKI,gBAAA;E/Bs2HH;A+Br2HG;;EAEE,gBAAA;EACA,+BAAA;E/Bu2HL;A+Bh3HD;EAcI,gBAAA;E/Bq2HH;A+Bn3HD;EAmBM,gBAAA;E/Bm2HL;A+Bj2HK;;EAEE,gBAAA;EACA,+BAAA;E/Bm2HP;A+B/1HK;;;EAGE,gBAAA;EACA,2BAAA;E/Bi2HP;A+B71HK;;;EAGE,gBAAA;EACA,+BAAA;E/B+1HP;A+Bv4HD;EA+CI,uBAAA;E/B21HH;A+B11HG;;EAEE,2BAAA;E/B41HL;A+B94HD;EAqDM,2BAAA;E/B41HL;A+Bj5HD;;EA2DI,uBAAA;E/B01HH;A+Bp1HK;;;EAGE,2BAAA;EACA,gBAAA;E/Bs1HP;A+B/yHC;EAAA;IA/BQ,uBAAA;I/Bk1HP;E+BnzHD;IA5BQ,2BAAA;I/Bk1HP;E+BtzHD;IAzBQ,gBAAA;I/Bk1HP;E+Bj1HO;;IAEE,gBAAA;IACA,+BAAA;I/Bm1HT;E+B/0HO;;;IAGE,gBAAA;IACA,2BAAA;I/Bi1HT;E+B70HO;;;IAGE,gBAAA;IACA,+BAAA;I/B+0HT;EACF;A+Bv7HD;EA+GI,gBAAA;E/B20HH;A+B10HG;EACE,gBAAA;E/B40HL;A+B77HD;EAsHI,gBAAA;E/B00HH;A+Bz0HG;;EAEE,gBAAA;E/B20HL;A+Bv0HK;;;;EAEE,gBAAA;E/B20HP;AkCr9ID;EACE,mBAAA;EACA,qBAAA;EACA,kBAAA;EACA,2BAAA;EACA,oBAAA;ElCu9ID;AkC59ID;EAQI,uBAAA;ElCu9IH;AkC/9ID;EAWM,mBAAA;EACA,gBAAA;EACA,gBAAA;ElCu9IL;AkCp+ID;EAkBI,gBAAA;ElCq9IH;AmCz+ID;EACE,uBAAA;EACA,iBAAA;EACA,gBAAA;EACA,oBAAA;EnC2+ID;AmC/+ID;EAOI,iBAAA;EnC2+IH;AmCl/ID;;EAUM,oBAAA;EACA,aAAA;EACA,mBAAA;EACA,yBAAA;EACA,uBAAA;EACA,gBAAA;EACA,2BAAA;EACA,2BAAA;EACA,mBAAA;EnC4+IL;AmC1+IG;;EAGI,gBAAA;EPXN,gCAAA;EACG,6BAAA;E5Bu/IJ;AmCz+IG;;EPvBF,iCAAA;EACG,8BAAA;E5BogJJ;AmCp+IG;;;;EAEE,gBAAA;EACA,2BAAA;EACA,uBAAA;EnCw+IL;AmCl+IG;;;;;;EAGE,YAAA;EACA,gBAAA;EACA,2BAAA;EACA,uBAAA;EACA,iBAAA;EnCu+IL;AmC7hJD;;;;;;EAiEM,gBAAA;EACA,2BAAA;EACA,uBAAA;EACA,qBAAA;EnCo+IL;AmC39ID;;EC1EM,oBAAA;EACA,iBAAA;EpCyiJL;AoCviJG;;ERMF,gCAAA;EACG,6BAAA;E5BqiJJ;AoCtiJG;;ERRF,iCAAA;EACG,8BAAA;E5BkjJJ;AmCr+ID;;EC/EM,mBAAA;EACA,iBAAA;EpCwjJL;AoCtjJG;;ERMF,gCAAA;EACG,6BAAA;E5BojJJ;AoCrjJG;;ERRF,iCAAA;EACG,8BAAA;E5BikJJ;AqCpkJD;EACE,iBAAA;EACA,gBAAA;EACA,kBAAA;EACA,oBAAA;ErCskJD;AqC1kJD;EAOI,iBAAA;ErCskJH;AqC7kJD;;EAUM,uBAAA;EACA,mBAAA;EACA,2BAAA;EACA,2BAAA;EACA,qBAAA;ErCukJL;AqCrlJD;;EAmBM,uBAAA;EACA,2BAAA;ErCskJL;AqC1lJD;;EA2BM,cAAA;ErCmkJL;AqC9lJD;;EAkCM,aAAA;ErCgkJL;AqClmJD;;;;EA2CM,gBAAA;EACA,2BAAA;EACA,qBAAA;ErC6jJL;AsC3mJD;EACE,iBAAA;EACA,yBAAA;EACA,gBAAA;EACA,mBAAA;EACA,gBAAA;EACA,gBAAA;EACA,oBAAA;EACA,qBAAA;EACA,0BAAA;EACA,sBAAA;EtC6mJD;AsCzmJG;;EAEE,gBAAA;EACA,uBAAA;EACA,iBAAA;EtC2mJL;AsCtmJC;EACE,eAAA;EtCwmJH;AsCpmJC;EACE,oBAAA;EACA,WAAA;EtCsmJH;AsC/lJD;ECtCE,2BAAA;EvCwoJD;AuCroJG;;EAEE,2BAAA;EvCuoJL;AsClmJD;EC1CE,2BAAA;EvC+oJD;AuC5oJG;;EAEE,2BAAA;EvC8oJL;AsCrmJD;EC9CE,2BAAA;EvCspJD;AuCnpJG;;EAEE,2BAAA;EvCqpJL;AsCxmJD;EClDE,2BAAA;EvC6pJD;AuC1pJG;;EAEE,2BAAA;EvC4pJL;AsC3mJD;ECtDE,2BAAA;EvCoqJD;AuCjqJG;;EAEE,2BAAA;EvCmqJL;AsC9mJD;EC1DE,2BAAA;EvC2qJD;AuCxqJG;;EAEE,2BAAA;EvC0qJL;AwC5qJD;EACE,uBAAA;EACA,iBAAA;EACA,kBAAA;EACA,iBAAA;EACA,mBAAA;EACA,gBAAA;EACA,gBAAA;EACA,0BAAA;EACA,qBAAA;EACA,oBAAA;EACA,2BAAA;EACA,qBAAA;ExC8qJD;AwC3qJC;EACE,eAAA;ExC6qJH;AwCzqJC;EACE,oBAAA;EACA,WAAA;ExC2qJH;AwCxqJC;;EAEE,QAAA;EACA,kBAAA;ExC0qJH;AwCrqJG;;EAEE,gBAAA;EACA,uBAAA;EACA,iBAAA;ExCuqJL;AwClqJC;;EAEE,gBAAA;EACA,2BAAA;ExCoqJH;AwCjqJC;EACE,cAAA;ExCmqJH;AwChqJC;EACE,mBAAA;ExCkqJH;AwC/pJC;EACE,kBAAA;ExCiqJH;AyC3tJD;EACE,oBAAA;EACA,qBAAA;EACA,gBAAA;EACA,2BAAA;EzC6tJD;AyCjuJD;;EAQI,gBAAA;EzC6tJH;AyCruJD;EAYI,qBAAA;EACA,iBAAA;EACA,kBAAA;EzC4tJH;AyC1uJD;EAkBI,2BAAA;EzC2tJH;AyCxtJC;;EAEE,oBAAA;EzC0tJH;AyCjvJD;EA2BI,iBAAA;EzCytJH;AyCxsJD;EAAA;IAbI,iBAAA;IzCytJD;EyCvtJC;;IAEE,oBAAA;IACA,qBAAA;IzCytJH;EyCjtJH;;IAHM,iBAAA;IzCwtJH;EACF;A0CjwJD;EACE,gBAAA;EACA,cAAA;EACA,qBAAA;EACA,yBAAA;EACA,2BAAA;EACA,2BAAA;EACA,oBAAA;ErCiLA,6CAAA;EACK,wCAAA;EACG,qCAAA;ELmlJT;A0C7wJD;;EAaI,mBAAA;EACA,oBAAA;E1CowJH;A0ChwJC;;;EAGE,uBAAA;E1CkwJH;A0CvxJD;EA0BI,cAAA;EACA,gBAAA;E1CgwJH;A2CzxJD;EACE,eAAA;EACA,qBAAA;EACA,+BAAA;EACA,oBAAA;E3C2xJD;A2C/xJD;EAQI,eAAA;EAEA,gBAAA;E3CyxJH;A2CnyJD;EAeI,mBAAA;E3CuxJH;A2CtyJD;;EAqBI,kBAAA;E3CqxJH;A2C1yJD;EAyBI,iBAAA;E3CoxJH;A2C5wJD;;EAEE,qBAAA;E3C8wJD;A2ChxJD;;EAMI,oBAAA;EACA,WAAA;EACA,cAAA;EACA,gBAAA;E3C8wJH;A2CtwJD;ECvDE,2BAAA;EACA,uBAAA;EACA,gBAAA;E5Cg0JD;A2C3wJD;EClDI,2BAAA;E5Cg0JH;A2C9wJD;EC/CI,gBAAA;E5Cg0JH;A2C7wJD;EC3DE,2BAAA;EACA,uBAAA;EACA,gBAAA;E5C20JD;A2ClxJD;ECtDI,2BAAA;E5C20JH;A2CrxJD;ECnDI,gBAAA;E5C20JH;A2CpxJD;EC/DE,2BAAA;EACA,uBAAA;EACA,gBAAA;E5Cs1JD;A2CzxJD;EC1DI,2BAAA;E5Cs1JH;A2C5xJD;ECvDI,gBAAA;E5Cs1JH;A2C3xJD;ECnEE,2BAAA;EACA,uBAAA;EACA,gBAAA;E5Ci2JD;A2ChyJD;EC9DI,2BAAA;E5Ci2JH;A2CnyJD;EC3DI,gBAAA;E5Ci2JH;A6Cn2JD;EACE;IAAQ,6BAAA;I7Cs2JP;E6Cr2JD;IAAQ,0BAAA;I7Cw2JP;EACF;A6Cr2JD;EACE;IAAQ,6BAAA;I7Cw2JP;E6Cv2JD;IAAQ,0BAAA;I7C02JP;EACF;A6C72JD;EACE;IAAQ,6BAAA;I7Cw2JP;E6Cv2JD;IAAQ,0BAAA;I7C02JP;EACF;A6Cn2JD;EACE,kBAAA;EACA,cAAA;EACA,qBAAA;EACA,2BAAA;EACA,oBAAA;ExCsCA,wDAAA;EACQ,gDAAA;ELg0JT;A6Cl2JD;EACE,aAAA;EACA,WAAA;EACA,cAAA;EACA,iBAAA;EACA,mBAAA;EACA,gBAAA;EACA,oBAAA;EACA,2BAAA;ExCyBA,wDAAA;EACQ,gDAAA;EAyHR,qCAAA;EACK,gCAAA;EACG,6BAAA;ELotJT;A6C/1JD;;ECCI,+MAAA;EACA,0MAAA;EACA,uMAAA;EDAF,oCAAA;UAAA,4BAAA;E7Cm2JD;A6C51JD;;ExC5CE,4DAAA;EACK,uDAAA;EACG,oDAAA;EL44JT;A6Cz1JD;EErEE,2BAAA;E/Ci6JD;A+C95JC;EDgDE,+MAAA;EACA,0MAAA;EACA,uMAAA;E9Ci3JH;A6C71JD;EEzEE,2BAAA;E/Cy6JD;A+Ct6JC;EDgDE,+MAAA;EACA,0MAAA;EACA,uMAAA;E9Cy3JH;A6Cj2JD;EE7EE,2BAAA;E/Ci7JD;A+C96JC;EDgDE,+MAAA;EACA,0MAAA;EACA,uMAAA;E9Ci4JH;A6Cr2JD;EEjFE,2BAAA;E/Cy7JD;A+Ct7JC;EDgDE,+MAAA;EACA,0MAAA;EACA,uMAAA;E9Cy4JH;AgDj8JD;EAEE,kBAAA;EhDk8JD;AgDh8JC;EACE,eAAA;EhDk8JH;AgD97JD;;EAEE,SAAA;EACA,kBAAA;EhDg8JD;AgD77JD;EACE,gBAAA;EhD+7JD;AgD57JD;EACE,gBAAA;EhD87JD;AgD37JD;;EAEE,oBAAA;EhD67JD;AgD17JD;;EAEE,qBAAA;EhD47JD;AgDz7JD;;;EAGE,qBAAA;EACA,qBAAA;EhD27JD;AgDx7JD;EACE,wBAAA;EhD07JD;AgDv7JD;EACE,wBAAA;EhDy7JD;AgDr7JD;EACE,eAAA;EACA,oBAAA;EhDu7JD;AgDj7JD;EACE,iBAAA;EACA,kBAAA;EhDm7JD;AiDr+JD;EAEE,qBAAA;EACA,iBAAA;EjDs+JD;AiD99JD;EACE,oBAAA;EACA,gBAAA;EACA,oBAAA;EAEA,qBAAA;EACA,2BAAA;EACA,2BAAA;EjD+9JD;AiD59JC;ErB3BA,8BAAA;EACC,6BAAA;E5B0/JF;AiD79JC;EACE,kBAAA;ErBvBF,iCAAA;EACC,gCAAA;E5Bu/JF;AiDt9JD;EACE,gBAAA;EjDw9JD;AiDz9JD;EAII,gBAAA;EjDw9JH;AiDp9JC;;EAEE,uBAAA;EACA,gBAAA;EACA,2BAAA;EjDs9JH;AiDh9JC;;;EAGE,2BAAA;EACA,gBAAA;EACA,qBAAA;EjDk9JH;AiDv9JC;;;EASI,gBAAA;EjDm9JL;AiD59JC;;;EAYI,gBAAA;EjDq9JL;AiDh9JC;;;EAGE,YAAA;EACA,gBAAA;EACA,2BAAA;EACA,uBAAA;EjDk9JH;AiDx9JC;;;;;;;;;EAYI,gBAAA;EjDu9JL;AiDn+JC;;;EAeI,gBAAA;EjDy9JL;AkDrjKC;EACE,gBAAA;EACA,2BAAA;ElDujKH;AkDrjKG;EACE,gBAAA;ElDujKL;AkDxjKG;EAII,gBAAA;ElDujKP;AkDpjKK;;EAEE,gBAAA;EACA,2BAAA;ElDsjKP;AkDpjKK;;;EAGE,aAAA;EACA,2BAAA;EACA,uBAAA;ElDsjKP;AkD3kKC;EACE,gBAAA;EACA,2BAAA;ElD6kKH;AkD3kKG;EACE,gBAAA;ElD6kKL;AkD9kKG;EAII,gBAAA;ElD6kKP;AkD1kKK;;EAEE,gBAAA;EACA,2BAAA;ElD4kKP;AkD1kKK;;;EAGE,aAAA;EACA,2BAAA;EACA,uBAAA;ElD4kKP;AkDjmKC;EACE,gBAAA;EACA,2BAAA;ElDmmKH;AkDjmKG;EACE,gBAAA;ElDmmKL;AkDpmKG;EAII,gBAAA;ElDmmKP;AkDhmKK;;EAEE,gBAAA;EACA,2BAAA;ElDkmKP;AkDhmKK;;;EAGE,aAAA;EACA,2BAAA;EACA,uBAAA;ElDkmKP;AkDvnKC;EACE,gBAAA;EACA,2BAAA;ElDynKH;AkDvnKG;EACE,gBAAA;ElDynKL;AkD1nKG;EAII,gBAAA;ElDynKP;AkDtnKK;;EAEE,gBAAA;EACA,2BAAA;ElDwnKP;AkDtnKK;;;EAGE,aAAA;EACA,2BAAA;EACA,uBAAA;ElDwnKP;AiD5hKD;EACE,eAAA;EACA,oBAAA;EjD8hKD;AiD5hKD;EACE,kBAAA;EACA,kBAAA;EjD8hKD;AmDlpKD;EACE,qBAAA;EACA,2BAAA;EACA,+BAAA;EACA,oBAAA;E9C0DA,mDAAA;EACQ,2CAAA;EL2lKT;AmDjpKD;EACE,eAAA;EnDmpKD;AmD9oKD;EACE,oBAAA;EACA,sCAAA;EvBpBA,8BAAA;EACC,6BAAA;E5BqqKF;AmDppKD;EAMI,gBAAA;EnDipKH;AmD5oKD;EACE,eAAA;EACA,kBAAA;EACA,iBAAA;EACA,gBAAA;EnD8oKD;AmDlpKD;;;;;EAWI,gBAAA;EnD8oKH;AmDzoKD;EACE,oBAAA;EACA,2BAAA;EACA,+BAAA;EvBxCA,iCAAA;EACC,gCAAA;E5BorKF;AmDnoKD;;EAGI,kBAAA;EnDooKH;AmDvoKD;;EAMM,qBAAA;EACA,kBAAA;EnDqoKL;AmDjoKG;;EAEI,eAAA;EvBvEN,8BAAA;EACC,6BAAA;E5B2sKF;AmDhoKG;;EAEI,kBAAA;EvBtEN,iCAAA;EACC,gCAAA;E5BysKF;AmD7nKD;EAEI,qBAAA;EnD8nKH;AmD3nKD;EACE,qBAAA;EnD6nKD;AmDrnKD;;;EAII,kBAAA;EnDsnKH;AmD1nKD;;;EAOM,oBAAA;EACA,qBAAA;EnDwnKL;AmDhoKD;;EvBnGE,8BAAA;EACC,6BAAA;E5BuuKF;AmDroKD;;;;EAmBQ,6BAAA;EACA,8BAAA;EnDwnKP;AmD5oKD;;;;;;;;EAwBU,6BAAA;EnD8nKT;AmDtpKD;;;;;;;;EA4BU,8BAAA;EnDooKT;AmDhqKD;;EvB3FE,iCAAA;EACC,gCAAA;E5B+vKF;AmDrqKD;;;;EAyCQ,gCAAA;EACA,iCAAA;EnDkoKP;AmD5qKD;;;;;;;;EA8CU,gCAAA;EnDwoKT;AmDtrKD;;;;;;;;EAkDU,iCAAA;EnD8oKT;AmDhsKD;;;;EA2DI,+BAAA;EnD2oKH;AmDtsKD;;EA+DI,eAAA;EnD2oKH;AmD1sKD;;EAmEI,WAAA;EnD2oKH;AmD9sKD;;;;;;;;;;;;EA0EU,gBAAA;EnDkpKT;AmD5tKD;;;;;;;;;;;;EA8EU,iBAAA;EnD4pKT;AmD1uKD;;;;;;;;EAuFU,kBAAA;EnD6pKT;AmDpvKD;;;;;;;;EAgGU,kBAAA;EnD8pKT;AmD9vKD;EAsGI,WAAA;EACA,kBAAA;EnD2pKH;AmDjpKD;EACE,qBAAA;EnDmpKD;AmDppKD;EAKI,kBAAA;EACA,oBAAA;EnDkpKH;AmDxpKD;EASM,iBAAA;EnDkpKL;AmD3pKD;EAcI,kBAAA;EnDgpKH;AmD9pKD;;EAkBM,+BAAA;EnDgpKL;AmDlqKD;EAuBI,eAAA;EnD8oKH;AmDrqKD;EAyBM,kCAAA;EnD+oKL;AmDxoKD;ECpPE,uBAAA;EpD+3KD;AoD73KC;EACE,gBAAA;EACA,2BAAA;EACA,uBAAA;EpD+3KH;AoDl4KC;EAMI,2BAAA;EpD+3KL;AoDr4KC;EASI,gBAAA;EACA,2BAAA;EpD+3KL;AoD53KC;EAEI,8BAAA;EpD63KL;AmDvpKD;ECvPE,uBAAA;EpDi5KD;AoD/4KC;EACE,gBAAA;EACA,2BAAA;EACA,uBAAA;EpDi5KH;AoDp5KC;EAMI,2BAAA;EpDi5KL;AoDv5KC;EASI,gBAAA;EACA,2BAAA;EpDi5KL;AoD94KC;EAEI,8BAAA;EpD+4KL;AmDtqKD;EC1PE,uBAAA;EpDm6KD;AoDj6KC;EACE,gBAAA;EACA,2BAAA;EACA,uBAAA;EpDm6KH;AoDt6KC;EAMI,2BAAA;EpDm6KL;AoDz6KC;EASI,gBAAA;EACA,2BAAA;EpDm6KL;AoDh6KC;EAEI,8BAAA;EpDi6KL;AmDrrKD;EC7PE,uBAAA;EpDq7KD;AoDn7KC;EACE,gBAAA;EACA,2BAAA;EACA,uBAAA;EpDq7KH;AoDx7KC;EAMI,2BAAA;EpDq7KL;AoD37KC;EASI,gBAAA;EACA,2BAAA;EpDq7KL;AoDl7KC;EAEI,8BAAA;EpDm7KL;AmDpsKD;EChQE,uBAAA;EpDu8KD;AoDr8KC;EACE,gBAAA;EACA,2BAAA;EACA,uBAAA;EpDu8KH;AoD18KC;EAMI,2BAAA;EpDu8KL;AoD78KC;EASI,gBAAA;EACA,2BAAA;EpDu8KL;AoDp8KC;EAEI,8BAAA;EpDq8KL;AmDntKD;ECnQE,uBAAA;EpDy9KD;AoDv9KC;EACE,gBAAA;EACA,2BAAA;EACA,uBAAA;EpDy9KH;AoD59KC;EAMI,2BAAA;EpDy9KL;AoD/9KC;EASI,gBAAA;EACA,2BAAA;EpDy9KL;AoDt9KC;EAEI,8BAAA;EpDu9KL;AqDv+KD;EACE,oBAAA;EACA,gBAAA;EACA,WAAA;EACA,YAAA;EACA,kBAAA;ErDy+KD;AqD9+KD;;;;;EAYI,oBAAA;EACA,QAAA;EACA,SAAA;EACA,WAAA;EACA,cAAA;EACA,aAAA;EACA,WAAA;ErDy+KH;AqDp+KD;EACE,wBAAA;ErDs+KD;AqDl+KD;EACE,qBAAA;ErDo+KD;AsD//KD;EACE,kBAAA;EACA,eAAA;EACA,qBAAA;EACA,2BAAA;EACA,2BAAA;EACA,oBAAA;EjDwDA,yDAAA;EACQ,iDAAA;EL08KT;AsDzgLD;EASI,oBAAA;EACA,mCAAA;EtDmgLH;AsD9/KD;EACE,eAAA;EACA,oBAAA;EtDggLD;AsD9/KD;EACE,cAAA;EACA,oBAAA;EtDggLD;AuDthLD;EACE,cAAA;EACA,iBAAA;EACA,mBAAA;EACA,gBAAA;EACA,gBAAA;EACA,8BAAA;EjCRA,cAAA;EAGA,2BAAA;EtB+hLD;AuDvhLC;;EAEE,gBAAA;EACA,uBAAA;EACA,iBAAA;EjCfF,cAAA;EAGA,2BAAA;EtBuiLD;AuDnhLC;EACE,YAAA;EACA,iBAAA;EACA,yBAAA;EACA,WAAA;EACA,0BAAA;EvDqhLH;AwD1iLD;EACE,kBAAA;ExD4iLD;AwDxiLD;EACE,eAAA;EACA,kBAAA;EACA,iBAAA;EACA,QAAA;EACA,UAAA;EACA,WAAA;EACA,SAAA;EACA,eAAA;EACA,mCAAA;EAIA,YAAA;ExDuiLD;AwDpiLC;EnD+GA,uCAAA;EACI,mCAAA;EACC,kCAAA;EACG,+BAAA;EAkER,qDAAA;EAEK,2CAAA;EACG,qCAAA;ELu3KT;AwD1iLC;EnD2GA,oCAAA;EACI,gCAAA;EACC,+BAAA;EACG,4BAAA;ELk8KT;AwD9iLD;EACE,oBAAA;EACA,kBAAA;ExDgjLD;AwD5iLD;EACE,oBAAA;EACA,aAAA;EACA,cAAA;ExD8iLD;AwD1iLD;EACE,oBAAA;EACA,2BAAA;EACA,2BAAA;EACA,sCAAA;EACA,oBAAA;EnDaA,kDAAA;EACQ,0CAAA;EmDZR,sCAAA;UAAA,8BAAA;EAEA,YAAA;ExD4iLD;AwDxiLD;EACE,iBAAA;EACA,QAAA;EACA,UAAA;EACA,WAAA;EACA,SAAA;EACA,eAAA;EACA,2BAAA;ExD0iLD;AwDxiLC;ElCrEA,YAAA;EAGA,0BAAA;EtB8mLD;AwD3iLC;ElCtEA,cAAA;EAGA,2BAAA;EtBknLD;AwD1iLD;EACE,eAAA;EACA,kCAAA;EACA,2BAAA;ExD4iLD;AwDziLD;EACE,kBAAA;ExD2iLD;AwDviLD;EACE,WAAA;EACA,yBAAA;ExDyiLD;AwDpiLD;EACE,oBAAA;EACA,eAAA;ExDsiLD;AwDliLD;EACE,eAAA;EACA,mBAAA;EACA,+BAAA;ExDoiLD;AwDviLD;EAQI,kBAAA;EACA,kBAAA;ExDkiLH;AwD3iLD;EAaI,mBAAA;ExDiiLH;AwD9iLD;EAiBI,gBAAA;ExDgiLH;AwD3hLD;EACE,oBAAA;EACA,cAAA;EACA,aAAA;EACA,cAAA;EACA,kBAAA;ExD6hLD;AwD3gLD;EAZE;IACE,cAAA;IACA,mBAAA;IxD0hLD;EwDxhLD;InDvEA,mDAAA;IACQ,2CAAA;ILkmLP;EwDvhLD;IAAY,cAAA;IxD0hLX;EACF;AwDrhLD;EAFE;IAAY,cAAA;IxD2hLX;EACF;AyD1qLD;EACE,oBAAA;EACA,eAAA;EACA,gBAAA;EAEA,6DAAA;EACA,iBAAA;EACA,qBAAA;EACA,kBAAA;EnCXA,YAAA;EAGA,0BAAA;EtBqrLD;AyD1qLC;EnCdA,cAAA;EAGA,2BAAA;EtByrLD;AyD7qLC;EAAW,kBAAA;EAAmB,gBAAA;EzDirL/B;AyDhrLC;EAAW,kBAAA;EAAmB,gBAAA;EzDorL/B;AyDnrLC;EAAW,iBAAA;EAAmB,gBAAA;EzDurL/B;AyDtrLC;EAAW,mBAAA;EAAmB,gBAAA;EzD0rL/B;AyDtrLD;EACE,kBAAA;EACA,kBAAA;EACA,gBAAA;EACA,oBAAA;EACA,uBAAA;EACA,2BAAA;EACA,oBAAA;EzDwrLD;AyDprLD;EACE,oBAAA;EACA,UAAA;EACA,WAAA;EACA,2BAAA;EACA,qBAAA;EzDsrLD;AyDlrLC;EACE,WAAA;EACA,WAAA;EACA,mBAAA;EACA,yBAAA;EACA,2BAAA;EzDorLH;AyDlrLC;EACE,WAAA;EACA,YAAA;EACA,qBAAA;EACA,yBAAA;EACA,2BAAA;EzDorLH;AyDlrLC;EACE,WAAA;EACA,WAAA;EACA,qBAAA;EACA,yBAAA;EACA,2BAAA;EzDorLH;AyDlrLC;EACE,UAAA;EACA,SAAA;EACA,kBAAA;EACA,6BAAA;EACA,6BAAA;EzDorLH;AyDlrLC;EACE,UAAA;EACA,UAAA;EACA,kBAAA;EACA,6BAAA;EACA,4BAAA;EzDorLH;AyDlrLC;EACE,QAAA;EACA,WAAA;EACA,mBAAA;EACA,yBAAA;EACA,8BAAA;EzDorLH;AyDlrLC;EACE,QAAA;EACA,YAAA;EACA,kBAAA;EACA,yBAAA;EACA,8BAAA;EzDorLH;AyDlrLC;EACE,QAAA;EACA,WAAA;EACA,kBAAA;EACA,yBAAA;EACA,8BAAA;EzDorLH;A0DlxLD;EACE,oBAAA;EACA,QAAA;EACA,SAAA;EACA,eAAA;EACA,eAAA;EACA,kBAAA;EACA,cAAA;EAEA,6DAAA;EACA,iBAAA;EACA,qBAAA;EACA,yBAAA;EACA,kBAAA;EACA,2BAAA;EACA,sCAAA;UAAA,8BAAA;EACA,2BAAA;EACA,sCAAA;EACA,oBAAA;ErD6CA,mDAAA;EACQ,2CAAA;EqD1CR,qBAAA;E1DkxLD;A0D/wLC;EAAY,mBAAA;E1DkxLb;A0DjxLC;EAAY,mBAAA;E1DoxLb;A0DnxLC;EAAY,kBAAA;E1DsxLb;A0DrxLC;EAAY,oBAAA;E1DwxLb;A0DrxLD;EACE,WAAA;EACA,mBAAA;EACA,iBAAA;EACA,2BAAA;EACA,kCAAA;EACA,4BAAA;E1DuxLD;A0DpxLD;EACE,mBAAA;E1DsxLD;A0D9wLC;;EAEE,oBAAA;EACA,gBAAA;EACA,UAAA;EACA,WAAA;EACA,2BAAA;EACA,qBAAA;E1DgxLH;A0D7wLD;EACE,oBAAA;E1D+wLD;A0D7wLD;EACE,oBAAA;EACA,aAAA;E1D+wLD;A0D3wLC;EACE,WAAA;EACA,oBAAA;EACA,wBAAA;EACA,2BAAA;EACA,uCAAA;EACA,eAAA;E1D6wLH;A0D5wLG;EACE,cAAA;EACA,aAAA;EACA,oBAAA;EACA,wBAAA;EACA,2BAAA;E1D8wLL;A0D3wLC;EACE,UAAA;EACA,aAAA;EACA,mBAAA;EACA,sBAAA;EACA,6BAAA;EACA,yCAAA;E1D6wLH;A0D5wLG;EACE,cAAA;EACA,WAAA;EACA,eAAA;EACA,sBAAA;EACA,6BAAA;E1D8wLL;A0D3wLC;EACE,WAAA;EACA,oBAAA;EACA,qBAAA;EACA,8BAAA;EACA,0CAAA;EACA,YAAA;E1D6wLH;A0D5wLG;EACE,cAAA;EACA,UAAA;EACA,oBAAA;EACA,qBAAA;EACA,8BAAA;E1D8wLL;A0D1wLC;EACE,UAAA;EACA,cAAA;EACA,mBAAA;EACA,uBAAA;EACA,4BAAA;EACA,wCAAA;E1D4wLH;A0D3wLG;EACE,cAAA;EACA,YAAA;EACA,uBAAA;EACA,4BAAA;EACA,eAAA;E1D6wLL;A2D14LD;EACE,oBAAA;E3D44LD;A2Dz4LD;EACE,oBAAA;EACA,kBAAA;EACA,aAAA;E3D24LD;A2D94LD;EAMI,eAAA;EACA,oBAAA;EtD6KF,2CAAA;EACK,sCAAA;EACG,mCAAA;EL+tLT;A2Dr5LD;;EAcM,gBAAA;E3D24LL;A2Dj3LC;EAAA;ItDiKA,wDAAA;IAEK,8CAAA;IACG,wCAAA;IA7JR,qCAAA;IAEQ,6BAAA;IA+GR,2BAAA;IAEQ,mBAAA;ILowLP;E2D/4LG;;ItDmHJ,4CAAA;IACQ,oCAAA;IsDjHF,SAAA;I3Dk5LL;E2Dh5LG;;ItD8GJ,6CAAA;IACQ,qCAAA;IsD5GF,SAAA;I3Dm5LL;E2Dj5LG;;;ItDyGJ,yCAAA;IACQ,iCAAA;IsDtGF,SAAA;I3Do5LL;EACF;A2D17LD;;;EA6CI,gBAAA;E3Dk5LH;A2D/7LD;EAiDI,SAAA;E3Di5LH;A2Dl8LD;;EAsDI,oBAAA;EACA,QAAA;EACA,aAAA;E3Dg5LH;A2Dx8LD;EA4DI,YAAA;E3D+4LH;A2D38LD;EA+DI,aAAA;E3D+4LH;A2D98LD;;EAmEI,SAAA;E3D+4LH;A2Dl9LD;EAuEI,aAAA;E3D84LH;A2Dr9LD;EA0EI,YAAA;E3D84LH;A2Dt4LD;EACE,oBAAA;EACA,QAAA;EACA,SAAA;EACA,WAAA;EACA,YAAA;ErC9FA,cAAA;EAGA,2BAAA;EqC6FA,iBAAA;EACA,gBAAA;EACA,oBAAA;EACA,2CAAA;E3Dy4LD;A2Dp4LC;EblGE,oGAAA;EACA,+FAAA;EACA,sHAAA;EAAA,gGAAA;EACA,6BAAA;EACA,wHAAA;E9Cy+LH;A2Dx4LC;EACE,YAAA;EACA,UAAA;EbvGA,oGAAA;EACA,+FAAA;EACA,sHAAA;EAAA,gGAAA;EACA,6BAAA;EACA,wHAAA;E9Ck/LH;A2D14LC;;EAEE,YAAA;EACA,gBAAA;EACA,uBAAA;ErCtHF,cAAA;EAGA,2BAAA;EtBigMD;A2D36LD;;;;EAsCI,oBAAA;EACA,UAAA;EACA,YAAA;EACA,uBAAA;E3D24LH;A2Dp7LD;;EA6CI,WAAA;EACA,oBAAA;E3D24LH;A2Dz7LD;;EAkDI,YAAA;EACA,qBAAA;E3D24LH;A2D97LD;;EAuDI,aAAA;EACA,cAAA;EACA,mBAAA;EACA,gBAAA;EACA,oBAAA;E3D24LH;A2Dt4LG;EACE,kBAAA;E3Dw4LL;A2Dp4LG;EACE,kBAAA;E3Ds4LL;A2D53LD;EACE,oBAAA;EACA,cAAA;EACA,WAAA;EACA,aAAA;EACA,YAAA;EACA,mBAAA;EACA,iBAAA;EACA,kBAAA;EACA,oBAAA;E3D83LD;A2Dv4LD;EAYI,uBAAA;EACA,aAAA;EACA,cAAA;EACA,aAAA;EACA,qBAAA;EACA,2BAAA;EACA,qBAAA;EACA,iBAAA;EAWA,2BAAA;EACA,oCAAA;E3Do3LH;A2Dn5LD;EAkCI,WAAA;EACA,aAAA;EACA,cAAA;EACA,2BAAA;E3Do3LH;A2D72LD;EACE,oBAAA;EACA,WAAA;EACA,YAAA;EACA,cAAA;EACA,aAAA;EACA,mBAAA;EACA,sBAAA;EACA,gBAAA;EACA,oBAAA;EACA,2CAAA;E3D+2LD;A2D92LC;EACE,mBAAA;E3Dg3LH;A2Dv0LD;EAhCE;;;;IAKI,aAAA;IACA,cAAA;IACA,mBAAA;IACA,iBAAA;I3Dy2LH;E2Dj3LD;;IAYI,oBAAA;I3Dy2LH;E2Dr3LD;;IAgBI,qBAAA;I3Dy2LH;E2Dp2LD;IACE,WAAA;IACA,YAAA;IACA,sBAAA;I3Ds2LD;E2Dl2LD;IACE,cAAA;I3Do2LD;EACF;A4DlmMC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEE,cAAA;EACA,gBAAA;E5DgoMH;A4D9nMC;;;;;;;;;;;;;;;EACE,aAAA;E5D8oMH;AiCtpMD;E4BRE,gBAAA;EACA,mBAAA;EACA,oBAAA;E7DiqMD;AiCxpMD;EACE,yBAAA;EjC0pMD;AiCxpMD;EACE,wBAAA;EjC0pMD;AiClpMD;EACE,0BAAA;EjCopMD;AiClpMD;EACE,2BAAA;EjCopMD;AiClpMD;EACE,oBAAA;EjCopMD;AiClpMD;E6BzBE,aAAA;EACA,oBAAA;EACA,mBAAA;EACA,+BAAA;EACA,WAAA;E9D8qMD;AiChpMD;EACE,0BAAA;EjCkpMD;AiC3oMD;EACE,iBAAA;EjC6oMD;A+D9qMD;EACE,qBAAA;E/DgrMD;A+D1qMD;;;;ECdE,0BAAA;EhE8rMD;A+DzqMD;;;;;;;;;;;;EAYE,0BAAA;E/D2qMD;A+DpqMD;EAAA;IChDE,2BAAA;IhEwtMC;EgEvtMD;IAAU,gBAAA;IhE0tMT;EgEztMD;IAAU,+BAAA;IhE4tMT;EgE3tMD;;IACU,gCAAA;IhE8tMT;EACF;A+D9qMD;EAAA;IAFI,2BAAA;I/DorMD;EACF;A+D9qMD;EAAA;IAFI,4BAAA;I/DorMD;EACF;A+D9qMD;EAAA;IAFI,kCAAA;I/DorMD;EACF;A+D7qMD;EAAA;ICrEE,2BAAA;IhEsvMC;EgErvMD;IAAU,gBAAA;IhEwvMT;EgEvvMD;IAAU,+BAAA;IhE0vMT;EgEzvMD;;IACU,gCAAA;IhE4vMT;EACF;A+DvrMD;EAAA;IAFI,2BAAA;I/D6rMD;EACF;A+DvrMD;EAAA;IAFI,4BAAA;I/D6rMD;EACF;A+DvrMD;EAAA;IAFI,kCAAA;I/D6rMD;EACF;A+DtrMD;EAAA;IC1FE,2BAAA;IhEoxMC;EgEnxMD;IAAU,gBAAA;IhEsxMT;EgErxMD;IAAU,+BAAA;IhEwxMT;EgEvxMD;;IACU,gCAAA;IhE0xMT;EACF;A+DhsMD;EAAA;IAFI,2BAAA;I/DssMD;EACF;A+DhsMD;EAAA;IAFI,4BAAA;I/DssMD;EACF;A+DhsMD;EAAA;IAFI,kCAAA;I/DssMD;EACF;A+D/rMD;EAAA;IC/GE,2BAAA;IhEkzMC;EgEjzMD;IAAU,gBAAA;IhEozMT;EgEnzMD;IAAU,+BAAA;IhEszMT;EgErzMD;;IACU,gCAAA;IhEwzMT;EACF;A+DzsMD;EAAA;IAFI,2BAAA;I/D+sMD;EACF;A+DzsMD;EAAA;IAFI,4BAAA;I/D+sMD;EACF;A+DzsMD;EAAA;IAFI,kCAAA;I/D+sMD;EACF;A+DxsMD;EAAA;IC5HE,0BAAA;IhEw0MC;EACF;A+DxsMD;EAAA;ICjIE,0BAAA;IhE60MC;EACF;A+DxsMD;EAAA;ICtIE,0BAAA;IhEk1MC;EACF;A+DxsMD;EAAA;IC3IE,0BAAA;IhEu1MC;EACF;A+DrsMD;ECnJE,0BAAA;EhE21MD;A+DlsMD;EAAA;ICjKE,2BAAA;IhEu2MC;EgEt2MD;IAAU,gBAAA;IhEy2MT;EgEx2MD;IAAU,+BAAA;IhE22MT;EgE12MD;;IACU,gCAAA;IhE62MT;EACF;A+DhtMD;EACE,0BAAA;E/DktMD;A+D7sMD;EAAA;IAFI,2BAAA;I/DmtMD;EACF;A+DjtMD;EACE,0BAAA;E/DmtMD;A+D9sMD;EAAA;IAFI,4BAAA;I/DotMD;EACF;A+DltMD;EACE,0BAAA;E/DotMD;A+D/sMD;EAAA;IAFI,kCAAA;I/DqtMD;EACF;A+D9sMD;EAAA;ICpLE,0BAAA;IhEs4MC;EACF","file":"bootstrap.css","sourcesContent":["/*! normalize.css v3.0.2 | MIT License | git.io/normalize */\nhtml {\n font-family: sans-serif;\n -ms-text-size-adjust: 100%;\n -webkit-text-size-adjust: 100%;\n}\nbody {\n margin: 0;\n}\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n display: block;\n}\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block;\n vertical-align: baseline;\n}\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n[hidden],\ntemplate {\n display: none;\n}\na {\n background-color: transparent;\n}\na:active,\na:hover {\n outline: 0;\n}\nabbr[title] {\n border-bottom: 1px dotted;\n}\nb,\nstrong {\n font-weight: bold;\n}\ndfn {\n font-style: italic;\n}\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\nmark {\n background: #ff0;\n color: #000;\n}\nsmall {\n font-size: 80%;\n}\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\nsup {\n top: -0.5em;\n}\nsub {\n bottom: -0.25em;\n}\nimg {\n border: 0;\n}\nsvg:not(:root) {\n overflow: hidden;\n}\nfigure {\n margin: 1em 40px;\n}\nhr {\n -moz-box-sizing: content-box;\n box-sizing: content-box;\n height: 0;\n}\npre {\n overflow: auto;\n}\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit;\n font: inherit;\n margin: 0;\n}\nbutton {\n overflow: visible;\n}\nbutton,\nselect {\n text-transform: none;\n}\nbutton,\nhtml input[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button;\n cursor: pointer;\n}\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\ninput {\n line-height: normal;\n}\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box;\n padding: 0;\n}\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\ninput[type=\"search\"] {\n -webkit-appearance: textfield;\n -moz-box-sizing: content-box;\n -webkit-box-sizing: content-box;\n box-sizing: content-box;\n}\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\nlegend {\n border: 0;\n padding: 0;\n}\ntextarea {\n overflow: auto;\n}\noptgroup {\n font-weight: bold;\n}\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\ntd,\nth {\n padding: 0;\n}\n/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n@media print {\n *,\n *:before,\n *:after {\n background: transparent !important;\n color: #000 !important;\n box-shadow: none !important;\n text-shadow: none !important;\n }\n a,\n a:visited {\n text-decoration: underline;\n }\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n a[href^=\"#\"]:after,\n a[href^=\"javascript:\"]:after {\n content: \"\";\n }\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n thead {\n display: table-header-group;\n }\n tr,\n img {\n page-break-inside: avoid;\n }\n img {\n max-width: 100% !important;\n }\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n h2,\n h3 {\n page-break-after: avoid;\n }\n select {\n background: #fff !important;\n }\n .navbar {\n display: none;\n }\n .btn > .caret,\n .dropup > .btn > .caret {\n border-top-color: #000 !important;\n }\n .label {\n border: 1px solid #000;\n }\n .table {\n border-collapse: collapse !important;\n }\n .table td,\n .table th {\n background-color: #fff !important;\n }\n .table-bordered th,\n .table-bordered td {\n border: 1px solid #ddd !important;\n }\n}\n@font-face {\n font-family: 'Glyphicons Halflings';\n src: url('../fonts/glyphicons-halflings-regular.eot');\n src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');\n}\n.glyphicon {\n position: relative;\n top: 1px;\n display: inline-block;\n font-family: 'Glyphicons Halflings';\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n.glyphicon-asterisk:before {\n content: \"\\2a\";\n}\n.glyphicon-plus:before {\n content: \"\\2b\";\n}\n.glyphicon-euro:before,\n.glyphicon-eur:before {\n content: \"\\20ac\";\n}\n.glyphicon-minus:before {\n content: \"\\2212\";\n}\n.glyphicon-cloud:before {\n content: \"\\2601\";\n}\n.glyphicon-envelope:before {\n content: \"\\2709\";\n}\n.glyphicon-pencil:before {\n content: \"\\270f\";\n}\n.glyphicon-glass:before {\n content: \"\\e001\";\n}\n.glyphicon-music:before {\n content: \"\\e002\";\n}\n.glyphicon-search:before {\n content: \"\\e003\";\n}\n.glyphicon-heart:before {\n content: \"\\e005\";\n}\n.glyphicon-star:before {\n content: \"\\e006\";\n}\n.glyphicon-star-empty:before {\n content: \"\\e007\";\n}\n.glyphicon-user:before {\n content: \"\\e008\";\n}\n.glyphicon-film:before {\n content: \"\\e009\";\n}\n.glyphicon-th-large:before {\n content: \"\\e010\";\n}\n.glyphicon-th:before {\n content: \"\\e011\";\n}\n.glyphicon-th-list:before {\n content: \"\\e012\";\n}\n.glyphicon-ok:before {\n content: \"\\e013\";\n}\n.glyphicon-remove:before {\n content: \"\\e014\";\n}\n.glyphicon-zoom-in:before {\n content: \"\\e015\";\n}\n.glyphicon-zoom-out:before {\n content: \"\\e016\";\n}\n.glyphicon-off:before {\n content: \"\\e017\";\n}\n.glyphicon-signal:before {\n content: \"\\e018\";\n}\n.glyphicon-cog:before {\n content: \"\\e019\";\n}\n.glyphicon-trash:before {\n content: \"\\e020\";\n}\n.glyphicon-home:before {\n content: \"\\e021\";\n}\n.glyphicon-file:before {\n content: \"\\e022\";\n}\n.glyphicon-time:before {\n content: \"\\e023\";\n}\n.glyphicon-road:before {\n content: \"\\e024\";\n}\n.glyphicon-download-alt:before {\n content: \"\\e025\";\n}\n.glyphicon-download:before {\n content: \"\\e026\";\n}\n.glyphicon-upload:before {\n content: \"\\e027\";\n}\n.glyphicon-inbox:before {\n content: \"\\e028\";\n}\n.glyphicon-play-circle:before {\n content: \"\\e029\";\n}\n.glyphicon-repeat:before {\n content: \"\\e030\";\n}\n.glyphicon-refresh:before {\n content: \"\\e031\";\n}\n.glyphicon-list-alt:before {\n content: \"\\e032\";\n}\n.glyphicon-lock:before {\n content: \"\\e033\";\n}\n.glyphicon-flag:before {\n content: \"\\e034\";\n}\n.glyphicon-headphones:before {\n content: \"\\e035\";\n}\n.glyphicon-volume-off:before {\n content: \"\\e036\";\n}\n.glyphicon-volume-down:before {\n content: \"\\e037\";\n}\n.glyphicon-volume-up:before {\n content: \"\\e038\";\n}\n.glyphicon-qrcode:before {\n content: \"\\e039\";\n}\n.glyphicon-barcode:before {\n content: \"\\e040\";\n}\n.glyphicon-tag:before {\n content: \"\\e041\";\n}\n.glyphicon-tags:before {\n content: \"\\e042\";\n}\n.glyphicon-book:before {\n content: \"\\e043\";\n}\n.glyphicon-bookmark:before {\n content: \"\\e044\";\n}\n.glyphicon-print:before {\n content: \"\\e045\";\n}\n.glyphicon-camera:before {\n content: \"\\e046\";\n}\n.glyphicon-font:before {\n content: \"\\e047\";\n}\n.glyphicon-bold:before {\n content: \"\\e048\";\n}\n.glyphicon-italic:before {\n content: \"\\e049\";\n}\n.glyphicon-text-height:before {\n content: \"\\e050\";\n}\n.glyphicon-text-width:before {\n content: \"\\e051\";\n}\n.glyphicon-align-left:before {\n content: \"\\e052\";\n}\n.glyphicon-align-center:before {\n content: \"\\e053\";\n}\n.glyphicon-align-right:before {\n content: \"\\e054\";\n}\n.glyphicon-align-justify:before {\n content: \"\\e055\";\n}\n.glyphicon-list:before {\n content: \"\\e056\";\n}\n.glyphicon-indent-left:before {\n content: \"\\e057\";\n}\n.glyphicon-indent-right:before {\n content: \"\\e058\";\n}\n.glyphicon-facetime-video:before {\n content: \"\\e059\";\n}\n.glyphicon-picture:before {\n content: \"\\e060\";\n}\n.glyphicon-map-marker:before {\n content: \"\\e062\";\n}\n.glyphicon-adjust:before {\n content: \"\\e063\";\n}\n.glyphicon-tint:before {\n content: \"\\e064\";\n}\n.glyphicon-edit:before {\n content: \"\\e065\";\n}\n.glyphicon-share:before {\n content: \"\\e066\";\n}\n.glyphicon-check:before {\n content: \"\\e067\";\n}\n.glyphicon-move:before {\n content: \"\\e068\";\n}\n.glyphicon-step-backward:before {\n content: \"\\e069\";\n}\n.glyphicon-fast-backward:before {\n content: \"\\e070\";\n}\n.glyphicon-backward:before {\n content: \"\\e071\";\n}\n.glyphicon-play:before {\n content: \"\\e072\";\n}\n.glyphicon-pause:before {\n content: \"\\e073\";\n}\n.glyphicon-stop:before {\n content: \"\\e074\";\n}\n.glyphicon-forward:before {\n content: \"\\e075\";\n}\n.glyphicon-fast-forward:before {\n content: \"\\e076\";\n}\n.glyphicon-step-forward:before {\n content: \"\\e077\";\n}\n.glyphicon-eject:before {\n content: \"\\e078\";\n}\n.glyphicon-chevron-left:before {\n content: \"\\e079\";\n}\n.glyphicon-chevron-right:before {\n content: \"\\e080\";\n}\n.glyphicon-plus-sign:before {\n content: \"\\e081\";\n}\n.glyphicon-minus-sign:before {\n content: \"\\e082\";\n}\n.glyphicon-remove-sign:before {\n content: \"\\e083\";\n}\n.glyphicon-ok-sign:before {\n content: \"\\e084\";\n}\n.glyphicon-question-sign:before {\n content: \"\\e085\";\n}\n.glyphicon-info-sign:before {\n content: \"\\e086\";\n}\n.glyphicon-screenshot:before {\n content: \"\\e087\";\n}\n.glyphicon-remove-circle:before {\n content: \"\\e088\";\n}\n.glyphicon-ok-circle:before {\n content: \"\\e089\";\n}\n.glyphicon-ban-circle:before {\n content: \"\\e090\";\n}\n.glyphicon-arrow-left:before {\n content: \"\\e091\";\n}\n.glyphicon-arrow-right:before {\n content: \"\\e092\";\n}\n.glyphicon-arrow-up:before {\n content: \"\\e093\";\n}\n.glyphicon-arrow-down:before {\n content: \"\\e094\";\n}\n.glyphicon-share-alt:before {\n content: \"\\e095\";\n}\n.glyphicon-resize-full:before {\n content: \"\\e096\";\n}\n.glyphicon-resize-small:before {\n content: \"\\e097\";\n}\n.glyphicon-exclamation-sign:before {\n content: \"\\e101\";\n}\n.glyphicon-gift:before {\n content: \"\\e102\";\n}\n.glyphicon-leaf:before {\n content: \"\\e103\";\n}\n.glyphicon-fire:before {\n content: \"\\e104\";\n}\n.glyphicon-eye-open:before {\n content: \"\\e105\";\n}\n.glyphicon-eye-close:before {\n content: \"\\e106\";\n}\n.glyphicon-warning-sign:before {\n content: \"\\e107\";\n}\n.glyphicon-plane:before {\n content: \"\\e108\";\n}\n.glyphicon-calendar:before {\n content: \"\\e109\";\n}\n.glyphicon-random:before {\n content: \"\\e110\";\n}\n.glyphicon-comment:before {\n content: \"\\e111\";\n}\n.glyphicon-magnet:before {\n content: \"\\e112\";\n}\n.glyphicon-chevron-up:before {\n content: \"\\e113\";\n}\n.glyphicon-chevron-down:before {\n content: \"\\e114\";\n}\n.glyphicon-retweet:before {\n content: \"\\e115\";\n}\n.glyphicon-shopping-cart:before {\n content: \"\\e116\";\n}\n.glyphicon-folder-close:before {\n content: \"\\e117\";\n}\n.glyphicon-folder-open:before {\n content: \"\\e118\";\n}\n.glyphicon-resize-vertical:before {\n content: \"\\e119\";\n}\n.glyphicon-resize-horizontal:before {\n content: \"\\e120\";\n}\n.glyphicon-hdd:before {\n content: \"\\e121\";\n}\n.glyphicon-bullhorn:before {\n content: \"\\e122\";\n}\n.glyphicon-bell:before {\n content: \"\\e123\";\n}\n.glyphicon-certificate:before {\n content: \"\\e124\";\n}\n.glyphicon-thumbs-up:before {\n content: \"\\e125\";\n}\n.glyphicon-thumbs-down:before {\n content: \"\\e126\";\n}\n.glyphicon-hand-right:before {\n content: \"\\e127\";\n}\n.glyphicon-hand-left:before {\n content: \"\\e128\";\n}\n.glyphicon-hand-up:before {\n content: \"\\e129\";\n}\n.glyphicon-hand-down:before {\n content: \"\\e130\";\n}\n.glyphicon-circle-arrow-right:before {\n content: \"\\e131\";\n}\n.glyphicon-circle-arrow-left:before {\n content: \"\\e132\";\n}\n.glyphicon-circle-arrow-up:before {\n content: \"\\e133\";\n}\n.glyphicon-circle-arrow-down:before {\n content: \"\\e134\";\n}\n.glyphicon-globe:before {\n content: \"\\e135\";\n}\n.glyphicon-wrench:before {\n content: \"\\e136\";\n}\n.glyphicon-tasks:before {\n content: \"\\e137\";\n}\n.glyphicon-filter:before {\n content: \"\\e138\";\n}\n.glyphicon-briefcase:before {\n content: \"\\e139\";\n}\n.glyphicon-fullscreen:before {\n content: \"\\e140\";\n}\n.glyphicon-dashboard:before {\n content: \"\\e141\";\n}\n.glyphicon-paperclip:before {\n content: \"\\e142\";\n}\n.glyphicon-heart-empty:before {\n content: \"\\e143\";\n}\n.glyphicon-link:before {\n content: \"\\e144\";\n}\n.glyphicon-phone:before {\n content: \"\\e145\";\n}\n.glyphicon-pushpin:before {\n content: \"\\e146\";\n}\n.glyphicon-usd:before {\n content: \"\\e148\";\n}\n.glyphicon-gbp:before {\n content: \"\\e149\";\n}\n.glyphicon-sort:before {\n content: \"\\e150\";\n}\n.glyphicon-sort-by-alphabet:before {\n content: \"\\e151\";\n}\n.glyphicon-sort-by-alphabet-alt:before {\n content: \"\\e152\";\n}\n.glyphicon-sort-by-order:before {\n content: \"\\e153\";\n}\n.glyphicon-sort-by-order-alt:before {\n content: \"\\e154\";\n}\n.glyphicon-sort-by-attributes:before {\n content: \"\\e155\";\n}\n.glyphicon-sort-by-attributes-alt:before {\n content: \"\\e156\";\n}\n.glyphicon-unchecked:before {\n content: \"\\e157\";\n}\n.glyphicon-expand:before {\n content: \"\\e158\";\n}\n.glyphicon-collapse-down:before {\n content: \"\\e159\";\n}\n.glyphicon-collapse-up:before {\n content: \"\\e160\";\n}\n.glyphicon-log-in:before {\n content: \"\\e161\";\n}\n.glyphicon-flash:before {\n content: \"\\e162\";\n}\n.glyphicon-log-out:before {\n content: \"\\e163\";\n}\n.glyphicon-new-window:before {\n content: \"\\e164\";\n}\n.glyphicon-record:before {\n content: \"\\e165\";\n}\n.glyphicon-save:before {\n content: \"\\e166\";\n}\n.glyphicon-open:before {\n content: \"\\e167\";\n}\n.glyphicon-saved:before {\n content: \"\\e168\";\n}\n.glyphicon-import:before {\n content: \"\\e169\";\n}\n.glyphicon-export:before {\n content: \"\\e170\";\n}\n.glyphicon-send:before {\n content: \"\\e171\";\n}\n.glyphicon-floppy-disk:before {\n content: \"\\e172\";\n}\n.glyphicon-floppy-saved:before {\n content: \"\\e173\";\n}\n.glyphicon-floppy-remove:before {\n content: \"\\e174\";\n}\n.glyphicon-floppy-save:before {\n content: \"\\e175\";\n}\n.glyphicon-floppy-open:before {\n content: \"\\e176\";\n}\n.glyphicon-credit-card:before {\n content: \"\\e177\";\n}\n.glyphicon-transfer:before {\n content: \"\\e178\";\n}\n.glyphicon-cutlery:before {\n content: \"\\e179\";\n}\n.glyphicon-header:before {\n content: \"\\e180\";\n}\n.glyphicon-compressed:before {\n content: \"\\e181\";\n}\n.glyphicon-earphone:before {\n content: \"\\e182\";\n}\n.glyphicon-phone-alt:before {\n content: \"\\e183\";\n}\n.glyphicon-tower:before {\n content: \"\\e184\";\n}\n.glyphicon-stats:before {\n content: \"\\e185\";\n}\n.glyphicon-sd-video:before {\n content: \"\\e186\";\n}\n.glyphicon-hd-video:before {\n content: \"\\e187\";\n}\n.glyphicon-subtitles:before {\n content: \"\\e188\";\n}\n.glyphicon-sound-stereo:before {\n content: \"\\e189\";\n}\n.glyphicon-sound-dolby:before {\n content: \"\\e190\";\n}\n.glyphicon-sound-5-1:before {\n content: \"\\e191\";\n}\n.glyphicon-sound-6-1:before {\n content: \"\\e192\";\n}\n.glyphicon-sound-7-1:before {\n content: \"\\e193\";\n}\n.glyphicon-copyright-mark:before {\n content: \"\\e194\";\n}\n.glyphicon-registration-mark:before {\n content: \"\\e195\";\n}\n.glyphicon-cloud-download:before {\n content: \"\\e197\";\n}\n.glyphicon-cloud-upload:before {\n content: \"\\e198\";\n}\n.glyphicon-tree-conifer:before {\n content: \"\\e199\";\n}\n.glyphicon-tree-deciduous:before {\n content: \"\\e200\";\n}\n.glyphicon-cd:before {\n content: \"\\e201\";\n}\n.glyphicon-save-file:before {\n content: \"\\e202\";\n}\n.glyphicon-open-file:before {\n content: \"\\e203\";\n}\n.glyphicon-level-up:before {\n content: \"\\e204\";\n}\n.glyphicon-copy:before {\n content: \"\\e205\";\n}\n.glyphicon-paste:before {\n content: \"\\e206\";\n}\n.glyphicon-alert:before {\n content: \"\\e209\";\n}\n.glyphicon-equalizer:before {\n content: \"\\e210\";\n}\n.glyphicon-king:before {\n content: \"\\e211\";\n}\n.glyphicon-queen:before {\n content: \"\\e212\";\n}\n.glyphicon-pawn:before {\n content: \"\\e213\";\n}\n.glyphicon-bishop:before {\n content: \"\\e214\";\n}\n.glyphicon-knight:before {\n content: \"\\e215\";\n}\n.glyphicon-baby-formula:before {\n content: \"\\e216\";\n}\n.glyphicon-tent:before {\n content: \"\\26fa\";\n}\n.glyphicon-blackboard:before {\n content: \"\\e218\";\n}\n.glyphicon-bed:before {\n content: \"\\e219\";\n}\n.glyphicon-apple:before {\n content: \"\\f8ff\";\n}\n.glyphicon-erase:before {\n content: \"\\e221\";\n}\n.glyphicon-hourglass:before {\n content: \"\\231b\";\n}\n.glyphicon-lamp:before {\n content: \"\\e223\";\n}\n.glyphicon-duplicate:before {\n content: \"\\e224\";\n}\n.glyphicon-piggy-bank:before {\n content: \"\\e225\";\n}\n.glyphicon-scissors:before {\n content: \"\\e226\";\n}\n.glyphicon-bitcoin:before {\n content: \"\\e227\";\n}\n.glyphicon-btc:before {\n content: \"\\e227\";\n}\n.glyphicon-xbt:before {\n content: \"\\e227\";\n}\n.glyphicon-yen:before {\n content: \"\\00a5\";\n}\n.glyphicon-jpy:before {\n content: \"\\00a5\";\n}\n.glyphicon-ruble:before {\n content: \"\\20bd\";\n}\n.glyphicon-rub:before {\n content: \"\\20bd\";\n}\n.glyphicon-scale:before {\n content: \"\\e230\";\n}\n.glyphicon-ice-lolly:before {\n content: \"\\e231\";\n}\n.glyphicon-ice-lolly-tasted:before {\n content: \"\\e232\";\n}\n.glyphicon-education:before {\n content: \"\\e233\";\n}\n.glyphicon-option-horizontal:before {\n content: \"\\e234\";\n}\n.glyphicon-option-vertical:before {\n content: \"\\e235\";\n}\n.glyphicon-menu-hamburger:before {\n content: \"\\e236\";\n}\n.glyphicon-modal-window:before {\n content: \"\\e237\";\n}\n.glyphicon-oil:before {\n content: \"\\e238\";\n}\n.glyphicon-grain:before {\n content: \"\\e239\";\n}\n.glyphicon-sunglasses:before {\n content: \"\\e240\";\n}\n.glyphicon-text-size:before {\n content: \"\\e241\";\n}\n.glyphicon-text-color:before {\n content: \"\\e242\";\n}\n.glyphicon-text-background:before {\n content: \"\\e243\";\n}\n.glyphicon-object-align-top:before {\n content: \"\\e244\";\n}\n.glyphicon-object-align-bottom:before {\n content: \"\\e245\";\n}\n.glyphicon-object-align-horizontal:before {\n content: \"\\e246\";\n}\n.glyphicon-object-align-left:before {\n content: \"\\e247\";\n}\n.glyphicon-object-align-vertical:before {\n content: \"\\e248\";\n}\n.glyphicon-object-align-right:before {\n content: \"\\e249\";\n}\n.glyphicon-triangle-right:before {\n content: \"\\e250\";\n}\n.glyphicon-triangle-left:before {\n content: \"\\e251\";\n}\n.glyphicon-triangle-bottom:before {\n content: \"\\e252\";\n}\n.glyphicon-triangle-top:before {\n content: \"\\e253\";\n}\n.glyphicon-console:before {\n content: \"\\e254\";\n}\n.glyphicon-superscript:before {\n content: \"\\e255\";\n}\n.glyphicon-subscript:before {\n content: \"\\e256\";\n}\n.glyphicon-menu-left:before {\n content: \"\\e257\";\n}\n.glyphicon-menu-right:before {\n content: \"\\e258\";\n}\n.glyphicon-menu-down:before {\n content: \"\\e259\";\n}\n.glyphicon-menu-up:before {\n content: \"\\e260\";\n}\n* {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\n*:before,\n*:after {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\nhtml {\n font-size: 10px;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\nbody {\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 14px;\n line-height: 1.42857143;\n color: #333333;\n background-color: #ffffff;\n}\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\na {\n color: #337ab7;\n text-decoration: none;\n}\na:hover,\na:focus {\n color: #23527c;\n text-decoration: underline;\n}\na:focus {\n outline: thin dotted;\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\nfigure {\n margin: 0;\n}\nimg {\n vertical-align: middle;\n}\n.img-responsive,\n.thumbnail > img,\n.thumbnail a > img,\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n display: block;\n max-width: 100%;\n height: auto;\n}\n.img-rounded {\n border-radius: 6px;\n}\n.img-thumbnail {\n padding: 4px;\n line-height: 1.42857143;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n border-radius: 4px;\n -webkit-transition: all 0.2s ease-in-out;\n -o-transition: all 0.2s ease-in-out;\n transition: all 0.2s ease-in-out;\n display: inline-block;\n max-width: 100%;\n height: auto;\n}\n.img-circle {\n border-radius: 50%;\n}\nhr {\n margin-top: 20px;\n margin-bottom: 20px;\n border: 0;\n border-top: 1px solid #eeeeee;\n}\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n}\n[role=\"button\"] {\n cursor: pointer;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\n.h1,\n.h2,\n.h3,\n.h4,\n.h5,\n.h6 {\n font-family: inherit;\n font-weight: 500;\n line-height: 1.1;\n color: inherit;\n}\nh1 small,\nh2 small,\nh3 small,\nh4 small,\nh5 small,\nh6 small,\n.h1 small,\n.h2 small,\n.h3 small,\n.h4 small,\n.h5 small,\n.h6 small,\nh1 .small,\nh2 .small,\nh3 .small,\nh4 .small,\nh5 .small,\nh6 .small,\n.h1 .small,\n.h2 .small,\n.h3 .small,\n.h4 .small,\n.h5 .small,\n.h6 .small {\n font-weight: normal;\n line-height: 1;\n color: #777777;\n}\nh1,\n.h1,\nh2,\n.h2,\nh3,\n.h3 {\n margin-top: 20px;\n margin-bottom: 10px;\n}\nh1 small,\n.h1 small,\nh2 small,\n.h2 small,\nh3 small,\n.h3 small,\nh1 .small,\n.h1 .small,\nh2 .small,\n.h2 .small,\nh3 .small,\n.h3 .small {\n font-size: 65%;\n}\nh4,\n.h4,\nh5,\n.h5,\nh6,\n.h6 {\n margin-top: 10px;\n margin-bottom: 10px;\n}\nh4 small,\n.h4 small,\nh5 small,\n.h5 small,\nh6 small,\n.h6 small,\nh4 .small,\n.h4 .small,\nh5 .small,\n.h5 .small,\nh6 .small,\n.h6 .small {\n font-size: 75%;\n}\nh1,\n.h1 {\n font-size: 36px;\n}\nh2,\n.h2 {\n font-size: 30px;\n}\nh3,\n.h3 {\n font-size: 24px;\n}\nh4,\n.h4 {\n font-size: 18px;\n}\nh5,\n.h5 {\n font-size: 14px;\n}\nh6,\n.h6 {\n font-size: 12px;\n}\np {\n margin: 0 0 10px;\n}\n.lead {\n margin-bottom: 20px;\n font-size: 16px;\n font-weight: 300;\n line-height: 1.4;\n}\n@media (min-width: 768px) {\n .lead {\n font-size: 21px;\n }\n}\nsmall,\n.small {\n font-size: 85%;\n}\nmark,\n.mark {\n background-color: #fcf8e3;\n padding: .2em;\n}\n.text-left {\n text-align: left;\n}\n.text-right {\n text-align: right;\n}\n.text-center {\n text-align: center;\n}\n.text-justify {\n text-align: justify;\n}\n.text-nowrap {\n white-space: nowrap;\n}\n.text-lowercase {\n text-transform: lowercase;\n}\n.text-uppercase {\n text-transform: uppercase;\n}\n.text-capitalize {\n text-transform: capitalize;\n}\n.text-muted {\n color: #777777;\n}\n.text-primary {\n color: #337ab7;\n}\na.text-primary:hover {\n color: #286090;\n}\n.text-success {\n color: #3c763d;\n}\na.text-success:hover {\n color: #2b542c;\n}\n.text-info {\n color: #31708f;\n}\na.text-info:hover {\n color: #245269;\n}\n.text-warning {\n color: #8a6d3b;\n}\na.text-warning:hover {\n color: #66512c;\n}\n.text-danger {\n color: #a94442;\n}\na.text-danger:hover {\n color: #843534;\n}\n.bg-primary {\n color: #fff;\n background-color: #337ab7;\n}\na.bg-primary:hover {\n background-color: #286090;\n}\n.bg-success {\n background-color: #dff0d8;\n}\na.bg-success:hover {\n background-color: #c1e2b3;\n}\n.bg-info {\n background-color: #d9edf7;\n}\na.bg-info:hover {\n background-color: #afd9ee;\n}\n.bg-warning {\n background-color: #fcf8e3;\n}\na.bg-warning:hover {\n background-color: #f7ecb5;\n}\n.bg-danger {\n background-color: #f2dede;\n}\na.bg-danger:hover {\n background-color: #e4b9b9;\n}\n.page-header {\n padding-bottom: 9px;\n margin: 40px 0 20px;\n border-bottom: 1px solid #eeeeee;\n}\nul,\nol {\n margin-top: 0;\n margin-bottom: 10px;\n}\nul ul,\nol ul,\nul ol,\nol ol {\n margin-bottom: 0;\n}\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n.list-inline {\n padding-left: 0;\n list-style: none;\n margin-left: -5px;\n}\n.list-inline > li {\n display: inline-block;\n padding-left: 5px;\n padding-right: 5px;\n}\ndl {\n margin-top: 0;\n margin-bottom: 20px;\n}\ndt,\ndd {\n line-height: 1.42857143;\n}\ndt {\n font-weight: bold;\n}\ndd {\n margin-left: 0;\n}\n@media (min-width: 768px) {\n .dl-horizontal dt {\n float: left;\n width: 160px;\n clear: left;\n text-align: right;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n .dl-horizontal dd {\n margin-left: 180px;\n }\n}\nabbr[title],\nabbr[data-original-title] {\n cursor: help;\n border-bottom: 1px dotted #777777;\n}\n.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\nblockquote {\n padding: 10px 20px;\n margin: 0 0 20px;\n font-size: 17.5px;\n border-left: 5px solid #eeeeee;\n}\nblockquote p:last-child,\nblockquote ul:last-child,\nblockquote ol:last-child {\n margin-bottom: 0;\n}\nblockquote footer,\nblockquote small,\nblockquote .small {\n display: block;\n font-size: 80%;\n line-height: 1.42857143;\n color: #777777;\n}\nblockquote footer:before,\nblockquote small:before,\nblockquote .small:before {\n content: '\\2014 \\00A0';\n}\n.blockquote-reverse,\nblockquote.pull-right {\n padding-right: 15px;\n padding-left: 0;\n border-right: 5px solid #eeeeee;\n border-left: 0;\n text-align: right;\n}\n.blockquote-reverse footer:before,\nblockquote.pull-right footer:before,\n.blockquote-reverse small:before,\nblockquote.pull-right small:before,\n.blockquote-reverse .small:before,\nblockquote.pull-right .small:before {\n content: '';\n}\n.blockquote-reverse footer:after,\nblockquote.pull-right footer:after,\n.blockquote-reverse small:after,\nblockquote.pull-right small:after,\n.blockquote-reverse .small:after,\nblockquote.pull-right .small:after {\n content: '\\00A0 \\2014';\n}\naddress {\n margin-bottom: 20px;\n font-style: normal;\n line-height: 1.42857143;\n}\ncode,\nkbd,\npre,\nsamp {\n font-family: Menlo, Monaco, Consolas, \"Courier New\", monospace;\n}\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: #c7254e;\n background-color: #f9f2f4;\n border-radius: 4px;\n}\nkbd {\n padding: 2px 4px;\n font-size: 90%;\n color: #ffffff;\n background-color: #333333;\n border-radius: 3px;\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\nkbd kbd {\n padding: 0;\n font-size: 100%;\n font-weight: bold;\n box-shadow: none;\n}\npre {\n display: block;\n padding: 9.5px;\n margin: 0 0 10px;\n font-size: 13px;\n line-height: 1.42857143;\n word-break: break-all;\n word-wrap: break-word;\n color: #333333;\n background-color: #f5f5f5;\n border: 1px solid #cccccc;\n border-radius: 4px;\n}\npre code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n}\n.pre-scrollable {\n max-height: 340px;\n overflow-y: scroll;\n}\n.container {\n margin-right: auto;\n margin-left: auto;\n padding-left: 15px;\n padding-right: 15px;\n}\n@media (min-width: 768px) {\n .container {\n width: 750px;\n }\n}\n@media (min-width: 992px) {\n .container {\n width: 970px;\n }\n}\n@media (min-width: 1200px) {\n .container {\n width: 1170px;\n }\n}\n.container-fluid {\n margin-right: auto;\n margin-left: auto;\n padding-left: 15px;\n padding-right: 15px;\n}\n.row {\n margin-left: -15px;\n margin-right: -15px;\n}\n.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {\n position: relative;\n min-height: 1px;\n padding-left: 15px;\n padding-right: 15px;\n}\n.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {\n float: left;\n}\n.col-xs-12 {\n width: 100%;\n}\n.col-xs-11 {\n width: 91.66666667%;\n}\n.col-xs-10 {\n width: 83.33333333%;\n}\n.col-xs-9 {\n width: 75%;\n}\n.col-xs-8 {\n width: 66.66666667%;\n}\n.col-xs-7 {\n width: 58.33333333%;\n}\n.col-xs-6 {\n width: 50%;\n}\n.col-xs-5 {\n width: 41.66666667%;\n}\n.col-xs-4 {\n width: 33.33333333%;\n}\n.col-xs-3 {\n width: 25%;\n}\n.col-xs-2 {\n width: 16.66666667%;\n}\n.col-xs-1 {\n width: 8.33333333%;\n}\n.col-xs-pull-12 {\n right: 100%;\n}\n.col-xs-pull-11 {\n right: 91.66666667%;\n}\n.col-xs-pull-10 {\n right: 83.33333333%;\n}\n.col-xs-pull-9 {\n right: 75%;\n}\n.col-xs-pull-8 {\n right: 66.66666667%;\n}\n.col-xs-pull-7 {\n right: 58.33333333%;\n}\n.col-xs-pull-6 {\n right: 50%;\n}\n.col-xs-pull-5 {\n right: 41.66666667%;\n}\n.col-xs-pull-4 {\n right: 33.33333333%;\n}\n.col-xs-pull-3 {\n right: 25%;\n}\n.col-xs-pull-2 {\n right: 16.66666667%;\n}\n.col-xs-pull-1 {\n right: 8.33333333%;\n}\n.col-xs-pull-0 {\n right: auto;\n}\n.col-xs-push-12 {\n left: 100%;\n}\n.col-xs-push-11 {\n left: 91.66666667%;\n}\n.col-xs-push-10 {\n left: 83.33333333%;\n}\n.col-xs-push-9 {\n left: 75%;\n}\n.col-xs-push-8 {\n left: 66.66666667%;\n}\n.col-xs-push-7 {\n left: 58.33333333%;\n}\n.col-xs-push-6 {\n left: 50%;\n}\n.col-xs-push-5 {\n left: 41.66666667%;\n}\n.col-xs-push-4 {\n left: 33.33333333%;\n}\n.col-xs-push-3 {\n left: 25%;\n}\n.col-xs-push-2 {\n left: 16.66666667%;\n}\n.col-xs-push-1 {\n left: 8.33333333%;\n}\n.col-xs-push-0 {\n left: auto;\n}\n.col-xs-offset-12 {\n margin-left: 100%;\n}\n.col-xs-offset-11 {\n margin-left: 91.66666667%;\n}\n.col-xs-offset-10 {\n margin-left: 83.33333333%;\n}\n.col-xs-offset-9 {\n margin-left: 75%;\n}\n.col-xs-offset-8 {\n margin-left: 66.66666667%;\n}\n.col-xs-offset-7 {\n margin-left: 58.33333333%;\n}\n.col-xs-offset-6 {\n margin-left: 50%;\n}\n.col-xs-offset-5 {\n margin-left: 41.66666667%;\n}\n.col-xs-offset-4 {\n margin-left: 33.33333333%;\n}\n.col-xs-offset-3 {\n margin-left: 25%;\n}\n.col-xs-offset-2 {\n margin-left: 16.66666667%;\n}\n.col-xs-offset-1 {\n margin-left: 8.33333333%;\n}\n.col-xs-offset-0 {\n margin-left: 0%;\n}\n@media (min-width: 768px) {\n .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {\n float: left;\n }\n .col-sm-12 {\n width: 100%;\n }\n .col-sm-11 {\n width: 91.66666667%;\n }\n .col-sm-10 {\n width: 83.33333333%;\n }\n .col-sm-9 {\n width: 75%;\n }\n .col-sm-8 {\n width: 66.66666667%;\n }\n .col-sm-7 {\n width: 58.33333333%;\n }\n .col-sm-6 {\n width: 50%;\n }\n .col-sm-5 {\n width: 41.66666667%;\n }\n .col-sm-4 {\n width: 33.33333333%;\n }\n .col-sm-3 {\n width: 25%;\n }\n .col-sm-2 {\n width: 16.66666667%;\n }\n .col-sm-1 {\n width: 8.33333333%;\n }\n .col-sm-pull-12 {\n right: 100%;\n }\n .col-sm-pull-11 {\n right: 91.66666667%;\n }\n .col-sm-pull-10 {\n right: 83.33333333%;\n }\n .col-sm-pull-9 {\n right: 75%;\n }\n .col-sm-pull-8 {\n right: 66.66666667%;\n }\n .col-sm-pull-7 {\n right: 58.33333333%;\n }\n .col-sm-pull-6 {\n right: 50%;\n }\n .col-sm-pull-5 {\n right: 41.66666667%;\n }\n .col-sm-pull-4 {\n right: 33.33333333%;\n }\n .col-sm-pull-3 {\n right: 25%;\n }\n .col-sm-pull-2 {\n right: 16.66666667%;\n }\n .col-sm-pull-1 {\n right: 8.33333333%;\n }\n .col-sm-pull-0 {\n right: auto;\n }\n .col-sm-push-12 {\n left: 100%;\n }\n .col-sm-push-11 {\n left: 91.66666667%;\n }\n .col-sm-push-10 {\n left: 83.33333333%;\n }\n .col-sm-push-9 {\n left: 75%;\n }\n .col-sm-push-8 {\n left: 66.66666667%;\n }\n .col-sm-push-7 {\n left: 58.33333333%;\n }\n .col-sm-push-6 {\n left: 50%;\n }\n .col-sm-push-5 {\n left: 41.66666667%;\n }\n .col-sm-push-4 {\n left: 33.33333333%;\n }\n .col-sm-push-3 {\n left: 25%;\n }\n .col-sm-push-2 {\n left: 16.66666667%;\n }\n .col-sm-push-1 {\n left: 8.33333333%;\n }\n .col-sm-push-0 {\n left: auto;\n }\n .col-sm-offset-12 {\n margin-left: 100%;\n }\n .col-sm-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-sm-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-sm-offset-9 {\n margin-left: 75%;\n }\n .col-sm-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-sm-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-sm-offset-6 {\n margin-left: 50%;\n }\n .col-sm-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-sm-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-sm-offset-3 {\n margin-left: 25%;\n }\n .col-sm-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-sm-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-sm-offset-0 {\n margin-left: 0%;\n }\n}\n@media (min-width: 992px) {\n .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {\n float: left;\n }\n .col-md-12 {\n width: 100%;\n }\n .col-md-11 {\n width: 91.66666667%;\n }\n .col-md-10 {\n width: 83.33333333%;\n }\n .col-md-9 {\n width: 75%;\n }\n .col-md-8 {\n width: 66.66666667%;\n }\n .col-md-7 {\n width: 58.33333333%;\n }\n .col-md-6 {\n width: 50%;\n }\n .col-md-5 {\n width: 41.66666667%;\n }\n .col-md-4 {\n width: 33.33333333%;\n }\n .col-md-3 {\n width: 25%;\n }\n .col-md-2 {\n width: 16.66666667%;\n }\n .col-md-1 {\n width: 8.33333333%;\n }\n .col-md-pull-12 {\n right: 100%;\n }\n .col-md-pull-11 {\n right: 91.66666667%;\n }\n .col-md-pull-10 {\n right: 83.33333333%;\n }\n .col-md-pull-9 {\n right: 75%;\n }\n .col-md-pull-8 {\n right: 66.66666667%;\n }\n .col-md-pull-7 {\n right: 58.33333333%;\n }\n .col-md-pull-6 {\n right: 50%;\n }\n .col-md-pull-5 {\n right: 41.66666667%;\n }\n .col-md-pull-4 {\n right: 33.33333333%;\n }\n .col-md-pull-3 {\n right: 25%;\n }\n .col-md-pull-2 {\n right: 16.66666667%;\n }\n .col-md-pull-1 {\n right: 8.33333333%;\n }\n .col-md-pull-0 {\n right: auto;\n }\n .col-md-push-12 {\n left: 100%;\n }\n .col-md-push-11 {\n left: 91.66666667%;\n }\n .col-md-push-10 {\n left: 83.33333333%;\n }\n .col-md-push-9 {\n left: 75%;\n }\n .col-md-push-8 {\n left: 66.66666667%;\n }\n .col-md-push-7 {\n left: 58.33333333%;\n }\n .col-md-push-6 {\n left: 50%;\n }\n .col-md-push-5 {\n left: 41.66666667%;\n }\n .col-md-push-4 {\n left: 33.33333333%;\n }\n .col-md-push-3 {\n left: 25%;\n }\n .col-md-push-2 {\n left: 16.66666667%;\n }\n .col-md-push-1 {\n left: 8.33333333%;\n }\n .col-md-push-0 {\n left: auto;\n }\n .col-md-offset-12 {\n margin-left: 100%;\n }\n .col-md-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-md-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-md-offset-9 {\n margin-left: 75%;\n }\n .col-md-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-md-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-md-offset-6 {\n margin-left: 50%;\n }\n .col-md-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-md-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-md-offset-3 {\n margin-left: 25%;\n }\n .col-md-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-md-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-md-offset-0 {\n margin-left: 0%;\n }\n}\n@media (min-width: 1200px) {\n .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {\n float: left;\n }\n .col-lg-12 {\n width: 100%;\n }\n .col-lg-11 {\n width: 91.66666667%;\n }\n .col-lg-10 {\n width: 83.33333333%;\n }\n .col-lg-9 {\n width: 75%;\n }\n .col-lg-8 {\n width: 66.66666667%;\n }\n .col-lg-7 {\n width: 58.33333333%;\n }\n .col-lg-6 {\n width: 50%;\n }\n .col-lg-5 {\n width: 41.66666667%;\n }\n .col-lg-4 {\n width: 33.33333333%;\n }\n .col-lg-3 {\n width: 25%;\n }\n .col-lg-2 {\n width: 16.66666667%;\n }\n .col-lg-1 {\n width: 8.33333333%;\n }\n .col-lg-pull-12 {\n right: 100%;\n }\n .col-lg-pull-11 {\n right: 91.66666667%;\n }\n .col-lg-pull-10 {\n right: 83.33333333%;\n }\n .col-lg-pull-9 {\n right: 75%;\n }\n .col-lg-pull-8 {\n right: 66.66666667%;\n }\n .col-lg-pull-7 {\n right: 58.33333333%;\n }\n .col-lg-pull-6 {\n right: 50%;\n }\n .col-lg-pull-5 {\n right: 41.66666667%;\n }\n .col-lg-pull-4 {\n right: 33.33333333%;\n }\n .col-lg-pull-3 {\n right: 25%;\n }\n .col-lg-pull-2 {\n right: 16.66666667%;\n }\n .col-lg-pull-1 {\n right: 8.33333333%;\n }\n .col-lg-pull-0 {\n right: auto;\n }\n .col-lg-push-12 {\n left: 100%;\n }\n .col-lg-push-11 {\n left: 91.66666667%;\n }\n .col-lg-push-10 {\n left: 83.33333333%;\n }\n .col-lg-push-9 {\n left: 75%;\n }\n .col-lg-push-8 {\n left: 66.66666667%;\n }\n .col-lg-push-7 {\n left: 58.33333333%;\n }\n .col-lg-push-6 {\n left: 50%;\n }\n .col-lg-push-5 {\n left: 41.66666667%;\n }\n .col-lg-push-4 {\n left: 33.33333333%;\n }\n .col-lg-push-3 {\n left: 25%;\n }\n .col-lg-push-2 {\n left: 16.66666667%;\n }\n .col-lg-push-1 {\n left: 8.33333333%;\n }\n .col-lg-push-0 {\n left: auto;\n }\n .col-lg-offset-12 {\n margin-left: 100%;\n }\n .col-lg-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-lg-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-lg-offset-9 {\n margin-left: 75%;\n }\n .col-lg-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-lg-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-lg-offset-6 {\n margin-left: 50%;\n }\n .col-lg-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-lg-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-lg-offset-3 {\n margin-left: 25%;\n }\n .col-lg-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-lg-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-lg-offset-0 {\n margin-left: 0%;\n }\n}\ntable {\n background-color: transparent;\n}\ncaption {\n padding-top: 8px;\n padding-bottom: 8px;\n color: #777777;\n text-align: left;\n}\nth {\n text-align: left;\n}\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: 20px;\n}\n.table > thead > tr > th,\n.table > tbody > tr > th,\n.table > tfoot > tr > th,\n.table > thead > tr > td,\n.table > tbody > tr > td,\n.table > tfoot > tr > td {\n padding: 8px;\n line-height: 1.42857143;\n vertical-align: top;\n border-top: 1px solid #dddddd;\n}\n.table > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid #dddddd;\n}\n.table > caption + thead > tr:first-child > th,\n.table > colgroup + thead > tr:first-child > th,\n.table > thead:first-child > tr:first-child > th,\n.table > caption + thead > tr:first-child > td,\n.table > colgroup + thead > tr:first-child > td,\n.table > thead:first-child > tr:first-child > td {\n border-top: 0;\n}\n.table > tbody + tbody {\n border-top: 2px solid #dddddd;\n}\n.table .table {\n background-color: #ffffff;\n}\n.table-condensed > thead > tr > th,\n.table-condensed > tbody > tr > th,\n.table-condensed > tfoot > tr > th,\n.table-condensed > thead > tr > td,\n.table-condensed > tbody > tr > td,\n.table-condensed > tfoot > tr > td {\n padding: 5px;\n}\n.table-bordered {\n border: 1px solid #dddddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > tbody > tr > th,\n.table-bordered > tfoot > tr > th,\n.table-bordered > thead > tr > td,\n.table-bordered > tbody > tr > td,\n.table-bordered > tfoot > tr > td {\n border: 1px solid #dddddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > thead > tr > td {\n border-bottom-width: 2px;\n}\n.table-striped > tbody > tr:nth-of-type(odd) {\n background-color: #f9f9f9;\n}\n.table-hover > tbody > tr:hover {\n background-color: #f5f5f5;\n}\ntable col[class*=\"col-\"] {\n position: static;\n float: none;\n display: table-column;\n}\ntable td[class*=\"col-\"],\ntable th[class*=\"col-\"] {\n position: static;\n float: none;\n display: table-cell;\n}\n.table > thead > tr > td.active,\n.table > tbody > tr > td.active,\n.table > tfoot > tr > td.active,\n.table > thead > tr > th.active,\n.table > tbody > tr > th.active,\n.table > tfoot > tr > th.active,\n.table > thead > tr.active > td,\n.table > tbody > tr.active > td,\n.table > tfoot > tr.active > td,\n.table > thead > tr.active > th,\n.table > tbody > tr.active > th,\n.table > tfoot > tr.active > th {\n background-color: #f5f5f5;\n}\n.table-hover > tbody > tr > td.active:hover,\n.table-hover > tbody > tr > th.active:hover,\n.table-hover > tbody > tr.active:hover > td,\n.table-hover > tbody > tr:hover > .active,\n.table-hover > tbody > tr.active:hover > th {\n background-color: #e8e8e8;\n}\n.table > thead > tr > td.success,\n.table > tbody > tr > td.success,\n.table > tfoot > tr > td.success,\n.table > thead > tr > th.success,\n.table > tbody > tr > th.success,\n.table > tfoot > tr > th.success,\n.table > thead > tr.success > td,\n.table > tbody > tr.success > td,\n.table > tfoot > tr.success > td,\n.table > thead > tr.success > th,\n.table > tbody > tr.success > th,\n.table > tfoot > tr.success > th {\n background-color: #dff0d8;\n}\n.table-hover > tbody > tr > td.success:hover,\n.table-hover > tbody > tr > th.success:hover,\n.table-hover > tbody > tr.success:hover > td,\n.table-hover > tbody > tr:hover > .success,\n.table-hover > tbody > tr.success:hover > th {\n background-color: #d0e9c6;\n}\n.table > thead > tr > td.info,\n.table > tbody > tr > td.info,\n.table > tfoot > tr > td.info,\n.table > thead > tr > th.info,\n.table > tbody > tr > th.info,\n.table > tfoot > tr > th.info,\n.table > thead > tr.info > td,\n.table > tbody > tr.info > td,\n.table > tfoot > tr.info > td,\n.table > thead > tr.info > th,\n.table > tbody > tr.info > th,\n.table > tfoot > tr.info > th {\n background-color: #d9edf7;\n}\n.table-hover > tbody > tr > td.info:hover,\n.table-hover > tbody > tr > th.info:hover,\n.table-hover > tbody > tr.info:hover > td,\n.table-hover > tbody > tr:hover > .info,\n.table-hover > tbody > tr.info:hover > th {\n background-color: #c4e3f3;\n}\n.table > thead > tr > td.warning,\n.table > tbody > tr > td.warning,\n.table > tfoot > tr > td.warning,\n.table > thead > tr > th.warning,\n.table > tbody > tr > th.warning,\n.table > tfoot > tr > th.warning,\n.table > thead > tr.warning > td,\n.table > tbody > tr.warning > td,\n.table > tfoot > tr.warning > td,\n.table > thead > tr.warning > th,\n.table > tbody > tr.warning > th,\n.table > tfoot > tr.warning > th {\n background-color: #fcf8e3;\n}\n.table-hover > tbody > tr > td.warning:hover,\n.table-hover > tbody > tr > th.warning:hover,\n.table-hover > tbody > tr.warning:hover > td,\n.table-hover > tbody > tr:hover > .warning,\n.table-hover > tbody > tr.warning:hover > th {\n background-color: #faf2cc;\n}\n.table > thead > tr > td.danger,\n.table > tbody > tr > td.danger,\n.table > tfoot > tr > td.danger,\n.table > thead > tr > th.danger,\n.table > tbody > tr > th.danger,\n.table > tfoot > tr > th.danger,\n.table > thead > tr.danger > td,\n.table > tbody > tr.danger > td,\n.table > tfoot > tr.danger > td,\n.table > thead > tr.danger > th,\n.table > tbody > tr.danger > th,\n.table > tfoot > tr.danger > th {\n background-color: #f2dede;\n}\n.table-hover > tbody > tr > td.danger:hover,\n.table-hover > tbody > tr > th.danger:hover,\n.table-hover > tbody > tr.danger:hover > td,\n.table-hover > tbody > tr:hover > .danger,\n.table-hover > tbody > tr.danger:hover > th {\n background-color: #ebcccc;\n}\n.table-responsive {\n overflow-x: auto;\n min-height: 0.01%;\n}\n@media screen and (max-width: 767px) {\n .table-responsive {\n width: 100%;\n margin-bottom: 15px;\n overflow-y: hidden;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid #dddddd;\n }\n .table-responsive > .table {\n margin-bottom: 0;\n }\n .table-responsive > .table > thead > tr > th,\n .table-responsive > .table > tbody > tr > th,\n .table-responsive > .table > tfoot > tr > th,\n .table-responsive > .table > thead > tr > td,\n .table-responsive > .table > tbody > tr > td,\n .table-responsive > .table > tfoot > tr > td {\n white-space: nowrap;\n }\n .table-responsive > .table-bordered {\n border: 0;\n }\n .table-responsive > .table-bordered > thead > tr > th:first-child,\n .table-responsive > .table-bordered > tbody > tr > th:first-child,\n .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n .table-responsive > .table-bordered > thead > tr > td:first-child,\n .table-responsive > .table-bordered > tbody > tr > td:first-child,\n .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-left: 0;\n }\n .table-responsive > .table-bordered > thead > tr > th:last-child,\n .table-responsive > .table-bordered > tbody > tr > th:last-child,\n .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n .table-responsive > .table-bordered > thead > tr > td:last-child,\n .table-responsive > .table-bordered > tbody > tr > td:last-child,\n .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: 0;\n }\n .table-responsive > .table-bordered > tbody > tr:last-child > th,\n .table-responsive > .table-bordered > tfoot > tr:last-child > th,\n .table-responsive > .table-bordered > tbody > tr:last-child > td,\n .table-responsive > .table-bordered > tfoot > tr:last-child > td {\n border-bottom: 0;\n }\n}\nfieldset {\n padding: 0;\n margin: 0;\n border: 0;\n min-width: 0;\n}\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: 20px;\n font-size: 21px;\n line-height: inherit;\n color: #333333;\n border: 0;\n border-bottom: 1px solid #e5e5e5;\n}\nlabel {\n display: inline-block;\n max-width: 100%;\n margin-bottom: 5px;\n font-weight: bold;\n}\ninput[type=\"search\"] {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9;\n line-height: normal;\n}\ninput[type=\"file\"] {\n display: block;\n}\ninput[type=\"range\"] {\n display: block;\n width: 100%;\n}\nselect[multiple],\nselect[size] {\n height: auto;\n}\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n outline: thin dotted;\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\noutput {\n display: block;\n padding-top: 7px;\n font-size: 14px;\n line-height: 1.42857143;\n color: #555555;\n}\n.form-control {\n display: block;\n width: 100%;\n height: 34px;\n padding: 6px 12px;\n font-size: 14px;\n line-height: 1.42857143;\n color: #555555;\n background-color: #ffffff;\n background-image: none;\n border: 1px solid #cccccc;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n}\n.form-control:focus {\n border-color: #66afe9;\n outline: 0;\n -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n}\n.form-control::-moz-placeholder {\n color: #999999;\n opacity: 1;\n}\n.form-control:-ms-input-placeholder {\n color: #999999;\n}\n.form-control::-webkit-input-placeholder {\n color: #999999;\n}\n.form-control[disabled],\n.form-control[readonly],\nfieldset[disabled] .form-control {\n background-color: #eeeeee;\n opacity: 1;\n}\n.form-control[disabled],\nfieldset[disabled] .form-control {\n cursor: not-allowed;\n}\ntextarea.form-control {\n height: auto;\n}\ninput[type=\"search\"] {\n -webkit-appearance: none;\n}\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n input[type=\"date\"],\n input[type=\"time\"],\n input[type=\"datetime-local\"],\n input[type=\"month\"] {\n line-height: 34px;\n }\n input[type=\"date\"].input-sm,\n input[type=\"time\"].input-sm,\n input[type=\"datetime-local\"].input-sm,\n input[type=\"month\"].input-sm,\n .input-group-sm input[type=\"date\"],\n .input-group-sm input[type=\"time\"],\n .input-group-sm input[type=\"datetime-local\"],\n .input-group-sm input[type=\"month\"] {\n line-height: 30px;\n }\n input[type=\"date\"].input-lg,\n input[type=\"time\"].input-lg,\n input[type=\"datetime-local\"].input-lg,\n input[type=\"month\"].input-lg,\n .input-group-lg input[type=\"date\"],\n .input-group-lg input[type=\"time\"],\n .input-group-lg input[type=\"datetime-local\"],\n .input-group-lg input[type=\"month\"] {\n line-height: 46px;\n }\n}\n.form-group {\n margin-bottom: 15px;\n}\n.radio,\n.checkbox {\n position: relative;\n display: block;\n margin-top: 10px;\n margin-bottom: 10px;\n}\n.radio label,\n.checkbox label {\n min-height: 20px;\n padding-left: 20px;\n margin-bottom: 0;\n font-weight: normal;\n cursor: pointer;\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n position: absolute;\n margin-left: -20px;\n margin-top: 4px \\9;\n}\n.radio + .radio,\n.checkbox + .checkbox {\n margin-top: -5px;\n}\n.radio-inline,\n.checkbox-inline {\n position: relative;\n display: inline-block;\n padding-left: 20px;\n margin-bottom: 0;\n vertical-align: middle;\n font-weight: normal;\n cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n margin-top: 0;\n margin-left: 10px;\n}\ninput[type=\"radio\"][disabled],\ninput[type=\"checkbox\"][disabled],\ninput[type=\"radio\"].disabled,\ninput[type=\"checkbox\"].disabled,\nfieldset[disabled] input[type=\"radio\"],\nfieldset[disabled] input[type=\"checkbox\"] {\n cursor: not-allowed;\n}\n.radio-inline.disabled,\n.checkbox-inline.disabled,\nfieldset[disabled] .radio-inline,\nfieldset[disabled] .checkbox-inline {\n cursor: not-allowed;\n}\n.radio.disabled label,\n.checkbox.disabled label,\nfieldset[disabled] .radio label,\nfieldset[disabled] .checkbox label {\n cursor: not-allowed;\n}\n.form-control-static {\n padding-top: 7px;\n padding-bottom: 7px;\n margin-bottom: 0;\n min-height: 34px;\n}\n.form-control-static.input-lg,\n.form-control-static.input-sm {\n padding-left: 0;\n padding-right: 0;\n}\n.input-sm {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\nselect.input-sm {\n height: 30px;\n line-height: 30px;\n}\ntextarea.input-sm,\nselect[multiple].input-sm {\n height: auto;\n}\n.form-group-sm .form-control {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\nselect.form-group-sm .form-control {\n height: 30px;\n line-height: 30px;\n}\ntextarea.form-group-sm .form-control,\nselect[multiple].form-group-sm .form-control {\n height: auto;\n}\n.form-group-sm .form-control-static {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n min-height: 32px;\n}\n.input-lg {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\nselect.input-lg {\n height: 46px;\n line-height: 46px;\n}\ntextarea.input-lg,\nselect[multiple].input-lg {\n height: auto;\n}\n.form-group-lg .form-control {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\nselect.form-group-lg .form-control {\n height: 46px;\n line-height: 46px;\n}\ntextarea.form-group-lg .form-control,\nselect[multiple].form-group-lg .form-control {\n height: auto;\n}\n.form-group-lg .form-control-static {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n min-height: 38px;\n}\n.has-feedback {\n position: relative;\n}\n.has-feedback .form-control {\n padding-right: 42.5px;\n}\n.form-control-feedback {\n position: absolute;\n top: 0;\n right: 0;\n z-index: 2;\n display: block;\n width: 34px;\n height: 34px;\n line-height: 34px;\n text-align: center;\n pointer-events: none;\n}\n.input-lg + .form-control-feedback {\n width: 46px;\n height: 46px;\n line-height: 46px;\n}\n.input-sm + .form-control-feedback {\n width: 30px;\n height: 30px;\n line-height: 30px;\n}\n.has-success .help-block,\n.has-success .control-label,\n.has-success .radio,\n.has-success .checkbox,\n.has-success .radio-inline,\n.has-success .checkbox-inline,\n.has-success.radio label,\n.has-success.checkbox label,\n.has-success.radio-inline label,\n.has-success.checkbox-inline label {\n color: #3c763d;\n}\n.has-success .form-control {\n border-color: #3c763d;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-success .form-control:focus {\n border-color: #2b542c;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n}\n.has-success .input-group-addon {\n color: #3c763d;\n border-color: #3c763d;\n background-color: #dff0d8;\n}\n.has-success .form-control-feedback {\n color: #3c763d;\n}\n.has-warning .help-block,\n.has-warning .control-label,\n.has-warning .radio,\n.has-warning .checkbox,\n.has-warning .radio-inline,\n.has-warning .checkbox-inline,\n.has-warning.radio label,\n.has-warning.checkbox label,\n.has-warning.radio-inline label,\n.has-warning.checkbox-inline label {\n color: #8a6d3b;\n}\n.has-warning .form-control {\n border-color: #8a6d3b;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-warning .form-control:focus {\n border-color: #66512c;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n}\n.has-warning .input-group-addon {\n color: #8a6d3b;\n border-color: #8a6d3b;\n background-color: #fcf8e3;\n}\n.has-warning .form-control-feedback {\n color: #8a6d3b;\n}\n.has-error .help-block,\n.has-error .control-label,\n.has-error .radio,\n.has-error .checkbox,\n.has-error .radio-inline,\n.has-error .checkbox-inline,\n.has-error.radio label,\n.has-error.checkbox label,\n.has-error.radio-inline label,\n.has-error.checkbox-inline label {\n color: #a94442;\n}\n.has-error .form-control {\n border-color: #a94442;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-error .form-control:focus {\n border-color: #843534;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n}\n.has-error .input-group-addon {\n color: #a94442;\n border-color: #a94442;\n background-color: #f2dede;\n}\n.has-error .form-control-feedback {\n color: #a94442;\n}\n.has-feedback label ~ .form-control-feedback {\n top: 25px;\n}\n.has-feedback label.sr-only ~ .form-control-feedback {\n top: 0;\n}\n.help-block {\n display: block;\n margin-top: 5px;\n margin-bottom: 10px;\n color: #737373;\n}\n@media (min-width: 768px) {\n .form-inline .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .form-inline .form-control-static {\n display: inline-block;\n }\n .form-inline .input-group {\n display: inline-table;\n vertical-align: middle;\n }\n .form-inline .input-group .input-group-addon,\n .form-inline .input-group .input-group-btn,\n .form-inline .input-group .form-control {\n width: auto;\n }\n .form-inline .input-group > .form-control {\n width: 100%;\n }\n .form-inline .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .radio,\n .form-inline .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .radio label,\n .form-inline .checkbox label {\n padding-left: 0;\n }\n .form-inline .radio input[type=\"radio\"],\n .form-inline .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n .form-inline .has-feedback .form-control-feedback {\n top: 0;\n }\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox,\n.form-horizontal .radio-inline,\n.form-horizontal .checkbox-inline {\n margin-top: 0;\n margin-bottom: 0;\n padding-top: 7px;\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox {\n min-height: 27px;\n}\n.form-horizontal .form-group {\n margin-left: -15px;\n margin-right: -15px;\n}\n@media (min-width: 768px) {\n .form-horizontal .control-label {\n text-align: right;\n margin-bottom: 0;\n padding-top: 7px;\n }\n}\n.form-horizontal .has-feedback .form-control-feedback {\n right: 15px;\n}\n@media (min-width: 768px) {\n .form-horizontal .form-group-lg .control-label {\n padding-top: 14.333333px;\n }\n}\n@media (min-width: 768px) {\n .form-horizontal .form-group-sm .control-label {\n padding-top: 6px;\n }\n}\n.btn {\n display: inline-block;\n margin-bottom: 0;\n font-weight: normal;\n text-align: center;\n vertical-align: middle;\n touch-action: manipulation;\n cursor: pointer;\n background-image: none;\n border: 1px solid transparent;\n white-space: nowrap;\n padding: 6px 12px;\n font-size: 14px;\n line-height: 1.42857143;\n border-radius: 4px;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.btn:focus,\n.btn:active:focus,\n.btn.active:focus,\n.btn.focus,\n.btn:active.focus,\n.btn.active.focus {\n outline: thin dotted;\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n.btn:hover,\n.btn:focus,\n.btn.focus {\n color: #333333;\n text-decoration: none;\n}\n.btn:active,\n.btn.active {\n outline: 0;\n background-image: none;\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn.disabled,\n.btn[disabled],\nfieldset[disabled] .btn {\n cursor: not-allowed;\n pointer-events: none;\n opacity: 0.65;\n filter: alpha(opacity=65);\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn-default {\n color: #333333;\n background-color: #ffffff;\n border-color: #cccccc;\n}\n.btn-default:hover,\n.btn-default:focus,\n.btn-default.focus,\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n color: #333333;\n background-color: #e6e6e6;\n border-color: #adadad;\n}\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n background-image: none;\n}\n.btn-default.disabled,\n.btn-default[disabled],\nfieldset[disabled] .btn-default,\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus,\n.btn-default.disabled:active,\n.btn-default[disabled]:active,\nfieldset[disabled] .btn-default:active,\n.btn-default.disabled.active,\n.btn-default[disabled].active,\nfieldset[disabled] .btn-default.active {\n background-color: #ffffff;\n border-color: #cccccc;\n}\n.btn-default .badge {\n color: #ffffff;\n background-color: #333333;\n}\n.btn-primary {\n color: #ffffff;\n background-color: #337ab7;\n border-color: #2e6da4;\n}\n.btn-primary:hover,\n.btn-primary:focus,\n.btn-primary.focus,\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n color: #ffffff;\n background-color: #286090;\n border-color: #204d74;\n}\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n background-image: none;\n}\n.btn-primary.disabled,\n.btn-primary[disabled],\nfieldset[disabled] .btn-primary,\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus,\n.btn-primary.disabled:active,\n.btn-primary[disabled]:active,\nfieldset[disabled] .btn-primary:active,\n.btn-primary.disabled.active,\n.btn-primary[disabled].active,\nfieldset[disabled] .btn-primary.active {\n background-color: #337ab7;\n border-color: #2e6da4;\n}\n.btn-primary .badge {\n color: #337ab7;\n background-color: #ffffff;\n}\n.btn-success {\n color: #ffffff;\n background-color: #5cb85c;\n border-color: #4cae4c;\n}\n.btn-success:hover,\n.btn-success:focus,\n.btn-success.focus,\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n color: #ffffff;\n background-color: #449d44;\n border-color: #398439;\n}\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n background-image: none;\n}\n.btn-success.disabled,\n.btn-success[disabled],\nfieldset[disabled] .btn-success,\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus,\n.btn-success.disabled:active,\n.btn-success[disabled]:active,\nfieldset[disabled] .btn-success:active,\n.btn-success.disabled.active,\n.btn-success[disabled].active,\nfieldset[disabled] .btn-success.active {\n background-color: #5cb85c;\n border-color: #4cae4c;\n}\n.btn-success .badge {\n color: #5cb85c;\n background-color: #ffffff;\n}\n.btn-info {\n color: #ffffff;\n background-color: #5bc0de;\n border-color: #46b8da;\n}\n.btn-info:hover,\n.btn-info:focus,\n.btn-info.focus,\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n color: #ffffff;\n background-color: #31b0d5;\n border-color: #269abc;\n}\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n background-image: none;\n}\n.btn-info.disabled,\n.btn-info[disabled],\nfieldset[disabled] .btn-info,\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus,\n.btn-info.disabled:active,\n.btn-info[disabled]:active,\nfieldset[disabled] .btn-info:active,\n.btn-info.disabled.active,\n.btn-info[disabled].active,\nfieldset[disabled] .btn-info.active {\n background-color: #5bc0de;\n border-color: #46b8da;\n}\n.btn-info .badge {\n color: #5bc0de;\n background-color: #ffffff;\n}\n.btn-warning {\n color: #ffffff;\n background-color: #f0ad4e;\n border-color: #eea236;\n}\n.btn-warning:hover,\n.btn-warning:focus,\n.btn-warning.focus,\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n color: #ffffff;\n background-color: #ec971f;\n border-color: #d58512;\n}\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n background-image: none;\n}\n.btn-warning.disabled,\n.btn-warning[disabled],\nfieldset[disabled] .btn-warning,\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus,\n.btn-warning.disabled:active,\n.btn-warning[disabled]:active,\nfieldset[disabled] .btn-warning:active,\n.btn-warning.disabled.active,\n.btn-warning[disabled].active,\nfieldset[disabled] .btn-warning.active {\n background-color: #f0ad4e;\n border-color: #eea236;\n}\n.btn-warning .badge {\n color: #f0ad4e;\n background-color: #ffffff;\n}\n.btn-danger {\n color: #ffffff;\n background-color: #d9534f;\n border-color: #d43f3a;\n}\n.btn-danger:hover,\n.btn-danger:focus,\n.btn-danger.focus,\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n color: #ffffff;\n background-color: #c9302c;\n border-color: #ac2925;\n}\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n background-image: none;\n}\n.btn-danger.disabled,\n.btn-danger[disabled],\nfieldset[disabled] .btn-danger,\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus,\n.btn-danger.disabled:active,\n.btn-danger[disabled]:active,\nfieldset[disabled] .btn-danger:active,\n.btn-danger.disabled.active,\n.btn-danger[disabled].active,\nfieldset[disabled] .btn-danger.active {\n background-color: #d9534f;\n border-color: #d43f3a;\n}\n.btn-danger .badge {\n color: #d9534f;\n background-color: #ffffff;\n}\n.btn-link {\n color: #337ab7;\n font-weight: normal;\n border-radius: 0;\n}\n.btn-link,\n.btn-link:active,\n.btn-link.active,\n.btn-link[disabled],\nfieldset[disabled] .btn-link {\n background-color: transparent;\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn-link,\n.btn-link:hover,\n.btn-link:focus,\n.btn-link:active {\n border-color: transparent;\n}\n.btn-link:hover,\n.btn-link:focus {\n color: #23527c;\n text-decoration: underline;\n background-color: transparent;\n}\n.btn-link[disabled]:hover,\nfieldset[disabled] .btn-link:hover,\n.btn-link[disabled]:focus,\nfieldset[disabled] .btn-link:focus {\n color: #777777;\n text-decoration: none;\n}\n.btn-lg,\n.btn-group-lg > .btn {\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\n.btn-sm,\n.btn-group-sm > .btn {\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.btn-xs,\n.btn-group-xs > .btn {\n padding: 1px 5px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.btn-block {\n display: block;\n width: 100%;\n}\n.btn-block + .btn-block {\n margin-top: 5px;\n}\ninput[type=\"submit\"].btn-block,\ninput[type=\"reset\"].btn-block,\ninput[type=\"button\"].btn-block {\n width: 100%;\n}\n.fade {\n opacity: 0;\n -webkit-transition: opacity 0.15s linear;\n -o-transition: opacity 0.15s linear;\n transition: opacity 0.15s linear;\n}\n.fade.in {\n opacity: 1;\n}\n.collapse {\n display: none;\n}\n.collapse.in {\n display: block;\n}\ntr.collapse.in {\n display: table-row;\n}\ntbody.collapse.in {\n display: table-row-group;\n}\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n -webkit-transition-property: height, visibility;\n transition-property: height, visibility;\n -webkit-transition-duration: 0.35s;\n transition-duration: 0.35s;\n -webkit-transition-timing-function: ease;\n transition-timing-function: ease;\n}\n.caret {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 2px;\n vertical-align: middle;\n border-top: 4px dashed;\n border-right: 4px solid transparent;\n border-left: 4px solid transparent;\n}\n.dropup,\n.dropdown {\n position: relative;\n}\n.dropdown-toggle:focus {\n outline: 0;\n}\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: 1000;\n display: none;\n float: left;\n min-width: 160px;\n padding: 5px 0;\n margin: 2px 0 0;\n list-style: none;\n font-size: 14px;\n text-align: left;\n background-color: #ffffff;\n border: 1px solid #cccccc;\n border: 1px solid rgba(0, 0, 0, 0.15);\n border-radius: 4px;\n -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n background-clip: padding-box;\n}\n.dropdown-menu.pull-right {\n right: 0;\n left: auto;\n}\n.dropdown-menu .divider {\n height: 1px;\n margin: 9px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.dropdown-menu > li > a {\n display: block;\n padding: 3px 20px;\n clear: both;\n font-weight: normal;\n line-height: 1.42857143;\n color: #333333;\n white-space: nowrap;\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n text-decoration: none;\n color: #262626;\n background-color: #f5f5f5;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n color: #ffffff;\n text-decoration: none;\n outline: 0;\n background-color: #337ab7;\n}\n.dropdown-menu > .disabled > a,\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n color: #777777;\n}\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n text-decoration: none;\n background-color: transparent;\n background-image: none;\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n cursor: not-allowed;\n}\n.open > .dropdown-menu {\n display: block;\n}\n.open > a {\n outline: 0;\n}\n.dropdown-menu-right {\n left: auto;\n right: 0;\n}\n.dropdown-menu-left {\n left: 0;\n right: auto;\n}\n.dropdown-header {\n display: block;\n padding: 3px 20px;\n font-size: 12px;\n line-height: 1.42857143;\n color: #777777;\n white-space: nowrap;\n}\n.dropdown-backdrop {\n position: fixed;\n left: 0;\n right: 0;\n bottom: 0;\n top: 0;\n z-index: 990;\n}\n.pull-right > .dropdown-menu {\n right: 0;\n left: auto;\n}\n.dropup .caret,\n.navbar-fixed-bottom .dropdown .caret {\n border-top: 0;\n border-bottom: 4px solid;\n content: \"\";\n}\n.dropup .dropdown-menu,\n.navbar-fixed-bottom .dropdown .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-bottom: 2px;\n}\n@media (min-width: 768px) {\n .navbar-right .dropdown-menu {\n left: auto;\n right: 0;\n }\n .navbar-right .dropdown-menu-left {\n left: 0;\n right: auto;\n }\n}\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-block;\n vertical-align: middle;\n}\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n position: relative;\n float: left;\n}\n.btn-group > .btn:hover,\n.btn-group-vertical > .btn:hover,\n.btn-group > .btn:focus,\n.btn-group-vertical > .btn:focus,\n.btn-group > .btn:active,\n.btn-group-vertical > .btn:active,\n.btn-group > .btn.active,\n.btn-group-vertical > .btn.active {\n z-index: 2;\n}\n.btn-group .btn + .btn,\n.btn-group .btn + .btn-group,\n.btn-group .btn-group + .btn,\n.btn-group .btn-group + .btn-group {\n margin-left: -1px;\n}\n.btn-toolbar {\n margin-left: -5px;\n}\n.btn-toolbar .btn-group,\n.btn-toolbar .input-group {\n float: left;\n}\n.btn-toolbar > .btn,\n.btn-toolbar > .btn-group,\n.btn-toolbar > .input-group {\n margin-left: 5px;\n}\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n border-radius: 0;\n}\n.btn-group > .btn:first-child {\n margin-left: 0;\n}\n.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group > .btn-group {\n float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n outline: 0;\n}\n.btn-group > .btn + .dropdown-toggle {\n padding-left: 8px;\n padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n padding-left: 12px;\n padding-right: 12px;\n}\n.btn-group.open .dropdown-toggle {\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-group.open .dropdown-toggle.btn-link {\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn .caret {\n margin-left: 0;\n}\n.btn-lg .caret {\n border-width: 5px 5px 0;\n border-bottom-width: 0;\n}\n.dropup .btn-lg .caret {\n border-width: 0 5px 5px;\n}\n.btn-group-vertical > .btn,\n.btn-group-vertical > .btn-group,\n.btn-group-vertical > .btn-group > .btn {\n display: block;\n float: none;\n width: 100%;\n max-width: 100%;\n}\n.btn-group-vertical > .btn-group > .btn {\n float: none;\n}\n.btn-group-vertical > .btn + .btn,\n.btn-group-vertical > .btn + .btn-group,\n.btn-group-vertical > .btn-group + .btn,\n.btn-group-vertical > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n}\n.btn-group-vertical > .btn:not(:first-child):not(:last-child) {\n border-radius: 0;\n}\n.btn-group-vertical > .btn:first-child:not(:last-child) {\n border-top-right-radius: 4px;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn:last-child:not(:first-child) {\n border-bottom-left-radius: 4px;\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group-justified {\n display: table;\n width: 100%;\n table-layout: fixed;\n border-collapse: separate;\n}\n.btn-group-justified > .btn,\n.btn-group-justified > .btn-group {\n float: none;\n display: table-cell;\n width: 1%;\n}\n.btn-group-justified > .btn-group .btn {\n width: 100%;\n}\n.btn-group-justified > .btn-group .dropdown-menu {\n left: auto;\n}\n[data-toggle=\"buttons\"] > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn input[type=\"checkbox\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none;\n}\n.input-group {\n position: relative;\n display: table;\n border-collapse: separate;\n}\n.input-group[class*=\"col-\"] {\n float: none;\n padding-left: 0;\n padding-right: 0;\n}\n.input-group .form-control {\n position: relative;\n z-index: 2;\n float: left;\n width: 100%;\n margin-bottom: 0;\n}\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\nselect.input-group-lg > .form-control,\nselect.input-group-lg > .input-group-addon,\nselect.input-group-lg > .input-group-btn > .btn {\n height: 46px;\n line-height: 46px;\n}\ntextarea.input-group-lg > .form-control,\ntextarea.input-group-lg > .input-group-addon,\ntextarea.input-group-lg > .input-group-btn > .btn,\nselect[multiple].input-group-lg > .form-control,\nselect[multiple].input-group-lg > .input-group-addon,\nselect[multiple].input-group-lg > .input-group-btn > .btn {\n height: auto;\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\nselect.input-group-sm > .form-control,\nselect.input-group-sm > .input-group-addon,\nselect.input-group-sm > .input-group-btn > .btn {\n height: 30px;\n line-height: 30px;\n}\ntextarea.input-group-sm > .form-control,\ntextarea.input-group-sm > .input-group-addon,\ntextarea.input-group-sm > .input-group-btn > .btn,\nselect[multiple].input-group-sm > .form-control,\nselect[multiple].input-group-sm > .input-group-addon,\nselect[multiple].input-group-sm > .input-group-btn > .btn {\n height: auto;\n}\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n display: table-cell;\n}\n.input-group-addon:not(:first-child):not(:last-child),\n.input-group-btn:not(:first-child):not(:last-child),\n.input-group .form-control:not(:first-child):not(:last-child) {\n border-radius: 0;\n}\n.input-group-addon,\n.input-group-btn {\n width: 1%;\n white-space: nowrap;\n vertical-align: middle;\n}\n.input-group-addon {\n padding: 6px 12px;\n font-size: 14px;\n font-weight: normal;\n line-height: 1;\n color: #555555;\n text-align: center;\n background-color: #eeeeee;\n border: 1px solid #cccccc;\n border-radius: 4px;\n}\n.input-group-addon.input-sm {\n padding: 5px 10px;\n font-size: 12px;\n border-radius: 3px;\n}\n.input-group-addon.input-lg {\n padding: 10px 16px;\n font-size: 18px;\n border-radius: 6px;\n}\n.input-group-addon input[type=\"radio\"],\n.input-group-addon input[type=\"checkbox\"] {\n margin-top: 0;\n}\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.input-group-addon:first-child {\n border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.input-group-addon:last-child {\n border-left: 0;\n}\n.input-group-btn {\n position: relative;\n font-size: 0;\n white-space: nowrap;\n}\n.input-group-btn > .btn {\n position: relative;\n}\n.input-group-btn > .btn + .btn {\n margin-left: -1px;\n}\n.input-group-btn > .btn:hover,\n.input-group-btn > .btn:focus,\n.input-group-btn > .btn:active {\n z-index: 2;\n}\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group {\n margin-right: -1px;\n}\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group {\n margin-left: -1px;\n}\n.nav {\n margin-bottom: 0;\n padding-left: 0;\n list-style: none;\n}\n.nav > li {\n position: relative;\n display: block;\n}\n.nav > li > a {\n position: relative;\n display: block;\n padding: 10px 15px;\n}\n.nav > li > a:hover,\n.nav > li > a:focus {\n text-decoration: none;\n background-color: #eeeeee;\n}\n.nav > li.disabled > a {\n color: #777777;\n}\n.nav > li.disabled > a:hover,\n.nav > li.disabled > a:focus {\n color: #777777;\n text-decoration: none;\n background-color: transparent;\n cursor: not-allowed;\n}\n.nav .open > a,\n.nav .open > a:hover,\n.nav .open > a:focus {\n background-color: #eeeeee;\n border-color: #337ab7;\n}\n.nav .nav-divider {\n height: 1px;\n margin: 9px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.nav > li > a > img {\n max-width: none;\n}\n.nav-tabs {\n border-bottom: 1px solid #dddddd;\n}\n.nav-tabs > li {\n float: left;\n margin-bottom: -1px;\n}\n.nav-tabs > li > a {\n margin-right: 2px;\n line-height: 1.42857143;\n border: 1px solid transparent;\n border-radius: 4px 4px 0 0;\n}\n.nav-tabs > li > a:hover {\n border-color: #eeeeee #eeeeee #dddddd;\n}\n.nav-tabs > li.active > a,\n.nav-tabs > li.active > a:hover,\n.nav-tabs > li.active > a:focus {\n color: #555555;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n border-bottom-color: transparent;\n cursor: default;\n}\n.nav-tabs.nav-justified {\n width: 100%;\n border-bottom: 0;\n}\n.nav-tabs.nav-justified > li {\n float: none;\n}\n.nav-tabs.nav-justified > li > a {\n text-align: center;\n margin-bottom: 5px;\n}\n.nav-tabs.nav-justified > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n}\n@media (min-width: 768px) {\n .nav-tabs.nav-justified > li {\n display: table-cell;\n width: 1%;\n }\n .nav-tabs.nav-justified > li > a {\n margin-bottom: 0;\n }\n}\n.nav-tabs.nav-justified > li > a {\n margin-right: 0;\n border-radius: 4px;\n}\n.nav-tabs.nav-justified > .active > a,\n.nav-tabs.nav-justified > .active > a:hover,\n.nav-tabs.nav-justified > .active > a:focus {\n border: 1px solid #dddddd;\n}\n@media (min-width: 768px) {\n .nav-tabs.nav-justified > li > a {\n border-bottom: 1px solid #dddddd;\n border-radius: 4px 4px 0 0;\n }\n .nav-tabs.nav-justified > .active > a,\n .nav-tabs.nav-justified > .active > a:hover,\n .nav-tabs.nav-justified > .active > a:focus {\n border-bottom-color: #ffffff;\n }\n}\n.nav-pills > li {\n float: left;\n}\n.nav-pills > li > a {\n border-radius: 4px;\n}\n.nav-pills > li + li {\n margin-left: 2px;\n}\n.nav-pills > li.active > a,\n.nav-pills > li.active > a:hover,\n.nav-pills > li.active > a:focus {\n color: #ffffff;\n background-color: #337ab7;\n}\n.nav-stacked > li {\n float: none;\n}\n.nav-stacked > li + li {\n margin-top: 2px;\n margin-left: 0;\n}\n.nav-justified {\n width: 100%;\n}\n.nav-justified > li {\n float: none;\n}\n.nav-justified > li > a {\n text-align: center;\n margin-bottom: 5px;\n}\n.nav-justified > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n}\n@media (min-width: 768px) {\n .nav-justified > li {\n display: table-cell;\n width: 1%;\n }\n .nav-justified > li > a {\n margin-bottom: 0;\n }\n}\n.nav-tabs-justified {\n border-bottom: 0;\n}\n.nav-tabs-justified > li > a {\n margin-right: 0;\n border-radius: 4px;\n}\n.nav-tabs-justified > .active > a,\n.nav-tabs-justified > .active > a:hover,\n.nav-tabs-justified > .active > a:focus {\n border: 1px solid #dddddd;\n}\n@media (min-width: 768px) {\n .nav-tabs-justified > li > a {\n border-bottom: 1px solid #dddddd;\n border-radius: 4px 4px 0 0;\n }\n .nav-tabs-justified > .active > a,\n .nav-tabs-justified > .active > a:hover,\n .nav-tabs-justified > .active > a:focus {\n border-bottom-color: #ffffff;\n }\n}\n.tab-content > .tab-pane {\n display: none;\n}\n.tab-content > .active {\n display: block;\n}\n.nav-tabs .dropdown-menu {\n margin-top: -1px;\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.navbar {\n position: relative;\n min-height: 50px;\n margin-bottom: 20px;\n border: 1px solid transparent;\n}\n@media (min-width: 768px) {\n .navbar {\n border-radius: 4px;\n }\n}\n@media (min-width: 768px) {\n .navbar-header {\n float: left;\n }\n}\n.navbar-collapse {\n overflow-x: visible;\n padding-right: 15px;\n padding-left: 15px;\n border-top: 1px solid transparent;\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);\n -webkit-overflow-scrolling: touch;\n}\n.navbar-collapse.in {\n overflow-y: auto;\n}\n@media (min-width: 768px) {\n .navbar-collapse {\n width: auto;\n border-top: 0;\n box-shadow: none;\n }\n .navbar-collapse.collapse {\n display: block !important;\n height: auto !important;\n padding-bottom: 0;\n overflow: visible !important;\n }\n .navbar-collapse.in {\n overflow-y: visible;\n }\n .navbar-fixed-top .navbar-collapse,\n .navbar-static-top .navbar-collapse,\n .navbar-fixed-bottom .navbar-collapse {\n padding-left: 0;\n padding-right: 0;\n }\n}\n.navbar-fixed-top .navbar-collapse,\n.navbar-fixed-bottom .navbar-collapse {\n max-height: 340px;\n}\n@media (max-device-width: 480px) and (orientation: landscape) {\n .navbar-fixed-top .navbar-collapse,\n .navbar-fixed-bottom .navbar-collapse {\n max-height: 200px;\n }\n}\n.container > .navbar-header,\n.container-fluid > .navbar-header,\n.container > .navbar-collapse,\n.container-fluid > .navbar-collapse {\n margin-right: -15px;\n margin-left: -15px;\n}\n@media (min-width: 768px) {\n .container > .navbar-header,\n .container-fluid > .navbar-header,\n .container > .navbar-collapse,\n .container-fluid > .navbar-collapse {\n margin-right: 0;\n margin-left: 0;\n }\n}\n.navbar-static-top {\n z-index: 1000;\n border-width: 0 0 1px;\n}\n@media (min-width: 768px) {\n .navbar-static-top {\n border-radius: 0;\n }\n}\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n position: fixed;\n right: 0;\n left: 0;\n z-index: 1030;\n}\n@media (min-width: 768px) {\n .navbar-fixed-top,\n .navbar-fixed-bottom {\n border-radius: 0;\n }\n}\n.navbar-fixed-top {\n top: 0;\n border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n bottom: 0;\n margin-bottom: 0;\n border-width: 1px 0 0;\n}\n.navbar-brand {\n float: left;\n padding: 15px 15px;\n font-size: 18px;\n line-height: 20px;\n height: 50px;\n}\n.navbar-brand:hover,\n.navbar-brand:focus {\n text-decoration: none;\n}\n.navbar-brand > img {\n display: block;\n}\n@media (min-width: 768px) {\n .navbar > .container .navbar-brand,\n .navbar > .container-fluid .navbar-brand {\n margin-left: -15px;\n }\n}\n.navbar-toggle {\n position: relative;\n float: right;\n margin-right: 15px;\n padding: 9px 10px;\n margin-top: 8px;\n margin-bottom: 8px;\n background-color: transparent;\n background-image: none;\n border: 1px solid transparent;\n border-radius: 4px;\n}\n.navbar-toggle:focus {\n outline: 0;\n}\n.navbar-toggle .icon-bar {\n display: block;\n width: 22px;\n height: 2px;\n border-radius: 1px;\n}\n.navbar-toggle .icon-bar + .icon-bar {\n margin-top: 4px;\n}\n@media (min-width: 768px) {\n .navbar-toggle {\n display: none;\n }\n}\n.navbar-nav {\n margin: 7.5px -15px;\n}\n.navbar-nav > li > a {\n padding-top: 10px;\n padding-bottom: 10px;\n line-height: 20px;\n}\n@media (max-width: 767px) {\n .navbar-nav .open .dropdown-menu {\n position: static;\n float: none;\n width: auto;\n margin-top: 0;\n background-color: transparent;\n border: 0;\n box-shadow: none;\n }\n .navbar-nav .open .dropdown-menu > li > a,\n .navbar-nav .open .dropdown-menu .dropdown-header {\n padding: 5px 15px 5px 25px;\n }\n .navbar-nav .open .dropdown-menu > li > a {\n line-height: 20px;\n }\n .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-nav .open .dropdown-menu > li > a:focus {\n background-image: none;\n }\n}\n@media (min-width: 768px) {\n .navbar-nav {\n float: left;\n margin: 0;\n }\n .navbar-nav > li {\n float: left;\n }\n .navbar-nav > li > a {\n padding-top: 15px;\n padding-bottom: 15px;\n }\n}\n.navbar-form {\n margin-left: -15px;\n margin-right: -15px;\n padding: 10px 15px;\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n margin-top: 8px;\n margin-bottom: 8px;\n}\n@media (min-width: 768px) {\n .navbar-form .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .navbar-form .form-control-static {\n display: inline-block;\n }\n .navbar-form .input-group {\n display: inline-table;\n vertical-align: middle;\n }\n .navbar-form .input-group .input-group-addon,\n .navbar-form .input-group .input-group-btn,\n .navbar-form .input-group .form-control {\n width: auto;\n }\n .navbar-form .input-group > .form-control {\n width: 100%;\n }\n .navbar-form .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .radio,\n .navbar-form .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .radio label,\n .navbar-form .checkbox label {\n padding-left: 0;\n }\n .navbar-form .radio input[type=\"radio\"],\n .navbar-form .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n .navbar-form .has-feedback .form-control-feedback {\n top: 0;\n }\n}\n@media (max-width: 767px) {\n .navbar-form .form-group {\n margin-bottom: 5px;\n }\n .navbar-form .form-group:last-child {\n margin-bottom: 0;\n }\n}\n@media (min-width: 768px) {\n .navbar-form {\n width: auto;\n border: 0;\n margin-left: 0;\n margin-right: 0;\n padding-top: 0;\n padding-bottom: 0;\n -webkit-box-shadow: none;\n box-shadow: none;\n }\n}\n.navbar-nav > li > .dropdown-menu {\n margin-top: 0;\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n margin-bottom: 0;\n border-top-right-radius: 4px;\n border-top-left-radius: 4px;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.navbar-btn {\n margin-top: 8px;\n margin-bottom: 8px;\n}\n.navbar-btn.btn-sm {\n margin-top: 10px;\n margin-bottom: 10px;\n}\n.navbar-btn.btn-xs {\n margin-top: 14px;\n margin-bottom: 14px;\n}\n.navbar-text {\n margin-top: 15px;\n margin-bottom: 15px;\n}\n@media (min-width: 768px) {\n .navbar-text {\n float: left;\n margin-left: 15px;\n margin-right: 15px;\n }\n}\n@media (min-width: 768px) {\n .navbar-left {\n float: left !important;\n }\n .navbar-right {\n float: right !important;\n margin-right: -15px;\n }\n .navbar-right ~ .navbar-right {\n margin-right: 0;\n }\n}\n.navbar-default {\n background-color: #f8f8f8;\n border-color: #e7e7e7;\n}\n.navbar-default .navbar-brand {\n color: #777777;\n}\n.navbar-default .navbar-brand:hover,\n.navbar-default .navbar-brand:focus {\n color: #5e5e5e;\n background-color: transparent;\n}\n.navbar-default .navbar-text {\n color: #777777;\n}\n.navbar-default .navbar-nav > li > a {\n color: #777777;\n}\n.navbar-default .navbar-nav > li > a:hover,\n.navbar-default .navbar-nav > li > a:focus {\n color: #333333;\n background-color: transparent;\n}\n.navbar-default .navbar-nav > .active > a,\n.navbar-default .navbar-nav > .active > a:hover,\n.navbar-default .navbar-nav > .active > a:focus {\n color: #555555;\n background-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .disabled > a,\n.navbar-default .navbar-nav > .disabled > a:hover,\n.navbar-default .navbar-nav > .disabled > a:focus {\n color: #cccccc;\n background-color: transparent;\n}\n.navbar-default .navbar-toggle {\n border-color: #dddddd;\n}\n.navbar-default .navbar-toggle:hover,\n.navbar-default .navbar-toggle:focus {\n background-color: #dddddd;\n}\n.navbar-default .navbar-toggle .icon-bar {\n background-color: #888888;\n}\n.navbar-default .navbar-collapse,\n.navbar-default .navbar-form {\n border-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .open > a:hover,\n.navbar-default .navbar-nav > .open > a:focus {\n background-color: #e7e7e7;\n color: #555555;\n}\n@media (max-width: 767px) {\n .navbar-default .navbar-nav .open .dropdown-menu > li > a {\n color: #777777;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {\n color: #333333;\n background-color: transparent;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a,\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #555555;\n background-color: #e7e7e7;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n color: #cccccc;\n background-color: transparent;\n }\n}\n.navbar-default .navbar-link {\n color: #777777;\n}\n.navbar-default .navbar-link:hover {\n color: #333333;\n}\n.navbar-default .btn-link {\n color: #777777;\n}\n.navbar-default .btn-link:hover,\n.navbar-default .btn-link:focus {\n color: #333333;\n}\n.navbar-default .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-default .btn-link:hover,\n.navbar-default .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-default .btn-link:focus {\n color: #cccccc;\n}\n.navbar-inverse {\n background-color: #222222;\n border-color: #080808;\n}\n.navbar-inverse .navbar-brand {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-brand:hover,\n.navbar-inverse .navbar-brand:focus {\n color: #ffffff;\n background-color: transparent;\n}\n.navbar-inverse .navbar-text {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a:hover,\n.navbar-inverse .navbar-nav > li > a:focus {\n color: #ffffff;\n background-color: transparent;\n}\n.navbar-inverse .navbar-nav > .active > a,\n.navbar-inverse .navbar-nav > .active > a:hover,\n.navbar-inverse .navbar-nav > .active > a:focus {\n color: #ffffff;\n background-color: #080808;\n}\n.navbar-inverse .navbar-nav > .disabled > a,\n.navbar-inverse .navbar-nav > .disabled > a:hover,\n.navbar-inverse .navbar-nav > .disabled > a:focus {\n color: #444444;\n background-color: transparent;\n}\n.navbar-inverse .navbar-toggle {\n border-color: #333333;\n}\n.navbar-inverse .navbar-toggle:hover,\n.navbar-inverse .navbar-toggle:focus {\n background-color: #333333;\n}\n.navbar-inverse .navbar-toggle .icon-bar {\n background-color: #ffffff;\n}\n.navbar-inverse .navbar-collapse,\n.navbar-inverse .navbar-form {\n border-color: #101010;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .open > a:hover,\n.navbar-inverse .navbar-nav > .open > a:focus {\n background-color: #080808;\n color: #ffffff;\n}\n@media (max-width: 767px) {\n .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {\n border-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu .divider {\n background-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {\n color: #9d9d9d;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {\n color: #ffffff;\n background-color: transparent;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #ffffff;\n background-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n color: #444444;\n background-color: transparent;\n }\n}\n.navbar-inverse .navbar-link {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-link:hover {\n color: #ffffff;\n}\n.navbar-inverse .btn-link {\n color: #9d9d9d;\n}\n.navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link:focus {\n color: #ffffff;\n}\n.navbar-inverse .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-inverse .btn-link:focus {\n color: #444444;\n}\n.breadcrumb {\n padding: 8px 15px;\n margin-bottom: 20px;\n list-style: none;\n background-color: #f5f5f5;\n border-radius: 4px;\n}\n.breadcrumb > li {\n display: inline-block;\n}\n.breadcrumb > li + li:before {\n content: \"/\\00a0\";\n padding: 0 5px;\n color: #cccccc;\n}\n.breadcrumb > .active {\n color: #777777;\n}\n.pagination {\n display: inline-block;\n padding-left: 0;\n margin: 20px 0;\n border-radius: 4px;\n}\n.pagination > li {\n display: inline;\n}\n.pagination > li > a,\n.pagination > li > span {\n position: relative;\n float: left;\n padding: 6px 12px;\n line-height: 1.42857143;\n text-decoration: none;\n color: #337ab7;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n margin-left: -1px;\n}\n.pagination > li:first-child > a,\n.pagination > li:first-child > span {\n margin-left: 0;\n border-bottom-left-radius: 4px;\n border-top-left-radius: 4px;\n}\n.pagination > li:last-child > a,\n.pagination > li:last-child > span {\n border-bottom-right-radius: 4px;\n border-top-right-radius: 4px;\n}\n.pagination > li > a:hover,\n.pagination > li > span:hover,\n.pagination > li > a:focus,\n.pagination > li > span:focus {\n color: #23527c;\n background-color: #eeeeee;\n border-color: #dddddd;\n}\n.pagination > .active > a,\n.pagination > .active > span,\n.pagination > .active > a:hover,\n.pagination > .active > span:hover,\n.pagination > .active > a:focus,\n.pagination > .active > span:focus {\n z-index: 2;\n color: #ffffff;\n background-color: #337ab7;\n border-color: #337ab7;\n cursor: default;\n}\n.pagination > .disabled > span,\n.pagination > .disabled > span:hover,\n.pagination > .disabled > span:focus,\n.pagination > .disabled > a,\n.pagination > .disabled > a:hover,\n.pagination > .disabled > a:focus {\n color: #777777;\n background-color: #ffffff;\n border-color: #dddddd;\n cursor: not-allowed;\n}\n.pagination-lg > li > a,\n.pagination-lg > li > span {\n padding: 10px 16px;\n font-size: 18px;\n}\n.pagination-lg > li:first-child > a,\n.pagination-lg > li:first-child > span {\n border-bottom-left-radius: 6px;\n border-top-left-radius: 6px;\n}\n.pagination-lg > li:last-child > a,\n.pagination-lg > li:last-child > span {\n border-bottom-right-radius: 6px;\n border-top-right-radius: 6px;\n}\n.pagination-sm > li > a,\n.pagination-sm > li > span {\n padding: 5px 10px;\n font-size: 12px;\n}\n.pagination-sm > li:first-child > a,\n.pagination-sm > li:first-child > span {\n border-bottom-left-radius: 3px;\n border-top-left-radius: 3px;\n}\n.pagination-sm > li:last-child > a,\n.pagination-sm > li:last-child > span {\n border-bottom-right-radius: 3px;\n border-top-right-radius: 3px;\n}\n.pager {\n padding-left: 0;\n margin: 20px 0;\n list-style: none;\n text-align: center;\n}\n.pager li {\n display: inline;\n}\n.pager li > a,\n.pager li > span {\n display: inline-block;\n padding: 5px 14px;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n border-radius: 15px;\n}\n.pager li > a:hover,\n.pager li > a:focus {\n text-decoration: none;\n background-color: #eeeeee;\n}\n.pager .next > a,\n.pager .next > span {\n float: right;\n}\n.pager .previous > a,\n.pager .previous > span {\n float: left;\n}\n.pager .disabled > a,\n.pager .disabled > a:hover,\n.pager .disabled > a:focus,\n.pager .disabled > span {\n color: #777777;\n background-color: #ffffff;\n cursor: not-allowed;\n}\n.label {\n display: inline;\n padding: .2em .6em .3em;\n font-size: 75%;\n font-weight: bold;\n line-height: 1;\n color: #ffffff;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: .25em;\n}\na.label:hover,\na.label:focus {\n color: #ffffff;\n text-decoration: none;\n cursor: pointer;\n}\n.label:empty {\n display: none;\n}\n.btn .label {\n position: relative;\n top: -1px;\n}\n.label-default {\n background-color: #777777;\n}\n.label-default[href]:hover,\n.label-default[href]:focus {\n background-color: #5e5e5e;\n}\n.label-primary {\n background-color: #337ab7;\n}\n.label-primary[href]:hover,\n.label-primary[href]:focus {\n background-color: #286090;\n}\n.label-success {\n background-color: #5cb85c;\n}\n.label-success[href]:hover,\n.label-success[href]:focus {\n background-color: #449d44;\n}\n.label-info {\n background-color: #5bc0de;\n}\n.label-info[href]:hover,\n.label-info[href]:focus {\n background-color: #31b0d5;\n}\n.label-warning {\n background-color: #f0ad4e;\n}\n.label-warning[href]:hover,\n.label-warning[href]:focus {\n background-color: #ec971f;\n}\n.label-danger {\n background-color: #d9534f;\n}\n.label-danger[href]:hover,\n.label-danger[href]:focus {\n background-color: #c9302c;\n}\n.badge {\n display: inline-block;\n min-width: 10px;\n padding: 3px 7px;\n font-size: 12px;\n font-weight: bold;\n color: #ffffff;\n line-height: 1;\n vertical-align: baseline;\n white-space: nowrap;\n text-align: center;\n background-color: #777777;\n border-radius: 10px;\n}\n.badge:empty {\n display: none;\n}\n.btn .badge {\n position: relative;\n top: -1px;\n}\n.btn-xs .badge,\n.btn-group-xs > .btn .badge {\n top: 0;\n padding: 1px 5px;\n}\na.badge:hover,\na.badge:focus {\n color: #ffffff;\n text-decoration: none;\n cursor: pointer;\n}\n.list-group-item.active > .badge,\n.nav-pills > .active > a > .badge {\n color: #337ab7;\n background-color: #ffffff;\n}\n.list-group-item > .badge {\n float: right;\n}\n.list-group-item > .badge + .badge {\n margin-right: 5px;\n}\n.nav-pills > li > a > .badge {\n margin-left: 3px;\n}\n.jumbotron {\n padding: 30px 15px;\n margin-bottom: 30px;\n color: inherit;\n background-color: #eeeeee;\n}\n.jumbotron h1,\n.jumbotron .h1 {\n color: inherit;\n}\n.jumbotron p {\n margin-bottom: 15px;\n font-size: 21px;\n font-weight: 200;\n}\n.jumbotron > hr {\n border-top-color: #d5d5d5;\n}\n.container .jumbotron,\n.container-fluid .jumbotron {\n border-radius: 6px;\n}\n.jumbotron .container {\n max-width: 100%;\n}\n@media screen and (min-width: 768px) {\n .jumbotron {\n padding: 48px 0;\n }\n .container .jumbotron,\n .container-fluid .jumbotron {\n padding-left: 60px;\n padding-right: 60px;\n }\n .jumbotron h1,\n .jumbotron .h1 {\n font-size: 63px;\n }\n}\n.thumbnail {\n display: block;\n padding: 4px;\n margin-bottom: 20px;\n line-height: 1.42857143;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n border-radius: 4px;\n -webkit-transition: border 0.2s ease-in-out;\n -o-transition: border 0.2s ease-in-out;\n transition: border 0.2s ease-in-out;\n}\n.thumbnail > img,\n.thumbnail a > img {\n margin-left: auto;\n margin-right: auto;\n}\na.thumbnail:hover,\na.thumbnail:focus,\na.thumbnail.active {\n border-color: #337ab7;\n}\n.thumbnail .caption {\n padding: 9px;\n color: #333333;\n}\n.alert {\n padding: 15px;\n margin-bottom: 20px;\n border: 1px solid transparent;\n border-radius: 4px;\n}\n.alert h4 {\n margin-top: 0;\n color: inherit;\n}\n.alert .alert-link {\n font-weight: bold;\n}\n.alert > p,\n.alert > ul {\n margin-bottom: 0;\n}\n.alert > p + p {\n margin-top: 5px;\n}\n.alert-dismissable,\n.alert-dismissible {\n padding-right: 35px;\n}\n.alert-dismissable .close,\n.alert-dismissible .close {\n position: relative;\n top: -2px;\n right: -21px;\n color: inherit;\n}\n.alert-success {\n background-color: #dff0d8;\n border-color: #d6e9c6;\n color: #3c763d;\n}\n.alert-success hr {\n border-top-color: #c9e2b3;\n}\n.alert-success .alert-link {\n color: #2b542c;\n}\n.alert-info {\n background-color: #d9edf7;\n border-color: #bce8f1;\n color: #31708f;\n}\n.alert-info hr {\n border-top-color: #a6e1ec;\n}\n.alert-info .alert-link {\n color: #245269;\n}\n.alert-warning {\n background-color: #fcf8e3;\n border-color: #faebcc;\n color: #8a6d3b;\n}\n.alert-warning hr {\n border-top-color: #f7e1b5;\n}\n.alert-warning .alert-link {\n color: #66512c;\n}\n.alert-danger {\n background-color: #f2dede;\n border-color: #ebccd1;\n color: #a94442;\n}\n.alert-danger hr {\n border-top-color: #e4b9c0;\n}\n.alert-danger .alert-link {\n color: #843534;\n}\n@-webkit-keyframes progress-bar-stripes {\n from {\n background-position: 40px 0;\n }\n to {\n background-position: 0 0;\n }\n}\n@keyframes progress-bar-stripes {\n from {\n background-position: 40px 0;\n }\n to {\n background-position: 0 0;\n }\n}\n.progress {\n overflow: hidden;\n height: 20px;\n margin-bottom: 20px;\n background-color: #f5f5f5;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n}\n.progress-bar {\n float: left;\n width: 0%;\n height: 100%;\n font-size: 12px;\n line-height: 20px;\n color: #ffffff;\n text-align: center;\n background-color: #337ab7;\n -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n -webkit-transition: width 0.6s ease;\n -o-transition: width 0.6s ease;\n transition: width 0.6s ease;\n}\n.progress-striped .progress-bar,\n.progress-bar-striped {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-size: 40px 40px;\n}\n.progress.active .progress-bar,\n.progress-bar.active {\n -webkit-animation: progress-bar-stripes 2s linear infinite;\n -o-animation: progress-bar-stripes 2s linear infinite;\n animation: progress-bar-stripes 2s linear infinite;\n}\n.progress-bar-success {\n background-color: #5cb85c;\n}\n.progress-striped .progress-bar-success {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-info {\n background-color: #5bc0de;\n}\n.progress-striped .progress-bar-info {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-warning {\n background-color: #f0ad4e;\n}\n.progress-striped .progress-bar-warning {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-danger {\n background-color: #d9534f;\n}\n.progress-striped .progress-bar-danger {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.media {\n margin-top: 15px;\n}\n.media:first-child {\n margin-top: 0;\n}\n.media,\n.media-body {\n zoom: 1;\n overflow: hidden;\n}\n.media-body {\n width: 10000px;\n}\n.media-object {\n display: block;\n}\n.media-right,\n.media > .pull-right {\n padding-left: 10px;\n}\n.media-left,\n.media > .pull-left {\n padding-right: 10px;\n}\n.media-left,\n.media-right,\n.media-body {\n display: table-cell;\n vertical-align: top;\n}\n.media-middle {\n vertical-align: middle;\n}\n.media-bottom {\n vertical-align: bottom;\n}\n.media-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.media-list {\n padding-left: 0;\n list-style: none;\n}\n.list-group {\n margin-bottom: 20px;\n padding-left: 0;\n}\n.list-group-item {\n position: relative;\n display: block;\n padding: 10px 15px;\n margin-bottom: -1px;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n}\n.list-group-item:first-child {\n border-top-right-radius: 4px;\n border-top-left-radius: 4px;\n}\n.list-group-item:last-child {\n margin-bottom: 0;\n border-bottom-right-radius: 4px;\n border-bottom-left-radius: 4px;\n}\na.list-group-item {\n color: #555555;\n}\na.list-group-item .list-group-item-heading {\n color: #333333;\n}\na.list-group-item:hover,\na.list-group-item:focus {\n text-decoration: none;\n color: #555555;\n background-color: #f5f5f5;\n}\n.list-group-item.disabled,\n.list-group-item.disabled:hover,\n.list-group-item.disabled:focus {\n background-color: #eeeeee;\n color: #777777;\n cursor: not-allowed;\n}\n.list-group-item.disabled .list-group-item-heading,\n.list-group-item.disabled:hover .list-group-item-heading,\n.list-group-item.disabled:focus .list-group-item-heading {\n color: inherit;\n}\n.list-group-item.disabled .list-group-item-text,\n.list-group-item.disabled:hover .list-group-item-text,\n.list-group-item.disabled:focus .list-group-item-text {\n color: #777777;\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n z-index: 2;\n color: #ffffff;\n background-color: #337ab7;\n border-color: #337ab7;\n}\n.list-group-item.active .list-group-item-heading,\n.list-group-item.active:hover .list-group-item-heading,\n.list-group-item.active:focus .list-group-item-heading,\n.list-group-item.active .list-group-item-heading > small,\n.list-group-item.active:hover .list-group-item-heading > small,\n.list-group-item.active:focus .list-group-item-heading > small,\n.list-group-item.active .list-group-item-heading > .small,\n.list-group-item.active:hover .list-group-item-heading > .small,\n.list-group-item.active:focus .list-group-item-heading > .small {\n color: inherit;\n}\n.list-group-item.active .list-group-item-text,\n.list-group-item.active:hover .list-group-item-text,\n.list-group-item.active:focus .list-group-item-text {\n color: #c7ddef;\n}\n.list-group-item-success {\n color: #3c763d;\n background-color: #dff0d8;\n}\na.list-group-item-success {\n color: #3c763d;\n}\na.list-group-item-success .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-success:hover,\na.list-group-item-success:focus {\n color: #3c763d;\n background-color: #d0e9c6;\n}\na.list-group-item-success.active,\na.list-group-item-success.active:hover,\na.list-group-item-success.active:focus {\n color: #fff;\n background-color: #3c763d;\n border-color: #3c763d;\n}\n.list-group-item-info {\n color: #31708f;\n background-color: #d9edf7;\n}\na.list-group-item-info {\n color: #31708f;\n}\na.list-group-item-info .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-info:hover,\na.list-group-item-info:focus {\n color: #31708f;\n background-color: #c4e3f3;\n}\na.list-group-item-info.active,\na.list-group-item-info.active:hover,\na.list-group-item-info.active:focus {\n color: #fff;\n background-color: #31708f;\n border-color: #31708f;\n}\n.list-group-item-warning {\n color: #8a6d3b;\n background-color: #fcf8e3;\n}\na.list-group-item-warning {\n color: #8a6d3b;\n}\na.list-group-item-warning .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-warning:hover,\na.list-group-item-warning:focus {\n color: #8a6d3b;\n background-color: #faf2cc;\n}\na.list-group-item-warning.active,\na.list-group-item-warning.active:hover,\na.list-group-item-warning.active:focus {\n color: #fff;\n background-color: #8a6d3b;\n border-color: #8a6d3b;\n}\n.list-group-item-danger {\n color: #a94442;\n background-color: #f2dede;\n}\na.list-group-item-danger {\n color: #a94442;\n}\na.list-group-item-danger .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-danger:hover,\na.list-group-item-danger:focus {\n color: #a94442;\n background-color: #ebcccc;\n}\na.list-group-item-danger.active,\na.list-group-item-danger.active:hover,\na.list-group-item-danger.active:focus {\n color: #fff;\n background-color: #a94442;\n border-color: #a94442;\n}\n.list-group-item-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.list-group-item-text {\n margin-bottom: 0;\n line-height: 1.3;\n}\n.panel {\n margin-bottom: 20px;\n background-color: #ffffff;\n border: 1px solid transparent;\n border-radius: 4px;\n -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.panel-body {\n padding: 15px;\n}\n.panel-heading {\n padding: 10px 15px;\n border-bottom: 1px solid transparent;\n border-top-right-radius: 3px;\n border-top-left-radius: 3px;\n}\n.panel-heading > .dropdown .dropdown-toggle {\n color: inherit;\n}\n.panel-title {\n margin-top: 0;\n margin-bottom: 0;\n font-size: 16px;\n color: inherit;\n}\n.panel-title > a,\n.panel-title > small,\n.panel-title > .small,\n.panel-title > small > a,\n.panel-title > .small > a {\n color: inherit;\n}\n.panel-footer {\n padding: 10px 15px;\n background-color: #f5f5f5;\n border-top: 1px solid #dddddd;\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .list-group,\n.panel > .panel-collapse > .list-group {\n margin-bottom: 0;\n}\n.panel > .list-group .list-group-item,\n.panel > .panel-collapse > .list-group .list-group-item {\n border-width: 1px 0;\n border-radius: 0;\n}\n.panel > .list-group:first-child .list-group-item:first-child,\n.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {\n border-top: 0;\n border-top-right-radius: 3px;\n border-top-left-radius: 3px;\n}\n.panel > .list-group:last-child .list-group-item:last-child,\n.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {\n border-bottom: 0;\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel-heading + .list-group .list-group-item:first-child {\n border-top-width: 0;\n}\n.list-group + .panel-footer {\n border-top-width: 0;\n}\n.panel > .table,\n.panel > .table-responsive > .table,\n.panel > .panel-collapse > .table {\n margin-bottom: 0;\n}\n.panel > .table caption,\n.panel > .table-responsive > .table caption,\n.panel > .panel-collapse > .table caption {\n padding-left: 15px;\n padding-right: 15px;\n}\n.panel > .table:first-child,\n.panel > .table-responsive:first-child > .table:first-child {\n border-top-right-radius: 3px;\n border-top-left-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {\n border-top-left-radius: 3px;\n border-top-right-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {\n border-top-left-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {\n border-top-right-radius: 3px;\n}\n.panel > .table:last-child,\n.panel > .table-responsive:last-child > .table:last-child {\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {\n border-bottom-left-radius: 3px;\n border-bottom-right-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {\n border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {\n border-bottom-right-radius: 3px;\n}\n.panel > .panel-body + .table,\n.panel > .panel-body + .table-responsive,\n.panel > .table + .panel-body,\n.panel > .table-responsive + .panel-body {\n border-top: 1px solid #dddddd;\n}\n.panel > .table > tbody:first-child > tr:first-child th,\n.panel > .table > tbody:first-child > tr:first-child td {\n border-top: 0;\n}\n.panel > .table-bordered,\n.panel > .table-responsive > .table-bordered {\n border: 0;\n}\n.panel > .table-bordered > thead > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,\n.panel > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-bordered > thead > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,\n.panel > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-bordered > tfoot > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-left: 0;\n}\n.panel > .table-bordered > thead > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,\n.panel > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-bordered > thead > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,\n.panel > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-bordered > tfoot > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: 0;\n}\n.panel > .table-bordered > thead > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,\n.panel > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-bordered > thead > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,\n.panel > .table-bordered > tbody > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {\n border-bottom: 0;\n}\n.panel > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-bordered > tfoot > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {\n border-bottom: 0;\n}\n.panel > .table-responsive {\n border: 0;\n margin-bottom: 0;\n}\n.panel-group {\n margin-bottom: 20px;\n}\n.panel-group .panel {\n margin-bottom: 0;\n border-radius: 4px;\n}\n.panel-group .panel + .panel {\n margin-top: 5px;\n}\n.panel-group .panel-heading {\n border-bottom: 0;\n}\n.panel-group .panel-heading + .panel-collapse > .panel-body,\n.panel-group .panel-heading + .panel-collapse > .list-group {\n border-top: 1px solid #dddddd;\n}\n.panel-group .panel-footer {\n border-top: 0;\n}\n.panel-group .panel-footer + .panel-collapse .panel-body {\n border-bottom: 1px solid #dddddd;\n}\n.panel-default {\n border-color: #dddddd;\n}\n.panel-default > .panel-heading {\n color: #333333;\n background-color: #f5f5f5;\n border-color: #dddddd;\n}\n.panel-default > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #dddddd;\n}\n.panel-default > .panel-heading .badge {\n color: #f5f5f5;\n background-color: #333333;\n}\n.panel-default > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #dddddd;\n}\n.panel-primary {\n border-color: #337ab7;\n}\n.panel-primary > .panel-heading {\n color: #ffffff;\n background-color: #337ab7;\n border-color: #337ab7;\n}\n.panel-primary > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #337ab7;\n}\n.panel-primary > .panel-heading .badge {\n color: #337ab7;\n background-color: #ffffff;\n}\n.panel-primary > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #337ab7;\n}\n.panel-success {\n border-color: #d6e9c6;\n}\n.panel-success > .panel-heading {\n color: #3c763d;\n background-color: #dff0d8;\n border-color: #d6e9c6;\n}\n.panel-success > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #d6e9c6;\n}\n.panel-success > .panel-heading .badge {\n color: #dff0d8;\n background-color: #3c763d;\n}\n.panel-success > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #d6e9c6;\n}\n.panel-info {\n border-color: #bce8f1;\n}\n.panel-info > .panel-heading {\n color: #31708f;\n background-color: #d9edf7;\n border-color: #bce8f1;\n}\n.panel-info > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #bce8f1;\n}\n.panel-info > .panel-heading .badge {\n color: #d9edf7;\n background-color: #31708f;\n}\n.panel-info > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #bce8f1;\n}\n.panel-warning {\n border-color: #faebcc;\n}\n.panel-warning > .panel-heading {\n color: #8a6d3b;\n background-color: #fcf8e3;\n border-color: #faebcc;\n}\n.panel-warning > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #faebcc;\n}\n.panel-warning > .panel-heading .badge {\n color: #fcf8e3;\n background-color: #8a6d3b;\n}\n.panel-warning > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #faebcc;\n}\n.panel-danger {\n border-color: #ebccd1;\n}\n.panel-danger > .panel-heading {\n color: #a94442;\n background-color: #f2dede;\n border-color: #ebccd1;\n}\n.panel-danger > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #ebccd1;\n}\n.panel-danger > .panel-heading .badge {\n color: #f2dede;\n background-color: #a94442;\n}\n.panel-danger > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #ebccd1;\n}\n.embed-responsive {\n position: relative;\n display: block;\n height: 0;\n padding: 0;\n overflow: hidden;\n}\n.embed-responsive .embed-responsive-item,\n.embed-responsive iframe,\n.embed-responsive embed,\n.embed-responsive object,\n.embed-responsive video {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n height: 100%;\n width: 100%;\n border: 0;\n}\n.embed-responsive-16by9 {\n padding-bottom: 56.25%;\n}\n.embed-responsive-4by3 {\n padding-bottom: 75%;\n}\n.well {\n min-height: 20px;\n padding: 19px;\n margin-bottom: 20px;\n background-color: #f5f5f5;\n border: 1px solid #e3e3e3;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.well blockquote {\n border-color: #ddd;\n border-color: rgba(0, 0, 0, 0.15);\n}\n.well-lg {\n padding: 24px;\n border-radius: 6px;\n}\n.well-sm {\n padding: 9px;\n border-radius: 3px;\n}\n.close {\n float: right;\n font-size: 21px;\n font-weight: bold;\n line-height: 1;\n color: #000000;\n text-shadow: 0 1px 0 #ffffff;\n opacity: 0.2;\n filter: alpha(opacity=20);\n}\n.close:hover,\n.close:focus {\n color: #000000;\n text-decoration: none;\n cursor: pointer;\n opacity: 0.5;\n filter: alpha(opacity=50);\n}\nbutton.close {\n padding: 0;\n cursor: pointer;\n background: transparent;\n border: 0;\n -webkit-appearance: none;\n}\n.modal-open {\n overflow: hidden;\n}\n.modal {\n display: none;\n overflow: hidden;\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1050;\n -webkit-overflow-scrolling: touch;\n outline: 0;\n}\n.modal.fade .modal-dialog {\n -webkit-transform: translate(0, -25%);\n -ms-transform: translate(0, -25%);\n -o-transform: translate(0, -25%);\n transform: translate(0, -25%);\n -webkit-transition: -webkit-transform 0.3s ease-out;\n -moz-transition: -moz-transform 0.3s ease-out;\n -o-transition: -o-transform 0.3s ease-out;\n transition: transform 0.3s ease-out;\n}\n.modal.in .modal-dialog {\n -webkit-transform: translate(0, 0);\n -ms-transform: translate(0, 0);\n -o-transform: translate(0, 0);\n transform: translate(0, 0);\n}\n.modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto;\n}\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 10px;\n}\n.modal-content {\n position: relative;\n background-color: #ffffff;\n border: 1px solid #999999;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 6px;\n -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n background-clip: padding-box;\n outline: 0;\n}\n.modal-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1040;\n background-color: #000000;\n}\n.modal-backdrop.fade {\n opacity: 0;\n filter: alpha(opacity=0);\n}\n.modal-backdrop.in {\n opacity: 0.5;\n filter: alpha(opacity=50);\n}\n.modal-header {\n padding: 15px;\n border-bottom: 1px solid #e5e5e5;\n min-height: 16.42857143px;\n}\n.modal-header .close {\n margin-top: -2px;\n}\n.modal-title {\n margin: 0;\n line-height: 1.42857143;\n}\n.modal-body {\n position: relative;\n padding: 15px;\n}\n.modal-footer {\n padding: 15px;\n text-align: right;\n border-top: 1px solid #e5e5e5;\n}\n.modal-footer .btn + .btn {\n margin-left: 5px;\n margin-bottom: 0;\n}\n.modal-footer .btn-group .btn + .btn {\n margin-left: -1px;\n}\n.modal-footer .btn-block + .btn-block {\n margin-left: 0;\n}\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll;\n}\n@media (min-width: 768px) {\n .modal-dialog {\n width: 600px;\n margin: 30px auto;\n }\n .modal-content {\n -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n }\n .modal-sm {\n width: 300px;\n }\n}\n@media (min-width: 992px) {\n .modal-lg {\n width: 900px;\n }\n}\n.tooltip {\n position: absolute;\n z-index: 1070;\n display: block;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 12px;\n font-weight: normal;\n line-height: 1.4;\n opacity: 0;\n filter: alpha(opacity=0);\n}\n.tooltip.in {\n opacity: 0.9;\n filter: alpha(opacity=90);\n}\n.tooltip.top {\n margin-top: -3px;\n padding: 5px 0;\n}\n.tooltip.right {\n margin-left: 3px;\n padding: 0 5px;\n}\n.tooltip.bottom {\n margin-top: 3px;\n padding: 5px 0;\n}\n.tooltip.left {\n margin-left: -3px;\n padding: 0 5px;\n}\n.tooltip-inner {\n max-width: 200px;\n padding: 3px 8px;\n color: #ffffff;\n text-align: center;\n text-decoration: none;\n background-color: #000000;\n border-radius: 4px;\n}\n.tooltip-arrow {\n position: absolute;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n.tooltip.top .tooltip-arrow {\n bottom: 0;\n left: 50%;\n margin-left: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000000;\n}\n.tooltip.top-left .tooltip-arrow {\n bottom: 0;\n right: 5px;\n margin-bottom: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000000;\n}\n.tooltip.top-right .tooltip-arrow {\n bottom: 0;\n left: 5px;\n margin-bottom: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000000;\n}\n.tooltip.right .tooltip-arrow {\n top: 50%;\n left: 0;\n margin-top: -5px;\n border-width: 5px 5px 5px 0;\n border-right-color: #000000;\n}\n.tooltip.left .tooltip-arrow {\n top: 50%;\n right: 0;\n margin-top: -5px;\n border-width: 5px 0 5px 5px;\n border-left-color: #000000;\n}\n.tooltip.bottom .tooltip-arrow {\n top: 0;\n left: 50%;\n margin-left: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000000;\n}\n.tooltip.bottom-left .tooltip-arrow {\n top: 0;\n right: 5px;\n margin-top: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000000;\n}\n.tooltip.bottom-right .tooltip-arrow {\n top: 0;\n left: 5px;\n margin-top: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000000;\n}\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: 1060;\n display: none;\n max-width: 276px;\n padding: 1px;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 14px;\n font-weight: normal;\n line-height: 1.42857143;\n text-align: left;\n background-color: #ffffff;\n background-clip: padding-box;\n border: 1px solid #cccccc;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 6px;\n -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n white-space: normal;\n}\n.popover.top {\n margin-top: -10px;\n}\n.popover.right {\n margin-left: 10px;\n}\n.popover.bottom {\n margin-top: 10px;\n}\n.popover.left {\n margin-left: -10px;\n}\n.popover-title {\n margin: 0;\n padding: 8px 14px;\n font-size: 14px;\n background-color: #f7f7f7;\n border-bottom: 1px solid #ebebeb;\n border-radius: 5px 5px 0 0;\n}\n.popover-content {\n padding: 9px 14px;\n}\n.popover > .arrow,\n.popover > .arrow:after {\n position: absolute;\n display: block;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n.popover > .arrow {\n border-width: 11px;\n}\n.popover > .arrow:after {\n border-width: 10px;\n content: \"\";\n}\n.popover.top > .arrow {\n left: 50%;\n margin-left: -11px;\n border-bottom-width: 0;\n border-top-color: #999999;\n border-top-color: rgba(0, 0, 0, 0.25);\n bottom: -11px;\n}\n.popover.top > .arrow:after {\n content: \" \";\n bottom: 1px;\n margin-left: -10px;\n border-bottom-width: 0;\n border-top-color: #ffffff;\n}\n.popover.right > .arrow {\n top: 50%;\n left: -11px;\n margin-top: -11px;\n border-left-width: 0;\n border-right-color: #999999;\n border-right-color: rgba(0, 0, 0, 0.25);\n}\n.popover.right > .arrow:after {\n content: \" \";\n left: 1px;\n bottom: -10px;\n border-left-width: 0;\n border-right-color: #ffffff;\n}\n.popover.bottom > .arrow {\n left: 50%;\n margin-left: -11px;\n border-top-width: 0;\n border-bottom-color: #999999;\n border-bottom-color: rgba(0, 0, 0, 0.25);\n top: -11px;\n}\n.popover.bottom > .arrow:after {\n content: \" \";\n top: 1px;\n margin-left: -10px;\n border-top-width: 0;\n border-bottom-color: #ffffff;\n}\n.popover.left > .arrow {\n top: 50%;\n right: -11px;\n margin-top: -11px;\n border-right-width: 0;\n border-left-color: #999999;\n border-left-color: rgba(0, 0, 0, 0.25);\n}\n.popover.left > .arrow:after {\n content: \" \";\n right: 1px;\n border-right-width: 0;\n border-left-color: #ffffff;\n bottom: -10px;\n}\n.carousel {\n position: relative;\n}\n.carousel-inner {\n position: relative;\n overflow: hidden;\n width: 100%;\n}\n.carousel-inner > .item {\n display: none;\n position: relative;\n -webkit-transition: 0.6s ease-in-out left;\n -o-transition: 0.6s ease-in-out left;\n transition: 0.6s ease-in-out left;\n}\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n line-height: 1;\n}\n@media all and (transform-3d), (-webkit-transform-3d) {\n .carousel-inner > .item {\n -webkit-transition: -webkit-transform 0.6s ease-in-out;\n -moz-transition: -moz-transform 0.6s ease-in-out;\n -o-transition: -o-transform 0.6s ease-in-out;\n transition: transform 0.6s ease-in-out;\n -webkit-backface-visibility: hidden;\n -moz-backface-visibility: hidden;\n backface-visibility: hidden;\n -webkit-perspective: 1000;\n -moz-perspective: 1000;\n perspective: 1000;\n }\n .carousel-inner > .item.next,\n .carousel-inner > .item.active.right {\n -webkit-transform: translate3d(100%, 0, 0);\n transform: translate3d(100%, 0, 0);\n left: 0;\n }\n .carousel-inner > .item.prev,\n .carousel-inner > .item.active.left {\n -webkit-transform: translate3d(-100%, 0, 0);\n transform: translate3d(-100%, 0, 0);\n left: 0;\n }\n .carousel-inner > .item.next.left,\n .carousel-inner > .item.prev.right,\n .carousel-inner > .item.active {\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n left: 0;\n }\n}\n.carousel-inner > .active,\n.carousel-inner > .next,\n.carousel-inner > .prev {\n display: block;\n}\n.carousel-inner > .active {\n left: 0;\n}\n.carousel-inner > .next,\n.carousel-inner > .prev {\n position: absolute;\n top: 0;\n width: 100%;\n}\n.carousel-inner > .next {\n left: 100%;\n}\n.carousel-inner > .prev {\n left: -100%;\n}\n.carousel-inner > .next.left,\n.carousel-inner > .prev.right {\n left: 0;\n}\n.carousel-inner > .active.left {\n left: -100%;\n}\n.carousel-inner > .active.right {\n left: 100%;\n}\n.carousel-control {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n width: 15%;\n opacity: 0.5;\n filter: alpha(opacity=50);\n font-size: 20px;\n color: #ffffff;\n text-align: center;\n text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n}\n.carousel-control.left {\n background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);\n}\n.carousel-control.right {\n left: auto;\n right: 0;\n background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);\n}\n.carousel-control:hover,\n.carousel-control:focus {\n outline: 0;\n color: #ffffff;\n text-decoration: none;\n opacity: 0.9;\n filter: alpha(opacity=90);\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-left,\n.carousel-control .glyphicon-chevron-right {\n position: absolute;\n top: 50%;\n z-index: 5;\n display: inline-block;\n}\n.carousel-control .icon-prev,\n.carousel-control .glyphicon-chevron-left {\n left: 50%;\n margin-left: -10px;\n}\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-right {\n right: 50%;\n margin-right: -10px;\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next {\n width: 20px;\n height: 20px;\n margin-top: -10px;\n line-height: 1;\n font-family: serif;\n}\n.carousel-control .icon-prev:before {\n content: '\\2039';\n}\n.carousel-control .icon-next:before {\n content: '\\203a';\n}\n.carousel-indicators {\n position: absolute;\n bottom: 10px;\n left: 50%;\n z-index: 15;\n width: 60%;\n margin-left: -30%;\n padding-left: 0;\n list-style: none;\n text-align: center;\n}\n.carousel-indicators li {\n display: inline-block;\n width: 10px;\n height: 10px;\n margin: 1px;\n text-indent: -999px;\n border: 1px solid #ffffff;\n border-radius: 10px;\n cursor: pointer;\n background-color: #000 \\9;\n background-color: rgba(0, 0, 0, 0);\n}\n.carousel-indicators .active {\n margin: 0;\n width: 12px;\n height: 12px;\n background-color: #ffffff;\n}\n.carousel-caption {\n position: absolute;\n left: 15%;\n right: 15%;\n bottom: 20px;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: #ffffff;\n text-align: center;\n text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n}\n.carousel-caption .btn {\n text-shadow: none;\n}\n@media screen and (min-width: 768px) {\n .carousel-control .glyphicon-chevron-left,\n .carousel-control .glyphicon-chevron-right,\n .carousel-control .icon-prev,\n .carousel-control .icon-next {\n width: 30px;\n height: 30px;\n margin-top: -15px;\n font-size: 30px;\n }\n .carousel-control .glyphicon-chevron-left,\n .carousel-control .icon-prev {\n margin-left: -15px;\n }\n .carousel-control .glyphicon-chevron-right,\n .carousel-control .icon-next {\n margin-right: -15px;\n }\n .carousel-caption {\n left: 20%;\n right: 20%;\n padding-bottom: 30px;\n }\n .carousel-indicators {\n bottom: 20px;\n }\n}\n.clearfix:before,\n.clearfix:after,\n.dl-horizontal dd:before,\n.dl-horizontal dd:after,\n.container:before,\n.container:after,\n.container-fluid:before,\n.container-fluid:after,\n.row:before,\n.row:after,\n.form-horizontal .form-group:before,\n.form-horizontal .form-group:after,\n.btn-toolbar:before,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:before,\n.btn-group-vertical > .btn-group:after,\n.nav:before,\n.nav:after,\n.navbar:before,\n.navbar:after,\n.navbar-header:before,\n.navbar-header:after,\n.navbar-collapse:before,\n.navbar-collapse:after,\n.pager:before,\n.pager:after,\n.panel-body:before,\n.panel-body:after,\n.modal-footer:before,\n.modal-footer:after {\n content: \" \";\n display: table;\n}\n.clearfix:after,\n.dl-horizontal dd:after,\n.container:after,\n.container-fluid:after,\n.row:after,\n.form-horizontal .form-group:after,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:after,\n.nav:after,\n.navbar:after,\n.navbar-header:after,\n.navbar-collapse:after,\n.pager:after,\n.panel-body:after,\n.modal-footer:after {\n clear: both;\n}\n.center-block {\n display: block;\n margin-left: auto;\n margin-right: auto;\n}\n.pull-right {\n float: right !important;\n}\n.pull-left {\n float: left !important;\n}\n.hide {\n display: none !important;\n}\n.show {\n display: block !important;\n}\n.invisible {\n visibility: hidden;\n}\n.text-hide {\n font: 0/0 a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n.hidden {\n display: none !important;\n}\n.affix {\n position: fixed;\n}\n@-ms-viewport {\n width: device-width;\n}\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n display: none !important;\n}\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n display: none !important;\n}\n@media (max-width: 767px) {\n .visible-xs {\n display: block !important;\n }\n table.visible-xs {\n display: table;\n }\n tr.visible-xs {\n display: table-row !important;\n }\n th.visible-xs,\n td.visible-xs {\n display: table-cell !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-block {\n display: block !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-inline {\n display: inline !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm {\n display: block !important;\n }\n table.visible-sm {\n display: table;\n }\n tr.visible-sm {\n display: table-row !important;\n }\n th.visible-sm,\n td.visible-sm {\n display: table-cell !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-block {\n display: block !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-inline {\n display: inline !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md {\n display: block !important;\n }\n table.visible-md {\n display: table;\n }\n tr.visible-md {\n display: table-row !important;\n }\n th.visible-md,\n td.visible-md {\n display: table-cell !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-block {\n display: block !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-inline {\n display: inline !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg {\n display: block !important;\n }\n table.visible-lg {\n display: table;\n }\n tr.visible-lg {\n display: table-row !important;\n }\n th.visible-lg,\n td.visible-lg {\n display: table-cell !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-block {\n display: block !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-inline {\n display: inline !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-inline-block {\n display: inline-block !important;\n }\n}\n@media (max-width: 767px) {\n .hidden-xs {\n display: none !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .hidden-sm {\n display: none !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .hidden-md {\n display: none !important;\n }\n}\n@media (min-width: 1200px) {\n .hidden-lg {\n display: none !important;\n }\n}\n.visible-print {\n display: none !important;\n}\n@media print {\n .visible-print {\n display: block !important;\n }\n table.visible-print {\n display: table;\n }\n tr.visible-print {\n display: table-row !important;\n }\n th.visible-print,\n td.visible-print {\n display: table-cell !important;\n }\n}\n.visible-print-block {\n display: none !important;\n}\n@media print {\n .visible-print-block {\n display: block !important;\n }\n}\n.visible-print-inline {\n display: none !important;\n}\n@media print {\n .visible-print-inline {\n display: inline !important;\n }\n}\n.visible-print-inline-block {\n display: none !important;\n}\n@media print {\n .visible-print-inline-block {\n display: inline-block !important;\n }\n}\n@media print {\n .hidden-print {\n display: none !important;\n }\n}\n/*# sourceMappingURL=bootstrap.css.map */","/*! normalize.css v3.0.2 | MIT License | git.io/normalize */\n\n//\n// 1. Set default font family to sans-serif.\n// 2. Prevent iOS text size adjust after orientation change, without disabling\n// user zoom.\n//\n\nhtml {\n font-family: sans-serif; // 1\n -ms-text-size-adjust: 100%; // 2\n -webkit-text-size-adjust: 100%; // 2\n}\n\n//\n// Remove default margin.\n//\n\nbody {\n margin: 0;\n}\n\n// HTML5 display definitions\n// ==========================================================================\n\n//\n// Correct `block` display not defined for any HTML5 element in IE 8/9.\n// Correct `block` display not defined for `details` or `summary` in IE 10/11\n// and Firefox.\n// Correct `block` display not defined for `main` in IE 11.\n//\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n display: block;\n}\n\n//\n// 1. Correct `inline-block` display not defined in IE 8/9.\n// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.\n//\n\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block; // 1\n vertical-align: baseline; // 2\n}\n\n//\n// Prevent modern browsers from displaying `audio` without controls.\n// Remove excess height in iOS 5 devices.\n//\n\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n\n//\n// Address `[hidden]` styling not present in IE 8/9/10.\n// Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.\n//\n\n[hidden],\ntemplate {\n display: none;\n}\n\n// Links\n// ==========================================================================\n\n//\n// Remove the gray background color from active links in IE 10.\n//\n\na {\n background-color: transparent;\n}\n\n//\n// Improve readability when focused and also mouse hovered in all browsers.\n//\n\na:active,\na:hover {\n outline: 0;\n}\n\n// Text-level semantics\n// ==========================================================================\n\n//\n// Address styling not present in IE 8/9/10/11, Safari, and Chrome.\n//\n\nabbr[title] {\n border-bottom: 1px dotted;\n}\n\n//\n// Address style set to `bolder` in Firefox 4+, Safari, and Chrome.\n//\n\nb,\nstrong {\n font-weight: bold;\n}\n\n//\n// Address styling not present in Safari and Chrome.\n//\n\ndfn {\n font-style: italic;\n}\n\n//\n// Address variable `h1` font-size and margin within `section` and `article`\n// contexts in Firefox 4+, Safari, and Chrome.\n//\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n//\n// Address styling not present in IE 8/9.\n//\n\nmark {\n background: #ff0;\n color: #000;\n}\n\n//\n// Address inconsistent and variable font size in all browsers.\n//\n\nsmall {\n font-size: 80%;\n}\n\n//\n// Prevent `sub` and `sup` affecting `line-height` in all browsers.\n//\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsup {\n top: -0.5em;\n}\n\nsub {\n bottom: -0.25em;\n}\n\n// Embedded content\n// ==========================================================================\n\n//\n// Remove border when inside `a` element in IE 8/9/10.\n//\n\nimg {\n border: 0;\n}\n\n//\n// Correct overflow not hidden in IE 9/10/11.\n//\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\n// Grouping content\n// ==========================================================================\n\n//\n// Address margin not present in IE 8/9 and Safari.\n//\n\nfigure {\n margin: 1em 40px;\n}\n\n//\n// Address differences between Firefox and other browsers.\n//\n\nhr {\n -moz-box-sizing: content-box;\n box-sizing: content-box;\n height: 0;\n}\n\n//\n// Contain overflow in all browsers.\n//\n\npre {\n overflow: auto;\n}\n\n//\n// Address odd `em`-unit font size rendering in all browsers.\n//\n\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\n\n// Forms\n// ==========================================================================\n\n//\n// Known limitation: by default, Chrome and Safari on OS X allow very limited\n// styling of `select`, unless a `border` property is set.\n//\n\n//\n// 1. Correct color not being inherited.\n// Known issue: affects color of disabled elements.\n// 2. Correct font properties not being inherited.\n// 3. Address margins set differently in Firefox 4+, Safari, and Chrome.\n//\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit; // 1\n font: inherit; // 2\n margin: 0; // 3\n}\n\n//\n// Address `overflow` set to `hidden` in IE 8/9/10/11.\n//\n\nbutton {\n overflow: visible;\n}\n\n//\n// Address inconsistent `text-transform` inheritance for `button` and `select`.\n// All other form control elements do not inherit `text-transform` values.\n// Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.\n// Correct `select` style inheritance in Firefox.\n//\n\nbutton,\nselect {\n text-transform: none;\n}\n\n//\n// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n// and `video` controls.\n// 2. Correct inability to style clickable `input` types in iOS.\n// 3. Improve usability and consistency of cursor style between image-type\n// `input` and others.\n//\n\nbutton,\nhtml input[type=\"button\"], // 1\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button; // 2\n cursor: pointer; // 3\n}\n\n//\n// Re-set default cursor for disabled elements.\n//\n\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\n\n//\n// Remove inner padding and border in Firefox 4+.\n//\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\n\n//\n// Address Firefox 4+ setting `line-height` on `input` using `!important` in\n// the UA stylesheet.\n//\n\ninput {\n line-height: normal;\n}\n\n//\n// It's recommended that you don't attempt to style these elements.\n// Firefox's implementation doesn't respect box-sizing, padding, or width.\n//\n// 1. Address box sizing set to `content-box` in IE 8/9/10.\n// 2. Remove excess padding in IE 8/9/10.\n//\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box; // 1\n padding: 0; // 2\n}\n\n//\n// Fix the cursor style for Chrome's increment/decrement buttons. For certain\n// `font-size` values of the `input`, it causes the cursor style of the\n// decrement button to change from `default` to `text`.\n//\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n//\n// 1. Address `appearance` set to `searchfield` in Safari and Chrome.\n// 2. Address `box-sizing` set to `border-box` in Safari and Chrome\n// (include `-moz` to future-proof).\n//\n\ninput[type=\"search\"] {\n -webkit-appearance: textfield; // 1\n -moz-box-sizing: content-box;\n -webkit-box-sizing: content-box; // 2\n box-sizing: content-box;\n}\n\n//\n// Remove inner padding and search cancel button in Safari and Chrome on OS X.\n// Safari (but not Chrome) clips the cancel button when the search input has\n// padding (and `textfield` appearance).\n//\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// Define consistent border, margin, and padding.\n//\n\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\n\n//\n// 1. Correct `color` not being inherited in IE 8/9/10/11.\n// 2. Remove padding so people aren't caught out if they zero out fieldsets.\n//\n\nlegend {\n border: 0; // 1\n padding: 0; // 2\n}\n\n//\n// Remove default vertical scrollbar in IE 8/9/10/11.\n//\n\ntextarea {\n overflow: auto;\n}\n\n//\n// Don't inherit the `font-weight` (applied by a rule above).\n// NOTE: the default cannot safely be changed in Chrome and Safari on OS X.\n//\n\noptgroup {\n font-weight: bold;\n}\n\n// Tables\n// ==========================================================================\n\n//\n// Remove most spacing between table cells.\n//\n\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\n\ntd,\nth {\n padding: 0;\n}\n","/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n\n// ==========================================================================\n// Print styles.\n// Inlined to avoid the additional HTTP request: h5bp.com/r\n// ==========================================================================\n\n@media print {\n *,\n *:before,\n *:after {\n background: transparent !important;\n color: #000 !important; // Black prints faster: h5bp.com/s\n box-shadow: none !important;\n text-shadow: none !important;\n }\n\n a,\n a:visited {\n text-decoration: underline;\n }\n\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n\n // Don't show links that are fragment identifiers,\n // or use the `javascript:` pseudo protocol\n a[href^=\"#\"]:after,\n a[href^=\"javascript:\"]:after {\n content: \"\";\n }\n\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n\n thead {\n display: table-header-group; // h5bp.com/t\n }\n\n tr,\n img {\n page-break-inside: avoid;\n }\n\n img {\n max-width: 100% !important;\n }\n\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n\n h2,\n h3 {\n page-break-after: avoid;\n }\n\n // Bootstrap specific changes start\n //\n // Chrome (OSX) fix for https://github.com/twbs/bootstrap/issues/11245\n // Once fixed, we can just straight up remove this.\n select {\n background: #fff !important;\n }\n\n // Bootstrap components\n .navbar {\n display: none;\n }\n .btn,\n .dropup > .btn {\n > .caret {\n border-top-color: #000 !important;\n }\n }\n .label {\n border: 1px solid #000;\n }\n\n .table {\n border-collapse: collapse !important;\n\n td,\n th {\n background-color: #fff !important;\n }\n }\n .table-bordered {\n th,\n td {\n border: 1px solid #ddd !important;\n }\n }\n\n // Bootstrap specific changes end\n}\n","//\n// Glyphicons for Bootstrap\n//\n// Since icons are fonts, they can be placed anywhere text is placed and are\n// thus automatically sized to match the surrounding child. To use, create an\n// inline element with the appropriate classes, like so:\n//\n// Star\n\n// Import the fonts\n@font-face {\n font-family: 'Glyphicons Halflings';\n src: url('@{icon-font-path}@{icon-font-name}.eot');\n src: url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),\n url('@{icon-font-path}@{icon-font-name}.woff2') format('woff2'),\n url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),\n url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),\n url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg');\n}\n\n// Catchall baseclass\n.glyphicon {\n position: relative;\n top: 1px;\n display: inline-block;\n font-family: 'Glyphicons Halflings';\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n// Individual icons\n.glyphicon-asterisk { &:before { content: \"\\2a\"; } }\n.glyphicon-plus { &:before { content: \"\\2b\"; } }\n.glyphicon-euro,\n.glyphicon-eur { &:before { content: \"\\20ac\"; } }\n.glyphicon-minus { &:before { content: \"\\2212\"; } }\n.glyphicon-cloud { &:before { content: \"\\2601\"; } }\n.glyphicon-envelope { &:before { content: \"\\2709\"; } }\n.glyphicon-pencil { &:before { content: \"\\270f\"; } }\n.glyphicon-glass { &:before { content: \"\\e001\"; } }\n.glyphicon-music { &:before { content: \"\\e002\"; } }\n.glyphicon-search { &:before { content: \"\\e003\"; } }\n.glyphicon-heart { &:before { content: \"\\e005\"; } }\n.glyphicon-star { &:before { content: \"\\e006\"; } }\n.glyphicon-star-empty { &:before { content: \"\\e007\"; } }\n.glyphicon-user { &:before { content: \"\\e008\"; } }\n.glyphicon-film { &:before { content: \"\\e009\"; } }\n.glyphicon-th-large { &:before { content: \"\\e010\"; } }\n.glyphicon-th { &:before { content: \"\\e011\"; } }\n.glyphicon-th-list { &:before { content: \"\\e012\"; } }\n.glyphicon-ok { &:before { content: \"\\e013\"; } }\n.glyphicon-remove { &:before { content: \"\\e014\"; } }\n.glyphicon-zoom-in { &:before { content: \"\\e015\"; } }\n.glyphicon-zoom-out { &:before { content: \"\\e016\"; } }\n.glyphicon-off { &:before { content: \"\\e017\"; } }\n.glyphicon-signal { &:before { content: \"\\e018\"; } }\n.glyphicon-cog { &:before { content: \"\\e019\"; } }\n.glyphicon-trash { &:before { content: \"\\e020\"; } }\n.glyphicon-home { &:before { content: \"\\e021\"; } }\n.glyphicon-file { &:before { content: \"\\e022\"; } }\n.glyphicon-time { &:before { content: \"\\e023\"; } }\n.glyphicon-road { &:before { content: \"\\e024\"; } }\n.glyphicon-download-alt { &:before { content: \"\\e025\"; } }\n.glyphicon-download { &:before { content: \"\\e026\"; } }\n.glyphicon-upload { &:before { content: \"\\e027\"; } }\n.glyphicon-inbox { &:before { content: \"\\e028\"; } }\n.glyphicon-play-circle { &:before { content: \"\\e029\"; } }\n.glyphicon-repeat { &:before { content: \"\\e030\"; } }\n.glyphicon-refresh { &:before { content: \"\\e031\"; } }\n.glyphicon-list-alt { &:before { content: \"\\e032\"; } }\n.glyphicon-lock { &:before { content: \"\\e033\"; } }\n.glyphicon-flag { &:before { content: \"\\e034\"; } }\n.glyphicon-headphones { &:before { content: \"\\e035\"; } }\n.glyphicon-volume-off { &:before { content: \"\\e036\"; } }\n.glyphicon-volume-down { &:before { content: \"\\e037\"; } }\n.glyphicon-volume-up { &:before { content: \"\\e038\"; } }\n.glyphicon-qrcode { &:before { content: \"\\e039\"; } }\n.glyphicon-barcode { &:before { content: \"\\e040\"; } }\n.glyphicon-tag { &:before { content: \"\\e041\"; } }\n.glyphicon-tags { &:before { content: \"\\e042\"; } }\n.glyphicon-book { &:before { content: \"\\e043\"; } }\n.glyphicon-bookmark { &:before { content: \"\\e044\"; } }\n.glyphicon-print { &:before { content: \"\\e045\"; } }\n.glyphicon-camera { &:before { content: \"\\e046\"; } }\n.glyphicon-font { &:before { content: \"\\e047\"; } }\n.glyphicon-bold { &:before { content: \"\\e048\"; } }\n.glyphicon-italic { &:before { content: \"\\e049\"; } }\n.glyphicon-text-height { &:before { content: \"\\e050\"; } }\n.glyphicon-text-width { &:before { content: \"\\e051\"; } }\n.glyphicon-align-left { &:before { content: \"\\e052\"; } }\n.glyphicon-align-center { &:before { content: \"\\e053\"; } }\n.glyphicon-align-right { &:before { content: \"\\e054\"; } }\n.glyphicon-align-justify { &:before { content: \"\\e055\"; } }\n.glyphicon-list { &:before { content: \"\\e056\"; } }\n.glyphicon-indent-left { &:before { content: \"\\e057\"; } }\n.glyphicon-indent-right { &:before { content: \"\\e058\"; } }\n.glyphicon-facetime-video { &:before { content: \"\\e059\"; } }\n.glyphicon-picture { &:before { content: \"\\e060\"; } }\n.glyphicon-map-marker { &:before { content: \"\\e062\"; } }\n.glyphicon-adjust { &:before { content: \"\\e063\"; } }\n.glyphicon-tint { &:before { content: \"\\e064\"; } }\n.glyphicon-edit { &:before { content: \"\\e065\"; } }\n.glyphicon-share { &:before { content: \"\\e066\"; } }\n.glyphicon-check { &:before { content: \"\\e067\"; } }\n.glyphicon-move { &:before { content: \"\\e068\"; } }\n.glyphicon-step-backward { &:before { content: \"\\e069\"; } }\n.glyphicon-fast-backward { &:before { content: \"\\e070\"; } }\n.glyphicon-backward { &:before { content: \"\\e071\"; } }\n.glyphicon-play { &:before { content: \"\\e072\"; } }\n.glyphicon-pause { &:before { content: \"\\e073\"; } }\n.glyphicon-stop { &:before { content: \"\\e074\"; } }\n.glyphicon-forward { &:before { content: \"\\e075\"; } }\n.glyphicon-fast-forward { &:before { content: \"\\e076\"; } }\n.glyphicon-step-forward { &:before { content: \"\\e077\"; } }\n.glyphicon-eject { &:before { content: \"\\e078\"; } }\n.glyphicon-chevron-left { &:before { content: \"\\e079\"; } }\n.glyphicon-chevron-right { &:before { content: \"\\e080\"; } }\n.glyphicon-plus-sign { &:before { content: \"\\e081\"; } }\n.glyphicon-minus-sign { &:before { content: \"\\e082\"; } }\n.glyphicon-remove-sign { &:before { content: \"\\e083\"; } }\n.glyphicon-ok-sign { &:before { content: \"\\e084\"; } }\n.glyphicon-question-sign { &:before { content: \"\\e085\"; } }\n.glyphicon-info-sign { &:before { content: \"\\e086\"; } }\n.glyphicon-screenshot { &:before { content: \"\\e087\"; } }\n.glyphicon-remove-circle { &:before { content: \"\\e088\"; } }\n.glyphicon-ok-circle { &:before { content: \"\\e089\"; } }\n.glyphicon-ban-circle { &:before { content: \"\\e090\"; } }\n.glyphicon-arrow-left { &:before { content: \"\\e091\"; } }\n.glyphicon-arrow-right { &:before { content: \"\\e092\"; } }\n.glyphicon-arrow-up { &:before { content: \"\\e093\"; } }\n.glyphicon-arrow-down { &:before { content: \"\\e094\"; } }\n.glyphicon-share-alt { &:before { content: \"\\e095\"; } }\n.glyphicon-resize-full { &:before { content: \"\\e096\"; } }\n.glyphicon-resize-small { &:before { content: \"\\e097\"; } }\n.glyphicon-exclamation-sign { &:before { content: \"\\e101\"; } }\n.glyphicon-gift { &:before { content: \"\\e102\"; } }\n.glyphicon-leaf { &:before { content: \"\\e103\"; } }\n.glyphicon-fire { &:before { content: \"\\e104\"; } }\n.glyphicon-eye-open { &:before { content: \"\\e105\"; } }\n.glyphicon-eye-close { &:before { content: \"\\e106\"; } }\n.glyphicon-warning-sign { &:before { content: \"\\e107\"; } }\n.glyphicon-plane { &:before { content: \"\\e108\"; } }\n.glyphicon-calendar { &:before { content: \"\\e109\"; } }\n.glyphicon-random { &:before { content: \"\\e110\"; } }\n.glyphicon-comment { &:before { content: \"\\e111\"; } }\n.glyphicon-magnet { &:before { content: \"\\e112\"; } }\n.glyphicon-chevron-up { &:before { content: \"\\e113\"; } }\n.glyphicon-chevron-down { &:before { content: \"\\e114\"; } }\n.glyphicon-retweet { &:before { content: \"\\e115\"; } }\n.glyphicon-shopping-cart { &:before { content: \"\\e116\"; } }\n.glyphicon-folder-close { &:before { content: \"\\e117\"; } }\n.glyphicon-folder-open { &:before { content: \"\\e118\"; } }\n.glyphicon-resize-vertical { &:before { content: \"\\e119\"; } }\n.glyphicon-resize-horizontal { &:before { content: \"\\e120\"; } }\n.glyphicon-hdd { &:before { content: \"\\e121\"; } }\n.glyphicon-bullhorn { &:before { content: \"\\e122\"; } }\n.glyphicon-bell { &:before { content: \"\\e123\"; } }\n.glyphicon-certificate { &:before { content: \"\\e124\"; } }\n.glyphicon-thumbs-up { &:before { content: \"\\e125\"; } }\n.glyphicon-thumbs-down { &:before { content: \"\\e126\"; } }\n.glyphicon-hand-right { &:before { content: \"\\e127\"; } }\n.glyphicon-hand-left { &:before { content: \"\\e128\"; } }\n.glyphicon-hand-up { &:before { content: \"\\e129\"; } }\n.glyphicon-hand-down { &:before { content: \"\\e130\"; } }\n.glyphicon-circle-arrow-right { &:before { content: \"\\e131\"; } }\n.glyphicon-circle-arrow-left { &:before { content: \"\\e132\"; } }\n.glyphicon-circle-arrow-up { &:before { content: \"\\e133\"; } }\n.glyphicon-circle-arrow-down { &:before { content: \"\\e134\"; } }\n.glyphicon-globe { &:before { content: \"\\e135\"; } }\n.glyphicon-wrench { &:before { content: \"\\e136\"; } }\n.glyphicon-tasks { &:before { content: \"\\e137\"; } }\n.glyphicon-filter { &:before { content: \"\\e138\"; } }\n.glyphicon-briefcase { &:before { content: \"\\e139\"; } }\n.glyphicon-fullscreen { &:before { content: \"\\e140\"; } }\n.glyphicon-dashboard { &:before { content: \"\\e141\"; } }\n.glyphicon-paperclip { &:before { content: \"\\e142\"; } }\n.glyphicon-heart-empty { &:before { content: \"\\e143\"; } }\n.glyphicon-link { &:before { content: \"\\e144\"; } }\n.glyphicon-phone { &:before { content: \"\\e145\"; } }\n.glyphicon-pushpin { &:before { content: \"\\e146\"; } }\n.glyphicon-usd { &:before { content: \"\\e148\"; } }\n.glyphicon-gbp { &:before { content: \"\\e149\"; } }\n.glyphicon-sort { &:before { content: \"\\e150\"; } }\n.glyphicon-sort-by-alphabet { &:before { content: \"\\e151\"; } }\n.glyphicon-sort-by-alphabet-alt { &:before { content: \"\\e152\"; } }\n.glyphicon-sort-by-order { &:before { content: \"\\e153\"; } }\n.glyphicon-sort-by-order-alt { &:before { content: \"\\e154\"; } }\n.glyphicon-sort-by-attributes { &:before { content: \"\\e155\"; } }\n.glyphicon-sort-by-attributes-alt { &:before { content: \"\\e156\"; } }\n.glyphicon-unchecked { &:before { content: \"\\e157\"; } }\n.glyphicon-expand { &:before { content: \"\\e158\"; } }\n.glyphicon-collapse-down { &:before { content: \"\\e159\"; } }\n.glyphicon-collapse-up { &:before { content: \"\\e160\"; } }\n.glyphicon-log-in { &:before { content: \"\\e161\"; } }\n.glyphicon-flash { &:before { content: \"\\e162\"; } }\n.glyphicon-log-out { &:before { content: \"\\e163\"; } }\n.glyphicon-new-window { &:before { content: \"\\e164\"; } }\n.glyphicon-record { &:before { content: \"\\e165\"; } }\n.glyphicon-save { &:before { content: \"\\e166\"; } }\n.glyphicon-open { &:before { content: \"\\e167\"; } }\n.glyphicon-saved { &:before { content: \"\\e168\"; } }\n.glyphicon-import { &:before { content: \"\\e169\"; } }\n.glyphicon-export { &:before { content: \"\\e170\"; } }\n.glyphicon-send { &:before { content: \"\\e171\"; } }\n.glyphicon-floppy-disk { &:before { content: \"\\e172\"; } }\n.glyphicon-floppy-saved { &:before { content: \"\\e173\"; } }\n.glyphicon-floppy-remove { &:before { content: \"\\e174\"; } }\n.glyphicon-floppy-save { &:before { content: \"\\e175\"; } }\n.glyphicon-floppy-open { &:before { content: \"\\e176\"; } }\n.glyphicon-credit-card { &:before { content: \"\\e177\"; } }\n.glyphicon-transfer { &:before { content: \"\\e178\"; } }\n.glyphicon-cutlery { &:before { content: \"\\e179\"; } }\n.glyphicon-header { &:before { content: \"\\e180\"; } }\n.glyphicon-compressed { &:before { content: \"\\e181\"; } }\n.glyphicon-earphone { &:before { content: \"\\e182\"; } }\n.glyphicon-phone-alt { &:before { content: \"\\e183\"; } }\n.glyphicon-tower { &:before { content: \"\\e184\"; } }\n.glyphicon-stats { &:before { content: \"\\e185\"; } }\n.glyphicon-sd-video { &:before { content: \"\\e186\"; } }\n.glyphicon-hd-video { &:before { content: \"\\e187\"; } }\n.glyphicon-subtitles { &:before { content: \"\\e188\"; } }\n.glyphicon-sound-stereo { &:before { content: \"\\e189\"; } }\n.glyphicon-sound-dolby { &:before { content: \"\\e190\"; } }\n.glyphicon-sound-5-1 { &:before { content: \"\\e191\"; } }\n.glyphicon-sound-6-1 { &:before { content: \"\\e192\"; } }\n.glyphicon-sound-7-1 { &:before { content: \"\\e193\"; } }\n.glyphicon-copyright-mark { &:before { content: \"\\e194\"; } }\n.glyphicon-registration-mark { &:before { content: \"\\e195\"; } }\n.glyphicon-cloud-download { &:before { content: \"\\e197\"; } }\n.glyphicon-cloud-upload { &:before { content: \"\\e198\"; } }\n.glyphicon-tree-conifer { &:before { content: \"\\e199\"; } }\n.glyphicon-tree-deciduous { &:before { content: \"\\e200\"; } }\n.glyphicon-cd { &:before { content: \"\\e201\"; } }\n.glyphicon-save-file { &:before { content: \"\\e202\"; } }\n.glyphicon-open-file { &:before { content: \"\\e203\"; } }\n.glyphicon-level-up { &:before { content: \"\\e204\"; } }\n.glyphicon-copy { &:before { content: \"\\e205\"; } }\n.glyphicon-paste { &:before { content: \"\\e206\"; } }\n// The following 2 Glyphicons are omitted for the time being because\n// they currently use Unicode codepoints that are outside the\n// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle\n// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.\n// Notably, the bug affects some older versions of the Android Browser.\n// More info: https://github.com/twbs/bootstrap/issues/10106\n// .glyphicon-door { &:before { content: \"\\1f6aa\"; } }\n// .glyphicon-key { &:before { content: \"\\1f511\"; } }\n.glyphicon-alert { &:before { content: \"\\e209\"; } }\n.glyphicon-equalizer { &:before { content: \"\\e210\"; } }\n.glyphicon-king { &:before { content: \"\\e211\"; } }\n.glyphicon-queen { &:before { content: \"\\e212\"; } }\n.glyphicon-pawn { &:before { content: \"\\e213\"; } }\n.glyphicon-bishop { &:before { content: \"\\e214\"; } }\n.glyphicon-knight { &:before { content: \"\\e215\"; } }\n.glyphicon-baby-formula { &:before { content: \"\\e216\"; } }\n.glyphicon-tent { &:before { content: \"\\26fa\"; } }\n.glyphicon-blackboard { &:before { content: \"\\e218\"; } }\n.glyphicon-bed { &:before { content: \"\\e219\"; } }\n.glyphicon-apple { &:before { content: \"\\f8ff\"; } }\n.glyphicon-erase { &:before { content: \"\\e221\"; } }\n.glyphicon-hourglass { &:before { content: \"\\231b\"; } }\n.glyphicon-lamp { &:before { content: \"\\e223\"; } }\n.glyphicon-duplicate { &:before { content: \"\\e224\"; } }\n.glyphicon-piggy-bank { &:before { content: \"\\e225\"; } }\n.glyphicon-scissors { &:before { content: \"\\e226\"; } }\n.glyphicon-bitcoin { &:before { content: \"\\e227\"; } }\n.glyphicon-btc { &:before { content: \"\\e227\"; } }\n.glyphicon-xbt { &:before { content: \"\\e227\"; } }\n.glyphicon-yen { &:before { content: \"\\00a5\"; } }\n.glyphicon-jpy { &:before { content: \"\\00a5\"; } }\n.glyphicon-ruble { &:before { content: \"\\20bd\"; } }\n.glyphicon-rub { &:before { content: \"\\20bd\"; } }\n.glyphicon-scale { &:before { content: \"\\e230\"; } }\n.glyphicon-ice-lolly { &:before { content: \"\\e231\"; } }\n.glyphicon-ice-lolly-tasted { &:before { content: \"\\e232\"; } }\n.glyphicon-education { &:before { content: \"\\e233\"; } }\n.glyphicon-option-horizontal { &:before { content: \"\\e234\"; } }\n.glyphicon-option-vertical { &:before { content: \"\\e235\"; } }\n.glyphicon-menu-hamburger { &:before { content: \"\\e236\"; } }\n.glyphicon-modal-window { &:before { content: \"\\e237\"; } }\n.glyphicon-oil { &:before { content: \"\\e238\"; } }\n.glyphicon-grain { &:before { content: \"\\e239\"; } }\n.glyphicon-sunglasses { &:before { content: \"\\e240\"; } }\n.glyphicon-text-size { &:before { content: \"\\e241\"; } }\n.glyphicon-text-color { &:before { content: \"\\e242\"; } }\n.glyphicon-text-background { &:before { content: \"\\e243\"; } }\n.glyphicon-object-align-top { &:before { content: \"\\e244\"; } }\n.glyphicon-object-align-bottom { &:before { content: \"\\e245\"; } }\n.glyphicon-object-align-horizontal{ &:before { content: \"\\e246\"; } }\n.glyphicon-object-align-left { &:before { content: \"\\e247\"; } }\n.glyphicon-object-align-vertical { &:before { content: \"\\e248\"; } }\n.glyphicon-object-align-right { &:before { content: \"\\e249\"; } }\n.glyphicon-triangle-right { &:before { content: \"\\e250\"; } }\n.glyphicon-triangle-left { &:before { content: \"\\e251\"; } }\n.glyphicon-triangle-bottom { &:before { content: \"\\e252\"; } }\n.glyphicon-triangle-top { &:before { content: \"\\e253\"; } }\n.glyphicon-console { &:before { content: \"\\e254\"; } }\n.glyphicon-superscript { &:before { content: \"\\e255\"; } }\n.glyphicon-subscript { &:before { content: \"\\e256\"; } }\n.glyphicon-menu-left { &:before { content: \"\\e257\"; } }\n.glyphicon-menu-right { &:before { content: \"\\e258\"; } }\n.glyphicon-menu-down { &:before { content: \"\\e259\"; } }\n.glyphicon-menu-up { &:before { content: \"\\e260\"; } }\n","//\n// Scaffolding\n// --------------------------------------------------\n\n\n// Reset the box-sizing\n//\n// Heads up! This reset may cause conflicts with some third-party widgets.\n// For recommendations on resolving such conflicts, see\n// http://getbootstrap.com/getting-started/#third-box-sizing\n* {\n .box-sizing(border-box);\n}\n*:before,\n*:after {\n .box-sizing(border-box);\n}\n\n\n// Body reset\n\nhtml {\n font-size: 10px;\n -webkit-tap-highlight-color: rgba(0,0,0,0);\n}\n\nbody {\n font-family: @font-family-base;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @text-color;\n background-color: @body-bg;\n}\n\n// Reset fonts for relevant elements\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\n\n// Links\n\na {\n color: @link-color;\n text-decoration: none;\n\n &:hover,\n &:focus {\n color: @link-hover-color;\n text-decoration: @link-hover-decoration;\n }\n\n &:focus {\n .tab-focus();\n }\n}\n\n\n// Figures\n//\n// We reset this here because previously Normalize had no `figure` margins. This\n// ensures we don't break anyone's use of the element.\n\nfigure {\n margin: 0;\n}\n\n\n// Images\n\nimg {\n vertical-align: middle;\n}\n\n// Responsive images (ensure images don't scale beyond their parents)\n.img-responsive {\n .img-responsive();\n}\n\n// Rounded corners\n.img-rounded {\n border-radius: @border-radius-large;\n}\n\n// Image thumbnails\n//\n// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.\n.img-thumbnail {\n padding: @thumbnail-padding;\n line-height: @line-height-base;\n background-color: @thumbnail-bg;\n border: 1px solid @thumbnail-border;\n border-radius: @thumbnail-border-radius;\n .transition(all .2s ease-in-out);\n\n // Keep them at most 100% wide\n .img-responsive(inline-block);\n}\n\n// Perfect circle\n.img-circle {\n border-radius: 50%; // set radius in percents\n}\n\n\n// Horizontal rules\n\nhr {\n margin-top: @line-height-computed;\n margin-bottom: @line-height-computed;\n border: 0;\n border-top: 1px solid @hr-border;\n}\n\n\n// Only display content to screen readers\n//\n// See: http://a11yproject.com/posts/how-to-hide-content/\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0,0,0,0);\n border: 0;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n// Useful for \"Skip to main content\" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n// Credit: HTML5 Boilerplate\n\n.sr-only-focusable {\n &:active,\n &:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n }\n}\n\n\n// iOS \"clickable elements\" fix for role=\"button\"\n//\n// Fixes \"clickability\" issue (and more generally, the firing of events such as focus as well)\n// for traditionally non-focusable elements with role=\"button\"\n// see https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n// Upstream patch for normalize.css submitted: https://github.com/necolas/normalize.css/pull/379 - remove this fix once that is merged\n\n[role=\"button\"] {\n cursor: pointer;\n}","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They will be removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n -webkit-animation: @animation;\n -o-animation: @animation;\n animation: @animation;\n}\n.animation-name(@name) {\n -webkit-animation-name: @name;\n animation-name: @name;\n}\n.animation-duration(@duration) {\n -webkit-animation-duration: @duration;\n animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n -webkit-animation-timing-function: @timing-function;\n animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n -webkit-animation-delay: @delay;\n animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n -webkit-animation-iteration-count: @iteration-count;\n animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n -webkit-animation-direction: @direction;\n animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n -webkit-animation-fill-mode: @fill-mode;\n animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility){\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n word-wrap: break-word;\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n // Firefox\n &::-moz-placeholder {\n color: @color;\n opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n }\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n -webkit-transform: scale(@ratio);\n -ms-transform: scale(@ratio); // IE9 only\n -o-transform: scale(@ratio);\n transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n -webkit-transform: scale(@ratioX, @ratioY);\n -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n -o-transform: scale(@ratioX, @ratioY);\n transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n -webkit-transform: scaleX(@ratio);\n -ms-transform: scaleX(@ratio); // IE9 only\n -o-transform: scaleX(@ratio);\n transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n -webkit-transform: scaleY(@ratio);\n -ms-transform: scaleY(@ratio); // IE9 only\n -o-transform: scaleY(@ratio);\n transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n -webkit-transform: skewX(@x) skewY(@y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n -o-transform: skewX(@x) skewY(@y);\n transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9 only\n -o-transform: translate(@x, @y);\n transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9 only\n -o-transform: rotate(@degrees);\n transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9 only\n -o-transform: rotateX(@degrees);\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9 only\n -o-transform: rotateY(@degrees);\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n -ms-transform-origin: @origin; // IE9 only\n transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n -webkit-transition: @transition;\n -o-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n -webkit-transition-timing-function: @timing-function;\n transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n user-select: @select;\n}\n","// WebKit-style focus\n\n.tab-focus() {\n // Default\n outline: thin dotted;\n // WebKit\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n","// Image Mixins\n// - Responsive image\n// - Retina image\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n.img-responsive(@display: block) {\n display: @display;\n max-width: 100%; // Part 1: Set a maximum relative to the parent\n height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching\n}\n\n\n// Retina image\n//\n// Short retina mixin for setting background-image and -size. Note that the\n// spelling of `min--moz-device-pixel-ratio` is intentional.\n.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {\n background-image: url(\"@{file-1x}\");\n\n @media\n only screen and (-webkit-min-device-pixel-ratio: 2),\n only screen and ( min--moz-device-pixel-ratio: 2),\n only screen and ( -o-min-device-pixel-ratio: 2/1),\n only screen and ( min-device-pixel-ratio: 2),\n only screen and ( min-resolution: 192dpi),\n only screen and ( min-resolution: 2dppx) {\n background-image: url(\"@{file-2x}\");\n background-size: @width-1x @height-1x;\n }\n}\n","//\n// Typography\n// --------------------------------------------------\n\n\n// Headings\n// -------------------------\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n font-family: @headings-font-family;\n font-weight: @headings-font-weight;\n line-height: @headings-line-height;\n color: @headings-color;\n\n small,\n .small {\n font-weight: normal;\n line-height: 1;\n color: @headings-small-color;\n }\n}\n\nh1, .h1,\nh2, .h2,\nh3, .h3 {\n margin-top: @line-height-computed;\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 65%;\n }\n}\nh4, .h4,\nh5, .h5,\nh6, .h6 {\n margin-top: (@line-height-computed / 2);\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 75%;\n }\n}\n\nh1, .h1 { font-size: @font-size-h1; }\nh2, .h2 { font-size: @font-size-h2; }\nh3, .h3 { font-size: @font-size-h3; }\nh4, .h4 { font-size: @font-size-h4; }\nh5, .h5 { font-size: @font-size-h5; }\nh6, .h6 { font-size: @font-size-h6; }\n\n\n// Body text\n// -------------------------\n\np {\n margin: 0 0 (@line-height-computed / 2);\n}\n\n.lead {\n margin-bottom: @line-height-computed;\n font-size: floor((@font-size-base * 1.15));\n font-weight: 300;\n line-height: 1.4;\n\n @media (min-width: @screen-sm-min) {\n font-size: (@font-size-base * 1.5);\n }\n}\n\n\n// Emphasis & misc\n// -------------------------\n\n// Ex: (12px small font / 14px base font) * 100% = about 85%\nsmall,\n.small {\n font-size: floor((100% * @font-size-small / @font-size-base));\n}\n\nmark,\n.mark {\n background-color: @state-warning-bg;\n padding: .2em;\n}\n\n// Alignment\n.text-left { text-align: left; }\n.text-right { text-align: right; }\n.text-center { text-align: center; }\n.text-justify { text-align: justify; }\n.text-nowrap { white-space: nowrap; }\n\n// Transformation\n.text-lowercase { text-transform: lowercase; }\n.text-uppercase { text-transform: uppercase; }\n.text-capitalize { text-transform: capitalize; }\n\n// Contextual colors\n.text-muted {\n color: @text-muted;\n}\n.text-primary {\n .text-emphasis-variant(@brand-primary);\n}\n.text-success {\n .text-emphasis-variant(@state-success-text);\n}\n.text-info {\n .text-emphasis-variant(@state-info-text);\n}\n.text-warning {\n .text-emphasis-variant(@state-warning-text);\n}\n.text-danger {\n .text-emphasis-variant(@state-danger-text);\n}\n\n// Contextual backgrounds\n// For now we'll leave these alongside the text classes until v4 when we can\n// safely shift things around (per SemVer rules).\n.bg-primary {\n // Given the contrast here, this is the only class to have its color inverted\n // automatically.\n color: #fff;\n .bg-variant(@brand-primary);\n}\n.bg-success {\n .bg-variant(@state-success-bg);\n}\n.bg-info {\n .bg-variant(@state-info-bg);\n}\n.bg-warning {\n .bg-variant(@state-warning-bg);\n}\n.bg-danger {\n .bg-variant(@state-danger-bg);\n}\n\n\n// Page header\n// -------------------------\n\n.page-header {\n padding-bottom: ((@line-height-computed / 2) - 1);\n margin: (@line-height-computed * 2) 0 @line-height-computed;\n border-bottom: 1px solid @page-header-border-color;\n}\n\n\n// Lists\n// -------------------------\n\n// Unordered and Ordered lists\nul,\nol {\n margin-top: 0;\n margin-bottom: (@line-height-computed / 2);\n ul,\n ol {\n margin-bottom: 0;\n }\n}\n\n// List options\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n .list-unstyled();\n margin-left: -5px;\n\n > li {\n display: inline-block;\n padding-left: 5px;\n padding-right: 5px;\n }\n}\n\n// Description Lists\ndl {\n margin-top: 0; // Remove browser default\n margin-bottom: @line-height-computed;\n}\ndt,\ndd {\n line-height: @line-height-base;\n}\ndt {\n font-weight: bold;\n}\ndd {\n margin-left: 0; // Undo browser default\n}\n\n// Horizontal description lists\n//\n// Defaults to being stacked without any of the below styles applied, until the\n// grid breakpoint is reached (default of ~768px).\n\n.dl-horizontal {\n dd {\n &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present\n }\n\n @media (min-width: @grid-float-breakpoint) {\n dt {\n float: left;\n width: (@dl-horizontal-offset - 20);\n clear: left;\n text-align: right;\n .text-overflow();\n }\n dd {\n margin-left: @dl-horizontal-offset;\n }\n }\n}\n\n\n// Misc\n// -------------------------\n\n// Abbreviations and acronyms\nabbr[title],\n// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257\nabbr[data-original-title] {\n cursor: help;\n border-bottom: 1px dotted @abbr-border-color;\n}\n.initialism {\n font-size: 90%;\n .text-uppercase();\n}\n\n// Blockquotes\nblockquote {\n padding: (@line-height-computed / 2) @line-height-computed;\n margin: 0 0 @line-height-computed;\n font-size: @blockquote-font-size;\n border-left: 5px solid @blockquote-border-color;\n\n p,\n ul,\n ol {\n &:last-child {\n margin-bottom: 0;\n }\n }\n\n // Note: Deprecated small and .small as of v3.1.0\n // Context: https://github.com/twbs/bootstrap/issues/11660\n footer,\n small,\n .small {\n display: block;\n font-size: 80%; // back to default font-size\n line-height: @line-height-base;\n color: @blockquote-small-color;\n\n &:before {\n content: '\\2014 \\00A0'; // em dash, nbsp\n }\n }\n}\n\n// Opposite alignment of blockquote\n//\n// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.\n.blockquote-reverse,\nblockquote.pull-right {\n padding-right: 15px;\n padding-left: 0;\n border-right: 5px solid @blockquote-border-color;\n border-left: 0;\n text-align: right;\n\n // Account for citation\n footer,\n small,\n .small {\n &:before { content: ''; }\n &:after {\n content: '\\00A0 \\2014'; // nbsp, em dash\n }\n }\n}\n\n// Addresses\naddress {\n margin-bottom: @line-height-computed;\n font-style: normal;\n line-height: @line-height-base;\n}\n","// Typography\n\n.text-emphasis-variant(@color) {\n color: @color;\n a&:hover {\n color: darken(@color, 10%);\n }\n}\n","// Contextual backgrounds\n\n.bg-variant(@color) {\n background-color: @color;\n a&:hover {\n background-color: darken(@color, 10%);\n }\n}\n","// Text overflow\n// Requires inline-block or block for proper styling\n\n.text-overflow() {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n","//\n// Code (inline and block)\n// --------------------------------------------------\n\n\n// Inline and block code styles\ncode,\nkbd,\npre,\nsamp {\n font-family: @font-family-monospace;\n}\n\n// Inline code\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: @code-color;\n background-color: @code-bg;\n border-radius: @border-radius-base;\n}\n\n// User input typically entered via keyboard\nkbd {\n padding: 2px 4px;\n font-size: 90%;\n color: @kbd-color;\n background-color: @kbd-bg;\n border-radius: @border-radius-small;\n box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);\n\n kbd {\n padding: 0;\n font-size: 100%;\n font-weight: bold;\n box-shadow: none;\n }\n}\n\n// Blocks of code\npre {\n display: block;\n padding: ((@line-height-computed - 1) / 2);\n margin: 0 0 (@line-height-computed / 2);\n font-size: (@font-size-base - 1); // 14px to 13px\n line-height: @line-height-base;\n word-break: break-all;\n word-wrap: break-word;\n color: @pre-color;\n background-color: @pre-bg;\n border: 1px solid @pre-border-color;\n border-radius: @border-radius-base;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n max-height: @pre-scrollable-max-height;\n overflow-y: scroll;\n}\n","//\n// Grid system\n// --------------------------------------------------\n\n\n// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n.container {\n .container-fixed();\n\n @media (min-width: @screen-sm-min) {\n width: @container-sm;\n }\n @media (min-width: @screen-md-min) {\n width: @container-md;\n }\n @media (min-width: @screen-lg-min) {\n width: @container-lg;\n }\n}\n\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but without any defined\n// width for fluid, full width layouts.\n\n.container-fluid {\n .container-fixed();\n}\n\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n.row {\n .make-row();\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n.make-grid-columns();\n\n\n// Extra small grid\n//\n// Columns, offsets, pushes, and pulls for extra small devices like\n// smartphones.\n\n.make-grid(xs);\n\n\n// Small grid\n//\n// Columns, offsets, pushes, and pulls for the small device range, from phones\n// to tablets.\n\n@media (min-width: @screen-sm-min) {\n .make-grid(sm);\n}\n\n\n// Medium grid\n//\n// Columns, offsets, pushes, and pulls for the desktop device range.\n\n@media (min-width: @screen-md-min) {\n .make-grid(md);\n}\n\n\n// Large grid\n//\n// Columns, offsets, pushes, and pulls for the large desktop device range.\n\n@media (min-width: @screen-lg-min) {\n .make-grid(lg);\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n// Centered container element\n.container-fixed(@gutter: @grid-gutter-width) {\n margin-right: auto;\n margin-left: auto;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n &:extend(.clearfix all);\n}\n\n// Creates a wrapper for a series of columns\n.make-row(@gutter: @grid-gutter-width) {\n margin-left: (@gutter / -2);\n margin-right: (@gutter / -2);\n &:extend(.clearfix all);\n}\n\n// Generate the extra small columns\n.make-xs-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n float: left;\n width: percentage((@columns / @grid-columns));\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n}\n.make-xs-column-offset(@columns) {\n margin-left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-push(@columns) {\n left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-pull(@columns) {\n right: percentage((@columns / @grid-columns));\n}\n\n// Generate the small columns\n.make-sm-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-sm-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-offset(@columns) {\n @media (min-width: @screen-sm-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-push(@columns) {\n @media (min-width: @screen-sm-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-pull(@columns) {\n @media (min-width: @screen-sm-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n// Generate the medium columns\n.make-md-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-md-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-offset(@columns) {\n @media (min-width: @screen-md-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-push(@columns) {\n @media (min-width: @screen-md-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-pull(@columns) {\n @media (min-width: @screen-md-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n// Generate the large columns\n.make-lg-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-lg-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-offset(@columns) {\n @media (min-width: @screen-lg-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-push(@columns) {\n @media (min-width: @screen-lg-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-pull(@columns) {\n @media (min-width: @screen-lg-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n","// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `@grid-columns`.\n\n.make-grid-columns() {\n // Common styles for all sizes of grid columns, widths 1-12\n .col(@index) { // initial\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general; \"=<\" isn't a typo\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n position: relative;\n // Prevent columns from collapsing when empty\n min-height: 1px;\n // Inner gutter via padding\n padding-left: (@grid-gutter-width / 2);\n padding-right: (@grid-gutter-width / 2);\n }\n }\n .col(1); // kickstart it\n}\n\n.float-grid-columns(@class) {\n .col(@index) { // initial\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n float: left;\n }\n }\n .col(1); // kickstart it\n}\n\n.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {\n .col-@{class}-@{index} {\n width: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index > 0) {\n .col-@{class}-push-@{index} {\n left: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index = 0) {\n .col-@{class}-push-0 {\n left: auto;\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index > 0) {\n .col-@{class}-pull-@{index} {\n right: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index = 0) {\n .col-@{class}-pull-0 {\n right: auto;\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = offset) {\n .col-@{class}-offset-@{index} {\n margin-left: percentage((@index / @grid-columns));\n }\n}\n\n// Basic looping in LESS\n.loop-grid-columns(@index, @class, @type) when (@index >= 0) {\n .calc-grid-column(@index, @class, @type);\n // next iteration\n .loop-grid-columns((@index - 1), @class, @type);\n}\n\n// Create grid for specific class\n.make-grid(@class) {\n .float-grid-columns(@class);\n .loop-grid-columns(@grid-columns, @class, width);\n .loop-grid-columns(@grid-columns, @class, pull);\n .loop-grid-columns(@grid-columns, @class, push);\n .loop-grid-columns(@grid-columns, @class, offset);\n}\n","//\n// Tables\n// --------------------------------------------------\n\n\ntable {\n background-color: @table-bg;\n}\ncaption {\n padding-top: @table-cell-padding;\n padding-bottom: @table-cell-padding;\n color: @text-muted;\n text-align: left;\n}\nth {\n text-align: left;\n}\n\n\n// Baseline styles\n\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: @line-height-computed;\n // Cells\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-cell-padding;\n line-height: @line-height-base;\n vertical-align: top;\n border-top: 1px solid @table-border-color;\n }\n }\n }\n // Bottom align for column headings\n > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid @table-border-color;\n }\n // Remove top border from thead by default\n > caption + thead,\n > colgroup + thead,\n > thead:first-child {\n > tr:first-child {\n > th,\n > td {\n border-top: 0;\n }\n }\n }\n // Account for multiple tbody instances\n > tbody + tbody {\n border-top: 2px solid @table-border-color;\n }\n\n // Nesting\n .table {\n background-color: @body-bg;\n }\n}\n\n\n// Condensed table w/ half padding\n\n.table-condensed {\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-condensed-cell-padding;\n }\n }\n }\n}\n\n\n// Bordered version\n//\n// Add borders all around the table and between all the columns.\n\n.table-bordered {\n border: 1px solid @table-border-color;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n border: 1px solid @table-border-color;\n }\n }\n }\n > thead > tr {\n > th,\n > td {\n border-bottom-width: 2px;\n }\n }\n}\n\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n > tbody > tr:nth-of-type(odd) {\n background-color: @table-bg-accent;\n }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n > tbody > tr:hover {\n background-color: @table-bg-hover;\n }\n}\n\n\n// Table cell sizing\n//\n// Reset default table behavior\n\ntable col[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-column;\n}\ntable {\n td,\n th {\n &[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-cell;\n }\n }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n// Generate the contextual variants\n.table-row-variant(active; @table-bg-active);\n.table-row-variant(success; @state-success-bg);\n.table-row-variant(info; @state-info-bg);\n.table-row-variant(warning; @state-warning-bg);\n.table-row-variant(danger; @state-danger-bg);\n\n\n// Responsive tables\n//\n// Wrap your tables in `.table-responsive` and we'll make them mobile friendly\n// by enabling horizontal scrolling. Only applies <768px. Everything above that\n// will display normally.\n\n.table-responsive {\n overflow-x: auto;\n min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)\n\n @media screen and (max-width: @screen-xs-max) {\n width: 100%;\n margin-bottom: (@line-height-computed * 0.75);\n overflow-y: hidden;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid @table-border-color;\n\n // Tighten up spacing\n > .table {\n margin-bottom: 0;\n\n // Ensure the content doesn't wrap\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n white-space: nowrap;\n }\n }\n }\n }\n\n // Special overrides for the bordered tables\n > .table-bordered {\n border: 0;\n\n // Nuke the appropriate borders so that the parent can handle them\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-left: 0;\n }\n > th:last-child,\n > td:last-child {\n border-right: 0;\n }\n }\n }\n\n // Only nuke the last row's bottom-border in `tbody` and `tfoot` since\n // chances are there will be only one `tr` in a `thead` and that would\n // remove the border altogether.\n > tbody,\n > tfoot {\n > tr:last-child {\n > th,\n > td {\n border-bottom: 0;\n }\n }\n }\n\n }\n }\n}\n","// Tables\n\n.table-row-variant(@state; @background) {\n // Exact selectors below required to override `.table-striped` and prevent\n // inheritance to nested tables.\n .table > thead > tr,\n .table > tbody > tr,\n .table > tfoot > tr {\n > td.@{state},\n > th.@{state},\n &.@{state} > td,\n &.@{state} > th {\n background-color: @background;\n }\n }\n\n // Hover states for `.table-hover`\n // Note: this is not available for cells or rows within `thead` or `tfoot`.\n .table-hover > tbody > tr {\n > td.@{state}:hover,\n > th.@{state}:hover,\n &.@{state}:hover > td,\n &:hover > .@{state},\n &.@{state}:hover > th {\n background-color: darken(@background, 5%);\n }\n }\n}\n","//\n// Forms\n// --------------------------------------------------\n\n\n// Normalize non-controls\n//\n// Restyle and baseline non-control form elements.\n\nfieldset {\n padding: 0;\n margin: 0;\n border: 0;\n // Chrome and Firefox set a `min-width: min-content;` on fieldsets,\n // so we reset that to ensure it behaves more like a standard block element.\n // See https://github.com/twbs/bootstrap/issues/12359.\n min-width: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: @line-height-computed;\n font-size: (@font-size-base * 1.5);\n line-height: inherit;\n color: @legend-color;\n border: 0;\n border-bottom: 1px solid @legend-border-color;\n}\n\nlabel {\n display: inline-block;\n max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)\n margin-bottom: 5px;\n font-weight: bold;\n}\n\n\n// Normalize form controls\n//\n// While most of our form styles require extra classes, some basic normalization\n// is required to ensure optimum display with or without those classes to better\n// address browser inconsistencies.\n\n// Override content-box in Normalize (* isn't specific enough)\ninput[type=\"search\"] {\n .box-sizing(border-box);\n}\n\n// Position radios and checkboxes better\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9; // IE8-9\n line-height: normal;\n}\n\n// Set the height of file controls to match text inputs\ninput[type=\"file\"] {\n display: block;\n}\n\n// Make range inputs behave like textual form controls\ninput[type=\"range\"] {\n display: block;\n width: 100%;\n}\n\n// Make multiple select elements height not fixed\nselect[multiple],\nselect[size] {\n height: auto;\n}\n\n// Focus for file, radio, and checkbox\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n .tab-focus();\n}\n\n// Adjust output element\noutput {\n display: block;\n padding-top: (@padding-base-vertical + 1);\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n}\n\n\n// Common form controls\n//\n// Shared size and type resets for form controls. Apply `.form-control` to any\n// of the following form controls:\n//\n// select\n// textarea\n// input[type=\"text\"]\n// input[type=\"password\"]\n// input[type=\"datetime\"]\n// input[type=\"datetime-local\"]\n// input[type=\"date\"]\n// input[type=\"month\"]\n// input[type=\"time\"]\n// input[type=\"week\"]\n// input[type=\"number\"]\n// input[type=\"email\"]\n// input[type=\"url\"]\n// input[type=\"search\"]\n// input[type=\"tel\"]\n// input[type=\"color\"]\n\n.form-control {\n display: block;\n width: 100%;\n height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)\n padding: @padding-base-vertical @padding-base-horizontal;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n background-color: @input-bg;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid @input-border;\n border-radius: @input-border-radius; // Note: This has no effect on s in CSS.\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));\n .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n // Customize the `:focus` state to imitate native WebKit styles.\n .form-control-focus();\n\n // Placeholder\n .placeholder();\n\n // Disabled and read-only inputs\n //\n // HTML5 says that controls under a fieldset > legend:first-child won't be\n // disabled if the fieldset is disabled. Due to implementation difficulty, we\n // don't honor that edge case; we style them as disabled anyway.\n &[disabled],\n &[readonly],\n fieldset[disabled] & {\n background-color: @input-bg-disabled;\n opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655\n }\n\n &[disabled],\n fieldset[disabled] & {\n cursor: @cursor-disabled;\n }\n\n // Reset height for `textarea`s\n textarea& {\n height: auto;\n }\n}\n\n\n// Search inputs in iOS\n//\n// This overrides the extra rounded corners on search inputs in iOS so that our\n// `.form-control` class can properly style them. Note that this cannot simply\n// be added to `.form-control` as it's not specific enough. For details, see\n// https://github.com/twbs/bootstrap/issues/11586.\n\ninput[type=\"search\"] {\n -webkit-appearance: none;\n}\n\n\n// Special styles for iOS temporal inputs\n//\n// In Mobile Safari, setting `display: block` on temporal inputs causes the\n// text within the input to become vertically misaligned. As a workaround, we\n// set a pixel line-height that matches the given height of the input, but only\n// for Safari. See https://bugs.webkit.org/show_bug.cgi?id=139848\n\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n input[type=\"date\"],\n input[type=\"time\"],\n input[type=\"datetime-local\"],\n input[type=\"month\"] {\n line-height: @input-height-base;\n\n &.input-sm,\n .input-group-sm & {\n line-height: @input-height-small;\n }\n\n &.input-lg,\n .input-group-lg & {\n line-height: @input-height-large;\n }\n }\n}\n\n\n// Form groups\n//\n// Designed to help with the organization and spacing of vertical forms. For\n// horizontal forms, use the predefined grid classes.\n\n.form-group {\n margin-bottom: @form-group-margin-bottom;\n}\n\n\n// Checkboxes and radios\n//\n// Indent the labels to position radios/checkboxes as hanging controls.\n\n.radio,\n.checkbox {\n position: relative;\n display: block;\n margin-top: 10px;\n margin-bottom: 10px;\n\n label {\n min-height: @line-height-computed; // Ensure the input doesn't jump when there is no text\n padding-left: 20px;\n margin-bottom: 0;\n font-weight: normal;\n cursor: pointer;\n }\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n position: absolute;\n margin-left: -20px;\n margin-top: 4px \\9;\n}\n\n.radio + .radio,\n.checkbox + .checkbox {\n margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing\n}\n\n// Radios and checkboxes on same line\n.radio-inline,\n.checkbox-inline {\n position: relative;\n display: inline-block;\n padding-left: 20px;\n margin-bottom: 0;\n vertical-align: middle;\n font-weight: normal;\n cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n margin-top: 0;\n margin-left: 10px; // space out consecutive inline controls\n}\n\n// Apply same disabled cursor tweak as for inputs\n// Some special care is needed because