diff --git a/lib/src/dartdoc_options.dart b/lib/src/dartdoc_options.dart index d205153b34..256d84d5c7 100644 --- a/lib/src/dartdoc_options.dart +++ b/lib/src/dartdoc_options.dart @@ -1395,7 +1395,7 @@ Future> createDartdocOptions() async { new DartdocOptionArgFile>('includeExternal', null, isFile: true, help: - 'Additional (external) dart files to include; use "dir/fileName", ' + 'Additional (external) dart files to include; use "dir/filename", ' 'as in lib/material.dart.', mustExist: true, splitCommas: true), diff --git a/lib/src/html/html_generator.dart b/lib/src/html/html_generator.dart index f7060601b5..46e0b7fc2c 100644 --- a/lib/src/html/html_generator.dart +++ b/lib/src/html/html_generator.dart @@ -79,9 +79,20 @@ class HtmlGenerator extends Generator { if (!enabled) { throw new StateError('`write` was called after `generate` completed.'); } - // If you see this assert, we're probably being called to build non-canonical - // docs somehow. Check data.self.isCanonical and callers for bugs. - assert(allowOverwrite || !writtenFiles.contains(filePath)); + + assert( + !writtenFiles + .map((String file) => file.toLowerCase()) + .contains(filePath.toLowerCase()), + 'Filename case metamer found. Output would not be correct on a ' + 'case-insensitive filesystem (like macOS). Metamer found was ' + '"$filePath", which collides with ' + '"${writtenFiles.where((String name) => name.toLowerCase() == filePath.toLowerCase()).join('" and "')}"'); + + assert( + allowOverwrite || !writtenFiles.contains(filePath), + 'Being called to build non-canonical docs somehow. Check ' + 'data.self.isCanonical and callers for bugs.'); var file = new File(pathLib.join(outputDirectoryPath, filePath)); var parent = file.parent; diff --git a/lib/src/html/html_generator_instance.dart b/lib/src/html/html_generator_instance.dart index 134fe5adcd..aaa7217536 100644 --- a/lib/src/html/html_generator_instance.dart +++ b/lib/src/html/html_generator_instance.dart @@ -266,7 +266,7 @@ class HtmlGeneratorInstance { } TemplateData data = new LibraryTemplateData(_options, packageGraph, lib); - _build(pathLib.join(lib.dirName, '${lib.fileName}'), + _build(pathLib.join(lib.dirName, '${lib.filename}'), _templates.libraryTemplate, data); } diff --git a/lib/src/model.dart b/lib/src/model.dart index 29bef4c066..16850e9eb5 100644 --- a/lib/src/model.dart +++ b/lib/src/model.dart @@ -6,7 +6,7 @@ library dartdoc.models; import 'dart:async'; -import 'dart:collection' show UnmodifiableListView; +import 'dart:collection' show UnmodifiableListView, SplayTreeSet; import 'dart:convert'; import 'dart:io'; @@ -480,9 +480,7 @@ class Accessor extends ModelElement implements EnclosedElement { bool get isInherited => false; @override - String get href { - return enclosingCombo.href; - } + String get href => enclosingCombo.href; bool get isGetter => _accessor.isGetter; bool get isSetter => _accessor.isSetter; @@ -758,7 +756,7 @@ class Class extends ModelElement ModelElement get enclosingElement => library; @override - String get fileName => "${name}-class.html"; + String get filename => '$safeName-class.html'; String get fullkind { if (isAbstract) return 'abstract $kind'; @@ -808,7 +806,7 @@ class Class extends ModelElement return canonicalModelElement?.href; assert(canonicalLibrary != null); assert(canonicalLibrary == library); - return '${package.baseHref}${library.dirName}/$fileName'; + return '${package.baseHref}${library.safeDirName}/$filename'; } /// Returns all the implementors of this class. @@ -1232,6 +1230,9 @@ class Constructor extends ModelElement List get typeParameters => (enclosingElement as Class).typeParameters; + @override + CaseType get caseDefault => CaseType.camel; + @override ModelElement get enclosingElement => new ModelElement.from( _constructor.enclosingElement, library, packageGraph); @@ -1251,7 +1252,7 @@ class Constructor extends ModelElement return canonicalModelElement?.href; assert(canonicalLibrary != null); assert(canonicalLibrary == library); - return '${package.baseHref}${enclosingElement.library.dirName}/${enclosingElement.name}/$name.html'; + return '${package.baseHref}${enclosingElement.library.safeDirName}/${enclosingElement.safeName}/$filename'; } @override @@ -1607,9 +1608,12 @@ class EnumField extends Field { assert(!(canonicalLibrary == null || canonicalEnclosingElement == null)); assert(canonicalLibrary == library); assert(canonicalEnclosingElement == enclosingElement); - return '${package.baseHref}${enclosingElement.library.dirName}/${(enclosingElement as Class).fileName}'; + return '${package.baseHref}${enclosingElement.library.safeDirName}/${(enclosingElement as Class).filename}'; } + @override + CaseType get caseDefault => CaseType.lowerCamel; + @override String get linkedName => name; @@ -1698,7 +1702,7 @@ class Field extends ModelElement assert(canonicalLibrary != null); assert(canonicalEnclosingElement == enclosingElement); assert(canonicalLibrary == library); - return '${package.baseHref}${enclosingElement.library.dirName}/${enclosingElement.name}/$fileName'; + return '${package.baseHref}${enclosingElement.library.safeDirName}/${enclosingElement.safeName}/$filename'; } @override @@ -1777,7 +1781,7 @@ class Field extends ModelElement FieldElement get _field => (element as FieldElement); @override - String get fileName => isConst ? '$name-constant.html' : '$name.html'; + String get filename => '$safeName${isConst ? '-constant' : ''}.html'; @override String get sourceCode { @@ -2023,6 +2027,7 @@ class Library extends ModelElement with Categorization, TopLevelContainer { List _variables; Namespace _exportedNamespace; String _name; + NameRegistry _nameRegistry; factory Library(LibraryElement element, PackageGraph packageGraph) { return packageGraph.findOrCreateLibraryFor(element); @@ -2030,6 +2035,7 @@ class Library extends ModelElement with Categorization, TopLevelContainer { Library._(LibraryElement element, PackageGraph packageGraph, this._package) : super(element, null, packageGraph, null) { + _nameRegistry = new NameRegistry(debugName: 'Library ${element.name}'); if (element == null) throw new ArgumentError.notNull('element'); _exportedNamespace = new NamespaceBuilder().createExportNamespaceForLibrary(element); @@ -2038,6 +2044,9 @@ class Library extends ModelElement with Categorization, TopLevelContainer { List _allOriginalModelElementNames; + @override + CaseType get caseDefault => CaseType.lower; + final Package _package; @override Package get package { @@ -2163,6 +2172,9 @@ class Library extends ModelElement with Categorization, TopLevelContainer { return _importedExportedLibraries; } + @override + NameRegistry get nameRegistry => _nameRegistry; + String _dirName; String get dirName { if (_dirName == null) { @@ -2175,6 +2187,10 @@ class Library extends ModelElement with Categorization, TopLevelContainer { return _dirName; } + // Directory names need to be safe (i.e. case-insensitive unique) within the + // package namespace. + String get safeDirName => package.nameRegistry.getUniqueName(dirName); + Set _canonicalFor; Set get canonicalFor { @@ -2265,7 +2281,7 @@ class Library extends ModelElement with Categorization, TopLevelContainer { } @override - String get fileName => '$dirName-library.html'; + String get filename => '$safeDirName-library.html'; @override List get functions { @@ -2292,7 +2308,7 @@ class Library extends ModelElement with Categorization, TopLevelContainer { String get href { if (!identical(canonicalModelElement, this)) return canonicalModelElement?.href; - return '${package.baseHref}${library.dirName}/$fileName'; + return '${package.baseHref}${library.safeDirName}/$filename'; } InheritanceManager _inheritanceManager; @@ -2690,7 +2706,7 @@ class Method extends ModelElement assert(!(canonicalLibrary == null || canonicalEnclosingElement == null)); assert(canonicalLibrary == library); assert(canonicalEnclosingElement == enclosingElement); - return '${package.baseHref}${enclosingElement.library.dirName}/${enclosingElement.name}/${fileName}'; + return '${package.baseHref}${enclosingElement.library.safeDirName}/${enclosingElement.safeName}/${filename}'; } @override @@ -2729,6 +2745,9 @@ class Method extends ModelElement return null; } + @override + CaseType get caseDefault => CaseType.lowerCamel; + String get typeName => 'method'; MethodElement get _method => (element as MethodElement); @@ -3043,6 +3062,10 @@ abstract class ModelElement extends Canonicalization return newModelElement; } + /// Get the [NameRegistry] that is in scope for this [ModelElement]. + @override + NameRegistry get nameRegistry => _library.nameRegistry; + /// Stub for mustache4dart, or it will search enclosing elements to find /// names for members. bool get hasCategoryNames => false; @@ -3434,8 +3457,6 @@ abstract class ModelElement extends Canonicalization return ''; } - String get fileName => "${name}.html"; - /// Returns the fully qualified name. /// /// For example: libraryName.className.methodName @@ -4434,6 +4455,9 @@ class ModelFunctionAnonymous extends ModelFunctionTyped { @override String get linkedName => 'Function'; + @override + CaseType get caseDefault => CaseType.camel; + @override bool get isPublic => false; } @@ -4445,6 +4469,9 @@ class ModelFunctionTypedef extends ModelFunctionTyped { FunctionTypedElement element, Library library, PackageGraph packageGraph) : super(element, library, packageGraph); + @override + CaseType get caseDefault => CaseType.camel; + @override String get name { Element e = element; @@ -4485,7 +4512,7 @@ class ModelFunctionTyped extends ModelElement return canonicalModelElement?.href; assert(canonicalLibrary != null); assert(canonicalLibrary == library); - return '${package.baseHref}${library.dirName}/$fileName'; + return '${package.baseHref}${library.safeDirName}/$filename'; } @override @@ -4496,16 +4523,257 @@ class ModelFunctionTyped extends ModelElement // Food for mustache. TODO(jcollins-g): what about enclosing elements? bool get isInherited => false; + @override + CaseType get caseDefault => CaseType.lowerCamel; + @override DefinedElementType get modelType => super.modelType; FunctionTypedElement get _func => (element as FunctionTypedElement); } +// Returns the name of an enum value (e.g. supplying CaseType.camel +// returns "camel"). +String enumToString(T value) { + return value.toString().substring(value.runtimeType.toString().length + 1); +} + +/// An enum representing the type of case that a string contains. +enum CaseType { + upper, // UPPERCASE + camel, // CamelCase + lowerCamel, // lowerCamelCase + lower // lowercase +} + +class _NameRegistryEntry { + _NameRegistryEntry(this.name, this.suffix); + + String get fullName => + '$name$suffix${differentiator == null ? '' : '-$differentiator'}'; + final String name; + final String suffix; + String differentiator; +} + +/// A name registry that can disambiguate filename metamers that have the same +/// name, but different case. +/// +/// This is to prevent filename metamers on filesystems that preserve case, but +/// ignore it (like macOS and Windows do). +/// +/// For instance, if the names "NAME", "Name", "NAme" and "name" are all +/// registered with the registry using [add], and [getUniqueName] is called with +/// "name", then it responds with "name-lower", "Name" returns "Name", "NAme" +/// returns "NAme-22", and if called with "NAME", responds with "NAME-upper". It +/// will only return something other than the given name if a metamer exists, so +/// it only disambiguates when necessary. +/// +/// It will disambiguate with only the type of case used (e.g. "-upper", etc.) +/// if it can, but if two mixed-case names collide (e.g. "NAme" and "Name"), +/// then it makes a fingerprint of the case information that will make it +/// unique. For instance, it might generate "NAme-camel-22" for "NAme", and +/// "Name-camel-13" for "Name". The numbers represent the case runs for those +/// strings: for example, "Name" has one uppercase letter followed by three +/// lowercase letters, so "-13" is added. The numbers are encoded in hex for +/// compactness. +class NameRegistry { + /// The name printed for this [NameRegistry] in [toString]. Mainly used for + /// debugging. + String debugName; + + final Map> _registry = {}; + final Map _uniqueNameCache = {}; + + NameRegistry({this.debugName}); + + /// Adds a name to the registry. All names should be added before trying to + /// access a unique version of the name using [getUniqueName], since + /// generating a unique name without having all the names is nonsensical. + void add(Nameable nameable) { + assert(nameable.name != null); + assert(nameable.name.isNotEmpty); + assert(_uniqueNameCache.isEmpty, + "Can't add names to the registry after cache is built"); + void addName(String name) { + _NameRegistryEntry nameEntry = new _NameRegistryEntry( + name, _getCaseSuffix(name, nameable.caseDefault)); + String lowercaseName = name.toLowerCase(); + if (_registry.containsKey(lowercaseName)) { + if (!_registry[lowercaseName].contains(nameEntry)) { + _registry[lowercaseName].add(nameEntry); + } + } else { + _registry[lowercaseName] = new SplayTreeSet.from( + [nameEntry], (a, b) => a.name.compareTo(b.name)); + } + } + + addName(nameable.name); + // Libraries have an additional name that is used for making + // file paths. + if (nameable is Library) { + Library lib = nameable; + addName(lib.dirName); + } + } + + /// Gets an identifier that corresponds to the [CaseType] of the given + /// [input]. If the case type matches that of [caseDefault], then it + /// returns an empty string, so as not to add identifiers to strings that + /// already match the expected case type. + static String _getCaseSuffix(String input, CaseType caseDefault) { + CaseType caseType = _getCaseType(input); + if (caseDefault == caseType) return ''; + return '-${enumToString(caseType)}'; + } + + /// Returns true if all characters in the given [value] are uppercase. + static bool _isAllUpper(String value) => value.toUpperCase() == value; + + /// Returns true if all characters in the given [value] are lowercase. + static bool _isAllLower(String value) => value.toLowerCase() == value; + + /// Returns the [CaseType] of the given [input]. The [input] cannot be + /// the empty string, or null. + static CaseType _getCaseType(String input) { + assert(input.isNotEmpty); + assert(input != null); + if (_isAllLower(input)) return CaseType.lower; + if (_isAllUpper(input)) return CaseType.upper; + int firstLetter = input.indexOf(new RegExp(r'[A-Za-z]')); + // firstLetter can't be -1: it would have returned true for isAllLower + // in that case. + if (_isAllUpper(input[firstLetter])) return CaseType.camel; + return CaseType.lowerCamel; + } + + /// Returns a string that encodes the case "runs" of a string, which is + /// basically a run-length encoding of a bitfield containing the "case" of a + /// letter at that position in the string. This gives us a unique fingerprint + /// for the case information of a string. + static String _getCaseRuns(String input) { + assert(input.length <= 0xffff, + 'Identifier strings longer than 65K not supported.'); + if (input.isEmpty) return ''; + if (input.length == 1) return '-1'; + final int firstLetter = input.indexOf(new RegExp(r'[A-Za-z]')); + if (firstLetter == -1) return ''; + List runs = []; + int lastChange = 0; + CaseType lastCase = _getCaseType(input.substring(0, 1)); + for (int i = firstLetter; i < input.length; ++i) { + CaseType thisCase = _getCaseType(input[i]); + if (thisCase != lastCase) { + lastCase = thisCase; + runs.add(lastChange); + lastChange = 0; + } + lastChange++; + } + runs.add(lastChange); + while (runs.length % 2 != 0) { + runs.insert(0, 0); + } + List wordRuns = []; + for (var run in runs) { + if (input.length <= 0xf) { + wordRuns.add(run.toRadixString(16)); + } else if (input.length <= 0xff) { + wordRuns.add(run.toRadixString(16).padLeft(2, '0')); + } else if (input.length > 0xff) { + wordRuns.add(run.toRadixString(16).padLeft(4, '0')); + } + } + return wordRuns.join(''); + } + + /// Gets a unique name for the given [name] string. The [name] must have + /// already been added to the registry with [add]. On the first time this + /// is called, will build a cache of all unique names for faster access. + String getUniqueName(String name) { + /// Builds a cache of unique names to speed up access to them once all the + /// names are collected. Only runs once, on the first access to a unique name + /// for this [NameRegistry]. + if (_uniqueNameCache.isEmpty) { + /// Cache the unique names. + String generateUnique(_NameRegistryEntry entry) { + String lowercaseName = entry.name.toLowerCase(); + SplayTreeSet<_NameRegistryEntry> metamers = _registry[lowercaseName]; + if (metamers.length == 1) { + return entry.name; + } + // See if adding the case suffix makes the names unique. + Set namesWithSuffixes = new Set(); + for (var metamer in metamers) { + namesWithSuffixes.add(metamer.fullName.toLowerCase()); + } + // If adding the suffixes made everything unique, then just return the + // name with a suffix. + if (namesWithSuffixes.length == metamers.length) { + return entry.fullName; + } + + // Now we must have two or more names that clash. Find them. + List<_NameRegistryEntry> candidates = []; + Set members = new Set(); + for (var metamer in metamers) { + String name = metamer.fullName.toLowerCase(); + if (members.contains(name)) { + candidates.add(metamer); + } else { + members.add(name); + } + } + // Set the differentiator in the ones that are duplicates, so that + // the next time they are encountered, they won't be duplicates anymore. + for (var candidate in candidates) { + candidate.differentiator = _getCaseRuns(candidate.name); + } + return entry.fullName; + } + + if (_registry.isNotEmpty) { + _registry.forEach( + (String lowercaseName, SplayTreeSet<_NameRegistryEntry> names) { + for (var name in names) { + _uniqueNameCache[name.name] = generateUnique(name); + } + }); + } + } + assert(name != null); + assert(_uniqueNameCache.containsKey(name), + 'No unique name found for $name. Did you add it to the NameRegistry ${this.debugName}?'); + return _uniqueNameCache[name]; + } + + @override + String toString() { + List message = []; + message.add('Registry for ${debugName == null ? '' : '$debugName '}' + '$runtimeType${this.hashCode}:'); + for (var key in _registry.keys) { + message.add( + ' $key: ${_registry[key].map((entry) => entry.name).toList()}'); + } + return message.join('\n'); + } +} + /// Something that has a name. abstract class Nameable { String get name; + /// Should return the [NameRegistry] that applies to the [Nameable], not a + /// unique one for each [Nameable]. + NameRegistry get nameRegistry; + + /// Returns a name for this object that is safe for use in hrefs and + /// filenames. Specifically, the name is safe in the sense that it is + /// case-insensitive unique for all names registered with the [nameRegistry]. + String get safeName => nameRegistry.getUniqueName(name); + Set _namePieces; Set get namePieces { if (_namePieces == null) { @@ -4514,6 +4782,14 @@ abstract class Nameable { } return _namePieces; } + + /// The default case of names of this type. Override in subclasses to use + /// a different default. + CaseType get caseDefault => CaseType.camel; + + /// The filename to use for this [Nameable]. It is case-insensitive unique + /// for all names of in the context of this [Nameable]. + String get filename => '$safeName.html'; } /// Something able to be indexed. @@ -4559,12 +4835,12 @@ class Operator extends Method { } @override - String get fileName { + String get filename { var actualName = super.name; if (friendlyNames.containsKey(actualName)) { - return "operator_${friendlyNames[actualName]}.html"; + return 'operator_${friendlyNames[actualName]}.html'; } else { - return '$actualName.html'; + return '${super.safeName}.html'; } } @@ -4637,12 +4913,23 @@ class PackageGraph { allModelElements.forEach((m) => m.documentationLocal); _localDocumentationBuilt = true; - // Scan all model elements to insure that interceptor and other special - // objects are found. + // Collect all names so that they can be added to the name registry. + packages.toList().forEach((package) { + nameRegistry.add(package); + package.categories.forEach((Category c) => nameRegistry.add(c)); + package._libraries.forEach(_collectLibraryNames); + }); + + // Collect all names so that they can be added to the name registry. + packages.toList().forEach((package) { + nameRegistry.add(package); + package.categories.forEach((Category c) => nameRegistry.add(c)); + package._libraries.forEach(_collectLibraryNames); + }); + // After the allModelElements traversal to be sure that all packages // are picked up. documentedPackages.toList().forEach((package) { - package._libraries.sort((a, b) => compareNatural(a.name, b.name)); package._libraries.forEach((library) { library._allClasses.forEach(_addToImplementors); }); @@ -4711,6 +4998,10 @@ class PackageGraph { /// Dartdoc's configuration flags. final DartdocOptionContext config; + /// The name registry to prevent filesystem metamers from being created. + final NameRegistry nameRegistry = + new NameRegistry(debugName: 'PackageGraph Root'); + Map> __crossdartJson; // TODO(jcollins-g): move to [Package] Map> get crossdartJson { @@ -5077,6 +5368,14 @@ class PackageGraph { return hrefMap; } + void _collectLibraryNames(library) { + nameRegistry.add(library); + library._allModelElements + .forEach((ModelElement e) => nameRegistry.add(e.library)); + library._allModelElements + .forEach((ModelElement e) => library.nameRegistry.add(e)); + } + void _addToImplementors(Class c) { assert(!allImplementorsAdded); _implementors.putIfAbsent(c.href, () => []); @@ -5498,6 +5797,10 @@ abstract class LibraryContainer Iterable get publicLibraries => filterNonPublic(libraries); bool get hasPublicLibraries => publicLibraries.isNotEmpty; + /// Get the [NameRegistry] that is in scope for this [LibraryContainer]. + @override + NameRegistry get nameRegistry => packageGraph?.nameRegistry; + /// The name of the container or object that this LibraryContainer is a part /// of. Used for sorting in [containerOrder]. String get enclosingName; @@ -5522,10 +5825,12 @@ abstract class LibraryContainer /// 2 if this group has a name that contains the name [enclosingName]. /// 3 otherwise. int get _group { - if (containerOrder.contains(sortKey)) return -1; - if (equalsIgnoreAsciiCase(sortKey, enclosingName)) return 0; + if (containerOrder.contains(sortKey ?? '')) return -1; + if (equalsIgnoreAsciiCase(sortKey ?? '', enclosingName ?? '')) return 0; if (isSdk) return 1; - if (sortKey.toLowerCase().contains(enclosingName.toLowerCase())) return 2; + if (sortKey != null && + sortKey.toLowerCase().contains(enclosingName?.toLowerCase() ?? '')) + return 2; return 3; } @@ -5534,9 +5839,12 @@ abstract class LibraryContainer if (_group == other._group) { if (_group == -1) { return Comparable.compare(containerOrder.indexOf(sortKey), - containerOrder.indexOf(other.sortKey)); + containerOrder.indexOf(other.sortKey ?? '')); } else { - return sortKey.toLowerCase().compareTo(other.sortKey.toLowerCase()); + return sortKey + ?.toLowerCase() + ?.compareTo(other.sortKey?.toLowerCase() ?? '') ?? + 0; } } return Comparable.compare(_group, other._group); @@ -5688,7 +5996,7 @@ class Category extends Nameable @override String get href => - isCanonical ? '${package.baseHref}topics/${name}-topic.html' : null; + isCanonical ? '${package.baseHref}topics/$safeName-topic.html' : null; String get linkedName { String unbrokenCategoryName = name.replaceAll(' ', ' '); @@ -5939,6 +6247,9 @@ class Package extends LibraryContainer @override String get location => pathLib.toUri(packageMeta.resolvedDir).toString(); + @override + CaseType get caseDefault => CaseType.lower; + @override String get name => _name; @@ -6096,6 +6407,9 @@ class Parameter extends ModelElement implements EnclosedElement { ParameterElement get _parameter => element as ParameterElement; + @override + CaseType get caseDefault => CaseType.lowerCamel; + @override String toString() => element.name; } @@ -6276,7 +6590,7 @@ class TopLevelVariable extends ModelElement return canonicalModelElement?.href; assert(canonicalLibrary != null); assert(canonicalLibrary == library); - return '${package.baseHref}${library.dirName}/$fileName'; + return '${package.baseHref}${library.safeDirName}/$filename'; } @override @@ -6304,7 +6618,12 @@ class TopLevelVariable extends ModelElement } @override - String get fileName => isConst ? '$name-constant.html' : '$name.html'; + CaseType get caseDefault { + return CaseType.lowerCamel; + } + + @override + String get filename => '$safeName${isConst ? '-constant.html' : '.html'}'; @override DefinedElementType get modelType => super.modelType; @@ -6343,7 +6662,7 @@ class Typedef extends ModelElement return canonicalModelElement?.href; assert(canonicalLibrary != null); assert(canonicalLibrary == library); - return '${package.baseHref}${library.dirName}/$fileName'; + return '${package.baseHref}${library.safeDirName}/$filename'; } // Food for mustache. @@ -6381,7 +6700,7 @@ class TypeParameter extends ModelElement { return canonicalModelElement?.href; assert(canonicalLibrary != null); assert(canonicalLibrary == library); - return '${package.baseHref}${enclosingElement.library.dirName}/${enclosingElement.name}/$name'; + return '${package.baseHref}${enclosingElement.library.safeDirName}/${enclosingElement.safeName}/$filename'; } @override diff --git a/lib/src/package_meta.dart b/lib/src/package_meta.dart index b227f175e1..0dc8a1fe0b 100644 --- a/lib/src/package_meta.dart +++ b/lib/src/package_meta.dart @@ -334,11 +334,11 @@ class _FilePackageMeta extends PackageMeta { } } -File _locate(Directory dir, List fileNames) { +File _locate(Directory dir, List filenames) { List files = new List.from(dir.listSync().where((f) => f is File)); - for (String name in fileNames) { + for (String name in filenames) { for (File f in files) { String baseName = pathLib.basename(f.path).toLowerCase(); if (baseName == name) return f; diff --git a/test/model_test.dart b/test/model_test.dart index 38d0cc8005..6e94661200 100644 --- a/test/model_test.dart +++ b/test/model_test.dart @@ -1568,7 +1568,7 @@ void main() { }); test('correctly finds all the classes', () { - expect(classes, hasLength(30)); + expect(classes, hasLength(31)); }); test('abstract', () { @@ -2832,7 +2832,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, }); test('found five properties', () { - expect(exLibrary.publicProperties, hasLength(5)); + expect(exLibrary.publicProperties, hasLength(9)); }); test('linked return type is a double', () { @@ -3410,9 +3410,14 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, } class StringName extends Nameable { + static final NameRegistry _nameRegistry = new NameRegistry(debugName: 'Test Root'); + @override final String name; StringName(this.name); @override String toString() => name; + + @override + NameRegistry get nameRegistry => _nameRegistry; } diff --git a/testing/test_package/lib/example.dart b/testing/test_package/lib/example.dart index 7929db7b2a..cd24deb2ff 100644 --- a/testing/test_package/lib/example.dart +++ b/testing/test_package/lib/example.dart @@ -580,3 +580,48 @@ abstract class HtmlInjection { /// {@end-tool} void injectHtmlFromTool(); } + +/// Name collision enum +enum NameCollision { + /// name collision enum 1 + NameCollision, + /// name collision enum 2 + nameCollision, + /// name collision enum 3 + namecollision, + /// name collision enum 4 + NAMECOLLISION, + /// name collision enum 5 + NameCOllision, + /// name collision enum 6 + nameCOllision, +} + +/// Mixed case class name collision starting with uppercase +class NameCOllision { + /// Constructor + NameCOllision(); + /// lowerCamelCase name collision + final nameCOllision = null; + /// lowerCamelCase name collision + final nameCollision = null; +} + +/// lowerCamelCase name collision +String nameCollision; + +/// lowercase name collision +String namecollision; + +/// UPPPERCASE name collision +String NAMECOLLISION; + + +/// Mixed case name collision starting with lowercase +String nameCOllision; + +/// Mixed case name collision starting with underscore +String _NameCOllision; + +/// Mixed case name collision starting with underscore +String _nameCOllision; diff --git a/testing/test_package_docs/__404error.html b/testing/test_package_docs/__404error.html index 0e857d20e1..20143ade07 100644 --- a/testing/test_package_docs/__404error.html +++ b/testing/test_package_docs/__404error.html @@ -38,24 +38,24 @@
test_package pa
  • Superb
  • Unreal
  • Libraries
  • +
  • code_in_comments
  • anonymous_library
  • another_anonymous_lib
  • -
  • code_in_comments
  • is_deprecated
  • Unreal
  • reexport_one
  • reexport_two
  • Real Libraries
  • -
  • ex
  • -
  • fake
  • two_exports
  • +
  • fake
  • +
  • ex
  • Misc
  • two_exports
  • Other
  • css
  • test_package_imported
  • -
  • categoriesExported
  • test_package_imported.main
  • +
  • categoriesExported
  • diff --git a/testing/test_package_docs/anonymous_library/anonymous_library-library.html b/testing/test_package_docs/anonymous_library/anonymous_library-library.html index 35e58fd823..5492d9d17d 100644 --- a/testing/test_package_docs/anonymous_library/anonymous_library-library.html +++ b/testing/test_package_docs/anonymous_library/anonymous_library-library.html @@ -41,24 +41,24 @@
    test_package pa
  • Superb
  • Unreal
  • Libraries
  • +
  • code_in_comments
  • anonymous_library
  • another_anonymous_lib
  • -
  • code_in_comments
  • is_deprecated
  • Unreal
  • reexport_one
  • reexport_two
  • Real Libraries
  • -
  • ex
  • -
  • fake
  • two_exports
  • +
  • fake
  • +
  • ex
  • Misc
  • two_exports
  • Other
  • css
  • test_package_imported
  • -
  • categoriesExported
  • test_package_imported.main
  • +
  • categoriesExported
  • diff --git a/testing/test_package_docs/another_anonymous_lib/another_anonymous_lib-library.html b/testing/test_package_docs/another_anonymous_lib/another_anonymous_lib-library.html index 8dc9c1a11e..d78b872060 100644 --- a/testing/test_package_docs/another_anonymous_lib/another_anonymous_lib-library.html +++ b/testing/test_package_docs/another_anonymous_lib/another_anonymous_lib-library.html @@ -41,24 +41,24 @@
    test_package pa
  • Superb
  • Unreal
  • Libraries
  • +
  • code_in_comments
  • anonymous_library
  • another_anonymous_lib
  • -
  • code_in_comments
  • is_deprecated
  • Unreal
  • reexport_one
  • reexport_two
  • Real Libraries
  • -
  • ex
  • -
  • fake
  • two_exports
  • +
  • fake
  • +
  • ex
  • Misc
  • two_exports
  • Other
  • css
  • test_package_imported
  • -
  • categoriesExported
  • test_package_imported.main
  • +
  • categoriesExported
  • diff --git a/testing/test_package_docs/categoriesExported/categoriesExported-library.html b/testing/test_package_docs/categoriesExported/categoriesExported-library.html index bf955d52ad..9f68b267ae 100644 --- a/testing/test_package_docs/categoriesExported/categoriesExported-library.html +++ b/testing/test_package_docs/categoriesExported/categoriesExported-library.html @@ -41,24 +41,24 @@
    test_package pa
  • Superb
  • Unreal
  • Libraries
  • +
  • code_in_comments
  • anonymous_library
  • another_anonymous_lib
  • -
  • code_in_comments
  • is_deprecated
  • Unreal
  • reexport_one
  • reexport_two
  • Real Libraries
  • -
  • ex
  • -
  • fake
  • two_exports
  • +
  • fake
  • +
  • ex
  • Misc
  • two_exports
  • Other
  • css
  • test_package_imported
  • -
  • categoriesExported
  • test_package_imported.main
  • +
  • categoriesExported
  • diff --git a/testing/test_package_docs/code_in_comments/code_in_comments-library.html b/testing/test_package_docs/code_in_comments/code_in_comments-library.html index f777dec8b2..9d7b91f1f1 100644 --- a/testing/test_package_docs/code_in_comments/code_in_comments-library.html +++ b/testing/test_package_docs/code_in_comments/code_in_comments-library.html @@ -41,24 +41,24 @@
    test_package pa
  • Superb
  • Unreal
  • Libraries
  • +
  • code_in_comments
  • anonymous_library
  • another_anonymous_lib
  • -
  • code_in_comments
  • is_deprecated
  • Unreal
  • reexport_one
  • reexport_two
  • Real Libraries
  • -
  • ex
  • -
  • fake
  • two_exports
  • +
  • fake
  • +
  • ex
  • Misc
  • two_exports
  • Other
  • css
  • test_package_imported
  • -
  • categoriesExported
  • test_package_imported.main
  • +
  • categoriesExported
  • diff --git a/testing/test_package_docs/css/css-library.html b/testing/test_package_docs/css/css-library.html index c4e97713c7..6810765373 100644 --- a/testing/test_package_docs/css/css-library.html +++ b/testing/test_package_docs/css/css-library.html @@ -41,24 +41,24 @@
    test_package pa
  • Superb
  • Unreal
  • Libraries
  • +
  • code_in_comments
  • anonymous_library
  • another_anonymous_lib
  • -
  • code_in_comments
  • is_deprecated
  • Unreal
  • reexport_one
  • reexport_two
  • Real Libraries
  • -
  • ex
  • -
  • fake
  • two_exports
  • +
  • fake
  • +
  • ex
  • Misc
  • two_exports
  • Other
  • css
  • test_package_imported
  • -
  • categoriesExported
  • test_package_imported.main
  • +
  • categoriesExported
  • diff --git a/testing/test_package_docs/ex/Animal-class.html b/testing/test_package_docs/ex/Animal-class.html index 894669fd14..b2bf553c76 100644 --- a/testing/test_package_docs/ex/Animal-class.html +++ b/testing/test_package_docs/ex/Animal-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/AnotherParameterizedClass-class.html b/testing/test_package_docs/ex/AnotherParameterizedClass-class.html index a58517b970..14bca53775 100644 --- a/testing/test_package_docs/ex/AnotherParameterizedClass-class.html +++ b/testing/test_package_docs/ex/AnotherParameterizedClass-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/Apple-class.html b/testing/test_package_docs/ex/Apple-class.html index d9178197dc..fd887609c0 100644 --- a/testing/test_package_docs/ex/Apple-class.html +++ b/testing/test_package_docs/ex/Apple-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/B-class.html b/testing/test_package_docs/ex/B-class.html index 08bd4351cc..fe6685b219 100644 --- a/testing/test_package_docs/ex/B-class.html +++ b/testing/test_package_docs/ex/B-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/COLOR-constant.html b/testing/test_package_docs/ex/COLOR-constant.html index f3203d70c6..84a8c10f66 100644 --- a/testing/test_package_docs/ex/COLOR-constant.html +++ b/testing/test_package_docs/ex/COLOR-constant.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/COLOR_GREEN-constant.html b/testing/test_package_docs/ex/COLOR_GREEN-constant.html index e627b7d038..7a701774ff 100644 --- a/testing/test_package_docs/ex/COLOR_GREEN-constant.html +++ b/testing/test_package_docs/ex/COLOR_GREEN-constant.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/COLOR_ORANGE-constant.html b/testing/test_package_docs/ex/COLOR_ORANGE-constant.html index 1e6a1f86d3..4f1aae7a66 100644 --- a/testing/test_package_docs/ex/COLOR_ORANGE-constant.html +++ b/testing/test_package_docs/ex/COLOR_ORANGE-constant.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/COMPLEX_COLOR-constant.html b/testing/test_package_docs/ex/COMPLEX_COLOR-constant.html index 2c224c2ba2..ff18d3d7bc 100644 --- a/testing/test_package_docs/ex/COMPLEX_COLOR-constant.html +++ b/testing/test_package_docs/ex/COMPLEX_COLOR-constant.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/Cat-class.html b/testing/test_package_docs/ex/Cat-class.html index 044d0f1c31..3fcd83f0d5 100644 --- a/testing/test_package_docs/ex/Cat-class.html +++ b/testing/test_package_docs/ex/Cat-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/CatString-class.html b/testing/test_package_docs/ex/CatString-class.html index 986cbb2503..1f67015de0 100644 --- a/testing/test_package_docs/ex/CatString-class.html +++ b/testing/test_package_docs/ex/CatString-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/ConstantCat-class.html b/testing/test_package_docs/ex/ConstantCat-class.html index 2c83357f49..32f75048ac 100644 --- a/testing/test_package_docs/ex/ConstantCat-class.html +++ b/testing/test_package_docs/ex/ConstantCat-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/Deprecated-class.html b/testing/test_package_docs/ex/Deprecated-class.html index 3f1d80ceb1..9c0fa7ece8 100644 --- a/testing/test_package_docs/ex/Deprecated-class.html +++ b/testing/test_package_docs/ex/Deprecated-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/Dog-class.html b/testing/test_package_docs/ex/Dog-class.html index a2502ada1d..8b269330ba 100644 --- a/testing/test_package_docs/ex/Dog-class.html +++ b/testing/test_package_docs/ex/Dog-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/E-class.html b/testing/test_package_docs/ex/E-class.html index 58e3cfa446..f4c331deb9 100644 --- a/testing/test_package_docs/ex/E-class.html +++ b/testing/test_package_docs/ex/E-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/ExtendedShortName-class.html b/testing/test_package_docs/ex/ExtendedShortName-class.html index bde7dac37b..076308d198 100644 --- a/testing/test_package_docs/ex/ExtendedShortName-class.html +++ b/testing/test_package_docs/ex/ExtendedShortName-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/F-class.html b/testing/test_package_docs/ex/F-class.html index c8ab30e87f..e8b882b66a 100644 --- a/testing/test_package_docs/ex/F-class.html +++ b/testing/test_package_docs/ex/F-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/ForAnnotation-class.html b/testing/test_package_docs/ex/ForAnnotation-class.html index 9a538a87ea..fcd5da835c 100644 --- a/testing/test_package_docs/ex/ForAnnotation-class.html +++ b/testing/test_package_docs/ex/ForAnnotation-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/HasAnnotation-class.html b/testing/test_package_docs/ex/HasAnnotation-class.html index 09eda2d3ce..f3e34083bc 100644 --- a/testing/test_package_docs/ex/HasAnnotation-class.html +++ b/testing/test_package_docs/ex/HasAnnotation-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/Helper-class.html b/testing/test_package_docs/ex/Helper-class.html index ccb0e87067..a96ed8cad3 100644 --- a/testing/test_package_docs/ex/Helper-class.html +++ b/testing/test_package_docs/ex/Helper-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/HtmlInjection-class.html b/testing/test_package_docs/ex/HtmlInjection-class.html index 9f4c9a8fdf..6e79da15af 100644 --- a/testing/test_package_docs/ex/HtmlInjection-class.html +++ b/testing/test_package_docs/ex/HtmlInjection-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/Klass-class.html b/testing/test_package_docs/ex/Klass-class.html index ab86c6cf08..7f4ebd1e04 100644 --- a/testing/test_package_docs/ex/Klass-class.html +++ b/testing/test_package_docs/ex/Klass-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/MY_CAT-constant.html b/testing/test_package_docs/ex/MY_CAT-constant.html index 4bca6ba680..757c4fb528 100644 --- a/testing/test_package_docs/ex/MY_CAT-constant.html +++ b/testing/test_package_docs/ex/MY_CAT-constant.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/MyError-class.html b/testing/test_package_docs/ex/MyError-class.html index 330e868236..9960fe3c3d 100644 --- a/testing/test_package_docs/ex/MyError-class.html +++ b/testing/test_package_docs/ex/MyError-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/MyErrorImplements-class.html b/testing/test_package_docs/ex/MyErrorImplements-class.html index bea956d42a..4e1c78284a 100644 --- a/testing/test_package_docs/ex/MyErrorImplements-class.html +++ b/testing/test_package_docs/ex/MyErrorImplements-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/MyException-class.html b/testing/test_package_docs/ex/MyException-class.html index 1d19b019d9..de50470d57 100644 --- a/testing/test_package_docs/ex/MyException-class.html +++ b/testing/test_package_docs/ex/MyException-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/MyExceptionImplements-class.html b/testing/test_package_docs/ex/MyExceptionImplements-class.html index a80ead5e58..3ca95629e9 100644 --- a/testing/test_package_docs/ex/MyExceptionImplements-class.html +++ b/testing/test_package_docs/ex/MyExceptionImplements-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/NAMECOLLISION-upper.html b/testing/test_package_docs/ex/NAMECOLLISION-upper.html new file mode 100644 index 0000000000..a37e9f7abb --- /dev/null +++ b/testing/test_package_docs/ex/NAMECOLLISION-upper.html @@ -0,0 +1,155 @@ + + + + + + + + NAMECOLLISION property - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    NAMECOLLISION
    + +
    + +
    + + + +
    +

    NAMECOLLISION top-level property

    + +
    + String + NAMECOLLISION +
    read / write
    +
    +
    +

    UPPPERCASE name collision

    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/ex/NameCOllision-class.html b/testing/test_package_docs/ex/NameCOllision-class.html new file mode 100644 index 0000000000..a76e7db850 --- /dev/null +++ b/testing/test_package_docs/ex/NameCOllision-class.html @@ -0,0 +1,265 @@ + + + + + + + + NameCOllision class - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    NameCOllision
    + +
    + +
    + + + +
    +

    NameCOllision class

    + +
    +

    Mixed case class name collision starting with uppercase

    +
    + + +
    +

    Constructors

    + +
    +
    + NameCOllision() +
    +
    + Constructor +
    +
    +
    + +
    +

    Properties

    + +
    +
    + nameCOllision + → dynamic +
    +
    + lowerCamelCase name collision +
    final
    +
    +
    + nameCollision + → dynamic +
    +
    + lowerCamelCase name collision +
    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/NameCOllision/NameCOllision.html b/testing/test_package_docs/ex/NameCOllision/NameCOllision.html new file mode 100644 index 0000000000..87564c5de6 --- /dev/null +++ b/testing/test_package_docs/ex/NameCOllision/NameCOllision.html @@ -0,0 +1,102 @@ + + + + + + + + NameCOllision constructor - NameCOllision class - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    NameCOllision
    + +
    + +
    + + + +
    +

    NameCOllision constructor

    + +
    + + NameCOllision() +
    + +
    +

    Constructor

    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/ex/NameCOllision/hashCode.html b/testing/test_package_docs/ex/NameCOllision/hashCode.html new file mode 100644 index 0000000000..00c0c76a8f --- /dev/null +++ b/testing/test_package_docs/ex/NameCOllision/hashCode.html @@ -0,0 +1,103 @@ + + + + + + + + hashCode property - NameCOllision class - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    hashCode
    + +
    + +
    + + + +
    +

    hashCode property

    + + +
    + +
    + int + hashCode +
    inherited
    +
    + + +
    + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/ex/NameCOllision/nameCOllision-0427.html b/testing/test_package_docs/ex/NameCOllision/nameCOllision-0427.html new file mode 100644 index 0000000000..2872286143 --- /dev/null +++ b/testing/test_package_docs/ex/NameCOllision/nameCOllision-0427.html @@ -0,0 +1,101 @@ + + + + + + + + nameCOllision property - NameCOllision class - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    nameCOllision
    + +
    + +
    + + + +
    +

    nameCOllision property

    + +
    + dynamic + nameCOllision +
    final
    +
    +
    +

    lowerCamelCase name collision

    +
    + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/ex/NameCOllision/nameCollision-0418.html b/testing/test_package_docs/ex/NameCOllision/nameCollision-0418.html new file mode 100644 index 0000000000..2f2e000c29 --- /dev/null +++ b/testing/test_package_docs/ex/NameCOllision/nameCollision-0418.html @@ -0,0 +1,101 @@ + + + + + + + + nameCollision property - NameCOllision class - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    nameCollision
    + +
    + +
    + + + +
    +

    nameCollision property

    + +
    + dynamic + nameCollision +
    final
    +
    +
    +

    lowerCamelCase name collision

    +
    + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/ex/NameCOllision/noSuchMethod.html b/testing/test_package_docs/ex/NameCOllision/noSuchMethod.html new file mode 100644 index 0000000000..58b36c6dd5 --- /dev/null +++ b/testing/test_package_docs/ex/NameCOllision/noSuchMethod.html @@ -0,0 +1,100 @@ + + + + + + + + noSuchMethod method - NameCOllision class - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    noSuchMethod
    + +
    + +
    + + + +
    +

    noSuchMethod method

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

    operator == method

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

    runtimeType property

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

    toString method

    + +
    + String + toString +() +
    inherited
    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/ex/NameCollision-1318-class.html b/testing/test_package_docs/ex/NameCollision-1318-class.html new file mode 100644 index 0000000000..ac70b5fc97 --- /dev/null +++ b/testing/test_package_docs/ex/NameCollision-1318-class.html @@ -0,0 +1,333 @@ + + + + + + + + NameCollision enum - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    NameCollision
    + +
    + +
    + + + +
    +

    NameCollision enum

    + +
    +

    Name collision enum

    +
    + + +
    +

    Constants

    + +
    +
    + NAMECOLLISION + → const NameCollision +
    +
    +

    name collision enum 4

    + +
    + const NameCollision(3) +
    +
    +
    + NameCOllision + → const NameCollision +
    +
    +

    name collision enum 5

    + +
    + const NameCollision(4) +
    +
    +
    + NameCollision + → const NameCollision +
    +
    +

    name collision enum 1

    + +
    + const NameCollision(0) +
    +
    +
    + nameCOllision + → const NameCollision +
    +
    +

    name collision enum 6

    + +
    + const NameCollision(5) +
    +
    +
    + nameCollision + → const NameCollision +
    +
    +

    name collision enum 2

    + +
    + const NameCollision(1) +
    +
    +
    + namecollision + → const NameCollision +
    +
    +

    name collision enum 3

    + +
    + const NameCollision(2) +
    +
    +
    + values + → const List<NameCollision> +
    +
    +

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

    + +
    + const List<NameCollision> +
    +
    +
    +
    + + +
    +

    Properties

    + +
    +
    + index + → int +
    +
    +

    The integer index of this enum.

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

    Methods

    +
    +
    + toString() + → String + +
    +
    + +
    override
    +
    +
    + noSuchMethod(Invocation invocation) + → dynamic + +
    +
    + +
    inherited
    +
    +
    +
    + +
    +

    Operators

    +
    +
    + operator ==(dynamic other) + → bool + +
    +
    + +
    inherited
    +
    +
    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/ex/NameCollision-1318/hashCode.html b/testing/test_package_docs/ex/NameCollision-1318/hashCode.html new file mode 100644 index 0000000000..8e78b9d3fa --- /dev/null +++ b/testing/test_package_docs/ex/NameCollision-1318/hashCode.html @@ -0,0 +1,108 @@ + + + + + + + + hashCode property - NameCollision class - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    hashCode
    + +
    + +
    + + + +
    +

    hashCode property

    + + +
    + +
    + int + hashCode +
    inherited
    +
    + + +
    + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/ex/NameCollision-1318/noSuchMethod.html b/testing/test_package_docs/ex/NameCollision-1318/noSuchMethod.html new file mode 100644 index 0000000000..b67c67dc95 --- /dev/null +++ b/testing/test_package_docs/ex/NameCollision-1318/noSuchMethod.html @@ -0,0 +1,105 @@ + + + + + + + + noSuchMethod method - NameCollision class - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    noSuchMethod
    + +
    + +
    + + + +
    +

    noSuchMethod method

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

    operator == method

    + +
    + bool + operator == +(dynamic other) +
    inherited
    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/ex/NameCollision-1318/runtimeType.html b/testing/test_package_docs/ex/NameCollision-1318/runtimeType.html new file mode 100644 index 0000000000..1ba547e3a8 --- /dev/null +++ b/testing/test_package_docs/ex/NameCollision-1318/runtimeType.html @@ -0,0 +1,108 @@ + + + + + + + + runtimeType property - NameCollision class - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    runtimeType
    + +
    + +
    + + + +
    +

    runtimeType property

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

    toString method

    + +
    + String + toString +() +
    override
    +
    + + + +
    + + + +
    + +
    + + 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 index c784e35dd9..1b19100827 100644 --- a/testing/test_package_docs/ex/PRETTY_COLORS-constant.html +++ b/testing/test_package_docs/ex/PRETTY_COLORS-constant.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/ParameterizedClass-class.html b/testing/test_package_docs/ex/ParameterizedClass-class.html index 74d448a143..360ba37301 100644 --- a/testing/test_package_docs/ex/ParameterizedClass-class.html +++ b/testing/test_package_docs/ex/ParameterizedClass-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/ParameterizedTypedef.html b/testing/test_package_docs/ex/ParameterizedTypedef.html index ad8fa4f1d7..47e0097ff6 100644 --- a/testing/test_package_docs/ex/ParameterizedTypedef.html +++ b/testing/test_package_docs/ex/ParameterizedTypedef.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass-class.html b/testing/test_package_docs/ex/PublicClassExtendsPrivateClass-class.html index c5ec3c9ec9..12eb4a28bc 100644 --- a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass-class.html +++ b/testing/test_package_docs/ex/PublicClassExtendsPrivateClass-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface-class.html b/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface-class.html index a08b83c176..a433b2ec5c 100644 --- a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface-class.html +++ b/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/ShapeType-class.html b/testing/test_package_docs/ex/ShapeType-class.html index 9acab2dff2..35ca45a822 100644 --- a/testing/test_package_docs/ex/ShapeType-class.html +++ b/testing/test_package_docs/ex/ShapeType-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/ShortName-class.html b/testing/test_package_docs/ex/ShortName-class.html index e66a10b1a6..39b6ffe8bd 100644 --- a/testing/test_package_docs/ex/ShortName-class.html +++ b/testing/test_package_docs/ex/ShortName-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/SpecializedDuration-class.html b/testing/test_package_docs/ex/SpecializedDuration-class.html index 81e98316f5..a6d6f201df 100644 --- a/testing/test_package_docs/ex/SpecializedDuration-class.html +++ b/testing/test_package_docs/ex/SpecializedDuration-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/TemplatedClass-class.html b/testing/test_package_docs/ex/TemplatedClass-class.html index 5a21227cb3..6fb02597cc 100644 --- a/testing/test_package_docs/ex/TemplatedClass-class.html +++ b/testing/test_package_docs/ex/TemplatedClass-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/TemplatedInterface-class.html b/testing/test_package_docs/ex/TemplatedInterface-class.html index a47fc84527..df3f422608 100644 --- a/testing/test_package_docs/ex/TemplatedInterface-class.html +++ b/testing/test_package_docs/ex/TemplatedInterface-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/ToolUser-class.html b/testing/test_package_docs/ex/ToolUser-class.html index 10951cc4d9..be66db108a 100644 --- a/testing/test_package_docs/ex/ToolUser-class.html +++ b/testing/test_package_docs/ex/ToolUser-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs-class.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs-class.html index 58f653b1ab..2bda079b28 100644 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs-class.html +++ b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/WithGeneric-class.html b/testing/test_package_docs/ex/WithGeneric-class.html index 31516b1960..f0a65d9f0c 100644 --- a/testing/test_package_docs/ex/WithGeneric-class.html +++ b/testing/test_package_docs/ex/WithGeneric-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/WithGenericSub-class.html b/testing/test_package_docs/ex/WithGenericSub-class.html index c3a2d47500..13a9737f0e 100644 --- a/testing/test_package_docs/ex/WithGenericSub-class.html +++ b/testing/test_package_docs/ex/WithGenericSub-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/aComplexTypedef.html b/testing/test_package_docs/ex/aComplexTypedef.html index fc81e957a8..4a43ad9ef3 100644 --- a/testing/test_package_docs/ex/aComplexTypedef.html +++ b/testing/test_package_docs/ex/aComplexTypedef.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/aThingToDo-class.html b/testing/test_package_docs/ex/aThingToDo-class.html index e709ecbad1..d92d87c990 100644 --- a/testing/test_package_docs/ex/aThingToDo-class.html +++ b/testing/test_package_docs/ex/aThingToDo-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/deprecated-constant.html b/testing/test_package_docs/ex/deprecated-lower-constant.html similarity index 93% rename from testing/test_package_docs/ex/deprecated-constant.html rename to testing/test_package_docs/ex/deprecated-lower-constant.html index b1d4ff2f2b..2d6c1169f0 100644 --- a/testing/test_package_docs/ex/deprecated-constant.html +++ b/testing/test_package_docs/ex/deprecated-lower-constant.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/deprecatedField.html b/testing/test_package_docs/ex/deprecatedField.html index 36cd0d8657..e4af8f1cf5 100644 --- a/testing/test_package_docs/ex/deprecatedField.html +++ b/testing/test_package_docs/ex/deprecatedField.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/deprecatedGetter.html b/testing/test_package_docs/ex/deprecatedGetter.html index 854a5c8565..299614489b 100644 --- a/testing/test_package_docs/ex/deprecatedGetter.html +++ b/testing/test_package_docs/ex/deprecatedGetter.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/deprecatedSetter.html b/testing/test_package_docs/ex/deprecatedSetter.html index ee13317fef..c05d4afb95 100644 --- a/testing/test_package_docs/ex/deprecatedSetter.html +++ b/testing/test_package_docs/ex/deprecatedSetter.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/ex-library.html b/testing/test_package_docs/ex/ex-library.html index ee9f5556f3..d88f0130d2 100644 --- a/testing/test_package_docs/ex/ex-library.html +++ b/testing/test_package_docs/ex/ex-library.html @@ -41,24 +41,24 @@
    test_package pa
  • Superb
  • Unreal
  • Libraries
  • +
  • code_in_comments
  • anonymous_library
  • another_anonymous_lib
  • -
  • code_in_comments
  • is_deprecated
  • Unreal
  • reexport_one
  • reexport_two
  • Real Libraries
  • -
  • ex
  • -
  • fake
  • two_exports
  • +
  • fake
  • +
  • ex
  • Misc
  • two_exports
  • Other
  • css
  • test_package_imported
  • -
  • categoriesExported
  • test_package_imported.main
  • +
  • categoriesExported
  • @@ -183,6 +183,12 @@

    Classes

    A class
    +
    + NameCOllision +
    +
    + Mixed case class name collision starting with uppercase +
    ParameterizedClass<T>
    @@ -309,7 +315,7 @@

    Constants

    - deprecated + deprecated → const Deprecated
    @@ -393,6 +399,38 @@

    Properties

    write-only
    +
    +
    + NAMECOLLISION + ↔ String +
    +
    + UPPPERCASE name collision +
    read / write
    +
    +
    + nameCOllision + ↔ String +
    +
    + Mixed case name collision starting with lowercase +
    read / write
    +
    +
    + nameCollision + ↔ String +
    +
    + lowerCamelCase name collision +
    read / write
    +
    +
    + namecollision + ↔ String +
    +
    + lowercase name collision +
    read / write
    number @@ -449,6 +487,12 @@

    Enums

    Referencing processMessage (or other things) here should not break enum constants ala #1445 +
    + NameCollision +
    +
    + Name collision enum +
    @@ -541,6 +585,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -560,7 +605,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -570,6 +615,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -579,6 +628,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/function1.html b/testing/test_package_docs/ex/function1.html index decaefdb11..ac800142d5 100644 --- a/testing/test_package_docs/ex/function1.html +++ b/testing/test_package_docs/ex/function1.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/genericFunction.html b/testing/test_package_docs/ex/genericFunction.html index aec77712c4..9eb5f0d2f6 100644 --- a/testing/test_package_docs/ex/genericFunction.html +++ b/testing/test_package_docs/ex/genericFunction.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/incorrectDocReference-constant.html b/testing/test_package_docs/ex/incorrectDocReference-constant.html index 25a433ff3f..25b6d08628 100644 --- a/testing/test_package_docs/ex/incorrectDocReference-constant.html +++ b/testing/test_package_docs/ex/incorrectDocReference-constant.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/incorrectDocReferenceFromEx-constant.html b/testing/test_package_docs/ex/incorrectDocReferenceFromEx-constant.html index c27cb6a4b7..f09426e264 100644 --- a/testing/test_package_docs/ex/incorrectDocReferenceFromEx-constant.html +++ b/testing/test_package_docs/ex/incorrectDocReferenceFromEx-constant.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/nameCOllision-0427.html b/testing/test_package_docs/ex/nameCOllision-0427.html new file mode 100644 index 0000000000..191db5a2e7 --- /dev/null +++ b/testing/test_package_docs/ex/nameCOllision-0427.html @@ -0,0 +1,155 @@ + + + + + + + + nameCOllision property - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    nameCOllision
    + +
    + +
    + + + +
    +

    nameCOllision top-level property

    + +
    + String + nameCOllision +
    read / write
    +
    +
    +

    Mixed case name collision starting with lowercase

    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/ex/nameCollision-0418.html b/testing/test_package_docs/ex/nameCollision-0418.html new file mode 100644 index 0000000000..ef8966ffaa --- /dev/null +++ b/testing/test_package_docs/ex/nameCollision-0418.html @@ -0,0 +1,155 @@ + + + + + + + + nameCollision property - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    nameCollision
    + +
    + +
    + + + +
    +

    nameCollision top-level property

    + +
    + String + nameCollision +
    read / write
    +
    +
    +

    lowerCamelCase name collision

    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/ex/namecollision-lower.html b/testing/test_package_docs/ex/namecollision-lower.html new file mode 100644 index 0000000000..dbb3d5930b --- /dev/null +++ b/testing/test_package_docs/ex/namecollision-lower.html @@ -0,0 +1,155 @@ + + + + + + + + namecollision property - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    namecollision
    + +
    + +
    + + + +
    +

    namecollision top-level property

    + +
    + String + namecollision +
    read / write
    +
    +
    +

    lowercase name collision

    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/ex/number.html b/testing/test_package_docs/ex/number.html index 1e0f7193d0..87858cfef5 100644 --- a/testing/test_package_docs/ex/number.html +++ b/testing/test_package_docs/ex/number.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/processMessage.html b/testing/test_package_docs/ex/processMessage.html index 9e523678f4..22f1e7a00d 100644 --- a/testing/test_package_docs/ex/processMessage.html +++ b/testing/test_package_docs/ex/processMessage.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/ex/y.html b/testing/test_package_docs/ex/y.html index 17ba8114e9..8ade405029 100644 --- a/testing/test_package_docs/ex/y.html +++ b/testing/test_package_docs/ex/y.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs/fake/ABaseClass-class.html b/testing/test_package_docs/fake/ABaseClass-class.html index bab40d8acd..02ba2b940f 100644 --- a/testing/test_package_docs/fake/ABaseClass-class.html +++ b/testing/test_package_docs/fake/ABaseClass-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html b/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html index 8e1be0a7b2..3f9d258b18 100644 --- a/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html +++ b/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/AClassUsingNewStyleMixin-class.html b/testing/test_package_docs/fake/AClassUsingNewStyleMixin-class.html index 2d6f17f91a..239b1a6005 100644 --- a/testing/test_package_docs/fake/AClassUsingNewStyleMixin-class.html +++ b/testing/test_package_docs/fake/AClassUsingNewStyleMixin-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • @@ -190,7 +190,7 @@

    AClassUsingNewStyleMixin class

    Mixed in types
    diff --git a/testing/test_package_docs/fake/AClassWithFancyProperties-class.html b/testing/test_package_docs/fake/AClassWithFancyProperties-class.html index 48f1c8d9cb..1b8dd1ac74 100644 --- a/testing/test_package_docs/fake/AClassWithFancyProperties-class.html +++ b/testing/test_package_docs/fake/AClassWithFancyProperties-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/AMixinCallingSuper-class.html b/testing/test_package_docs/fake/AMixinCallingSuper-class.html index cdcd6347ca..2c6be94efc 100644 --- a/testing/test_package_docs/fake/AMixinCallingSuper-class.html +++ b/testing/test_package_docs/fake/AMixinCallingSuper-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/ATypeTakingClass-class.html b/testing/test_package_docs/fake/ATypeTakingClass-class.html index c89dca5de7..adbc8f5821 100644 --- a/testing/test_package_docs/fake/ATypeTakingClass-class.html +++ b/testing/test_package_docs/fake/ATypeTakingClass-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/ATypeTakingClassMixedIn-class.html b/testing/test_package_docs/fake/ATypeTakingClassMixedIn-class.html index ad60fbeb8b..6fd68983fb 100644 --- a/testing/test_package_docs/fake/ATypeTakingClassMixedIn-class.html +++ b/testing/test_package_docs/fake/ATypeTakingClassMixedIn-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/Annotation-class.html b/testing/test_package_docs/fake/Annotation-class.html index dba5ffc534..6cef40ca2c 100644 --- a/testing/test_package_docs/fake/Annotation-class.html +++ b/testing/test_package_docs/fake/Annotation-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/AnotherInterface-class.html b/testing/test_package_docs/fake/AnotherInterface-class.html index b5914775f4..753fdabafd 100644 --- a/testing/test_package_docs/fake/AnotherInterface-class.html +++ b/testing/test_package_docs/fake/AnotherInterface-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/BaseForDocComments-class.html b/testing/test_package_docs/fake/BaseForDocComments-class.html index c03be5040b..85a7b9e562 100644 --- a/testing/test_package_docs/fake/BaseForDocComments-class.html +++ b/testing/test_package_docs/fake/BaseForDocComments-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/BaseThingy-class.html b/testing/test_package_docs/fake/BaseThingy-class.html index 5fef23bf1e..58f4d3ac5f 100644 --- a/testing/test_package_docs/fake/BaseThingy-class.html +++ b/testing/test_package_docs/fake/BaseThingy-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/BaseThingy2-class.html b/testing/test_package_docs/fake/BaseThingy2-class.html index f4690dd510..0a5f886ba8 100644 --- a/testing/test_package_docs/fake/BaseThingy2-class.html +++ b/testing/test_package_docs/fake/BaseThingy2-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html b/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html index badc6ca40f..d177c7d58b 100644 --- a/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html +++ b/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/CUSTOM_CLASS_PRIVATE-constant.html b/testing/test_package_docs/fake/CUSTOM_CLASS_PRIVATE-constant.html index 89c673f5d8..4d0c5e0a9b 100644 --- a/testing/test_package_docs/fake/CUSTOM_CLASS_PRIVATE-constant.html +++ b/testing/test_package_docs/fake/CUSTOM_CLASS_PRIVATE-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/Callback2.html b/testing/test_package_docs/fake/Callback2.html index fec1c14595..37fceb7c7d 100644 --- a/testing/test_package_docs/fake/Callback2.html +++ b/testing/test_package_docs/fake/Callback2.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html b/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html index 0b577b9320..b08ee8f0db 100644 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html +++ b/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/Color-class.html b/testing/test_package_docs/fake/Color-class.html index 0e781b2bd9..ee48ff45ac 100644 --- a/testing/test_package_docs/fake/Color-class.html +++ b/testing/test_package_docs/fake/Color-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/ConstantClass-class.html b/testing/test_package_docs/fake/ConstantClass-class.html index 5bc00187cd..1ae22b03d5 100644 --- a/testing/test_package_docs/fake/ConstantClass-class.html +++ b/testing/test_package_docs/fake/ConstantClass-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/ConstructorTester-class.html b/testing/test_package_docs/fake/ConstructorTester-class.html index a4ac52c656..1b5a5d427c 100644 --- a/testing/test_package_docs/fake/ConstructorTester-class.html +++ b/testing/test_package_docs/fake/ConstructorTester-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/Cool-class.html b/testing/test_package_docs/fake/Cool-class.html index 2494cad0be..7eafc51997 100644 --- a/testing/test_package_docs/fake/Cool-class.html +++ b/testing/test_package_docs/fake/Cool-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/CovariantMemberParams-class.html b/testing/test_package_docs/fake/CovariantMemberParams-class.html index 813b8fa079..1da66b05ba 100644 --- a/testing/test_package_docs/fake/CovariantMemberParams-class.html +++ b/testing/test_package_docs/fake/CovariantMemberParams-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/DOWN-constant.html b/testing/test_package_docs/fake/DOWN-constant.html index ab6c1fe49c..9a4e2e63c8 100644 --- a/testing/test_package_docs/fake/DOWN-constant.html +++ b/testing/test_package_docs/fake/DOWN-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/DocumentWithATable-class.html b/testing/test_package_docs/fake/DocumentWithATable-class.html index 54e6e08e97..38cc1b3b2a 100644 --- a/testing/test_package_docs/fake/DocumentWithATable-class.html +++ b/testing/test_package_docs/fake/DocumentWithATable-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • @@ -178,7 +178,7 @@

    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"
    +

    It also has a short table with embedded links.

    DocumentWithATableAnnotationaMethod
    fooNot really"blah"
    barMaybe"stuff"
    @@ -274,7 +274,7 @@

    Constants

    - bar + bar → const DocumentWithATable
    @@ -322,7 +322,7 @@

    Constants

  • Constants
  • -
  • bar
  • +
  • bar
  • foo
  • diff --git a/testing/test_package_docs/fake/DocumentWithATable/DocumentWithATable.html b/testing/test_package_docs/fake/DocumentWithATable/DocumentWithATable.html index 935a0d864a..2604211106 100644 --- a/testing/test_package_docs/fake/DocumentWithATable/DocumentWithATable.html +++ b/testing/test_package_docs/fake/DocumentWithATable/DocumentWithATable.html @@ -59,7 +59,7 @@
    DocumentWithATable class
  • Constants
  • -
  • bar
  • +
  • bar
  • foo
  • diff --git a/testing/test_package_docs/fake/DocumentWithATable/aMethod.html b/testing/test_package_docs/fake/DocumentWithATable/aMethod.html index 044e256b4f..e690d6dec7 100644 --- a/testing/test_package_docs/fake/DocumentWithATable/aMethod.html +++ b/testing/test_package_docs/fake/DocumentWithATable/aMethod.html @@ -59,7 +59,7 @@
    DocumentWithATable class
  • Constants
  • -
  • bar
  • +
  • bar
  • foo
  • diff --git a/testing/test_package_docs_dev/fake/DocumentWithATable/bar-constant.html b/testing/test_package_docs/fake/DocumentWithATable/bar-lower-constant.html similarity index 98% rename from testing/test_package_docs_dev/fake/DocumentWithATable/bar-constant.html rename to testing/test_package_docs/fake/DocumentWithATable/bar-lower-constant.html index 5ec10125de..d6fbe6503c 100644 --- a/testing/test_package_docs_dev/fake/DocumentWithATable/bar-constant.html +++ b/testing/test_package_docs/fake/DocumentWithATable/bar-lower-constant.html @@ -59,7 +59,7 @@
    DocumentWithATable class
  • Constants
  • -
  • bar
  • +
  • bar
  • foo
  • diff --git a/testing/test_package_docs/fake/DocumentWithATable/foo-constant.html b/testing/test_package_docs/fake/DocumentWithATable/foo-constant.html index a4e22f0b7e..e9db4a0dee 100644 --- a/testing/test_package_docs/fake/DocumentWithATable/foo-constant.html +++ b/testing/test_package_docs/fake/DocumentWithATable/foo-constant.html @@ -59,7 +59,7 @@
    DocumentWithATable class
  • Constants
  • -
  • bar
  • +
  • bar
  • foo
  • diff --git a/testing/test_package_docs/fake/DocumentWithATable/hashCode.html b/testing/test_package_docs/fake/DocumentWithATable/hashCode.html index 034c5979f2..5a23353eb1 100644 --- a/testing/test_package_docs/fake/DocumentWithATable/hashCode.html +++ b/testing/test_package_docs/fake/DocumentWithATable/hashCode.html @@ -59,7 +59,7 @@
    DocumentWithATable class
  • Constants
  • -
  • bar
  • +
  • bar
  • foo
  • diff --git a/testing/test_package_docs/fake/DocumentWithATable/noSuchMethod.html b/testing/test_package_docs/fake/DocumentWithATable/noSuchMethod.html index 599ece67f1..3572672188 100644 --- a/testing/test_package_docs/fake/DocumentWithATable/noSuchMethod.html +++ b/testing/test_package_docs/fake/DocumentWithATable/noSuchMethod.html @@ -59,7 +59,7 @@
    DocumentWithATable class
  • Constants
  • -
  • bar
  • +
  • bar
  • foo
  • diff --git a/testing/test_package_docs/fake/DocumentWithATable/operator_equals.html b/testing/test_package_docs/fake/DocumentWithATable/operator_equals.html index 6310137a03..fd16cbca17 100644 --- a/testing/test_package_docs/fake/DocumentWithATable/operator_equals.html +++ b/testing/test_package_docs/fake/DocumentWithATable/operator_equals.html @@ -59,7 +59,7 @@
    DocumentWithATable class
  • Constants
  • -
  • bar
  • +
  • bar
  • foo
  • diff --git a/testing/test_package_docs/fake/DocumentWithATable/runtimeType.html b/testing/test_package_docs/fake/DocumentWithATable/runtimeType.html index 784cdd1e9d..c93d932c1b 100644 --- a/testing/test_package_docs/fake/DocumentWithATable/runtimeType.html +++ b/testing/test_package_docs/fake/DocumentWithATable/runtimeType.html @@ -59,7 +59,7 @@
    DocumentWithATable class
  • Constants
  • -
  • bar
  • +
  • bar
  • foo
  • diff --git a/testing/test_package_docs/fake/DocumentWithATable/toString.html b/testing/test_package_docs/fake/DocumentWithATable/toString.html index 2458e7c6f5..1ecc2493c8 100644 --- a/testing/test_package_docs/fake/DocumentWithATable/toString.html +++ b/testing/test_package_docs/fake/DocumentWithATable/toString.html @@ -59,7 +59,7 @@
    DocumentWithATable class
  • Constants
  • -
  • bar
  • +
  • bar
  • foo
  • diff --git a/testing/test_package_docs/fake/Doh-class.html b/testing/test_package_docs/fake/Doh-class.html index 5d9318599d..1112d1c0fb 100644 --- a/testing/test_package_docs/fake/Doh-class.html +++ b/testing/test_package_docs/fake/Doh-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/ExtendsFutureVoid-class.html b/testing/test_package_docs/fake/ExtendsFutureVoid-class.html index 6ce15a82a8..be1ff0d415 100644 --- a/testing/test_package_docs/fake/ExtendsFutureVoid-class.html +++ b/testing/test_package_docs/fake/ExtendsFutureVoid-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/ExtraSpecialList-class.html b/testing/test_package_docs/fake/ExtraSpecialList-class.html index f207a36d94..17528da15f 100644 --- a/testing/test_package_docs/fake/ExtraSpecialList-class.html +++ b/testing/test_package_docs/fake/ExtraSpecialList-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/FakeProcesses.html b/testing/test_package_docs/fake/FakeProcesses.html index fd9425d209..a32788f4a2 100644 --- a/testing/test_package_docs/fake/FakeProcesses.html +++ b/testing/test_package_docs/fake/FakeProcesses.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/Foo2-class.html b/testing/test_package_docs/fake/Foo2-class.html index 7e83f3362d..b11babec52 100644 --- a/testing/test_package_docs/fake/Foo2-class.html +++ b/testing/test_package_docs/fake/Foo2-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • @@ -270,7 +270,7 @@

    Constants

    - BAR + BAR → const Foo2
    @@ -318,7 +318,7 @@

    Constants

  • Constants
  • -
  • BAR
  • +
  • BAR
  • BAZ
  • diff --git a/testing/test_package_docs_dev/fake/Foo2/BAR-constant.html b/testing/test_package_docs/fake/Foo2/BAR-upper-constant.html similarity index 98% rename from testing/test_package_docs_dev/fake/Foo2/BAR-constant.html rename to testing/test_package_docs/fake/Foo2/BAR-upper-constant.html index fa65983934..6f6718d626 100644 --- a/testing/test_package_docs_dev/fake/Foo2/BAR-constant.html +++ b/testing/test_package_docs/fake/Foo2/BAR-upper-constant.html @@ -59,7 +59,7 @@
    Foo2 class
  • Constants
  • -
  • BAR
  • +
  • BAR
  • BAZ
  • diff --git a/testing/test_package_docs/fake/Foo2/BAZ-constant.html b/testing/test_package_docs/fake/Foo2/BAZ-constant.html index 6cc582cae3..dc9cb51368 100644 --- a/testing/test_package_docs/fake/Foo2/BAZ-constant.html +++ b/testing/test_package_docs/fake/Foo2/BAZ-constant.html @@ -59,7 +59,7 @@
    Foo2 class
  • Constants
  • -
  • BAR
  • +
  • BAR
  • BAZ
  • diff --git a/testing/test_package_docs/fake/Foo2/Foo2.html b/testing/test_package_docs/fake/Foo2/Foo2.html index d8b960c8b9..1608fbaf05 100644 --- a/testing/test_package_docs/fake/Foo2/Foo2.html +++ b/testing/test_package_docs/fake/Foo2/Foo2.html @@ -59,7 +59,7 @@
    Foo2 class
  • Constants
  • -
  • BAR
  • +
  • BAR
  • BAZ
  • diff --git a/testing/test_package_docs/fake/Foo2/hashCode.html b/testing/test_package_docs/fake/Foo2/hashCode.html index dd9b1a9a59..f2b0e0d60b 100644 --- a/testing/test_package_docs/fake/Foo2/hashCode.html +++ b/testing/test_package_docs/fake/Foo2/hashCode.html @@ -59,7 +59,7 @@
    Foo2 class
  • Constants
  • -
  • BAR
  • +
  • BAR
  • BAZ
  • diff --git a/testing/test_package_docs/fake/Foo2/index.html b/testing/test_package_docs/fake/Foo2/index.html index 4dff9baadb..00faaa9762 100644 --- a/testing/test_package_docs/fake/Foo2/index.html +++ b/testing/test_package_docs/fake/Foo2/index.html @@ -59,7 +59,7 @@
    Foo2 class
  • Constants
  • -
  • BAR
  • +
  • BAR
  • BAZ
  • diff --git a/testing/test_package_docs/fake/Foo2/noSuchMethod.html b/testing/test_package_docs/fake/Foo2/noSuchMethod.html index 2f3ca62153..3bee528542 100644 --- a/testing/test_package_docs/fake/Foo2/noSuchMethod.html +++ b/testing/test_package_docs/fake/Foo2/noSuchMethod.html @@ -59,7 +59,7 @@
    Foo2 class
  • Constants
  • -
  • BAR
  • +
  • BAR
  • BAZ
  • diff --git a/testing/test_package_docs/fake/Foo2/operator_equals.html b/testing/test_package_docs/fake/Foo2/operator_equals.html index 536381cbf6..9aa62a364a 100644 --- a/testing/test_package_docs/fake/Foo2/operator_equals.html +++ b/testing/test_package_docs/fake/Foo2/operator_equals.html @@ -59,7 +59,7 @@
    Foo2 class
  • Constants
  • -
  • BAR
  • +
  • BAR
  • BAZ
  • diff --git a/testing/test_package_docs/fake/Foo2/runtimeType.html b/testing/test_package_docs/fake/Foo2/runtimeType.html index 0261d3d4a3..c544a0c482 100644 --- a/testing/test_package_docs/fake/Foo2/runtimeType.html +++ b/testing/test_package_docs/fake/Foo2/runtimeType.html @@ -59,7 +59,7 @@
    Foo2 class
  • Constants
  • -
  • BAR
  • +
  • BAR
  • BAZ
  • diff --git a/testing/test_package_docs/fake/Foo2/toString.html b/testing/test_package_docs/fake/Foo2/toString.html index 9e8b98fcd5..9a2eeac1a1 100644 --- a/testing/test_package_docs/fake/Foo2/toString.html +++ b/testing/test_package_docs/fake/Foo2/toString.html @@ -59,7 +59,7 @@
    Foo2 class
  • Constants
  • -
  • BAR
  • +
  • BAR
  • BAZ
  • diff --git a/testing/test_package_docs/fake/GenericClass-class.html b/testing/test_package_docs/fake/GenericClass-class.html index 3dd597c7c8..a5a6e0eee4 100644 --- a/testing/test_package_docs/fake/GenericClass-class.html +++ b/testing/test_package_docs/fake/GenericClass-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • @@ -221,7 +221,7 @@

    Properties

    ↔ T
    - Destined to be overridden by ModifierClass and GenericMixin, both. + Destined to be overridden by ModifierClass and GenericMixin, both.
    read / write
    @@ -237,7 +237,7 @@

    Properties

    ↔ T
    - Destined to be overridden by GenericMixin. + Destined to be overridden by GenericMixin.
    read / write
    diff --git a/testing/test_package_docs/fake/GenericClass/overrideByBoth.html b/testing/test_package_docs/fake/GenericClass/overrideByBoth.html index 106986ef9f..290907a645 100644 --- a/testing/test_package_docs/fake/GenericClass/overrideByBoth.html +++ b/testing/test_package_docs/fake/GenericClass/overrideByBoth.html @@ -74,7 +74,7 @@

    overrideByBoth property

    read / write
    -

    Destined to be overridden by ModifierClass and GenericMixin, both.

    +

    Destined to be overridden by ModifierClass and GenericMixin, both.

    diff --git a/testing/test_package_docs/fake/GenericClass/overrideByGenericMixin.html b/testing/test_package_docs/fake/GenericClass/overrideByGenericMixin.html index 8258d2498b..1cfacfbb3b 100644 --- a/testing/test_package_docs/fake/GenericClass/overrideByGenericMixin.html +++ b/testing/test_package_docs/fake/GenericClass/overrideByGenericMixin.html @@ -74,7 +74,7 @@

    overrideByGenericMixin property

    read / write
    -

    Destined to be overridden by GenericMixin.

    +

    Destined to be overridden by GenericMixin.

    diff --git a/testing/test_package_docs_dev/fake/GenericMixin-mixin.html b/testing/test_package_docs/fake/GenericMixin-class.html similarity index 97% rename from testing/test_package_docs_dev/fake/GenericMixin-mixin.html rename to testing/test_package_docs/fake/GenericMixin-class.html index a565dc4f20..9ce75d281a 100644 --- a/testing/test_package_docs_dev/fake/GenericMixin-mixin.html +++ b/testing/test_package_docs/fake/GenericMixin-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • @@ -226,7 +226,7 @@

    Properties

    ↔ T
    - Destined to be overridden by ModifierClass and GenericMixin, both. + Destined to be overridden by ModifierClass and GenericMixin, both.
    read / write, override
    @@ -242,7 +242,7 @@

    Properties

    ↔ T
    - Destined to be overridden by GenericMixin. + Destined to be overridden by GenericMixin.
    read / write, override
    @@ -326,11 +326,11 @@

    Operators

    - Destined to be overridden by ModifierClass and GenericMixin, both. + Destined to be overridden by ModifierClass and GenericMixin, both.
    read / write, override
    @@ -267,7 +267,7 @@

    Properties

    ↔ T
    - Destined to be overridden by GenericMixin. + Destined to be overridden by GenericMixin.
    read / write, inherited
    diff --git a/testing/test_package_docs/fake/ModifierClass/overrideByBoth.html b/testing/test_package_docs/fake/ModifierClass/overrideByBoth.html index 9b6e0862c8..21bb2de0ae 100644 --- a/testing/test_package_docs/fake/ModifierClass/overrideByBoth.html +++ b/testing/test_package_docs/fake/ModifierClass/overrideByBoth.html @@ -75,7 +75,7 @@

    overrideByBoth property

    read / write, override
    -

    Destined to be overridden by ModifierClass and GenericMixin, both.

    +

    Destined to be overridden by ModifierClass and GenericMixin, both.

    diff --git a/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html b/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html index c4e86204db..f6f9c8f2c0 100644 --- a/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html +++ b/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/NAME_WITH_TWO_UNDERSCORES-constant.html b/testing/test_package_docs/fake/NAME_WITH_TWO_UNDERSCORES-constant.html index 70d149b6ea..afd05341f7 100644 --- a/testing/test_package_docs/fake/NAME_WITH_TWO_UNDERSCORES-constant.html +++ b/testing/test_package_docs/fake/NAME_WITH_TWO_UNDERSCORES-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/NewGenericTypedef.html b/testing/test_package_docs/fake/NewGenericTypedef.html index bdfab72c09..1beae57e3b 100644 --- a/testing/test_package_docs/fake/NewGenericTypedef.html +++ b/testing/test_package_docs/fake/NewGenericTypedef.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/NewStyleMixinCallingSuper-mixin.html b/testing/test_package_docs/fake/NewStyleMixinCallingSuper-class.html similarity index 97% rename from testing/test_package_docs/fake/NewStyleMixinCallingSuper-mixin.html rename to testing/test_package_docs/fake/NewStyleMixinCallingSuper-class.html index 753e281959..f3a3ea0b4f 100644 --- a/testing/test_package_docs/fake/NewStyleMixinCallingSuper-mixin.html +++ b/testing/test_package_docs/fake/NewStyleMixinCallingSuper-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • @@ -287,21 +287,21 @@

    Operators

    - Destined to be overridden by ModifierClass and GenericMixin, both. + Destined to be overridden by ModifierClass and GenericMixin, both.
    read / write, inherited
    @@ -268,7 +268,7 @@

    Properties

    ↔ int
    - Destined to be overridden by GenericMixin. + Destined to be overridden by GenericMixin.
    read / write, inherited
    diff --git a/testing/test_package_docs/fake/TypedefUsingClass-class.html b/testing/test_package_docs/fake/TypedefUsingClass-class.html index 324c4d6689..639a8fefe8 100644 --- a/testing/test_package_docs/fake/TypedefUsingClass-class.html +++ b/testing/test_package_docs/fake/TypedefUsingClass-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • @@ -194,7 +194,7 @@

    Properties

    - x + x ParameterizedTypedef<double>
    @@ -272,7 +272,7 @@

    Operators

  • Properties
  • -
  • x
  • +
  • x
  • hashCode
  • runtimeType
  • diff --git a/testing/test_package_docs/fake/TypedefUsingClass/TypedefUsingClass.html b/testing/test_package_docs/fake/TypedefUsingClass/TypedefUsingClass.html index f8b9c85c4a..957c4b77a0 100644 --- a/testing/test_package_docs/fake/TypedefUsingClass/TypedefUsingClass.html +++ b/testing/test_package_docs/fake/TypedefUsingClass/TypedefUsingClass.html @@ -45,7 +45,7 @@
    TypedefUsingClass class
  • Properties
  • -
  • x
  • +
  • x
  • hashCode
  • runtimeType
  • diff --git a/testing/test_package_docs/fake/TypedefUsingClass/hashCode.html b/testing/test_package_docs/fake/TypedefUsingClass/hashCode.html index 6a3a043ffc..9caa426fc5 100644 --- a/testing/test_package_docs/fake/TypedefUsingClass/hashCode.html +++ b/testing/test_package_docs/fake/TypedefUsingClass/hashCode.html @@ -45,7 +45,7 @@
    TypedefUsingClass class
  • Properties
  • -
  • x
  • +
  • x
  • hashCode
  • runtimeType
  • diff --git a/testing/test_package_docs/fake/TypedefUsingClass/noSuchMethod.html b/testing/test_package_docs/fake/TypedefUsingClass/noSuchMethod.html index c69d51bcb6..8072ef608f 100644 --- a/testing/test_package_docs/fake/TypedefUsingClass/noSuchMethod.html +++ b/testing/test_package_docs/fake/TypedefUsingClass/noSuchMethod.html @@ -45,7 +45,7 @@
    TypedefUsingClass class
  • Properties
  • -
  • x
  • +
  • x
  • hashCode
  • runtimeType
  • diff --git a/testing/test_package_docs/fake/TypedefUsingClass/operator_equals.html b/testing/test_package_docs/fake/TypedefUsingClass/operator_equals.html index 7d20fc1980..992ed22f31 100644 --- a/testing/test_package_docs/fake/TypedefUsingClass/operator_equals.html +++ b/testing/test_package_docs/fake/TypedefUsingClass/operator_equals.html @@ -45,7 +45,7 @@
    TypedefUsingClass class
  • Properties
  • -
  • x
  • +
  • x
  • hashCode
  • runtimeType
  • diff --git a/testing/test_package_docs/fake/TypedefUsingClass/runtimeType.html b/testing/test_package_docs/fake/TypedefUsingClass/runtimeType.html index 7c2c63a9fb..2a04077454 100644 --- a/testing/test_package_docs/fake/TypedefUsingClass/runtimeType.html +++ b/testing/test_package_docs/fake/TypedefUsingClass/runtimeType.html @@ -45,7 +45,7 @@
    TypedefUsingClass class
  • Properties
  • -
  • x
  • +
  • x
  • hashCode
  • runtimeType
  • diff --git a/testing/test_package_docs/fake/TypedefUsingClass/toString.html b/testing/test_package_docs/fake/TypedefUsingClass/toString.html index 8672cec58d..c7aa9bf9b9 100644 --- a/testing/test_package_docs/fake/TypedefUsingClass/toString.html +++ b/testing/test_package_docs/fake/TypedefUsingClass/toString.html @@ -45,7 +45,7 @@
    TypedefUsingClass class
  • Properties
  • -
  • x
  • +
  • x
  • hashCode
  • runtimeType
  • diff --git a/testing/test_package_docs_dev/fake/TypedefUsingClass/x.html b/testing/test_package_docs/fake/TypedefUsingClass/x-lower.html similarity index 98% rename from testing/test_package_docs_dev/fake/TypedefUsingClass/x.html rename to testing/test_package_docs/fake/TypedefUsingClass/x-lower.html index 949780930c..349866a9e7 100644 --- a/testing/test_package_docs_dev/fake/TypedefUsingClass/x.html +++ b/testing/test_package_docs/fake/TypedefUsingClass/x-lower.html @@ -45,7 +45,7 @@
    TypedefUsingClass class
  • Properties
  • -
  • x
  • +
  • x
  • hashCode
  • runtimeType
  • diff --git a/testing/test_package_docs/fake/UP-constant.html b/testing/test_package_docs/fake/UP-constant.html index fcb8aaaa43..bd22d35334 100644 --- a/testing/test_package_docs/fake/UP-constant.html +++ b/testing/test_package_docs/fake/UP-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/VoidCallback.html b/testing/test_package_docs/fake/VoidCallback.html index 44eb348453..01552bb592 100644 --- a/testing/test_package_docs/fake/VoidCallback.html +++ b/testing/test_package_docs/fake/VoidCallback.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/WithGetterAndSetter-class.html b/testing/test_package_docs/fake/WithGetterAndSetter-class.html index 7eff452dec..f2c5572647 100644 --- a/testing/test_package_docs/fake/WithGetterAndSetter-class.html +++ b/testing/test_package_docs/fake/WithGetterAndSetter-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/ZERO-constant.html b/testing/test_package_docs/fake/ZERO-constant.html index 99f8bf91b7..8feda32166 100644 --- a/testing/test_package_docs/fake/ZERO-constant.html +++ b/testing/test_package_docs/fake/ZERO-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/aCoolVariable.html b/testing/test_package_docs/fake/aCoolVariable.html index 61468b348e..a27ebd06c9 100644 --- a/testing/test_package_docs/fake/aCoolVariable.html +++ b/testing/test_package_docs/fake/aCoolVariable.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/aMixinReturningFunction.html b/testing/test_package_docs/fake/aMixinReturningFunction.html index 2a022f8b7d..88675775a4 100644 --- a/testing/test_package_docs/fake/aMixinReturningFunction.html +++ b/testing/test_package_docs/fake/aMixinReturningFunction.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • @@ -175,7 +175,7 @@
    fake library

    aMixinReturningFunction<T> function

    - GenericMixin<T> + GenericMixin<T> aMixinReturningFunction <T>()
    diff --git a/testing/test_package_docs/fake/aVoidParameter.html b/testing/test_package_docs/fake/aVoidParameter.html index ab2517c98d..56beae2f6b 100644 --- a/testing/test_package_docs/fake/aVoidParameter.html +++ b/testing/test_package_docs/fake/aVoidParameter.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/addCallback.html b/testing/test_package_docs/fake/addCallback.html index f55185f260..4c2027a003 100644 --- a/testing/test_package_docs/fake/addCallback.html +++ b/testing/test_package_docs/fake/addCallback.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/addCallback2.html b/testing/test_package_docs/fake/addCallback2.html index 2d7c2e65cf..58fce5cba3 100644 --- a/testing/test_package_docs/fake/addCallback2.html +++ b/testing/test_package_docs/fake/addCallback2.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/bulletDoced-constant.html b/testing/test_package_docs/fake/bulletDoced-constant.html index e55d0bd836..a66b9531e4 100644 --- a/testing/test_package_docs/fake/bulletDoced-constant.html +++ b/testing/test_package_docs/fake/bulletDoced-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/complicatedReturn.html b/testing/test_package_docs/fake/complicatedReturn.html index 85aa37d0fc..446a2d8542 100644 --- a/testing/test_package_docs/fake/complicatedReturn.html +++ b/testing/test_package_docs/fake/complicatedReturn.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/dynamicGetter.html b/testing/test_package_docs/fake/dynamicGetter.html index 5c5be406bd..ed5ad1fb34 100644 --- a/testing/test_package_docs/fake/dynamicGetter.html +++ b/testing/test_package_docs/fake/dynamicGetter.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/fake-library.html b/testing/test_package_docs/fake/fake-library.html index 40b3119c1a..34bc170da1 100644 --- a/testing/test_package_docs/fake/fake-library.html +++ b/testing/test_package_docs/fake/fake-library.html @@ -41,24 +41,24 @@
    test_package pa
  • Superb
  • Unreal
  • Libraries
  • +
  • code_in_comments
  • anonymous_library
  • another_anonymous_lib
  • -
  • code_in_comments
  • is_deprecated
  • Unreal
  • reexport_one
  • reexport_two
  • Real Libraries
  • -
  • ex
  • -
  • fake
  • two_exports
  • +
  • fake
  • +
  • ex
  • Misc
  • two_exports
  • Other
  • css
  • test_package_imported
  • -
  • categoriesExported
  • test_package_imported.main
  • +
  • categoriesExported
  • @@ -407,13 +407,13 @@

    Mixins

    - GenericMixin<T> + GenericMixin<T>
    A generic mixin that requires GenericClass as a superclass.
    - NewStyleMixinCallingSuper + NewStyleMixinCallingSuper
    I am a new style mixin using the new mixin syntax. @@ -745,7 +745,7 @@

    Functions

    aMixinReturningFunction<T>() - GenericMixin<T> + GenericMixin<T>
    @@ -1093,8 +1093,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/functionUsingMixinReturningFunction.html b/testing/test_package_docs/fake/functionUsingMixinReturningFunction.html index c0b77b13af..a340d5703d 100644 --- a/testing/test_package_docs/fake/functionUsingMixinReturningFunction.html +++ b/testing/test_package_docs/fake/functionUsingMixinReturningFunction.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/functionWithFunctionParameters.html b/testing/test_package_docs/fake/functionWithFunctionParameters.html index 75ee683357..0430d3d655 100644 --- a/testing/test_package_docs/fake/functionWithFunctionParameters.html +++ b/testing/test_package_docs/fake/functionWithFunctionParameters.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/getterSetterNodocGetter.html b/testing/test_package_docs/fake/getterSetterNodocGetter.html index d2ec165e02..baf8b304c6 100644 --- a/testing/test_package_docs/fake/getterSetterNodocGetter.html +++ b/testing/test_package_docs/fake/getterSetterNodocGetter.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/getterSetterNodocSetter.html b/testing/test_package_docs/fake/getterSetterNodocSetter.html index 513d71a5cc..a54254e7ff 100644 --- a/testing/test_package_docs/fake/getterSetterNodocSetter.html +++ b/testing/test_package_docs/fake/getterSetterNodocSetter.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/greatAnnotation-constant.html b/testing/test_package_docs/fake/greatAnnotation-constant.html index 97575e3bc7..016659a107 100644 --- a/testing/test_package_docs/fake/greatAnnotation-constant.html +++ b/testing/test_package_docs/fake/greatAnnotation-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/greatestAnnotation-constant.html b/testing/test_package_docs/fake/greatestAnnotation-constant.html index 25ed10f4ec..f4ff80624f 100644 --- a/testing/test_package_docs/fake/greatestAnnotation-constant.html +++ b/testing/test_package_docs/fake/greatestAnnotation-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/importantComputations.html b/testing/test_package_docs/fake/importantComputations.html index 27df55a2a2..d35279e9a9 100644 --- a/testing/test_package_docs/fake/importantComputations.html +++ b/testing/test_package_docs/fake/importantComputations.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/incorrectDocReference-constant.html b/testing/test_package_docs/fake/incorrectDocReference-constant.html index cc4a887643..19bfb4096a 100644 --- a/testing/test_package_docs/fake/incorrectDocReference-constant.html +++ b/testing/test_package_docs/fake/incorrectDocReference-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/justGetter.html b/testing/test_package_docs/fake/justGetter.html index 2280ce89e4..8e5470a163 100644 --- a/testing/test_package_docs/fake/justGetter.html +++ b/testing/test_package_docs/fake/justGetter.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/justSetter.html b/testing/test_package_docs/fake/justSetter.html index ade18d96e6..57e784d08a 100644 --- a/testing/test_package_docs/fake/justSetter.html +++ b/testing/test_package_docs/fake/justSetter.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/mapWithDynamicKeys.html b/testing/test_package_docs/fake/mapWithDynamicKeys.html index 1500ab6fd4..6cae544e0d 100644 --- a/testing/test_package_docs/fake/mapWithDynamicKeys.html +++ b/testing/test_package_docs/fake/mapWithDynamicKeys.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/meaningOfLife.html b/testing/test_package_docs/fake/meaningOfLife.html index 3259256093..b40aa517c0 100644 --- a/testing/test_package_docs/fake/meaningOfLife.html +++ b/testing/test_package_docs/fake/meaningOfLife.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/mustGetThis.html b/testing/test_package_docs/fake/mustGetThis.html index 5ff1b760b8..699d2b24e4 100644 --- a/testing/test_package_docs/fake/mustGetThis.html +++ b/testing/test_package_docs/fake/mustGetThis.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/myCoolTypedef.html b/testing/test_package_docs/fake/myCoolTypedef.html index 01ab8aa8cb..e8b0ec0a75 100644 --- a/testing/test_package_docs/fake/myCoolTypedef.html +++ b/testing/test_package_docs/fake/myCoolTypedef.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/myGenericFunction.html b/testing/test_package_docs/fake/myGenericFunction.html index 12b57b0af5..fed098a3d1 100644 --- a/testing/test_package_docs/fake/myGenericFunction.html +++ b/testing/test_package_docs/fake/myGenericFunction.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/myMap-constant.html b/testing/test_package_docs/fake/myMap-constant.html index 16377110a7..19a7a03c7f 100644 --- a/testing/test_package_docs/fake/myMap-constant.html +++ b/testing/test_package_docs/fake/myMap-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html b/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html index f7e55accdf..c76072728e 100644 --- a/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html +++ b/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/paintImage1.html b/testing/test_package_docs/fake/paintImage1.html index e4dba3fbd2..cd11a0d348 100644 --- a/testing/test_package_docs/fake/paintImage1.html +++ b/testing/test_package_docs/fake/paintImage1.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/paintImage2.html b/testing/test_package_docs/fake/paintImage2.html index 947775a73b..fa3b9d8522 100644 --- a/testing/test_package_docs/fake/paintImage2.html +++ b/testing/test_package_docs/fake/paintImage2.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/paramFromAnotherLib.html b/testing/test_package_docs/fake/paramFromAnotherLib.html index 3e8aab0955..b6bec6105a 100644 --- a/testing/test_package_docs/fake/paramFromAnotherLib.html +++ b/testing/test_package_docs/fake/paramFromAnotherLib.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/paramOfFutureOrNull.html b/testing/test_package_docs/fake/paramOfFutureOrNull.html index 453849d597..440d160c64 100644 --- a/testing/test_package_docs/fake/paramOfFutureOrNull.html +++ b/testing/test_package_docs/fake/paramOfFutureOrNull.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/required-constant.html b/testing/test_package_docs/fake/required-constant.html index 381847854c..6d6c15067e 100644 --- a/testing/test_package_docs/fake/required-constant.html +++ b/testing/test_package_docs/fake/required-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/returningFutureVoid.html b/testing/test_package_docs/fake/returningFutureVoid.html index 026a3db34a..8bc6c9f62b 100644 --- a/testing/test_package_docs/fake/returningFutureVoid.html +++ b/testing/test_package_docs/fake/returningFutureVoid.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/setAndGet.html b/testing/test_package_docs/fake/setAndGet.html index 8788f990b4..f81f342150 100644 --- a/testing/test_package_docs/fake/setAndGet.html +++ b/testing/test_package_docs/fake/setAndGet.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/short.html b/testing/test_package_docs/fake/short.html index b636ad56b2..82932208ec 100644 --- a/testing/test_package_docs/fake/short.html +++ b/testing/test_package_docs/fake/short.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/simpleProperty.html b/testing/test_package_docs/fake/simpleProperty.html index e33535f873..13cee0145f 100644 --- a/testing/test_package_docs/fake/simpleProperty.html +++ b/testing/test_package_docs/fake/simpleProperty.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/soIntense.html b/testing/test_package_docs/fake/soIntense.html index 7c9fa763ac..994a028288 100644 --- a/testing/test_package_docs/fake/soIntense.html +++ b/testing/test_package_docs/fake/soIntense.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html b/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html index 21d611ccb6..80a34aaf4a 100644 --- a/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html +++ b/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/thisIsAlsoAsync.html b/testing/test_package_docs/fake/thisIsAlsoAsync.html index e7a4d09c80..e7d6e29c31 100644 --- a/testing/test_package_docs/fake/thisIsAlsoAsync.html +++ b/testing/test_package_docs/fake/thisIsAlsoAsync.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/thisIsAsync.html b/testing/test_package_docs/fake/thisIsAsync.html index 077ef2515c..4e3e5263ac 100644 --- a/testing/test_package_docs/fake/thisIsAsync.html +++ b/testing/test_package_docs/fake/thisIsAsync.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/thisIsFutureOr.html b/testing/test_package_docs/fake/thisIsFutureOr.html index 0a3a540045..6f4b85f903 100644 --- a/testing/test_package_docs/fake/thisIsFutureOr.html +++ b/testing/test_package_docs/fake/thisIsFutureOr.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/thisIsFutureOrNull.html b/testing/test_package_docs/fake/thisIsFutureOrNull.html index 4f9e9c09e9..db1701dc85 100644 --- a/testing/test_package_docs/fake/thisIsFutureOrNull.html +++ b/testing/test_package_docs/fake/thisIsFutureOrNull.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/thisIsFutureOrT.html b/testing/test_package_docs/fake/thisIsFutureOrT.html index 89f82842f4..ca579fc6c8 100644 --- a/testing/test_package_docs/fake/thisIsFutureOrT.html +++ b/testing/test_package_docs/fake/thisIsFutureOrT.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/topLevelFunction.html b/testing/test_package_docs/fake/topLevelFunction.html index e9a14219a5..99acf0c319 100644 --- a/testing/test_package_docs/fake/topLevelFunction.html +++ b/testing/test_package_docs/fake/topLevelFunction.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/typeParamOfFutureOr.html b/testing/test_package_docs/fake/typeParamOfFutureOr.html index aec660460a..7effcc98b8 100644 --- a/testing/test_package_docs/fake/typeParamOfFutureOr.html +++ b/testing/test_package_docs/fake/typeParamOfFutureOr.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/useSomethingInAnotherPackage.html b/testing/test_package_docs/fake/useSomethingInAnotherPackage.html index 298637933c..92531ae534 100644 --- a/testing/test_package_docs/fake/useSomethingInAnotherPackage.html +++ b/testing/test_package_docs/fake/useSomethingInAnotherPackage.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/fake/useSomethingInTheSdk.html b/testing/test_package_docs/fake/useSomethingInTheSdk.html index 270ec618b0..953ac9a849 100644 --- a/testing/test_package_docs/fake/useSomethingInTheSdk.html +++ b/testing/test_package_docs/fake/useSomethingInTheSdk.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs/index.html b/testing/test_package_docs/index.html index 238597a627..94198a9ab5 100644 --- a/testing/test_package_docs/index.html +++ b/testing/test_package_docs/index.html @@ -38,24 +38,24 @@
    test_package pa
  • Superb
  • Unreal
  • Libraries
  • +
  • code_in_comments
  • anonymous_library
  • another_anonymous_lib
  • -
  • code_in_comments
  • is_deprecated
  • Unreal
  • reexport_one
  • reexport_two
  • Real Libraries
  • -
  • ex
  • -
  • fake
  • two_exports
  • +
  • fake
  • +
  • ex
  • Misc
  • two_exports
  • Other
  • css
  • test_package_imported
  • -
  • categoriesExported
  • test_package_imported.main
  • +
  • categoriesExported
  • @@ -110,7 +110,15 @@

    Another Section

    Libraries

    -
    +
    + code_in_comments +
    +
    + void main() { + // in Dart! +} + [...] +
    anonymous_library
    @@ -120,14 +128,6 @@

    Libraries

    -
    - code_in_comments -
    -
    - void main() { - // in Dart! -} - [...]
    is_deprecated
    @@ -147,21 +147,21 @@

    Libraries

    Real Libraries

    -
    - ex +
    + two_exports
    - a library. testing string escaping: var s = 'a string' +
    fake
    WOW FAKE PACKAGE IS BEST PACKAGE [...] -
    - two_exports +
    + ex
    - + a library. testing string escaping: var s = 'a string'

    Misc

    two_exports @@ -180,13 +180,13 @@

    Libraries

    test_package_imported

    -
    - categoriesExported +
    + test_package_imported.main
    -
    - test_package_imported.main +
    + categoriesExported
    diff --git a/testing/test_package_docs/index.json b/testing/test_package_docs/index.json index 91621c8d98..770b85ed70 100644 --- a/testing/test_package_docs/index.json +++ b/testing/test_package_docs/index.json @@ -2442,6 +2442,182 @@ "type": "class" } }, + { + "name": "NAMECOLLISION", + "qualifiedName": "ex.NAMECOLLISION", + "href": "ex/NAMECOLLISION-upper.html", + "type": "top-level property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ex", + "type": "library" + } + }, + { + "name": "NameCOllision", + "qualifiedName": "ex.NameCOllision", + "href": "ex/NameCOllision-class.html", + "type": "class", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ex", + "type": "library" + } + }, + { + "name": "NameCOllision", + "qualifiedName": "ex.NameCOllision", + "href": "ex/NameCOllision/NameCOllision.html", + "type": "constructor", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NameCOllision", + "type": "class" + } + }, + { + "name": "operator ==", + "qualifiedName": "ex.NameCOllision.==", + "href": "ex/NameCOllision/operator_equals.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NameCOllision", + "type": "class" + } + }, + { + "name": "hashCode", + "qualifiedName": "ex.NameCOllision.hashCode", + "href": "ex/NameCOllision/hashCode.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NameCOllision", + "type": "class" + } + }, + { + "name": "nameCOllision", + "qualifiedName": "ex.NameCOllision.nameCOllision", + "href": "ex/NameCOllision/nameCOllision-0427.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NameCOllision", + "type": "class" + } + }, + { + "name": "nameCollision", + "qualifiedName": "ex.NameCOllision.nameCollision", + "href": "ex/NameCOllision/nameCollision-0418.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NameCOllision", + "type": "class" + } + }, + { + "name": "noSuchMethod", + "qualifiedName": "ex.NameCOllision.noSuchMethod", + "href": "ex/NameCOllision/noSuchMethod.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NameCOllision", + "type": "class" + } + }, + { + "name": "runtimeType", + "qualifiedName": "ex.NameCOllision.runtimeType", + "href": "ex/NameCOllision/runtimeType.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NameCOllision", + "type": "class" + } + }, + { + "name": "toString", + "qualifiedName": "ex.NameCOllision.toString", + "href": "ex/NameCOllision/toString.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NameCOllision", + "type": "class" + } + }, + { + "name": "NameCollision", + "qualifiedName": "ex.NameCollision", + "href": "ex/NameCollision-1318-class.html", + "type": "enum", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ex", + "type": "library" + } + }, + { + "name": "operator ==", + "qualifiedName": "ex.NameCollision.==", + "href": "ex/NameCollision-1318/operator_equals.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NameCollision", + "type": "enum" + } + }, + { + "name": "hashCode", + "qualifiedName": "ex.NameCollision.hashCode", + "href": "ex/NameCollision-1318/hashCode.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NameCollision", + "type": "enum" + } + }, + { + "name": "noSuchMethod", + "qualifiedName": "ex.NameCollision.noSuchMethod", + "href": "ex/NameCollision-1318/noSuchMethod.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NameCollision", + "type": "enum" + } + }, + { + "name": "runtimeType", + "qualifiedName": "ex.NameCollision.runtimeType", + "href": "ex/NameCollision-1318/runtimeType.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NameCollision", + "type": "enum" + } + }, + { + "name": "toString", + "qualifiedName": "ex.NameCollision.toString", + "href": "ex/NameCollision-1318/toString.html", + "type": "method", + "overriddenDepth": 1, + "enclosedBy": { + "name": "NameCollision", + "type": "enum" + } + }, { "name": "PRETTY_COLORS", "qualifiedName": "ex.PRETTY_COLORS", @@ -3853,7 +4029,7 @@ { "name": "deprecated", "qualifiedName": "ex.deprecated", - "href": "ex/deprecated-constant.html", + "href": "ex/deprecated-lower-constant.html", "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { @@ -3938,6 +4114,39 @@ "type": "library" } }, + { + "name": "nameCOllision", + "qualifiedName": "ex.nameCOllision", + "href": "ex/nameCOllision-0427.html", + "type": "top-level property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ex", + "type": "library" + } + }, + { + "name": "nameCollision", + "qualifiedName": "ex.nameCollision", + "href": "ex/nameCollision-0418.html", + "type": "top-level property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ex", + "type": "library" + } + }, + { + "name": "namecollision", + "qualifiedName": "ex.namecollision", + "href": "ex/namecollision-lower.html", + "type": "top-level property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ex", + "type": "library" + } + }, { "name": "number", "qualifiedName": "ex.number", @@ -5444,7 +5653,7 @@ { "name": "bar", "qualifiedName": "fake.DocumentWithATable.bar", - "href": "fake/DocumentWithATable/bar-constant.html", + "href": "fake/DocumentWithATable/bar-lower-constant.html", "type": "constant", "overriddenDepth": 0, "enclosedBy": { @@ -5796,7 +6005,7 @@ { "name": "BAR", "qualifiedName": "fake.Foo2.BAR", - "href": "fake/Foo2/BAR-constant.html", + "href": "fake/Foo2/BAR-upper-constant.html", "type": "constant", "overriddenDepth": 0, "enclosedBy": { @@ -6016,7 +6225,7 @@ { "name": "GenericMixin", "qualifiedName": "fake.GenericMixin", - "href": "fake/GenericMixin-mixin.html", + "href": "fake/GenericMixin-class.html", "type": "mixin", "overriddenDepth": 0, "enclosedBy": { @@ -7578,7 +7787,7 @@ { "name": "NewStyleMixinCallingSuper", "qualifiedName": "fake.NewStyleMixinCallingSuper", - "href": "fake/NewStyleMixinCallingSuper-mixin.html", + "href": "fake/NewStyleMixinCallingSuper-class.html", "type": "mixin", "overriddenDepth": 0, "enclosedBy": { @@ -9019,7 +9228,7 @@ { "name": "x", "qualifiedName": "fake.TypedefUsingClass.x", - "href": "fake/TypedefUsingClass/x.html", + "href": "fake/TypedefUsingClass/x-lower.html", "type": "property", "overriddenDepth": 0, "enclosedBy": { @@ -9755,7 +9964,7 @@ { "name": "AMixin", "qualifiedName": "reexport_two.AMixin", - "href": "reexport_two/AMixin-mixin.html", + "href": "reexport_two/AMixin-class.html", "type": "mixin", "overriddenDepth": 0, "enclosedBy": { diff --git a/testing/test_package_docs/is_deprecated/is_deprecated-library.html b/testing/test_package_docs/is_deprecated/is_deprecated-library.html index 837854db58..1ac68748f6 100644 --- a/testing/test_package_docs/is_deprecated/is_deprecated-library.html +++ b/testing/test_package_docs/is_deprecated/is_deprecated-library.html @@ -41,24 +41,24 @@
    test_package pa
  • Superb
  • Unreal
  • Libraries
  • +
  • code_in_comments
  • anonymous_library
  • another_anonymous_lib
  • -
  • code_in_comments
  • is_deprecated
  • Unreal
  • reexport_one
  • reexport_two
  • Real Libraries
  • -
  • ex
  • -
  • fake
  • two_exports
  • +
  • fake
  • +
  • ex
  • Misc
  • two_exports
  • Other
  • css
  • test_package_imported
  • -
  • categoriesExported
  • test_package_imported.main
  • +
  • categoriesExported
  • diff --git a/testing/test_package_docs/reexport_one/reexport_one-library.html b/testing/test_package_docs/reexport_one/reexport_one-library.html index aa8a8c98ef..6e6c9e21e4 100644 --- a/testing/test_package_docs/reexport_one/reexport_one-library.html +++ b/testing/test_package_docs/reexport_one/reexport_one-library.html @@ -41,24 +41,24 @@
    test_package pa
  • Superb
  • Unreal
  • Libraries
  • +
  • code_in_comments
  • anonymous_library
  • another_anonymous_lib
  • -
  • code_in_comments
  • is_deprecated
  • Unreal
  • reexport_one
  • reexport_two
  • Real Libraries
  • -
  • ex
  • -
  • fake
  • two_exports
  • +
  • fake
  • +
  • ex
  • Misc
  • two_exports
  • Other
  • css
  • test_package_imported
  • -
  • categoriesExported
  • test_package_imported.main
  • +
  • categoriesExported
  • diff --git a/testing/test_package_docs_dev/reexport_two/AMixin-mixin.html b/testing/test_package_docs/reexport_two/AMixin-class.html similarity index 95% rename from testing/test_package_docs_dev/reexport_two/AMixin-mixin.html rename to testing/test_package_docs/reexport_two/AMixin-class.html index b2b2af5ea7..202bb66dd2 100644 --- a/testing/test_package_docs_dev/reexport_two/AMixin-mixin.html +++ b/testing/test_package_docs/reexport_two/AMixin-class.html @@ -46,7 +46,7 @@
    reexport_two library
  • YetAnotherClass
  • Mixins
  • -
  • AMixin
  • +
  • AMixin
  • @@ -160,20 +160,20 @@

    Operators

    diff --git a/testing/test_package_docs_dev/another_anonymous_lib/another_anonymous_lib-library.html b/testing/test_package_docs_dev/another_anonymous_lib/another_anonymous_lib-library.html index 8dc9c1a11e..d78b872060 100644 --- a/testing/test_package_docs_dev/another_anonymous_lib/another_anonymous_lib-library.html +++ b/testing/test_package_docs_dev/another_anonymous_lib/another_anonymous_lib-library.html @@ -41,24 +41,24 @@
    test_package pa
  • Superb
  • Unreal
  • Libraries
  • +
  • code_in_comments
  • anonymous_library
  • another_anonymous_lib
  • -
  • code_in_comments
  • is_deprecated
  • Unreal
  • reexport_one
  • reexport_two
  • Real Libraries
  • -
  • ex
  • -
  • fake
  • two_exports
  • +
  • fake
  • +
  • ex
  • Misc
  • two_exports
  • Other
  • css
  • test_package_imported
  • -
  • categoriesExported
  • test_package_imported.main
  • +
  • categoriesExported
  • diff --git a/testing/test_package_docs_dev/categoriesExported/categoriesExported-library.html b/testing/test_package_docs_dev/categoriesExported/categoriesExported-library.html index bf955d52ad..9f68b267ae 100644 --- a/testing/test_package_docs_dev/categoriesExported/categoriesExported-library.html +++ b/testing/test_package_docs_dev/categoriesExported/categoriesExported-library.html @@ -41,24 +41,24 @@
    test_package pa
  • Superb
  • Unreal
  • Libraries
  • +
  • code_in_comments
  • anonymous_library
  • another_anonymous_lib
  • -
  • code_in_comments
  • is_deprecated
  • Unreal
  • reexport_one
  • reexport_two
  • Real Libraries
  • -
  • ex
  • -
  • fake
  • two_exports
  • +
  • fake
  • +
  • ex
  • Misc
  • two_exports
  • Other
  • css
  • test_package_imported
  • -
  • categoriesExported
  • test_package_imported.main
  • +
  • categoriesExported
  • diff --git a/testing/test_package_docs_dev/code_in_comments/code_in_comments-library.html b/testing/test_package_docs_dev/code_in_comments/code_in_comments-library.html index f777dec8b2..9d7b91f1f1 100644 --- a/testing/test_package_docs_dev/code_in_comments/code_in_comments-library.html +++ b/testing/test_package_docs_dev/code_in_comments/code_in_comments-library.html @@ -41,24 +41,24 @@
    test_package pa
  • Superb
  • Unreal
  • Libraries
  • +
  • code_in_comments
  • anonymous_library
  • another_anonymous_lib
  • -
  • code_in_comments
  • is_deprecated
  • Unreal
  • reexport_one
  • reexport_two
  • Real Libraries
  • -
  • ex
  • -
  • fake
  • two_exports
  • +
  • fake
  • +
  • ex
  • Misc
  • two_exports
  • Other
  • css
  • test_package_imported
  • -
  • categoriesExported
  • test_package_imported.main
  • +
  • categoriesExported
  • diff --git a/testing/test_package_docs_dev/css/css-library.html b/testing/test_package_docs_dev/css/css-library.html index c4e97713c7..6810765373 100644 --- a/testing/test_package_docs_dev/css/css-library.html +++ b/testing/test_package_docs_dev/css/css-library.html @@ -41,24 +41,24 @@
    test_package pa
  • Superb
  • Unreal
  • Libraries
  • +
  • code_in_comments
  • anonymous_library
  • another_anonymous_lib
  • -
  • code_in_comments
  • is_deprecated
  • Unreal
  • reexport_one
  • reexport_two
  • Real Libraries
  • -
  • ex
  • -
  • fake
  • two_exports
  • +
  • fake
  • +
  • ex
  • Misc
  • two_exports
  • Other
  • css
  • test_package_imported
  • -
  • categoriesExported
  • test_package_imported.main
  • +
  • categoriesExported
  • diff --git a/testing/test_package_docs_dev/ex/Animal-class.html b/testing/test_package_docs_dev/ex/Animal-class.html index 894669fd14..b2bf553c76 100644 --- a/testing/test_package_docs_dev/ex/Animal-class.html +++ b/testing/test_package_docs_dev/ex/Animal-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/AnotherParameterizedClass-class.html b/testing/test_package_docs_dev/ex/AnotherParameterizedClass-class.html index a58517b970..14bca53775 100644 --- a/testing/test_package_docs_dev/ex/AnotherParameterizedClass-class.html +++ b/testing/test_package_docs_dev/ex/AnotherParameterizedClass-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/Apple-class.html b/testing/test_package_docs_dev/ex/Apple-class.html index d9178197dc..fd887609c0 100644 --- a/testing/test_package_docs_dev/ex/Apple-class.html +++ b/testing/test_package_docs_dev/ex/Apple-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/B-class.html b/testing/test_package_docs_dev/ex/B-class.html index 08bd4351cc..fe6685b219 100644 --- a/testing/test_package_docs_dev/ex/B-class.html +++ b/testing/test_package_docs_dev/ex/B-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/COLOR-constant.html b/testing/test_package_docs_dev/ex/COLOR-constant.html index f3203d70c6..84a8c10f66 100644 --- a/testing/test_package_docs_dev/ex/COLOR-constant.html +++ b/testing/test_package_docs_dev/ex/COLOR-constant.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/COLOR_GREEN-constant.html b/testing/test_package_docs_dev/ex/COLOR_GREEN-constant.html index e627b7d038..7a701774ff 100644 --- a/testing/test_package_docs_dev/ex/COLOR_GREEN-constant.html +++ b/testing/test_package_docs_dev/ex/COLOR_GREEN-constant.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/COLOR_ORANGE-constant.html b/testing/test_package_docs_dev/ex/COLOR_ORANGE-constant.html index 1e6a1f86d3..4f1aae7a66 100644 --- a/testing/test_package_docs_dev/ex/COLOR_ORANGE-constant.html +++ b/testing/test_package_docs_dev/ex/COLOR_ORANGE-constant.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/COMPLEX_COLOR-constant.html b/testing/test_package_docs_dev/ex/COMPLEX_COLOR-constant.html index 2c224c2ba2..ff18d3d7bc 100644 --- a/testing/test_package_docs_dev/ex/COMPLEX_COLOR-constant.html +++ b/testing/test_package_docs_dev/ex/COMPLEX_COLOR-constant.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/Cat-class.html b/testing/test_package_docs_dev/ex/Cat-class.html index 044d0f1c31..3fcd83f0d5 100644 --- a/testing/test_package_docs_dev/ex/Cat-class.html +++ b/testing/test_package_docs_dev/ex/Cat-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/CatString-class.html b/testing/test_package_docs_dev/ex/CatString-class.html index 986cbb2503..1f67015de0 100644 --- a/testing/test_package_docs_dev/ex/CatString-class.html +++ b/testing/test_package_docs_dev/ex/CatString-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/ConstantCat-class.html b/testing/test_package_docs_dev/ex/ConstantCat-class.html index 2c83357f49..32f75048ac 100644 --- a/testing/test_package_docs_dev/ex/ConstantCat-class.html +++ b/testing/test_package_docs_dev/ex/ConstantCat-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/Deprecated-class.html b/testing/test_package_docs_dev/ex/Deprecated-class.html index 32266cc23c..a8117b0255 100644 --- a/testing/test_package_docs_dev/ex/Deprecated-class.html +++ b/testing/test_package_docs_dev/ex/Deprecated-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/Dog-class.html b/testing/test_package_docs_dev/ex/Dog-class.html index a2502ada1d..8b269330ba 100644 --- a/testing/test_package_docs_dev/ex/Dog-class.html +++ b/testing/test_package_docs_dev/ex/Dog-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/E-class.html b/testing/test_package_docs_dev/ex/E-class.html index 58e3cfa446..f4c331deb9 100644 --- a/testing/test_package_docs_dev/ex/E-class.html +++ b/testing/test_package_docs_dev/ex/E-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/ExtendedShortName-class.html b/testing/test_package_docs_dev/ex/ExtendedShortName-class.html index bde7dac37b..076308d198 100644 --- a/testing/test_package_docs_dev/ex/ExtendedShortName-class.html +++ b/testing/test_package_docs_dev/ex/ExtendedShortName-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/F-class.html b/testing/test_package_docs_dev/ex/F-class.html index c8ab30e87f..e8b882b66a 100644 --- a/testing/test_package_docs_dev/ex/F-class.html +++ b/testing/test_package_docs_dev/ex/F-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/ForAnnotation-class.html b/testing/test_package_docs_dev/ex/ForAnnotation-class.html index 9a538a87ea..fcd5da835c 100644 --- a/testing/test_package_docs_dev/ex/ForAnnotation-class.html +++ b/testing/test_package_docs_dev/ex/ForAnnotation-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/HasAnnotation-class.html b/testing/test_package_docs_dev/ex/HasAnnotation-class.html index 09eda2d3ce..f3e34083bc 100644 --- a/testing/test_package_docs_dev/ex/HasAnnotation-class.html +++ b/testing/test_package_docs_dev/ex/HasAnnotation-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/Helper-class.html b/testing/test_package_docs_dev/ex/Helper-class.html index ccb0e87067..a96ed8cad3 100644 --- a/testing/test_package_docs_dev/ex/Helper-class.html +++ b/testing/test_package_docs_dev/ex/Helper-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/HtmlInjection-class.html b/testing/test_package_docs_dev/ex/HtmlInjection-class.html index 9f4c9a8fdf..6e79da15af 100644 --- a/testing/test_package_docs_dev/ex/HtmlInjection-class.html +++ b/testing/test_package_docs_dev/ex/HtmlInjection-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/Klass-class.html b/testing/test_package_docs_dev/ex/Klass-class.html index ab86c6cf08..7f4ebd1e04 100644 --- a/testing/test_package_docs_dev/ex/Klass-class.html +++ b/testing/test_package_docs_dev/ex/Klass-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/MY_CAT-constant.html b/testing/test_package_docs_dev/ex/MY_CAT-constant.html index 4bca6ba680..757c4fb528 100644 --- a/testing/test_package_docs_dev/ex/MY_CAT-constant.html +++ b/testing/test_package_docs_dev/ex/MY_CAT-constant.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/MyError-class.html b/testing/test_package_docs_dev/ex/MyError-class.html index 330e868236..9960fe3c3d 100644 --- a/testing/test_package_docs_dev/ex/MyError-class.html +++ b/testing/test_package_docs_dev/ex/MyError-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/MyErrorImplements-class.html b/testing/test_package_docs_dev/ex/MyErrorImplements-class.html index bea956d42a..4e1c78284a 100644 --- a/testing/test_package_docs_dev/ex/MyErrorImplements-class.html +++ b/testing/test_package_docs_dev/ex/MyErrorImplements-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/MyException-class.html b/testing/test_package_docs_dev/ex/MyException-class.html index 1d19b019d9..de50470d57 100644 --- a/testing/test_package_docs_dev/ex/MyException-class.html +++ b/testing/test_package_docs_dev/ex/MyException-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/MyExceptionImplements-class.html b/testing/test_package_docs_dev/ex/MyExceptionImplements-class.html index a80ead5e58..3ca95629e9 100644 --- a/testing/test_package_docs_dev/ex/MyExceptionImplements-class.html +++ b/testing/test_package_docs_dev/ex/MyExceptionImplements-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/NAMECOLLISION-upper.html b/testing/test_package_docs_dev/ex/NAMECOLLISION-upper.html new file mode 100644 index 0000000000..a37e9f7abb --- /dev/null +++ b/testing/test_package_docs_dev/ex/NAMECOLLISION-upper.html @@ -0,0 +1,155 @@ + + + + + + + + NAMECOLLISION property - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    NAMECOLLISION
    + +
    + +
    + + + +
    +

    NAMECOLLISION top-level property

    + +
    + String + NAMECOLLISION +
    read / write
    +
    +
    +

    UPPPERCASE name collision

    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs_dev/ex/NameCOllision-class.html b/testing/test_package_docs_dev/ex/NameCOllision-class.html new file mode 100644 index 0000000000..a76e7db850 --- /dev/null +++ b/testing/test_package_docs_dev/ex/NameCOllision-class.html @@ -0,0 +1,265 @@ + + + + + + + + NameCOllision class - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    NameCOllision
    + +
    + +
    + + + +
    +

    NameCOllision class

    + +
    +

    Mixed case class name collision starting with uppercase

    +
    + + +
    +

    Constructors

    + +
    +
    + NameCOllision() +
    +
    + Constructor +
    +
    +
    + +
    +

    Properties

    + +
    +
    + nameCOllision + → dynamic +
    +
    + lowerCamelCase name collision +
    final
    +
    +
    + nameCollision + → dynamic +
    +
    + lowerCamelCase name collision +
    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_dev/ex/NameCOllision/NameCOllision.html b/testing/test_package_docs_dev/ex/NameCOllision/NameCOllision.html new file mode 100644 index 0000000000..87564c5de6 --- /dev/null +++ b/testing/test_package_docs_dev/ex/NameCOllision/NameCOllision.html @@ -0,0 +1,102 @@ + + + + + + + + NameCOllision constructor - NameCOllision class - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    NameCOllision
    + +
    + +
    + + + +
    +

    NameCOllision constructor

    + +
    + + NameCOllision() +
    + +
    +

    Constructor

    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs_dev/ex/NameCOllision/hashCode.html b/testing/test_package_docs_dev/ex/NameCOllision/hashCode.html new file mode 100644 index 0000000000..00c0c76a8f --- /dev/null +++ b/testing/test_package_docs_dev/ex/NameCOllision/hashCode.html @@ -0,0 +1,103 @@ + + + + + + + + hashCode property - NameCOllision class - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    hashCode
    + +
    + +
    + + + +
    +

    hashCode property

    + + +
    + +
    + int + hashCode +
    inherited
    +
    + + +
    + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs_dev/ex/NameCOllision/nameCOllision-0427.html b/testing/test_package_docs_dev/ex/NameCOllision/nameCOllision-0427.html new file mode 100644 index 0000000000..2872286143 --- /dev/null +++ b/testing/test_package_docs_dev/ex/NameCOllision/nameCOllision-0427.html @@ -0,0 +1,101 @@ + + + + + + + + nameCOllision property - NameCOllision class - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    nameCOllision
    + +
    + +
    + + + +
    +

    nameCOllision property

    + +
    + dynamic + nameCOllision +
    final
    +
    +
    +

    lowerCamelCase name collision

    +
    + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs_dev/ex/NameCOllision/nameCollision-0418.html b/testing/test_package_docs_dev/ex/NameCOllision/nameCollision-0418.html new file mode 100644 index 0000000000..2f2e000c29 --- /dev/null +++ b/testing/test_package_docs_dev/ex/NameCOllision/nameCollision-0418.html @@ -0,0 +1,101 @@ + + + + + + + + nameCollision property - NameCOllision class - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    nameCollision
    + +
    + +
    + + + +
    +

    nameCollision property

    + +
    + dynamic + nameCollision +
    final
    +
    +
    +

    lowerCamelCase name collision

    +
    + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs_dev/ex/NameCOllision/noSuchMethod.html b/testing/test_package_docs_dev/ex/NameCOllision/noSuchMethod.html new file mode 100644 index 0000000000..58b36c6dd5 --- /dev/null +++ b/testing/test_package_docs_dev/ex/NameCOllision/noSuchMethod.html @@ -0,0 +1,100 @@ + + + + + + + + noSuchMethod method - NameCOllision class - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    noSuchMethod
    + +
    + +
    + + + +
    +

    noSuchMethod method

    + +
    + dynamic + noSuchMethod +(Invocation invocation) +
    inherited
    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs_dev/ex/NameCOllision/operator_equals.html b/testing/test_package_docs_dev/ex/NameCOllision/operator_equals.html new file mode 100644 index 0000000000..b0579357cc --- /dev/null +++ b/testing/test_package_docs_dev/ex/NameCOllision/operator_equals.html @@ -0,0 +1,100 @@ + + + + + + + + operator == method - NameCOllision class - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    operator ==
    + +
    + +
    + + + +
    +

    operator == method

    + +
    + bool + operator == +(dynamic other) +
    inherited
    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs_dev/ex/NameCOllision/runtimeType.html b/testing/test_package_docs_dev/ex/NameCOllision/runtimeType.html new file mode 100644 index 0000000000..06baa3da8d --- /dev/null +++ b/testing/test_package_docs_dev/ex/NameCOllision/runtimeType.html @@ -0,0 +1,103 @@ + + + + + + + + runtimeType property - NameCOllision class - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    runtimeType
    + +
    + +
    + + + +
    +

    runtimeType property

    + + +
    + +
    + Type + runtimeType +
    inherited
    +
    + + +
    + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs_dev/ex/NameCOllision/toString.html b/testing/test_package_docs_dev/ex/NameCOllision/toString.html new file mode 100644 index 0000000000..377d69ad51 --- /dev/null +++ b/testing/test_package_docs_dev/ex/NameCOllision/toString.html @@ -0,0 +1,100 @@ + + + + + + + + toString method - NameCOllision class - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    toString
    + +
    + +
    + + + +
    +

    toString method

    + +
    + String + toString +() +
    inherited
    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs_dev/ex/NameCollision-1318-class.html b/testing/test_package_docs_dev/ex/NameCollision-1318-class.html new file mode 100644 index 0000000000..ac70b5fc97 --- /dev/null +++ b/testing/test_package_docs_dev/ex/NameCollision-1318-class.html @@ -0,0 +1,333 @@ + + + + + + + + NameCollision enum - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    NameCollision
    + +
    + +
    + + + +
    +

    NameCollision enum

    + +
    +

    Name collision enum

    +
    + + +
    +

    Constants

    + +
    +
    + NAMECOLLISION + → const NameCollision +
    +
    +

    name collision enum 4

    + +
    + const NameCollision(3) +
    +
    +
    + NameCOllision + → const NameCollision +
    +
    +

    name collision enum 5

    + +
    + const NameCollision(4) +
    +
    +
    + NameCollision + → const NameCollision +
    +
    +

    name collision enum 1

    + +
    + const NameCollision(0) +
    +
    +
    + nameCOllision + → const NameCollision +
    +
    +

    name collision enum 6

    + +
    + const NameCollision(5) +
    +
    +
    + nameCollision + → const NameCollision +
    +
    +

    name collision enum 2

    + +
    + const NameCollision(1) +
    +
    +
    + namecollision + → const NameCollision +
    +
    +

    name collision enum 3

    + +
    + const NameCollision(2) +
    +
    +
    + values + → const List<NameCollision> +
    +
    +

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

    + +
    + const List<NameCollision> +
    +
    +
    +
    + + +
    +

    Properties

    + +
    +
    + index + → int +
    +
    +

    The integer index of this enum.

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

    Methods

    +
    +
    + toString() + → String + +
    +
    + +
    override
    +
    +
    + noSuchMethod(Invocation invocation) + → dynamic + +
    +
    + +
    inherited
    +
    +
    +
    + +
    +

    Operators

    +
    +
    + operator ==(dynamic other) + → bool + +
    +
    + +
    inherited
    +
    +
    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs_dev/ex/NameCollision-1318/hashCode.html b/testing/test_package_docs_dev/ex/NameCollision-1318/hashCode.html new file mode 100644 index 0000000000..8e78b9d3fa --- /dev/null +++ b/testing/test_package_docs_dev/ex/NameCollision-1318/hashCode.html @@ -0,0 +1,108 @@ + + + + + + + + hashCode property - NameCollision class - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    hashCode
    + +
    + +
    + + + +
    +

    hashCode property

    + + +
    + +
    + int + hashCode +
    inherited
    +
    + + +
    + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs_dev/ex/NameCollision-1318/noSuchMethod.html b/testing/test_package_docs_dev/ex/NameCollision-1318/noSuchMethod.html new file mode 100644 index 0000000000..b67c67dc95 --- /dev/null +++ b/testing/test_package_docs_dev/ex/NameCollision-1318/noSuchMethod.html @@ -0,0 +1,105 @@ + + + + + + + + noSuchMethod method - NameCollision class - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    noSuchMethod
    + +
    + +
    + + + +
    +

    noSuchMethod method

    + +
    + dynamic + noSuchMethod +(Invocation invocation) +
    inherited
    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs_dev/ex/NameCollision-1318/operator_equals.html b/testing/test_package_docs_dev/ex/NameCollision-1318/operator_equals.html new file mode 100644 index 0000000000..dbf75a356b --- /dev/null +++ b/testing/test_package_docs_dev/ex/NameCollision-1318/operator_equals.html @@ -0,0 +1,105 @@ + + + + + + + + operator == method - NameCollision class - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    operator ==
    + +
    + +
    + + + +
    +

    operator == method

    + +
    + bool + operator == +(dynamic other) +
    inherited
    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs_dev/ex/NameCollision-1318/runtimeType.html b/testing/test_package_docs_dev/ex/NameCollision-1318/runtimeType.html new file mode 100644 index 0000000000..1ba547e3a8 --- /dev/null +++ b/testing/test_package_docs_dev/ex/NameCollision-1318/runtimeType.html @@ -0,0 +1,108 @@ + + + + + + + + runtimeType property - NameCollision class - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    runtimeType
    + +
    + +
    + + + +
    +

    runtimeType property

    + + +
    + +
    + Type + runtimeType +
    inherited
    +
    + + +
    + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs_dev/ex/NameCollision-1318/toString.html b/testing/test_package_docs_dev/ex/NameCollision-1318/toString.html new file mode 100644 index 0000000000..fea01f9b43 --- /dev/null +++ b/testing/test_package_docs_dev/ex/NameCollision-1318/toString.html @@ -0,0 +1,105 @@ + + + + + + + + toString method - NameCollision class - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    toString
    + +
    + +
    + + + +
    +

    toString method

    + +
    + String + toString +() +
    override
    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs_dev/ex/PRETTY_COLORS-constant.html b/testing/test_package_docs_dev/ex/PRETTY_COLORS-constant.html index c784e35dd9..1b19100827 100644 --- a/testing/test_package_docs_dev/ex/PRETTY_COLORS-constant.html +++ b/testing/test_package_docs_dev/ex/PRETTY_COLORS-constant.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/ParameterizedClass-class.html b/testing/test_package_docs_dev/ex/ParameterizedClass-class.html index 74d448a143..360ba37301 100644 --- a/testing/test_package_docs_dev/ex/ParameterizedClass-class.html +++ b/testing/test_package_docs_dev/ex/ParameterizedClass-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/ParameterizedTypedef.html b/testing/test_package_docs_dev/ex/ParameterizedTypedef.html index ad8fa4f1d7..47e0097ff6 100644 --- a/testing/test_package_docs_dev/ex/ParameterizedTypedef.html +++ b/testing/test_package_docs_dev/ex/ParameterizedTypedef.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/PublicClassExtendsPrivateClass-class.html b/testing/test_package_docs_dev/ex/PublicClassExtendsPrivateClass-class.html index c5ec3c9ec9..12eb4a28bc 100644 --- a/testing/test_package_docs_dev/ex/PublicClassExtendsPrivateClass-class.html +++ b/testing/test_package_docs_dev/ex/PublicClassExtendsPrivateClass-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/PublicClassImplementsPrivateInterface-class.html b/testing/test_package_docs_dev/ex/PublicClassImplementsPrivateInterface-class.html index a08b83c176..a433b2ec5c 100644 --- a/testing/test_package_docs_dev/ex/PublicClassImplementsPrivateInterface-class.html +++ b/testing/test_package_docs_dev/ex/PublicClassImplementsPrivateInterface-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/ShapeType-class.html b/testing/test_package_docs_dev/ex/ShapeType-class.html index 9acab2dff2..35ca45a822 100644 --- a/testing/test_package_docs_dev/ex/ShapeType-class.html +++ b/testing/test_package_docs_dev/ex/ShapeType-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/ShortName-class.html b/testing/test_package_docs_dev/ex/ShortName-class.html index e66a10b1a6..39b6ffe8bd 100644 --- a/testing/test_package_docs_dev/ex/ShortName-class.html +++ b/testing/test_package_docs_dev/ex/ShortName-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/SpecializedDuration-class.html b/testing/test_package_docs_dev/ex/SpecializedDuration-class.html index 81e98316f5..a6d6f201df 100644 --- a/testing/test_package_docs_dev/ex/SpecializedDuration-class.html +++ b/testing/test_package_docs_dev/ex/SpecializedDuration-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/TemplatedClass-class.html b/testing/test_package_docs_dev/ex/TemplatedClass-class.html index 5a21227cb3..6fb02597cc 100644 --- a/testing/test_package_docs_dev/ex/TemplatedClass-class.html +++ b/testing/test_package_docs_dev/ex/TemplatedClass-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/TemplatedInterface-class.html b/testing/test_package_docs_dev/ex/TemplatedInterface-class.html index a47fc84527..df3f422608 100644 --- a/testing/test_package_docs_dev/ex/TemplatedInterface-class.html +++ b/testing/test_package_docs_dev/ex/TemplatedInterface-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/ToolUser-class.html b/testing/test_package_docs_dev/ex/ToolUser-class.html index 10951cc4d9..be66db108a 100644 --- a/testing/test_package_docs_dev/ex/ToolUser-class.html +++ b/testing/test_package_docs_dev/ex/ToolUser-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/TypedFunctionsWithoutTypedefs-class.html b/testing/test_package_docs_dev/ex/TypedFunctionsWithoutTypedefs-class.html index 58f653b1ab..2bda079b28 100644 --- a/testing/test_package_docs_dev/ex/TypedFunctionsWithoutTypedefs-class.html +++ b/testing/test_package_docs_dev/ex/TypedFunctionsWithoutTypedefs-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/WithGeneric-class.html b/testing/test_package_docs_dev/ex/WithGeneric-class.html index 31516b1960..f0a65d9f0c 100644 --- a/testing/test_package_docs_dev/ex/WithGeneric-class.html +++ b/testing/test_package_docs_dev/ex/WithGeneric-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/WithGenericSub-class.html b/testing/test_package_docs_dev/ex/WithGenericSub-class.html index c3a2d47500..13a9737f0e 100644 --- a/testing/test_package_docs_dev/ex/WithGenericSub-class.html +++ b/testing/test_package_docs_dev/ex/WithGenericSub-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/aComplexTypedef.html b/testing/test_package_docs_dev/ex/aComplexTypedef.html index fc81e957a8..4a43ad9ef3 100644 --- a/testing/test_package_docs_dev/ex/aComplexTypedef.html +++ b/testing/test_package_docs_dev/ex/aComplexTypedef.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/aThingToDo-class.html b/testing/test_package_docs_dev/ex/aThingToDo-class.html index e709ecbad1..d92d87c990 100644 --- a/testing/test_package_docs_dev/ex/aThingToDo-class.html +++ b/testing/test_package_docs_dev/ex/aThingToDo-class.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/deprecated-constant.html b/testing/test_package_docs_dev/ex/deprecated-lower-constant.html similarity index 93% rename from testing/test_package_docs_dev/ex/deprecated-constant.html rename to testing/test_package_docs_dev/ex/deprecated-lower-constant.html index b1d4ff2f2b..2d6c1169f0 100644 --- a/testing/test_package_docs_dev/ex/deprecated-constant.html +++ b/testing/test_package_docs_dev/ex/deprecated-lower-constant.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/deprecatedField.html b/testing/test_package_docs_dev/ex/deprecatedField.html index 36cd0d8657..e4af8f1cf5 100644 --- a/testing/test_package_docs_dev/ex/deprecatedField.html +++ b/testing/test_package_docs_dev/ex/deprecatedField.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/deprecatedGetter.html b/testing/test_package_docs_dev/ex/deprecatedGetter.html index 854a5c8565..299614489b 100644 --- a/testing/test_package_docs_dev/ex/deprecatedGetter.html +++ b/testing/test_package_docs_dev/ex/deprecatedGetter.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/deprecatedSetter.html b/testing/test_package_docs_dev/ex/deprecatedSetter.html index ee13317fef..c05d4afb95 100644 --- a/testing/test_package_docs_dev/ex/deprecatedSetter.html +++ b/testing/test_package_docs_dev/ex/deprecatedSetter.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/ex-library.html b/testing/test_package_docs_dev/ex/ex-library.html index ee9f5556f3..d88f0130d2 100644 --- a/testing/test_package_docs_dev/ex/ex-library.html +++ b/testing/test_package_docs_dev/ex/ex-library.html @@ -41,24 +41,24 @@
    test_package pa
  • Superb
  • Unreal
  • Libraries
  • +
  • code_in_comments
  • anonymous_library
  • another_anonymous_lib
  • -
  • code_in_comments
  • is_deprecated
  • Unreal
  • reexport_one
  • reexport_two
  • Real Libraries
  • -
  • ex
  • -
  • fake
  • two_exports
  • +
  • fake
  • +
  • ex
  • Misc
  • two_exports
  • Other
  • css
  • test_package_imported
  • -
  • categoriesExported
  • test_package_imported.main
  • +
  • categoriesExported
  • @@ -183,6 +183,12 @@

    Classes

    A class
    +
    + NameCOllision +
    +
    + Mixed case class name collision starting with uppercase +
    ParameterizedClass<T>
    @@ -309,7 +315,7 @@

    Constants

    - deprecated + deprecated → const Deprecated
    @@ -393,6 +399,38 @@

    Properties

    write-only
    +
    +
    + NAMECOLLISION + ↔ String +
    +
    + UPPPERCASE name collision +
    read / write
    +
    +
    + nameCOllision + ↔ String +
    +
    + Mixed case name collision starting with lowercase +
    read / write
    +
    +
    + nameCollision + ↔ String +
    +
    + lowerCamelCase name collision +
    read / write
    +
    +
    + namecollision + ↔ String +
    +
    + lowercase name collision +
    read / write
    number @@ -449,6 +487,12 @@

    Enums

    Referencing processMessage (or other things) here should not break enum constants ala #1445 +
    + NameCollision +
    +
    + Name collision enum +
    @@ -541,6 +585,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -560,7 +605,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -570,6 +615,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -579,6 +628,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/function1.html b/testing/test_package_docs_dev/ex/function1.html index decaefdb11..ac800142d5 100644 --- a/testing/test_package_docs_dev/ex/function1.html +++ b/testing/test_package_docs_dev/ex/function1.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/genericFunction.html b/testing/test_package_docs_dev/ex/genericFunction.html index aec77712c4..9eb5f0d2f6 100644 --- a/testing/test_package_docs_dev/ex/genericFunction.html +++ b/testing/test_package_docs_dev/ex/genericFunction.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/incorrectDocReference-constant.html b/testing/test_package_docs_dev/ex/incorrectDocReference-constant.html index 25a433ff3f..25b6d08628 100644 --- a/testing/test_package_docs_dev/ex/incorrectDocReference-constant.html +++ b/testing/test_package_docs_dev/ex/incorrectDocReference-constant.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/incorrectDocReferenceFromEx-constant.html b/testing/test_package_docs_dev/ex/incorrectDocReferenceFromEx-constant.html index c27cb6a4b7..f09426e264 100644 --- a/testing/test_package_docs_dev/ex/incorrectDocReferenceFromEx-constant.html +++ b/testing/test_package_docs_dev/ex/incorrectDocReferenceFromEx-constant.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/nameCOllision-0427.html b/testing/test_package_docs_dev/ex/nameCOllision-0427.html new file mode 100644 index 0000000000..191db5a2e7 --- /dev/null +++ b/testing/test_package_docs_dev/ex/nameCOllision-0427.html @@ -0,0 +1,155 @@ + + + + + + + + nameCOllision property - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    nameCOllision
    + +
    + +
    + + + +
    +

    nameCOllision top-level property

    + +
    + String + nameCOllision +
    read / write
    +
    +
    +

    Mixed case name collision starting with lowercase

    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs_dev/ex/nameCollision-0418.html b/testing/test_package_docs_dev/ex/nameCollision-0418.html new file mode 100644 index 0000000000..ef8966ffaa --- /dev/null +++ b/testing/test_package_docs_dev/ex/nameCollision-0418.html @@ -0,0 +1,155 @@ + + + + + + + + nameCollision property - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    nameCollision
    + +
    + +
    + + + +
    +

    nameCollision top-level property

    + +
    + String + nameCollision +
    read / write
    +
    +
    +

    lowerCamelCase name collision

    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs_dev/ex/namecollision-lower.html b/testing/test_package_docs_dev/ex/namecollision-lower.html new file mode 100644 index 0000000000..dbb3d5930b --- /dev/null +++ b/testing/test_package_docs_dev/ex/namecollision-lower.html @@ -0,0 +1,155 @@ + + + + + + + + namecollision property - ex library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    namecollision
    + +
    + +
    + + + +
    +

    namecollision top-level property

    + +
    + String + namecollision +
    read / write
    +
    +
    +

    lowercase name collision

    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs_dev/ex/number.html b/testing/test_package_docs_dev/ex/number.html index 1e0f7193d0..87858cfef5 100644 --- a/testing/test_package_docs_dev/ex/number.html +++ b/testing/test_package_docs_dev/ex/number.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/processMessage.html b/testing/test_package_docs_dev/ex/processMessage.html index 9e523678f4..22f1e7a00d 100644 --- a/testing/test_package_docs_dev/ex/processMessage.html +++ b/testing/test_package_docs_dev/ex/processMessage.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/ex/y.html b/testing/test_package_docs_dev/ex/y.html index 17ba8114e9..8ade405029 100644 --- a/testing/test_package_docs_dev/ex/y.html +++ b/testing/test_package_docs_dev/ex/y.html @@ -57,6 +57,7 @@
    ex library
  • Helper
  • HtmlInjection
  • Klass
  • +
  • NameCOllision
  • ParameterizedClass
  • PublicClassExtendsPrivateClass
  • PublicClassImplementsPrivateInterface
  • @@ -76,7 +77,7 @@
    ex library
  • COLOR_GREEN
  • COLOR_ORANGE
  • COMPLEX_COLOR
  • -
  • deprecated
  • +
  • deprecated
  • incorrectDocReference
  • incorrectDocReferenceFromEx
  • MY_CAT
  • @@ -86,6 +87,10 @@
    ex library
  • deprecatedField
  • deprecatedGetter
  • deprecatedSetter
  • +
  • NAMECOLLISION
  • +
  • nameCOllision
  • +
  • nameCollision
  • +
  • namecollision
  • number
  • y
  • @@ -95,6 +100,7 @@
    ex library
  • Enums
  • Animal
  • +
  • NameCollision
  • Typedefs
  • aComplexTypedef
  • diff --git a/testing/test_package_docs_dev/fake/ABaseClass-class.html b/testing/test_package_docs_dev/fake/ABaseClass-class.html index bab40d8acd..02ba2b940f 100644 --- a/testing/test_package_docs_dev/fake/ABaseClass-class.html +++ b/testing/test_package_docs_dev/fake/ABaseClass-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/AClassUsingASuperMixin-class.html b/testing/test_package_docs_dev/fake/AClassUsingASuperMixin-class.html index 8e1be0a7b2..3f9d258b18 100644 --- a/testing/test_package_docs_dev/fake/AClassUsingASuperMixin-class.html +++ b/testing/test_package_docs_dev/fake/AClassUsingASuperMixin-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/AClassUsingNewStyleMixin-class.html b/testing/test_package_docs_dev/fake/AClassUsingNewStyleMixin-class.html index 2d6f17f91a..239b1a6005 100644 --- a/testing/test_package_docs_dev/fake/AClassUsingNewStyleMixin-class.html +++ b/testing/test_package_docs_dev/fake/AClassUsingNewStyleMixin-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • @@ -190,7 +190,7 @@

    AClassUsingNewStyleMixin class

    Mixed in types
    diff --git a/testing/test_package_docs_dev/fake/AClassWithFancyProperties-class.html b/testing/test_package_docs_dev/fake/AClassWithFancyProperties-class.html index 48f1c8d9cb..1b8dd1ac74 100644 --- a/testing/test_package_docs_dev/fake/AClassWithFancyProperties-class.html +++ b/testing/test_package_docs_dev/fake/AClassWithFancyProperties-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/AMixinCallingSuper-class.html b/testing/test_package_docs_dev/fake/AMixinCallingSuper-class.html index cdcd6347ca..2c6be94efc 100644 --- a/testing/test_package_docs_dev/fake/AMixinCallingSuper-class.html +++ b/testing/test_package_docs_dev/fake/AMixinCallingSuper-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/ATypeTakingClass-class.html b/testing/test_package_docs_dev/fake/ATypeTakingClass-class.html index c89dca5de7..adbc8f5821 100644 --- a/testing/test_package_docs_dev/fake/ATypeTakingClass-class.html +++ b/testing/test_package_docs_dev/fake/ATypeTakingClass-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/ATypeTakingClassMixedIn-class.html b/testing/test_package_docs_dev/fake/ATypeTakingClassMixedIn-class.html index ad60fbeb8b..6fd68983fb 100644 --- a/testing/test_package_docs_dev/fake/ATypeTakingClassMixedIn-class.html +++ b/testing/test_package_docs_dev/fake/ATypeTakingClassMixedIn-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/Annotation-class.html b/testing/test_package_docs_dev/fake/Annotation-class.html index dba5ffc534..6cef40ca2c 100644 --- a/testing/test_package_docs_dev/fake/Annotation-class.html +++ b/testing/test_package_docs_dev/fake/Annotation-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/AnotherInterface-class.html b/testing/test_package_docs_dev/fake/AnotherInterface-class.html index b5914775f4..753fdabafd 100644 --- a/testing/test_package_docs_dev/fake/AnotherInterface-class.html +++ b/testing/test_package_docs_dev/fake/AnotherInterface-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/BaseForDocComments-class.html b/testing/test_package_docs_dev/fake/BaseForDocComments-class.html index c03be5040b..85a7b9e562 100644 --- a/testing/test_package_docs_dev/fake/BaseForDocComments-class.html +++ b/testing/test_package_docs_dev/fake/BaseForDocComments-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/BaseThingy-class.html b/testing/test_package_docs_dev/fake/BaseThingy-class.html index 5fef23bf1e..58f4d3ac5f 100644 --- a/testing/test_package_docs_dev/fake/BaseThingy-class.html +++ b/testing/test_package_docs_dev/fake/BaseThingy-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/BaseThingy2-class.html b/testing/test_package_docs_dev/fake/BaseThingy2-class.html index f4690dd510..0a5f886ba8 100644 --- a/testing/test_package_docs_dev/fake/BaseThingy2-class.html +++ b/testing/test_package_docs_dev/fake/BaseThingy2-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/CUSTOM_CLASS-constant.html b/testing/test_package_docs_dev/fake/CUSTOM_CLASS-constant.html index badc6ca40f..d177c7d58b 100644 --- a/testing/test_package_docs_dev/fake/CUSTOM_CLASS-constant.html +++ b/testing/test_package_docs_dev/fake/CUSTOM_CLASS-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/CUSTOM_CLASS_PRIVATE-constant.html b/testing/test_package_docs_dev/fake/CUSTOM_CLASS_PRIVATE-constant.html index 89c673f5d8..4d0c5e0a9b 100644 --- a/testing/test_package_docs_dev/fake/CUSTOM_CLASS_PRIVATE-constant.html +++ b/testing/test_package_docs_dev/fake/CUSTOM_CLASS_PRIVATE-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/Callback2.html b/testing/test_package_docs_dev/fake/Callback2.html index fec1c14595..37fceb7c7d 100644 --- a/testing/test_package_docs_dev/fake/Callback2.html +++ b/testing/test_package_docs_dev/fake/Callback2.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/ClassWithUnusualProperties-class.html b/testing/test_package_docs_dev/fake/ClassWithUnusualProperties-class.html index 0b577b9320..b08ee8f0db 100644 --- a/testing/test_package_docs_dev/fake/ClassWithUnusualProperties-class.html +++ b/testing/test_package_docs_dev/fake/ClassWithUnusualProperties-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/Color-class.html b/testing/test_package_docs_dev/fake/Color-class.html index 0e781b2bd9..ee48ff45ac 100644 --- a/testing/test_package_docs_dev/fake/Color-class.html +++ b/testing/test_package_docs_dev/fake/Color-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/ConstantClass-class.html b/testing/test_package_docs_dev/fake/ConstantClass-class.html index 5bc00187cd..1ae22b03d5 100644 --- a/testing/test_package_docs_dev/fake/ConstantClass-class.html +++ b/testing/test_package_docs_dev/fake/ConstantClass-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/ConstructorTester-class.html b/testing/test_package_docs_dev/fake/ConstructorTester-class.html index a4ac52c656..1b5a5d427c 100644 --- a/testing/test_package_docs_dev/fake/ConstructorTester-class.html +++ b/testing/test_package_docs_dev/fake/ConstructorTester-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/Cool-class.html b/testing/test_package_docs_dev/fake/Cool-class.html index 2494cad0be..7eafc51997 100644 --- a/testing/test_package_docs_dev/fake/Cool-class.html +++ b/testing/test_package_docs_dev/fake/Cool-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/CovariantMemberParams-class.html b/testing/test_package_docs_dev/fake/CovariantMemberParams-class.html index 813b8fa079..1da66b05ba 100644 --- a/testing/test_package_docs_dev/fake/CovariantMemberParams-class.html +++ b/testing/test_package_docs_dev/fake/CovariantMemberParams-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/DOWN-constant.html b/testing/test_package_docs_dev/fake/DOWN-constant.html index ab6c1fe49c..9a4e2e63c8 100644 --- a/testing/test_package_docs_dev/fake/DOWN-constant.html +++ b/testing/test_package_docs_dev/fake/DOWN-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/DocumentWithATable-class.html b/testing/test_package_docs_dev/fake/DocumentWithATable-class.html index 54e6e08e97..38cc1b3b2a 100644 --- a/testing/test_package_docs_dev/fake/DocumentWithATable-class.html +++ b/testing/test_package_docs_dev/fake/DocumentWithATable-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • @@ -178,7 +178,7 @@

    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"
    +

    It also has a short table with embedded links.

    DocumentWithATableAnnotationaMethod
    fooNot really"blah"
    barMaybe"stuff"
    @@ -274,7 +274,7 @@

    Constants

    - bar + bar → const DocumentWithATable
    @@ -322,7 +322,7 @@

    Constants

  • Constants
  • -
  • bar
  • +
  • bar
  • foo
  • diff --git a/testing/test_package_docs_dev/fake/DocumentWithATable/DocumentWithATable.html b/testing/test_package_docs_dev/fake/DocumentWithATable/DocumentWithATable.html index 935a0d864a..2604211106 100644 --- a/testing/test_package_docs_dev/fake/DocumentWithATable/DocumentWithATable.html +++ b/testing/test_package_docs_dev/fake/DocumentWithATable/DocumentWithATable.html @@ -59,7 +59,7 @@
    DocumentWithATable class
  • Constants
  • -
  • bar
  • +
  • bar
  • foo
  • diff --git a/testing/test_package_docs_dev/fake/DocumentWithATable/aMethod.html b/testing/test_package_docs_dev/fake/DocumentWithATable/aMethod.html index 044e256b4f..e690d6dec7 100644 --- a/testing/test_package_docs_dev/fake/DocumentWithATable/aMethod.html +++ b/testing/test_package_docs_dev/fake/DocumentWithATable/aMethod.html @@ -59,7 +59,7 @@
    DocumentWithATable class
  • Constants
  • -
  • bar
  • +
  • bar
  • foo
  • diff --git a/testing/test_package_docs/fake/DocumentWithATable/bar-constant.html b/testing/test_package_docs_dev/fake/DocumentWithATable/bar-lower-constant.html similarity index 98% rename from testing/test_package_docs/fake/DocumentWithATable/bar-constant.html rename to testing/test_package_docs_dev/fake/DocumentWithATable/bar-lower-constant.html index 5ec10125de..d6fbe6503c 100644 --- a/testing/test_package_docs/fake/DocumentWithATable/bar-constant.html +++ b/testing/test_package_docs_dev/fake/DocumentWithATable/bar-lower-constant.html @@ -59,7 +59,7 @@
    DocumentWithATable class
  • Constants
  • -
  • bar
  • +
  • bar
  • foo
  • diff --git a/testing/test_package_docs_dev/fake/DocumentWithATable/foo-constant.html b/testing/test_package_docs_dev/fake/DocumentWithATable/foo-constant.html index a4e22f0b7e..e9db4a0dee 100644 --- a/testing/test_package_docs_dev/fake/DocumentWithATable/foo-constant.html +++ b/testing/test_package_docs_dev/fake/DocumentWithATable/foo-constant.html @@ -59,7 +59,7 @@
    DocumentWithATable class
  • Constants
  • -
  • bar
  • +
  • bar
  • foo
  • diff --git a/testing/test_package_docs_dev/fake/DocumentWithATable/hashCode.html b/testing/test_package_docs_dev/fake/DocumentWithATable/hashCode.html index 034c5979f2..5a23353eb1 100644 --- a/testing/test_package_docs_dev/fake/DocumentWithATable/hashCode.html +++ b/testing/test_package_docs_dev/fake/DocumentWithATable/hashCode.html @@ -59,7 +59,7 @@
    DocumentWithATable class
  • Constants
  • -
  • bar
  • +
  • bar
  • foo
  • diff --git a/testing/test_package_docs_dev/fake/DocumentWithATable/noSuchMethod.html b/testing/test_package_docs_dev/fake/DocumentWithATable/noSuchMethod.html index 599ece67f1..3572672188 100644 --- a/testing/test_package_docs_dev/fake/DocumentWithATable/noSuchMethod.html +++ b/testing/test_package_docs_dev/fake/DocumentWithATable/noSuchMethod.html @@ -59,7 +59,7 @@
    DocumentWithATable class
  • Constants
  • -
  • bar
  • +
  • bar
  • foo
  • diff --git a/testing/test_package_docs_dev/fake/DocumentWithATable/operator_equals.html b/testing/test_package_docs_dev/fake/DocumentWithATable/operator_equals.html index 6310137a03..fd16cbca17 100644 --- a/testing/test_package_docs_dev/fake/DocumentWithATable/operator_equals.html +++ b/testing/test_package_docs_dev/fake/DocumentWithATable/operator_equals.html @@ -59,7 +59,7 @@
    DocumentWithATable class
  • Constants
  • -
  • bar
  • +
  • bar
  • foo
  • diff --git a/testing/test_package_docs_dev/fake/DocumentWithATable/runtimeType.html b/testing/test_package_docs_dev/fake/DocumentWithATable/runtimeType.html index 784cdd1e9d..c93d932c1b 100644 --- a/testing/test_package_docs_dev/fake/DocumentWithATable/runtimeType.html +++ b/testing/test_package_docs_dev/fake/DocumentWithATable/runtimeType.html @@ -59,7 +59,7 @@
    DocumentWithATable class
  • Constants
  • -
  • bar
  • +
  • bar
  • foo
  • diff --git a/testing/test_package_docs_dev/fake/DocumentWithATable/toString.html b/testing/test_package_docs_dev/fake/DocumentWithATable/toString.html index 2458e7c6f5..1ecc2493c8 100644 --- a/testing/test_package_docs_dev/fake/DocumentWithATable/toString.html +++ b/testing/test_package_docs_dev/fake/DocumentWithATable/toString.html @@ -59,7 +59,7 @@
    DocumentWithATable class
  • Constants
  • -
  • bar
  • +
  • bar
  • foo
  • diff --git a/testing/test_package_docs_dev/fake/Doh-class.html b/testing/test_package_docs_dev/fake/Doh-class.html index 5d9318599d..1112d1c0fb 100644 --- a/testing/test_package_docs_dev/fake/Doh-class.html +++ b/testing/test_package_docs_dev/fake/Doh-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/ExtendsFutureVoid-class.html b/testing/test_package_docs_dev/fake/ExtendsFutureVoid-class.html index 6ce15a82a8..be1ff0d415 100644 --- a/testing/test_package_docs_dev/fake/ExtendsFutureVoid-class.html +++ b/testing/test_package_docs_dev/fake/ExtendsFutureVoid-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/ExtraSpecialList-class.html b/testing/test_package_docs_dev/fake/ExtraSpecialList-class.html index f207a36d94..17528da15f 100644 --- a/testing/test_package_docs_dev/fake/ExtraSpecialList-class.html +++ b/testing/test_package_docs_dev/fake/ExtraSpecialList-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/FakeProcesses.html b/testing/test_package_docs_dev/fake/FakeProcesses.html index fd9425d209..a32788f4a2 100644 --- a/testing/test_package_docs_dev/fake/FakeProcesses.html +++ b/testing/test_package_docs_dev/fake/FakeProcesses.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/Foo2-class.html b/testing/test_package_docs_dev/fake/Foo2-class.html index 7e83f3362d..b11babec52 100644 --- a/testing/test_package_docs_dev/fake/Foo2-class.html +++ b/testing/test_package_docs_dev/fake/Foo2-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • @@ -270,7 +270,7 @@

    Constants

    - BAR + BAR → const Foo2
    @@ -318,7 +318,7 @@

    Constants

  • Constants
  • -
  • BAR
  • +
  • BAR
  • BAZ
  • diff --git a/testing/test_package_docs/fake/Foo2/BAR-constant.html b/testing/test_package_docs_dev/fake/Foo2/BAR-upper-constant.html similarity index 98% rename from testing/test_package_docs/fake/Foo2/BAR-constant.html rename to testing/test_package_docs_dev/fake/Foo2/BAR-upper-constant.html index fa65983934..6f6718d626 100644 --- a/testing/test_package_docs/fake/Foo2/BAR-constant.html +++ b/testing/test_package_docs_dev/fake/Foo2/BAR-upper-constant.html @@ -59,7 +59,7 @@
    Foo2 class
  • Constants
  • -
  • BAR
  • +
  • BAR
  • BAZ
  • diff --git a/testing/test_package_docs_dev/fake/Foo2/BAZ-constant.html b/testing/test_package_docs_dev/fake/Foo2/BAZ-constant.html index 6cc582cae3..dc9cb51368 100644 --- a/testing/test_package_docs_dev/fake/Foo2/BAZ-constant.html +++ b/testing/test_package_docs_dev/fake/Foo2/BAZ-constant.html @@ -59,7 +59,7 @@
    Foo2 class
  • Constants
  • -
  • BAR
  • +
  • BAR
  • BAZ
  • diff --git a/testing/test_package_docs_dev/fake/Foo2/Foo2.html b/testing/test_package_docs_dev/fake/Foo2/Foo2.html index d8b960c8b9..1608fbaf05 100644 --- a/testing/test_package_docs_dev/fake/Foo2/Foo2.html +++ b/testing/test_package_docs_dev/fake/Foo2/Foo2.html @@ -59,7 +59,7 @@
    Foo2 class
  • Constants
  • -
  • BAR
  • +
  • BAR
  • BAZ
  • diff --git a/testing/test_package_docs_dev/fake/Foo2/hashCode.html b/testing/test_package_docs_dev/fake/Foo2/hashCode.html index dd9b1a9a59..f2b0e0d60b 100644 --- a/testing/test_package_docs_dev/fake/Foo2/hashCode.html +++ b/testing/test_package_docs_dev/fake/Foo2/hashCode.html @@ -59,7 +59,7 @@
    Foo2 class
  • Constants
  • -
  • BAR
  • +
  • BAR
  • BAZ
  • diff --git a/testing/test_package_docs_dev/fake/Foo2/index.html b/testing/test_package_docs_dev/fake/Foo2/index.html index 4dff9baadb..00faaa9762 100644 --- a/testing/test_package_docs_dev/fake/Foo2/index.html +++ b/testing/test_package_docs_dev/fake/Foo2/index.html @@ -59,7 +59,7 @@
    Foo2 class
  • Constants
  • -
  • BAR
  • +
  • BAR
  • BAZ
  • diff --git a/testing/test_package_docs_dev/fake/Foo2/noSuchMethod.html b/testing/test_package_docs_dev/fake/Foo2/noSuchMethod.html index 2f3ca62153..3bee528542 100644 --- a/testing/test_package_docs_dev/fake/Foo2/noSuchMethod.html +++ b/testing/test_package_docs_dev/fake/Foo2/noSuchMethod.html @@ -59,7 +59,7 @@
    Foo2 class
  • Constants
  • -
  • BAR
  • +
  • BAR
  • BAZ
  • diff --git a/testing/test_package_docs_dev/fake/Foo2/operator_equals.html b/testing/test_package_docs_dev/fake/Foo2/operator_equals.html index 536381cbf6..9aa62a364a 100644 --- a/testing/test_package_docs_dev/fake/Foo2/operator_equals.html +++ b/testing/test_package_docs_dev/fake/Foo2/operator_equals.html @@ -59,7 +59,7 @@
    Foo2 class
  • Constants
  • -
  • BAR
  • +
  • BAR
  • BAZ
  • diff --git a/testing/test_package_docs_dev/fake/Foo2/runtimeType.html b/testing/test_package_docs_dev/fake/Foo2/runtimeType.html index 0261d3d4a3..c544a0c482 100644 --- a/testing/test_package_docs_dev/fake/Foo2/runtimeType.html +++ b/testing/test_package_docs_dev/fake/Foo2/runtimeType.html @@ -59,7 +59,7 @@
    Foo2 class
  • Constants
  • -
  • BAR
  • +
  • BAR
  • BAZ
  • diff --git a/testing/test_package_docs_dev/fake/Foo2/toString.html b/testing/test_package_docs_dev/fake/Foo2/toString.html index 9e8b98fcd5..9a2eeac1a1 100644 --- a/testing/test_package_docs_dev/fake/Foo2/toString.html +++ b/testing/test_package_docs_dev/fake/Foo2/toString.html @@ -59,7 +59,7 @@
    Foo2 class
  • Constants
  • -
  • BAR
  • +
  • BAR
  • BAZ
  • diff --git a/testing/test_package_docs_dev/fake/GenericClass-class.html b/testing/test_package_docs_dev/fake/GenericClass-class.html index 3dd597c7c8..a5a6e0eee4 100644 --- a/testing/test_package_docs_dev/fake/GenericClass-class.html +++ b/testing/test_package_docs_dev/fake/GenericClass-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • @@ -221,7 +221,7 @@

    Properties

    ↔ T
    - Destined to be overridden by ModifierClass and GenericMixin, both. + Destined to be overridden by ModifierClass and GenericMixin, both.
    read / write
    @@ -237,7 +237,7 @@

    Properties

    ↔ T
    - Destined to be overridden by GenericMixin. + Destined to be overridden by GenericMixin.
    read / write
    diff --git a/testing/test_package_docs_dev/fake/GenericClass/overrideByBoth.html b/testing/test_package_docs_dev/fake/GenericClass/overrideByBoth.html index 106986ef9f..290907a645 100644 --- a/testing/test_package_docs_dev/fake/GenericClass/overrideByBoth.html +++ b/testing/test_package_docs_dev/fake/GenericClass/overrideByBoth.html @@ -74,7 +74,7 @@

    overrideByBoth property

    read / write
    -

    Destined to be overridden by ModifierClass and GenericMixin, both.

    +

    Destined to be overridden by ModifierClass and GenericMixin, both.

    diff --git a/testing/test_package_docs_dev/fake/GenericClass/overrideByGenericMixin.html b/testing/test_package_docs_dev/fake/GenericClass/overrideByGenericMixin.html index 8258d2498b..1cfacfbb3b 100644 --- a/testing/test_package_docs_dev/fake/GenericClass/overrideByGenericMixin.html +++ b/testing/test_package_docs_dev/fake/GenericClass/overrideByGenericMixin.html @@ -74,7 +74,7 @@

    overrideByGenericMixin property

    read / write
    -

    Destined to be overridden by GenericMixin.

    +

    Destined to be overridden by GenericMixin.

    diff --git a/testing/test_package_docs/fake/GenericMixin-mixin.html b/testing/test_package_docs_dev/fake/GenericMixin-class.html similarity index 97% rename from testing/test_package_docs/fake/GenericMixin-mixin.html rename to testing/test_package_docs_dev/fake/GenericMixin-class.html index a565dc4f20..9ce75d281a 100644 --- a/testing/test_package_docs/fake/GenericMixin-mixin.html +++ b/testing/test_package_docs_dev/fake/GenericMixin-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • @@ -226,7 +226,7 @@

    Properties

    ↔ T
    - Destined to be overridden by ModifierClass and GenericMixin, both. + Destined to be overridden by ModifierClass and GenericMixin, both.
    read / write, override
    @@ -242,7 +242,7 @@

    Properties

    ↔ T
    - Destined to be overridden by GenericMixin. + Destined to be overridden by GenericMixin.
    read / write, override
    @@ -326,11 +326,11 @@

    Operators

    - Destined to be overridden by ModifierClass and GenericMixin, both. + Destined to be overridden by ModifierClass and GenericMixin, both.
    read / write, override
    @@ -267,7 +267,7 @@

    Properties

    ↔ T
    - Destined to be overridden by GenericMixin. + Destined to be overridden by GenericMixin.
    read / write, inherited
    diff --git a/testing/test_package_docs_dev/fake/ModifierClass/overrideByBoth.html b/testing/test_package_docs_dev/fake/ModifierClass/overrideByBoth.html index 9b6e0862c8..21bb2de0ae 100644 --- a/testing/test_package_docs_dev/fake/ModifierClass/overrideByBoth.html +++ b/testing/test_package_docs_dev/fake/ModifierClass/overrideByBoth.html @@ -75,7 +75,7 @@

    overrideByBoth property

    read / write, override
    -

    Destined to be overridden by ModifierClass and GenericMixin, both.

    +

    Destined to be overridden by ModifierClass and GenericMixin, both.

    diff --git a/testing/test_package_docs_dev/fake/NAME_SINGLEUNDERSCORE-constant.html b/testing/test_package_docs_dev/fake/NAME_SINGLEUNDERSCORE-constant.html index c4e86204db..f6f9c8f2c0 100644 --- a/testing/test_package_docs_dev/fake/NAME_SINGLEUNDERSCORE-constant.html +++ b/testing/test_package_docs_dev/fake/NAME_SINGLEUNDERSCORE-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/NAME_WITH_TWO_UNDERSCORES-constant.html b/testing/test_package_docs_dev/fake/NAME_WITH_TWO_UNDERSCORES-constant.html index 70d149b6ea..afd05341f7 100644 --- a/testing/test_package_docs_dev/fake/NAME_WITH_TWO_UNDERSCORES-constant.html +++ b/testing/test_package_docs_dev/fake/NAME_WITH_TWO_UNDERSCORES-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/NewGenericTypedef.html b/testing/test_package_docs_dev/fake/NewGenericTypedef.html index bdfab72c09..1beae57e3b 100644 --- a/testing/test_package_docs_dev/fake/NewGenericTypedef.html +++ b/testing/test_package_docs_dev/fake/NewGenericTypedef.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/NewStyleMixinCallingSuper-mixin.html b/testing/test_package_docs_dev/fake/NewStyleMixinCallingSuper-class.html similarity index 97% rename from testing/test_package_docs_dev/fake/NewStyleMixinCallingSuper-mixin.html rename to testing/test_package_docs_dev/fake/NewStyleMixinCallingSuper-class.html index 753e281959..f3a3ea0b4f 100644 --- a/testing/test_package_docs_dev/fake/NewStyleMixinCallingSuper-mixin.html +++ b/testing/test_package_docs_dev/fake/NewStyleMixinCallingSuper-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • @@ -287,21 +287,21 @@

    Operators

    - Destined to be overridden by ModifierClass and GenericMixin, both. + Destined to be overridden by ModifierClass and GenericMixin, both.
    read / write, inherited
    @@ -268,7 +268,7 @@

    Properties

    ↔ int
    - Destined to be overridden by GenericMixin. + Destined to be overridden by GenericMixin.
    read / write, inherited
    diff --git a/testing/test_package_docs_dev/fake/TypedefUsingClass-class.html b/testing/test_package_docs_dev/fake/TypedefUsingClass-class.html index 324c4d6689..639a8fefe8 100644 --- a/testing/test_package_docs_dev/fake/TypedefUsingClass-class.html +++ b/testing/test_package_docs_dev/fake/TypedefUsingClass-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • @@ -194,7 +194,7 @@

    Properties

    - x + x ParameterizedTypedef<double>
    @@ -272,7 +272,7 @@

    Operators

  • Properties
  • -
  • x
  • +
  • x
  • hashCode
  • runtimeType
  • diff --git a/testing/test_package_docs_dev/fake/TypedefUsingClass/TypedefUsingClass.html b/testing/test_package_docs_dev/fake/TypedefUsingClass/TypedefUsingClass.html index f8b9c85c4a..957c4b77a0 100644 --- a/testing/test_package_docs_dev/fake/TypedefUsingClass/TypedefUsingClass.html +++ b/testing/test_package_docs_dev/fake/TypedefUsingClass/TypedefUsingClass.html @@ -45,7 +45,7 @@
    TypedefUsingClass class
  • Properties
  • -
  • x
  • +
  • x
  • hashCode
  • runtimeType
  • diff --git a/testing/test_package_docs_dev/fake/TypedefUsingClass/hashCode.html b/testing/test_package_docs_dev/fake/TypedefUsingClass/hashCode.html index 6a3a043ffc..9caa426fc5 100644 --- a/testing/test_package_docs_dev/fake/TypedefUsingClass/hashCode.html +++ b/testing/test_package_docs_dev/fake/TypedefUsingClass/hashCode.html @@ -45,7 +45,7 @@
    TypedefUsingClass class
  • Properties
  • -
  • x
  • +
  • x
  • hashCode
  • runtimeType
  • diff --git a/testing/test_package_docs_dev/fake/TypedefUsingClass/noSuchMethod.html b/testing/test_package_docs_dev/fake/TypedefUsingClass/noSuchMethod.html index c69d51bcb6..8072ef608f 100644 --- a/testing/test_package_docs_dev/fake/TypedefUsingClass/noSuchMethod.html +++ b/testing/test_package_docs_dev/fake/TypedefUsingClass/noSuchMethod.html @@ -45,7 +45,7 @@
    TypedefUsingClass class
  • Properties
  • -
  • x
  • +
  • x
  • hashCode
  • runtimeType
  • diff --git a/testing/test_package_docs_dev/fake/TypedefUsingClass/operator_equals.html b/testing/test_package_docs_dev/fake/TypedefUsingClass/operator_equals.html index 7d20fc1980..992ed22f31 100644 --- a/testing/test_package_docs_dev/fake/TypedefUsingClass/operator_equals.html +++ b/testing/test_package_docs_dev/fake/TypedefUsingClass/operator_equals.html @@ -45,7 +45,7 @@
    TypedefUsingClass class
  • Properties
  • -
  • x
  • +
  • x
  • hashCode
  • runtimeType
  • diff --git a/testing/test_package_docs_dev/fake/TypedefUsingClass/runtimeType.html b/testing/test_package_docs_dev/fake/TypedefUsingClass/runtimeType.html index 7c2c63a9fb..2a04077454 100644 --- a/testing/test_package_docs_dev/fake/TypedefUsingClass/runtimeType.html +++ b/testing/test_package_docs_dev/fake/TypedefUsingClass/runtimeType.html @@ -45,7 +45,7 @@
    TypedefUsingClass class
  • Properties
  • -
  • x
  • +
  • x
  • hashCode
  • runtimeType
  • diff --git a/testing/test_package_docs_dev/fake/TypedefUsingClass/toString.html b/testing/test_package_docs_dev/fake/TypedefUsingClass/toString.html index 8672cec58d..c7aa9bf9b9 100644 --- a/testing/test_package_docs_dev/fake/TypedefUsingClass/toString.html +++ b/testing/test_package_docs_dev/fake/TypedefUsingClass/toString.html @@ -45,7 +45,7 @@
    TypedefUsingClass class
  • Properties
  • -
  • x
  • +
  • x
  • hashCode
  • runtimeType
  • diff --git a/testing/test_package_docs/fake/TypedefUsingClass/x.html b/testing/test_package_docs_dev/fake/TypedefUsingClass/x-lower.html similarity index 98% rename from testing/test_package_docs/fake/TypedefUsingClass/x.html rename to testing/test_package_docs_dev/fake/TypedefUsingClass/x-lower.html index 949780930c..349866a9e7 100644 --- a/testing/test_package_docs/fake/TypedefUsingClass/x.html +++ b/testing/test_package_docs_dev/fake/TypedefUsingClass/x-lower.html @@ -45,7 +45,7 @@
    TypedefUsingClass class
  • Properties
  • -
  • x
  • +
  • x
  • hashCode
  • runtimeType
  • diff --git a/testing/test_package_docs_dev/fake/UP-constant.html b/testing/test_package_docs_dev/fake/UP-constant.html index fcb8aaaa43..bd22d35334 100644 --- a/testing/test_package_docs_dev/fake/UP-constant.html +++ b/testing/test_package_docs_dev/fake/UP-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/VoidCallback.html b/testing/test_package_docs_dev/fake/VoidCallback.html index 44eb348453..01552bb592 100644 --- a/testing/test_package_docs_dev/fake/VoidCallback.html +++ b/testing/test_package_docs_dev/fake/VoidCallback.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/WithGetterAndSetter-class.html b/testing/test_package_docs_dev/fake/WithGetterAndSetter-class.html index 7eff452dec..f2c5572647 100644 --- a/testing/test_package_docs_dev/fake/WithGetterAndSetter-class.html +++ b/testing/test_package_docs_dev/fake/WithGetterAndSetter-class.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/ZERO-constant.html b/testing/test_package_docs_dev/fake/ZERO-constant.html index 99f8bf91b7..8feda32166 100644 --- a/testing/test_package_docs_dev/fake/ZERO-constant.html +++ b/testing/test_package_docs_dev/fake/ZERO-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/aCoolVariable.html b/testing/test_package_docs_dev/fake/aCoolVariable.html index 61468b348e..a27ebd06c9 100644 --- a/testing/test_package_docs_dev/fake/aCoolVariable.html +++ b/testing/test_package_docs_dev/fake/aCoolVariable.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/aMixinReturningFunction.html b/testing/test_package_docs_dev/fake/aMixinReturningFunction.html index 2a022f8b7d..88675775a4 100644 --- a/testing/test_package_docs_dev/fake/aMixinReturningFunction.html +++ b/testing/test_package_docs_dev/fake/aMixinReturningFunction.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • @@ -175,7 +175,7 @@
    fake library

    aMixinReturningFunction<T> function

    - GenericMixin<T> + GenericMixin<T> aMixinReturningFunction <T>()
    diff --git a/testing/test_package_docs_dev/fake/aVoidParameter.html b/testing/test_package_docs_dev/fake/aVoidParameter.html index ab2517c98d..56beae2f6b 100644 --- a/testing/test_package_docs_dev/fake/aVoidParameter.html +++ b/testing/test_package_docs_dev/fake/aVoidParameter.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/addCallback.html b/testing/test_package_docs_dev/fake/addCallback.html index f55185f260..4c2027a003 100644 --- a/testing/test_package_docs_dev/fake/addCallback.html +++ b/testing/test_package_docs_dev/fake/addCallback.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/addCallback2.html b/testing/test_package_docs_dev/fake/addCallback2.html index 2d7c2e65cf..58fce5cba3 100644 --- a/testing/test_package_docs_dev/fake/addCallback2.html +++ b/testing/test_package_docs_dev/fake/addCallback2.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/bulletDoced-constant.html b/testing/test_package_docs_dev/fake/bulletDoced-constant.html index e55d0bd836..a66b9531e4 100644 --- a/testing/test_package_docs_dev/fake/bulletDoced-constant.html +++ b/testing/test_package_docs_dev/fake/bulletDoced-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/complicatedReturn.html b/testing/test_package_docs_dev/fake/complicatedReturn.html index 85aa37d0fc..446a2d8542 100644 --- a/testing/test_package_docs_dev/fake/complicatedReturn.html +++ b/testing/test_package_docs_dev/fake/complicatedReturn.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/dynamicGetter.html b/testing/test_package_docs_dev/fake/dynamicGetter.html index 5c5be406bd..ed5ad1fb34 100644 --- a/testing/test_package_docs_dev/fake/dynamicGetter.html +++ b/testing/test_package_docs_dev/fake/dynamicGetter.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/fake-library.html b/testing/test_package_docs_dev/fake/fake-library.html index 40b3119c1a..34bc170da1 100644 --- a/testing/test_package_docs_dev/fake/fake-library.html +++ b/testing/test_package_docs_dev/fake/fake-library.html @@ -41,24 +41,24 @@
    test_package pa
  • Superb
  • Unreal
  • Libraries
  • +
  • code_in_comments
  • anonymous_library
  • another_anonymous_lib
  • -
  • code_in_comments
  • is_deprecated
  • Unreal
  • reexport_one
  • reexport_two
  • Real Libraries
  • -
  • ex
  • -
  • fake
  • two_exports
  • +
  • fake
  • +
  • ex
  • Misc
  • two_exports
  • Other
  • css
  • test_package_imported
  • -
  • categoriesExported
  • test_package_imported.main
  • +
  • categoriesExported
  • @@ -407,13 +407,13 @@

    Mixins

    - GenericMixin<T> + GenericMixin<T>
    A generic mixin that requires GenericClass as a superclass.
    - NewStyleMixinCallingSuper + NewStyleMixinCallingSuper
    I am a new style mixin using the new mixin syntax. @@ -745,7 +745,7 @@

    Functions

    aMixinReturningFunction<T>() - GenericMixin<T> + GenericMixin<T>
    @@ -1093,8 +1093,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/functionUsingMixinReturningFunction.html b/testing/test_package_docs_dev/fake/functionUsingMixinReturningFunction.html index c0b77b13af..a340d5703d 100644 --- a/testing/test_package_docs_dev/fake/functionUsingMixinReturningFunction.html +++ b/testing/test_package_docs_dev/fake/functionUsingMixinReturningFunction.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/functionWithFunctionParameters.html b/testing/test_package_docs_dev/fake/functionWithFunctionParameters.html index 75ee683357..0430d3d655 100644 --- a/testing/test_package_docs_dev/fake/functionWithFunctionParameters.html +++ b/testing/test_package_docs_dev/fake/functionWithFunctionParameters.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/getterSetterNodocGetter.html b/testing/test_package_docs_dev/fake/getterSetterNodocGetter.html index d2ec165e02..baf8b304c6 100644 --- a/testing/test_package_docs_dev/fake/getterSetterNodocGetter.html +++ b/testing/test_package_docs_dev/fake/getterSetterNodocGetter.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/getterSetterNodocSetter.html b/testing/test_package_docs_dev/fake/getterSetterNodocSetter.html index 513d71a5cc..a54254e7ff 100644 --- a/testing/test_package_docs_dev/fake/getterSetterNodocSetter.html +++ b/testing/test_package_docs_dev/fake/getterSetterNodocSetter.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/greatAnnotation-constant.html b/testing/test_package_docs_dev/fake/greatAnnotation-constant.html index 97575e3bc7..016659a107 100644 --- a/testing/test_package_docs_dev/fake/greatAnnotation-constant.html +++ b/testing/test_package_docs_dev/fake/greatAnnotation-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/greatestAnnotation-constant.html b/testing/test_package_docs_dev/fake/greatestAnnotation-constant.html index 25ed10f4ec..f4ff80624f 100644 --- a/testing/test_package_docs_dev/fake/greatestAnnotation-constant.html +++ b/testing/test_package_docs_dev/fake/greatestAnnotation-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/importantComputations.html b/testing/test_package_docs_dev/fake/importantComputations.html index 27df55a2a2..d35279e9a9 100644 --- a/testing/test_package_docs_dev/fake/importantComputations.html +++ b/testing/test_package_docs_dev/fake/importantComputations.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/incorrectDocReference-constant.html b/testing/test_package_docs_dev/fake/incorrectDocReference-constant.html index cc4a887643..19bfb4096a 100644 --- a/testing/test_package_docs_dev/fake/incorrectDocReference-constant.html +++ b/testing/test_package_docs_dev/fake/incorrectDocReference-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/justGetter.html b/testing/test_package_docs_dev/fake/justGetter.html index 2280ce89e4..8e5470a163 100644 --- a/testing/test_package_docs_dev/fake/justGetter.html +++ b/testing/test_package_docs_dev/fake/justGetter.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/justSetter.html b/testing/test_package_docs_dev/fake/justSetter.html index ade18d96e6..57e784d08a 100644 --- a/testing/test_package_docs_dev/fake/justSetter.html +++ b/testing/test_package_docs_dev/fake/justSetter.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/mapWithDynamicKeys.html b/testing/test_package_docs_dev/fake/mapWithDynamicKeys.html index 1500ab6fd4..6cae544e0d 100644 --- a/testing/test_package_docs_dev/fake/mapWithDynamicKeys.html +++ b/testing/test_package_docs_dev/fake/mapWithDynamicKeys.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/meaningOfLife.html b/testing/test_package_docs_dev/fake/meaningOfLife.html index 3259256093..b40aa517c0 100644 --- a/testing/test_package_docs_dev/fake/meaningOfLife.html +++ b/testing/test_package_docs_dev/fake/meaningOfLife.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/mustGetThis.html b/testing/test_package_docs_dev/fake/mustGetThis.html index 5ff1b760b8..699d2b24e4 100644 --- a/testing/test_package_docs_dev/fake/mustGetThis.html +++ b/testing/test_package_docs_dev/fake/mustGetThis.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/myCoolTypedef.html b/testing/test_package_docs_dev/fake/myCoolTypedef.html index 01ab8aa8cb..e8b0ec0a75 100644 --- a/testing/test_package_docs_dev/fake/myCoolTypedef.html +++ b/testing/test_package_docs_dev/fake/myCoolTypedef.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/myGenericFunction.html b/testing/test_package_docs_dev/fake/myGenericFunction.html index 12b57b0af5..fed098a3d1 100644 --- a/testing/test_package_docs_dev/fake/myGenericFunction.html +++ b/testing/test_package_docs_dev/fake/myGenericFunction.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/myMap-constant.html b/testing/test_package_docs_dev/fake/myMap-constant.html index 16377110a7..19a7a03c7f 100644 --- a/testing/test_package_docs_dev/fake/myMap-constant.html +++ b/testing/test_package_docs_dev/fake/myMap-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/onlyPositionalWithNoDefaultNoType.html b/testing/test_package_docs_dev/fake/onlyPositionalWithNoDefaultNoType.html index f7e55accdf..c76072728e 100644 --- a/testing/test_package_docs_dev/fake/onlyPositionalWithNoDefaultNoType.html +++ b/testing/test_package_docs_dev/fake/onlyPositionalWithNoDefaultNoType.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/paintImage1.html b/testing/test_package_docs_dev/fake/paintImage1.html index e4dba3fbd2..cd11a0d348 100644 --- a/testing/test_package_docs_dev/fake/paintImage1.html +++ b/testing/test_package_docs_dev/fake/paintImage1.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/paintImage2.html b/testing/test_package_docs_dev/fake/paintImage2.html index 947775a73b..fa3b9d8522 100644 --- a/testing/test_package_docs_dev/fake/paintImage2.html +++ b/testing/test_package_docs_dev/fake/paintImage2.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/paramFromAnotherLib.html b/testing/test_package_docs_dev/fake/paramFromAnotherLib.html index 3e8aab0955..b6bec6105a 100644 --- a/testing/test_package_docs_dev/fake/paramFromAnotherLib.html +++ b/testing/test_package_docs_dev/fake/paramFromAnotherLib.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/paramOfFutureOrNull.html b/testing/test_package_docs_dev/fake/paramOfFutureOrNull.html index 453849d597..440d160c64 100644 --- a/testing/test_package_docs_dev/fake/paramOfFutureOrNull.html +++ b/testing/test_package_docs_dev/fake/paramOfFutureOrNull.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/required-constant.html b/testing/test_package_docs_dev/fake/required-constant.html index 381847854c..6d6c15067e 100644 --- a/testing/test_package_docs_dev/fake/required-constant.html +++ b/testing/test_package_docs_dev/fake/required-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/returningFutureVoid.html b/testing/test_package_docs_dev/fake/returningFutureVoid.html index 026a3db34a..8bc6c9f62b 100644 --- a/testing/test_package_docs_dev/fake/returningFutureVoid.html +++ b/testing/test_package_docs_dev/fake/returningFutureVoid.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/setAndGet.html b/testing/test_package_docs_dev/fake/setAndGet.html index 8788f990b4..f81f342150 100644 --- a/testing/test_package_docs_dev/fake/setAndGet.html +++ b/testing/test_package_docs_dev/fake/setAndGet.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/short.html b/testing/test_package_docs_dev/fake/short.html index b636ad56b2..82932208ec 100644 --- a/testing/test_package_docs_dev/fake/short.html +++ b/testing/test_package_docs_dev/fake/short.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/simpleProperty.html b/testing/test_package_docs_dev/fake/simpleProperty.html index e33535f873..13cee0145f 100644 --- a/testing/test_package_docs_dev/fake/simpleProperty.html +++ b/testing/test_package_docs_dev/fake/simpleProperty.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/soIntense.html b/testing/test_package_docs_dev/fake/soIntense.html index 7c9fa763ac..994a028288 100644 --- a/testing/test_package_docs_dev/fake/soIntense.html +++ b/testing/test_package_docs_dev/fake/soIntense.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/testingCodeSyntaxInOneLiners-constant.html b/testing/test_package_docs_dev/fake/testingCodeSyntaxInOneLiners-constant.html index 21d611ccb6..80a34aaf4a 100644 --- a/testing/test_package_docs_dev/fake/testingCodeSyntaxInOneLiners-constant.html +++ b/testing/test_package_docs_dev/fake/testingCodeSyntaxInOneLiners-constant.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/thisIsAlsoAsync.html b/testing/test_package_docs_dev/fake/thisIsAlsoAsync.html index e7a4d09c80..e7d6e29c31 100644 --- a/testing/test_package_docs_dev/fake/thisIsAlsoAsync.html +++ b/testing/test_package_docs_dev/fake/thisIsAlsoAsync.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/thisIsAsync.html b/testing/test_package_docs_dev/fake/thisIsAsync.html index 077ef2515c..4e3e5263ac 100644 --- a/testing/test_package_docs_dev/fake/thisIsAsync.html +++ b/testing/test_package_docs_dev/fake/thisIsAsync.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/thisIsFutureOr.html b/testing/test_package_docs_dev/fake/thisIsFutureOr.html index 0a3a540045..6f4b85f903 100644 --- a/testing/test_package_docs_dev/fake/thisIsFutureOr.html +++ b/testing/test_package_docs_dev/fake/thisIsFutureOr.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/thisIsFutureOrNull.html b/testing/test_package_docs_dev/fake/thisIsFutureOrNull.html index 4f9e9c09e9..db1701dc85 100644 --- a/testing/test_package_docs_dev/fake/thisIsFutureOrNull.html +++ b/testing/test_package_docs_dev/fake/thisIsFutureOrNull.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/thisIsFutureOrT.html b/testing/test_package_docs_dev/fake/thisIsFutureOrT.html index 89f82842f4..ca579fc6c8 100644 --- a/testing/test_package_docs_dev/fake/thisIsFutureOrT.html +++ b/testing/test_package_docs_dev/fake/thisIsFutureOrT.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/topLevelFunction.html b/testing/test_package_docs_dev/fake/topLevelFunction.html index e9a14219a5..99acf0c319 100644 --- a/testing/test_package_docs_dev/fake/topLevelFunction.html +++ b/testing/test_package_docs_dev/fake/topLevelFunction.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/typeParamOfFutureOr.html b/testing/test_package_docs_dev/fake/typeParamOfFutureOr.html index aec660460a..7effcc98b8 100644 --- a/testing/test_package_docs_dev/fake/typeParamOfFutureOr.html +++ b/testing/test_package_docs_dev/fake/typeParamOfFutureOr.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/useSomethingInAnotherPackage.html b/testing/test_package_docs_dev/fake/useSomethingInAnotherPackage.html index 298637933c..92531ae534 100644 --- a/testing/test_package_docs_dev/fake/useSomethingInAnotherPackage.html +++ b/testing/test_package_docs_dev/fake/useSomethingInAnotherPackage.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/fake/useSomethingInTheSdk.html b/testing/test_package_docs_dev/fake/useSomethingInTheSdk.html index 270ec618b0..953ac9a849 100644 --- a/testing/test_package_docs_dev/fake/useSomethingInTheSdk.html +++ b/testing/test_package_docs_dev/fake/useSomethingInTheSdk.html @@ -91,8 +91,8 @@
    fake library
  • WithGetterAndSetter
  • Mixins
  • -
  • GenericMixin
  • -
  • NewStyleMixinCallingSuper
  • +
  • GenericMixin
  • +
  • NewStyleMixinCallingSuper
  • Constants
  • bulletDoced
  • diff --git a/testing/test_package_docs_dev/index.html b/testing/test_package_docs_dev/index.html index 238597a627..94198a9ab5 100644 --- a/testing/test_package_docs_dev/index.html +++ b/testing/test_package_docs_dev/index.html @@ -38,24 +38,24 @@
    test_package pa
  • Superb
  • Unreal
  • Libraries
  • +
  • code_in_comments
  • anonymous_library
  • another_anonymous_lib
  • -
  • code_in_comments
  • is_deprecated
  • Unreal
  • reexport_one
  • reexport_two
  • Real Libraries
  • -
  • ex
  • -
  • fake
  • two_exports
  • +
  • fake
  • +
  • ex
  • Misc
  • two_exports
  • Other
  • css
  • test_package_imported
  • -
  • categoriesExported
  • test_package_imported.main
  • +
  • categoriesExported
  • @@ -110,7 +110,15 @@

    Another Section

    Libraries

    -
    +
    + code_in_comments +
    +
    + void main() { + // in Dart! +} + [...] +
    anonymous_library
    @@ -120,14 +128,6 @@

    Libraries

    -
    - code_in_comments -
    -
    - void main() { - // in Dart! -} - [...]
    is_deprecated
    @@ -147,21 +147,21 @@

    Libraries

    Real Libraries

    -
    - ex +
    + two_exports
    - a library. testing string escaping: var s = 'a string' +
    fake
    WOW FAKE PACKAGE IS BEST PACKAGE [...] -
    - two_exports +
    + ex
    - + a library. testing string escaping: var s = 'a string'

    Misc

    two_exports @@ -180,13 +180,13 @@

    Libraries

    test_package_imported

    -
    - categoriesExported +
    + test_package_imported.main
    -
    - test_package_imported.main +
    + categoriesExported
    diff --git a/testing/test_package_docs_dev/index.json b/testing/test_package_docs_dev/index.json index 5614f852c8..7a83954385 100644 --- a/testing/test_package_docs_dev/index.json +++ b/testing/test_package_docs_dev/index.json @@ -2453,6 +2453,182 @@ "type": "class" } }, + { + "name": "NAMECOLLISION", + "qualifiedName": "ex.NAMECOLLISION", + "href": "ex/NAMECOLLISION-upper.html", + "type": "top-level property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ex", + "type": "library" + } + }, + { + "name": "NameCOllision", + "qualifiedName": "ex.NameCOllision", + "href": "ex/NameCOllision-class.html", + "type": "class", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ex", + "type": "library" + } + }, + { + "name": "NameCOllision", + "qualifiedName": "ex.NameCOllision", + "href": "ex/NameCOllision/NameCOllision.html", + "type": "constructor", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NameCOllision", + "type": "class" + } + }, + { + "name": "operator ==", + "qualifiedName": "ex.NameCOllision.==", + "href": "ex/NameCOllision/operator_equals.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NameCOllision", + "type": "class" + } + }, + { + "name": "hashCode", + "qualifiedName": "ex.NameCOllision.hashCode", + "href": "ex/NameCOllision/hashCode.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NameCOllision", + "type": "class" + } + }, + { + "name": "nameCOllision", + "qualifiedName": "ex.NameCOllision.nameCOllision", + "href": "ex/NameCOllision/nameCOllision-0427.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NameCOllision", + "type": "class" + } + }, + { + "name": "nameCollision", + "qualifiedName": "ex.NameCOllision.nameCollision", + "href": "ex/NameCOllision/nameCollision-0418.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NameCOllision", + "type": "class" + } + }, + { + "name": "noSuchMethod", + "qualifiedName": "ex.NameCOllision.noSuchMethod", + "href": "ex/NameCOllision/noSuchMethod.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NameCOllision", + "type": "class" + } + }, + { + "name": "runtimeType", + "qualifiedName": "ex.NameCOllision.runtimeType", + "href": "ex/NameCOllision/runtimeType.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NameCOllision", + "type": "class" + } + }, + { + "name": "toString", + "qualifiedName": "ex.NameCOllision.toString", + "href": "ex/NameCOllision/toString.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NameCOllision", + "type": "class" + } + }, + { + "name": "NameCollision", + "qualifiedName": "ex.NameCollision", + "href": "ex/NameCollision-1318-class.html", + "type": "enum", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ex", + "type": "library" + } + }, + { + "name": "operator ==", + "qualifiedName": "ex.NameCollision.==", + "href": "ex/NameCollision-1318/operator_equals.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NameCollision", + "type": "enum" + } + }, + { + "name": "hashCode", + "qualifiedName": "ex.NameCollision.hashCode", + "href": "ex/NameCollision-1318/hashCode.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NameCollision", + "type": "enum" + } + }, + { + "name": "noSuchMethod", + "qualifiedName": "ex.NameCollision.noSuchMethod", + "href": "ex/NameCollision-1318/noSuchMethod.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NameCollision", + "type": "enum" + } + }, + { + "name": "runtimeType", + "qualifiedName": "ex.NameCollision.runtimeType", + "href": "ex/NameCollision-1318/runtimeType.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NameCollision", + "type": "enum" + } + }, + { + "name": "toString", + "qualifiedName": "ex.NameCollision.toString", + "href": "ex/NameCollision-1318/toString.html", + "type": "method", + "overriddenDepth": 1, + "enclosedBy": { + "name": "NameCollision", + "type": "enum" + } + }, { "name": "PRETTY_COLORS", "qualifiedName": "ex.PRETTY_COLORS", @@ -3864,7 +4040,7 @@ { "name": "deprecated", "qualifiedName": "ex.deprecated", - "href": "ex/deprecated-constant.html", + "href": "ex/deprecated-lower-constant.html", "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { @@ -3949,6 +4125,39 @@ "type": "library" } }, + { + "name": "nameCOllision", + "qualifiedName": "ex.nameCOllision", + "href": "ex/nameCOllision-0427.html", + "type": "top-level property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ex", + "type": "library" + } + }, + { + "name": "nameCollision", + "qualifiedName": "ex.nameCollision", + "href": "ex/nameCollision-0418.html", + "type": "top-level property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ex", + "type": "library" + } + }, + { + "name": "namecollision", + "qualifiedName": "ex.namecollision", + "href": "ex/namecollision-lower.html", + "type": "top-level property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "ex", + "type": "library" + } + }, { "name": "number", "qualifiedName": "ex.number", @@ -5455,7 +5664,7 @@ { "name": "bar", "qualifiedName": "fake.DocumentWithATable.bar", - "href": "fake/DocumentWithATable/bar-constant.html", + "href": "fake/DocumentWithATable/bar-lower-constant.html", "type": "constant", "overriddenDepth": 0, "enclosedBy": { @@ -5807,7 +6016,7 @@ { "name": "BAR", "qualifiedName": "fake.Foo2.BAR", - "href": "fake/Foo2/BAR-constant.html", + "href": "fake/Foo2/BAR-upper-constant.html", "type": "constant", "overriddenDepth": 0, "enclosedBy": { @@ -6027,7 +6236,7 @@ { "name": "GenericMixin", "qualifiedName": "fake.GenericMixin", - "href": "fake/GenericMixin-mixin.html", + "href": "fake/GenericMixin-class.html", "type": "mixin", "overriddenDepth": 0, "enclosedBy": { @@ -7589,7 +7798,7 @@ { "name": "NewStyleMixinCallingSuper", "qualifiedName": "fake.NewStyleMixinCallingSuper", - "href": "fake/NewStyleMixinCallingSuper-mixin.html", + "href": "fake/NewStyleMixinCallingSuper-class.html", "type": "mixin", "overriddenDepth": 0, "enclosedBy": { @@ -9030,7 +9239,7 @@ { "name": "x", "qualifiedName": "fake.TypedefUsingClass.x", - "href": "fake/TypedefUsingClass/x.html", + "href": "fake/TypedefUsingClass/x-lower.html", "type": "property", "overriddenDepth": 0, "enclosedBy": { @@ -9766,7 +9975,7 @@ { "name": "AMixin", "qualifiedName": "reexport_two.AMixin", - "href": "reexport_two/AMixin-mixin.html", + "href": "reexport_two/AMixin-class.html", "type": "mixin", "overriddenDepth": 0, "enclosedBy": { diff --git a/testing/test_package_docs_dev/is_deprecated/is_deprecated-library.html b/testing/test_package_docs_dev/is_deprecated/is_deprecated-library.html index 837854db58..1ac68748f6 100644 --- a/testing/test_package_docs_dev/is_deprecated/is_deprecated-library.html +++ b/testing/test_package_docs_dev/is_deprecated/is_deprecated-library.html @@ -41,24 +41,24 @@
    test_package pa
  • Superb
  • Unreal
  • Libraries
  • +
  • code_in_comments
  • anonymous_library
  • another_anonymous_lib
  • -
  • code_in_comments
  • is_deprecated
  • Unreal
  • reexport_one
  • reexport_two
  • Real Libraries
  • -
  • ex
  • -
  • fake
  • two_exports
  • +
  • fake
  • +
  • ex
  • Misc
  • two_exports
  • Other
  • css
  • test_package_imported
  • -
  • categoriesExported
  • test_package_imported.main
  • +
  • categoriesExported
  • diff --git a/testing/test_package_docs_dev/reexport_one/reexport_one-library.html b/testing/test_package_docs_dev/reexport_one/reexport_one-library.html index aa8a8c98ef..6e6c9e21e4 100644 --- a/testing/test_package_docs_dev/reexport_one/reexport_one-library.html +++ b/testing/test_package_docs_dev/reexport_one/reexport_one-library.html @@ -41,24 +41,24 @@
    test_package pa
  • Superb
  • Unreal
  • Libraries
  • +
  • code_in_comments
  • anonymous_library
  • another_anonymous_lib
  • -
  • code_in_comments
  • is_deprecated
  • Unreal
  • reexport_one
  • reexport_two
  • Real Libraries
  • -
  • ex
  • -
  • fake
  • two_exports
  • +
  • fake
  • +
  • ex
  • Misc
  • two_exports
  • Other
  • css
  • test_package_imported
  • -
  • categoriesExported
  • test_package_imported.main
  • +
  • categoriesExported
  • diff --git a/testing/test_package_docs/reexport_two/AMixin-mixin.html b/testing/test_package_docs_dev/reexport_two/AMixin-class.html similarity index 95% rename from testing/test_package_docs/reexport_two/AMixin-mixin.html rename to testing/test_package_docs_dev/reexport_two/AMixin-class.html index b2b2af5ea7..202bb66dd2 100644 --- a/testing/test_package_docs/reexport_two/AMixin-mixin.html +++ b/testing/test_package_docs_dev/reexport_two/AMixin-class.html @@ -46,7 +46,7 @@
    reexport_two library
  • YetAnotherClass
  • Mixins
  • -
  • AMixin
  • +
  • AMixin
  • @@ -160,20 +160,20 @@

    Operators