From 765de6aa8916534cd1973cd927ae378791e32f94 Mon Sep 17 00:00:00 2001 From: Janice Collins Date: Fri, 22 Dec 2017 11:49:08 -0800 Subject: [PATCH 01/10] First version of adding const --- lib/templates/_constant.html | 2 +- lib/templates/_name_summary.html | 2 +- lib/templates/constant.html | 1 + pubspec.lock | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/templates/_constant.html b/lib/templates/_constant.html index a46b396c42..353a3be8ae 100644 --- a/lib/templates/_constant.html +++ b/lib/templates/_constant.html @@ -1,6 +1,6 @@
{{{ linkedName }}} - → {{{ linkedReturnType }}} + → const {{{ linkedReturnType }}}
{{{ oneLineDoc }}} diff --git a/lib/templates/_name_summary.html b/lib/templates/_name_summary.html index 1041488ae4..73fca35cbb 100644 --- a/lib/templates/_name_summary.html +++ b/lib/templates/_name_summary.html @@ -1 +1 @@ -{{name}} \ No newline at end of file +{{#isConst}}const {{/isConst}}{{name}} diff --git a/lib/templates/constant.html b/lib/templates/constant.html index a5a93f9757..b2b8010fa9 100644 --- a/lib/templates/constant.html +++ b/lib/templates/constant.html @@ -9,6 +9,7 @@
{{parent.kind}} {{parent.name}}
{{#property}} + const {{{ linkedReturnType }}} {{>name_summary}} = diff --git a/pubspec.lock b/pubspec.lock index d505112a10..59c9146175 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -374,4 +374,4 @@ packages: source: hosted version: "2.1.13" sdks: - dart: ">=1.23.0 <=2.0.0-dev.12.0" + dart: ">=1.23.0 <=2.0.0-dev.14.0" From 7aeb0e09936ce0d33c4152ff8c61de8db40a5b9e Mon Sep 17 00:00:00 2001 From: Janice Collins Date: Fri, 22 Dec 2017 14:17:37 -0800 Subject: [PATCH 02/10] Serve test package docs through grinder --- pubspec.lock | 2 +- tool/grind.dart | 56 ++++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 56 insertions(+), 2 deletions(-) diff --git a/pubspec.lock b/pubspec.lock index d505112a10..59c9146175 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -374,4 +374,4 @@ packages: source: hosted version: "2.1.13" sdks: - dart: ">=1.23.0 <=2.0.0-dev.12.0" + dart: ">=1.23.0 <=2.0.0-dev.14.0" diff --git a/tool/grind.dart b/tool/grind.dart index f7278379d6..a36c4ca422 100644 --- a/tool/grind.dart +++ b/tool/grind.dart @@ -23,6 +23,10 @@ Directory get dartdocDocsDir => tempdirsCache.memoized1(createTempSync, 'dartdoc'); Directory get sdkDocsDir => tempdirsCache.memoized1(createTempSync, 'sdkdocs'); Directory get flutterDir => tempdirsCache.memoized1(createTempSync, 'flutter'); +Directory get testPackage => + new Directory(path.joinAll(['testing', 'test_package'])); +Directory get testPackageDocsDir => + tempdirsCache.memoized1(createTempSync, 'test_package'); /// Version of dartdoc we should use when making comparisons. String get dartdocOriginalBranch { @@ -136,7 +140,7 @@ Future> _buildSdkDocs(String sdkDocsPath, Future futureCwd, Platform.resolvedExecutable, [ '--checked', - 'bin/dartdoc.dart', + path.join('bin', 'dartdoc.dart'), '--output', '${sdkDocsDir.path}', '--sdk-docs', @@ -146,6 +150,56 @@ Future> _buildSdkDocs(String sdkDocsPath, Future futureCwd, workingDirectory: cwd); } +Future> _buildTestPackageDocs( + String outputDir, Future futureCwd, + [String label]) async { + if (label == null) label = ''; + if (label != '') label = '-$label'; + var launcher = new SubprocessLauncher('build-test-package-docs$label'); + await launcher.runStreamed(sdkBin('pub'), ['get'], + workingDirectory: testPackage.absolute.path); + String cwd = await futureCwd; + await launcher.runStreamed(sdkBin('pub'), ['get'], workingDirectory: cwd); + return await launcher.runStreamed( + Platform.resolvedExecutable, + [ + '--checked', + path.join(cwd, 'bin', 'dartdoc.dart'), + '--output', + outputDir, + '--auto-include-dependencies', + '--example-path-prefix', + 'examples', + '--include-source', + '--json', + '--pretty-index-json', + '--exclude', + 'dart.async,dart.collection,dart.convert,dart.core,dart.math,dart.typed_data,meta', + ], + workingDirectory: testPackage.absolute.path); +} + +@Task('Build generated test package docs (with inherited docs and source code)') +Future buildTestPackageDocs() async { + await _buildTestPackageDocs(testPackageDocsDir.absolute.path, + new Future.value(Directory.current.path)); +} + +@Task('Serve test package docs locally with dhttpd on port 8002') +@Depends(buildTestPackageDocs) +Future serveTestPackageDocs() async { + log('launching dhttpd on port 8002 for SDK'); + var launcher = new SubprocessLauncher('serve-sdk-docs'); + await launcher.runStreamed(sdkBin('pub'), [ + 'run', + 'dhttpd', + '--port', + '8002', + '--path', + '${testPackageDocsDir.absolute.path}', + ]); +} + @Task('Serve generated SDK docs locally with dhttpd on port 8000') @Depends(buildSdkDocs) Future serveSdkDocs() async { From 1a1d73bdacdbb750a8590799ec0ec7d99462a59f Mon Sep 17 00:00:00 2001 From: Janice Collins Date: Wed, 3 Jan 2018 07:59:09 -0800 Subject: [PATCH 03/10] Almost done, finish test for STUFF --- lib/src/model.dart | 33 +++++++++----- lib/templates/constant.html | 1 - pubspec.lock | 64 ++++++++++++++++++++++++++- test/model_test.dart | 3 ++ testing/test_package/lib/fake.dart | 6 +++ testing/test_package_bad/pubspec.lock | 5 +++ 6 files changed, 98 insertions(+), 14 deletions(-) create mode 100644 testing/test_package_bad/pubspec.lock diff --git a/lib/src/model.dart b/lib/src/model.dart index a7db1acd7a..6a43d66a2c 100644 --- a/lib/src/model.dart +++ b/lib/src/model.dart @@ -10,12 +10,7 @@ import 'dart:convert'; import 'dart:io'; import 'package:analyzer/dart/ast/ast.dart' - show - AnnotatedNode, - Declaration, - FieldDeclaration, - VariableDeclaration, - VariableDeclarationList; + show AnnotatedNode, Declaration, Expression, FieldDeclaration, InstanceCreationExpression, VariableDeclaration, VariableDeclarationList; import 'package:analyzer/dart/element/element.dart'; import 'package:analyzer/dart/element/type.dart'; import 'package:analyzer/file_system/file_system.dart' as fileSystem; @@ -24,6 +19,8 @@ import 'package:analyzer/source/package_map_resolver.dart'; import 'package:analyzer/source/sdk_ext.dart'; // TODO(jcollins-g): Stop using internal analyzer structures somehow. import 'package:analyzer/src/context/builder.dart'; +import 'package:analyzer/src/dart/constant/value.dart'; +import 'package:analyzer/src/dart/element/element.dart'; import 'package:analyzer/src/dart/sdk/sdk.dart'; import 'package:analyzer/src/generated/engine.dart'; import 'package:analyzer/src/generated/java_io.dart'; @@ -1566,15 +1563,27 @@ abstract class GetterSetterCombo implements ModelElement { ModelElement enclosingElement; bool get isInherited; + Expression get constantInitializer => (element as ConstVariableElement).constantInitializer; + + String linkifyConstantValue(String constructorName, Element staticElement, String original) { + if (constantInitializer is! InstanceCreationExpression) return original; + String constructorName = (constantInitializer as InstanceCreationExpression).constructorName.toString(); + Element staticElement = (constantInitializer as InstanceCreationExpression).staticElement; + Constructor target = new ModelElement.fromElement(staticElement, package); + Class targetClass = target.enclosingElement; + return original.replaceAll(constructorName, "${targetClass.linkedName}.${target.linkedName}"); + } + String _constantValueBase; String get constantValueBase { if (_constantValueBase == null) { - if (element.computeNode() != null) { - var v = element.computeNode().toSource(); - if (v == null) return null; - var string = v.substring(v.indexOf('=') + 1, v.length).trim(); - _constantValueBase = - const HtmlEscape(HtmlEscapeMode.UNKNOWN).convert(string); + if (constantInitializer != null) { + _constantValueBase = const HtmlEscape(HtmlEscapeMode.UNKNOWN).convert(constantInitializer.toString()); + if (constantInitializer is InstanceCreationExpression) { + _constantValueBase = linkifyConstantValue((constantInitializer as InstanceCreationExpression).constructorName.toString(), (constantInitializer as InstanceCreationExpression).staticElement, _constantValueBase); + } + if (_constantValueBase.contains('Stuff')) + 1+1; } } return _constantValueBase; diff --git a/lib/templates/constant.html b/lib/templates/constant.html index b2b8010fa9..a5a93f9757 100644 --- a/lib/templates/constant.html +++ b/lib/templates/constant.html @@ -9,7 +9,6 @@
{{parent.kind}} {{parent.name}}
{{#property}} - const {{{ linkedReturnType }}} {{>name_summary}} = diff --git a/pubspec.lock b/pubspec.lock index 59c9146175..6528295bcd 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -2,376 +2,438 @@ # See http://pub.dartlang.org/doc/glossary.html#lockfile packages: analyzer: + dependency: "direct main" description: name: analyzer url: "https://pub.dartlang.org" source: hosted version: "0.31.0-alpha.2" ansicolor: + dependency: transitive description: name: ansicolor url: "https://pub.dartlang.org" source: hosted version: "0.0.9" args: + dependency: "direct main" description: name: args url: "https://pub.dartlang.org" source: hosted version: "0.13.7" async: + dependency: transitive description: name: async url: "https://pub.dartlang.org" source: hosted version: "1.13.3" barback: + dependency: transitive description: name: barback url: "https://pub.dartlang.org" source: hosted version: "0.15.2+13" boolean_selector: + dependency: transitive description: name: boolean_selector url: "https://pub.dartlang.org" source: hosted version: "1.0.2" charcode: + dependency: transitive description: name: charcode url: "https://pub.dartlang.org" source: hosted version: "1.1.1" cli_util: + dependency: transitive description: name: cli_util url: "https://pub.dartlang.org" source: hosted version: "0.1.2+1" collection: + dependency: "direct main" description: name: collection url: "https://pub.dartlang.org" source: hosted version: "1.14.3" convert: + dependency: transitive description: name: convert url: "https://pub.dartlang.org" source: hosted version: "2.0.1" crypto: + dependency: transitive description: name: crypto url: "https://pub.dartlang.org" source: hosted version: "2.0.2+1" csslib: + dependency: transitive description: name: csslib url: "https://pub.dartlang.org" source: hosted version: "0.14.1" dhttpd: + dependency: "direct dev" description: name: dhttpd url: "https://pub.dartlang.org" source: hosted version: "0.3.1" front_end: + dependency: transitive description: name: front_end url: "https://pub.dartlang.org" source: hosted version: "0.1.0-alpha.7" glob: + dependency: transitive description: name: glob url: "https://pub.dartlang.org" source: hosted version: "1.1.5" grinder: + dependency: "direct dev" description: name: grinder url: "https://pub.dartlang.org" source: hosted version: "0.8.0+3" html: + dependency: "direct main" description: name: html url: "https://pub.dartlang.org" source: hosted version: "0.13.2" http: + dependency: "direct dev" description: name: http url: "https://pub.dartlang.org" source: hosted version: "0.11.3+16" http_multi_server: + dependency: transitive description: name: http_multi_server url: "https://pub.dartlang.org" source: hosted version: "2.0.4" http_parser: + dependency: "direct main" description: name: http_parser url: "https://pub.dartlang.org" source: hosted version: "3.1.1" io: + dependency: transitive description: name: io url: "https://pub.dartlang.org" source: hosted version: "0.3.1" isolate: + dependency: transitive description: name: isolate url: "https://pub.dartlang.org" source: hosted version: "1.1.0" js: + dependency: transitive description: name: js url: "https://pub.dartlang.org" source: hosted version: "0.6.1" kernel: + dependency: transitive description: name: kernel url: "https://pub.dartlang.org" source: hosted version: "0.3.0-alpha.4" logging: + dependency: "direct main" description: name: logging url: "https://pub.dartlang.org" source: hosted version: "0.11.3+1" markdown: + dependency: "direct main" description: name: markdown url: "https://pub.dartlang.org" source: hosted version: "1.0.0" matcher: + dependency: transitive description: name: matcher url: "https://pub.dartlang.org" source: hosted version: "0.12.1+4" meta: + dependency: "direct dev" description: name: meta url: "https://pub.dartlang.org" source: hosted version: "1.1.2" mime: + dependency: transitive description: name: mime url: "https://pub.dartlang.org" source: hosted version: "0.9.4" mockable_filesystem: + dependency: transitive description: name: mockable_filesystem url: "https://pub.dartlang.org" source: hosted version: "0.0.3" multi_server_socket: + dependency: transitive description: name: multi_server_socket url: "https://pub.dartlang.org" source: hosted version: "1.0.0" mustache4dart: + dependency: "direct main" description: name: mustache4dart url: "https://pub.dartlang.org" source: hosted version: "2.1.0" node_preamble: + dependency: transitive description: name: node_preamble url: "https://pub.dartlang.org" source: hosted version: "1.4.0" package_config: + dependency: "direct main" description: name: package_config url: "https://pub.dartlang.org" source: hosted version: "1.0.3" package_resolver: + dependency: transitive description: name: package_resolver url: "https://pub.dartlang.org" source: hosted version: "1.0.2" path: + dependency: "direct main" description: name: path url: "https://pub.dartlang.org" source: hosted version: "1.5.1" plugin: + dependency: transitive description: name: plugin url: "https://pub.dartlang.org" source: hosted version: "0.2.0+2" pool: + dependency: transitive description: name: pool url: "https://pub.dartlang.org" source: hosted version: "1.3.3" pub_semver: + dependency: "direct dev" description: name: pub_semver url: "https://pub.dartlang.org" source: hosted version: "1.3.2" quiver_hashcode: + dependency: transitive description: name: quiver_hashcode url: "https://pub.dartlang.org" source: hosted version: "1.0.0" resource: + dependency: "direct main" description: name: resource url: "https://pub.dartlang.org" source: hosted version: "2.1.2" shelf: + dependency: transitive description: name: shelf url: "https://pub.dartlang.org" source: hosted version: "0.6.8" shelf_cors: + dependency: transitive description: name: shelf_cors url: "https://pub.dartlang.org" source: hosted version: "0.2.1" shelf_packages_handler: + dependency: transitive description: name: shelf_packages_handler url: "https://pub.dartlang.org" source: hosted version: "1.0.3" shelf_static: + dependency: transitive description: name: shelf_static url: "https://pub.dartlang.org" source: hosted version: "0.2.6" shelf_web_socket: + dependency: transitive description: name: shelf_web_socket url: "https://pub.dartlang.org" source: hosted version: "0.2.2" source_map_stack_trace: + dependency: transitive description: name: source_map_stack_trace url: "https://pub.dartlang.org" source: hosted version: "1.1.4" source_maps: + dependency: transitive description: name: source_maps url: "https://pub.dartlang.org" source: hosted version: "0.10.4" source_span: + dependency: transitive description: name: source_span url: "https://pub.dartlang.org" source: hosted version: "1.4.0" stack_trace: + dependency: "direct main" description: name: stack_trace url: "https://pub.dartlang.org" source: hosted version: "1.9.1" stream_channel: + dependency: transitive description: name: stream_channel url: "https://pub.dartlang.org" source: hosted version: "1.6.2" string_scanner: + dependency: transitive description: name: string_scanner url: "https://pub.dartlang.org" source: hosted version: "1.0.2" supports_color: + dependency: transitive description: name: supports_color url: "https://pub.dartlang.org" source: hosted version: "0.1.1" term_glyph: + dependency: transitive description: name: term_glyph url: "https://pub.dartlang.org" source: hosted version: "1.0.0" test: + dependency: "direct dev" description: name: test url: "https://pub.dartlang.org" source: hosted version: "0.12.29" tuple: + dependency: "direct main" description: name: tuple url: "https://pub.dartlang.org" source: hosted version: "1.0.1" typed_data: + dependency: transitive description: name: typed_data url: "https://pub.dartlang.org" source: hosted version: "1.1.5" unscripted: + dependency: transitive description: name: unscripted url: "https://pub.dartlang.org" source: hosted version: "0.6.2" utf: + dependency: transitive description: name: utf url: "https://pub.dartlang.org" source: hosted version: "0.9.0+3" watcher: + dependency: transitive description: name: watcher url: "https://pub.dartlang.org" source: hosted version: "0.9.7+4" web_socket_channel: + dependency: transitive description: name: web_socket_channel url: "https://pub.dartlang.org" source: hosted version: "1.0.6" yaml: + dependency: "direct main" description: name: yaml url: "https://pub.dartlang.org" source: hosted version: "2.1.13" sdks: - dart: ">=1.23.0 <=2.0.0-dev.14.0" + dart: ">=1.23.0 <=2.0.0-dev.15.0" diff --git a/test/model_test.dart b/test/model_test.dart index f663ddf6f9..4bd6c4d7f1 100644 --- a/test/model_test.dart +++ b/test/model_test.dart @@ -1877,6 +1877,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, cat, orangeConstant, prettyColorsConstant, + stuffConstant, deprecated; Field aStaticConstField, aName; @@ -1888,6 +1889,8 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, exLibrary.constants.firstWhere((c) => c.name == 'COLOR_ORANGE'); prettyColorsConstant = exLibrary.constants.firstWhere((c) => c.name == 'PRETTY_COLORS'); + stuffConstant = + fakeLibrary.constants.firstWhere((c) => c.name == 'STUFF'); cat = exLibrary.constants.firstWhere((c) => c.name == 'MY_CAT'); deprecated = exLibrary.constants.firstWhere((c) => c.name == 'deprecated'); diff --git a/testing/test_package/lib/fake.dart b/testing/test_package/lib/fake.dart index ab0c6b2baa..1518c77fec 100644 --- a/testing/test_package/lib/fake.dart +++ b/testing/test_package/lib/fake.dart @@ -595,6 +595,12 @@ class SpecialList extends ListBase { void operator []=(int index, E value) {} } +class AClassWithConstConstructor { + const AClassWithConstConstructor.Stuff(String one, String two); +} + +const AClassWithConstConstructor STUFF = const AClassWithConstConstructor.Stuff('one', 'two'); + /// This inherits operators. class ExtraSpecialList extends SpecialList {} diff --git a/testing/test_package_bad/pubspec.lock b/testing/test_package_bad/pubspec.lock new file mode 100644 index 0000000000..c427295339 --- /dev/null +++ b/testing/test_package_bad/pubspec.lock @@ -0,0 +1,5 @@ +# Generated by pub +# See http://pub.dartlang.org/doc/glossary.html#lockfile +packages: {} +sdks: + dart: any From bc677de448cf2c8f31a43310897048fb7c399f9b Mon Sep 17 00:00:00 2001 From: Janice Collins Date: Thu, 4 Jan 2018 08:59:23 -0800 Subject: [PATCH 04/10] pubspec update --- pubspec.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.lock b/pubspec.lock index 71a75e9a0d..7cb597eee7 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -408,4 +408,4 @@ packages: source: hosted version: "2.1.13" sdks: - dart: ">=1.23.0 <=2.0.0-dev.14.0" + dart: ">=1.23.0 <=2.0.0-dev.15.0" From 4ada66357e781cc134cc02a2d794c66b8094777a Mon Sep 17 00:00:00 2001 From: Janice Collins Date: Thu, 4 Jan 2018 09:03:23 -0800 Subject: [PATCH 05/10] Fix label for test package server --- tool/grind.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/grind.dart b/tool/grind.dart index a36c4ca422..0c059bcb85 100644 --- a/tool/grind.dart +++ b/tool/grind.dart @@ -189,7 +189,7 @@ Future buildTestPackageDocs() async { @Depends(buildTestPackageDocs) Future serveTestPackageDocs() async { log('launching dhttpd on port 8002 for SDK'); - var launcher = new SubprocessLauncher('serve-sdk-docs'); + var launcher = new SubprocessLauncher('serve-test-package-docs'); await launcher.runStreamed(sdkBin('pub'), [ 'run', 'dhttpd', From 7a0d59ca73eff2336fbfd24107ad715fcd1d76f9 Mon Sep 17 00:00:00 2001 From: Janice Collins Date: Thu, 4 Jan 2018 10:28:54 -0800 Subject: [PATCH 06/10] Fix up const-declaration --- lib/src/model.dart | 25 ++++++++++++------------- test/model_test.dart | 9 +++------ testing/test_package/lib/fake.dart | 6 ------ 3 files changed, 15 insertions(+), 25 deletions(-) diff --git a/lib/src/model.dart b/lib/src/model.dart index 6a43d66a2c..932509fb74 100644 --- a/lib/src/model.dart +++ b/lib/src/model.dart @@ -19,7 +19,6 @@ import 'package:analyzer/source/package_map_resolver.dart'; import 'package:analyzer/source/sdk_ext.dart'; // TODO(jcollins-g): Stop using internal analyzer structures somehow. import 'package:analyzer/src/context/builder.dart'; -import 'package:analyzer/src/dart/constant/value.dart'; import 'package:analyzer/src/dart/element/element.dart'; import 'package:analyzer/src/dart/sdk/sdk.dart'; import 'package:analyzer/src/generated/engine.dart'; @@ -1565,33 +1564,33 @@ abstract class GetterSetterCombo implements ModelElement { Expression get constantInitializer => (element as ConstVariableElement).constantInitializer; - String linkifyConstantValue(String constructorName, Element staticElement, String original) { + String linkifyConstantValue(String original) { if (constantInitializer is! InstanceCreationExpression) return original; String constructorName = (constantInitializer as InstanceCreationExpression).constructorName.toString(); Element staticElement = (constantInitializer as InstanceCreationExpression).staticElement; Constructor target = new ModelElement.fromElement(staticElement, package); Class targetClass = target.enclosingElement; + // TODO(jcollins-g): this logic really should be integrated into Constructor, + // but that's not trivial because of linkedName's usage. + if (targetClass.name == target.name) { + return original.replaceAll(constructorName, "${target.linkedName}"); + } return original.replaceAll(constructorName, "${targetClass.linkedName}.${target.linkedName}"); } String _constantValueBase; String get constantValueBase { if (_constantValueBase == null) { - if (constantInitializer != null) { - _constantValueBase = const HtmlEscape(HtmlEscapeMode.UNKNOWN).convert(constantInitializer.toString()); - if (constantInitializer is InstanceCreationExpression) { - _constantValueBase = linkifyConstantValue((constantInitializer as InstanceCreationExpression).constructorName.toString(), (constantInitializer as InstanceCreationExpression).staticElement, _constantValueBase); - } - if (_constantValueBase.contains('Stuff')) - 1+1; - } + _constantValueBase = constantInitializer?.toString(); + if (_constantValueBase == null) _constantValueBase = ''; + _constantValueBase = + const HtmlEscape(HtmlEscapeMode.UNKNOWN).convert(_constantValueBase); } return _constantValueBase; } - String get constantValue => constantValueBase; - - String get constantValueTruncated => truncateString(constantValueBase, 200); + String get constantValue => linkifyConstantValue(constantValueBase); + String get constantValueTruncated => linkifyConstantValue(truncateString(constantValueBase, 200)); /// Returns true if both accessors are synthetic. bool get hasSyntheticAccessors { diff --git a/test/model_test.dart b/test/model_test.dart index 4bd6c4d7f1..76fd0f6327 100644 --- a/test/model_test.dart +++ b/test/model_test.dart @@ -1877,7 +1877,6 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, cat, orangeConstant, prettyColorsConstant, - stuffConstant, deprecated; Field aStaticConstField, aName; @@ -1889,8 +1888,6 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, exLibrary.constants.firstWhere((c) => c.name == 'COLOR_ORANGE'); prettyColorsConstant = exLibrary.constants.firstWhere((c) => c.name == 'PRETTY_COLORS'); - stuffConstant = - fakeLibrary.constants.firstWhere((c) => c.name == 'STUFF'); cat = exLibrary.constants.firstWhere((c) => c.name == 'MY_CAT'); deprecated = exLibrary.constants.firstWhere((c) => c.name == 'deprecated'); @@ -1902,7 +1899,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, test('substrings of the constant values type are not linked (#1535)', () { expect(aName.constantValue, - 'const ExtendedShortName("hello there")'); + 'const ExtendedShortName("hello there")'); }); test('constant field values are escaped', () { @@ -1934,8 +1931,8 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, "const <String> [COLOR_GREEN, COLOR_ORANGE, 'blue']"); }); - test('MY_CAT is not linked', () { - expect(cat.constantValue, 'const ConstantCat('tabby')'); + test('MY_CAT is linked', () { + expect(cat.constantValue, 'const ConstantCat('tabby')'); }); test('exported property', () { diff --git a/testing/test_package/lib/fake.dart b/testing/test_package/lib/fake.dart index 1518c77fec..ab0c6b2baa 100644 --- a/testing/test_package/lib/fake.dart +++ b/testing/test_package/lib/fake.dart @@ -595,12 +595,6 @@ class SpecialList extends ListBase { void operator []=(int index, E value) {} } -class AClassWithConstConstructor { - const AClassWithConstConstructor.Stuff(String one, String two); -} - -const AClassWithConstConstructor STUFF = const AClassWithConstConstructor.Stuff('one', 'two'); - /// This inherits operators. class ExtraSpecialList extends SpecialList {} From 88b7624c9817794625c3847b01534c9539d40ba4 Mon Sep 17 00:00:00 2001 From: Janice Collins Date: Thu, 4 Jan 2018 10:42:03 -0800 Subject: [PATCH 07/10] dartfmt --- lib/src/model.dart | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/lib/src/model.dart b/lib/src/model.dart index 932509fb74..527a40df1f 100644 --- a/lib/src/model.dart +++ b/lib/src/model.dart @@ -10,7 +10,14 @@ import 'dart:convert'; import 'dart:io'; import 'package:analyzer/dart/ast/ast.dart' - show AnnotatedNode, Declaration, Expression, FieldDeclaration, InstanceCreationExpression, VariableDeclaration, VariableDeclarationList; + show + AnnotatedNode, + Declaration, + Expression, + FieldDeclaration, + InstanceCreationExpression, + VariableDeclaration, + VariableDeclarationList; import 'package:analyzer/dart/element/element.dart'; import 'package:analyzer/dart/element/type.dart'; import 'package:analyzer/file_system/file_system.dart' as fileSystem; @@ -1562,12 +1569,16 @@ abstract class GetterSetterCombo implements ModelElement { ModelElement enclosingElement; bool get isInherited; - Expression get constantInitializer => (element as ConstVariableElement).constantInitializer; + Expression get constantInitializer => + (element as ConstVariableElement).constantInitializer; String linkifyConstantValue(String original) { if (constantInitializer is! InstanceCreationExpression) return original; - String constructorName = (constantInitializer as InstanceCreationExpression).constructorName.toString(); - Element staticElement = (constantInitializer as InstanceCreationExpression).staticElement; + String constructorName = (constantInitializer as InstanceCreationExpression) + .constructorName + .toString(); + Element staticElement = + (constantInitializer as InstanceCreationExpression).staticElement; Constructor target = new ModelElement.fromElement(staticElement, package); Class targetClass = target.enclosingElement; // TODO(jcollins-g): this logic really should be integrated into Constructor, @@ -1575,7 +1586,8 @@ abstract class GetterSetterCombo implements ModelElement { if (targetClass.name == target.name) { return original.replaceAll(constructorName, "${target.linkedName}"); } - return original.replaceAll(constructorName, "${targetClass.linkedName}.${target.linkedName}"); + return original.replaceAll( + constructorName, "${targetClass.linkedName}.${target.linkedName}"); } String _constantValueBase; @@ -1590,7 +1602,8 @@ abstract class GetterSetterCombo implements ModelElement { } String get constantValue => linkifyConstantValue(constantValueBase); - String get constantValueTruncated => linkifyConstantValue(truncateString(constantValueBase, 200)); + String get constantValueTruncated => + linkifyConstantValue(truncateString(constantValueBase, 200)); /// Returns true if both accessors are synthetic. bool get hasSyntheticAccessors { From bfe273d1b2ee28cd9ff4f55f6a9163e61e18d1c9 Mon Sep 17 00:00:00 2001 From: Janice Collins Date: Thu, 4 Jan 2018 12:05:58 -0800 Subject: [PATCH 08/10] Fix inconsistencies in #1581 --- lib/src/model.dart | 6 +- test/model_test.dart | 6 ++ .../anonymous_library/doesStuff.html | 3 +- .../another_anonymous_lib/greeting.html | 3 +- .../css/theOnlyThingInTheLibrary.html | 3 +- .../test_package_docs/ex/Animal-class.html | 8 +-- .../test_package_docs/ex/Animal/hashCode.html | 3 +- .../ex/Animal/noSuchMethod.html | 3 +- .../ex/Animal/operator_equals.html | 3 +- .../ex/Animal/runtimeType.html | 3 +- .../test_package_docs/ex/Animal/toString.html | 3 +- .../AnotherParameterizedClass/hashCode.html | 3 +- .../noSuchMethod.html | 3 +- .../operator_equals.html | 3 +- .../runtimeType.html | 3 +- .../AnotherParameterizedClass/toString.html | 3 +- testing/test_package_docs/ex/Apple-class.html | 2 +- .../ex/Apple/fieldWithTypedef.html | 3 +- .../test_package_docs/ex/Apple/hashCode.html | 3 +- .../ex/Apple/isGreaterThan.html | 3 +- testing/test_package_docs/ex/Apple/m.html | 3 +- testing/test_package_docs/ex/Apple/m1.html | 3 +- .../ex/Apple/methodWithTypedefParam.html | 3 +- .../ex/Apple/n-constant.html | 5 +- .../ex/Apple/noSuchMethod.html | 3 +- .../ex/Apple/operator_equals.html | 3 +- .../ex/Apple/operator_multiply.html | 3 +- .../ex/Apple/paramFromExportLib.html | 3 +- .../test_package_docs/ex/Apple/printMsg.html | 3 +- .../ex/Apple/runtimeType.html | 3 +- testing/test_package_docs/ex/Apple/s.html | 6 +- .../test_package_docs/ex/Apple/string.html | 3 +- .../test_package_docs/ex/Apple/toString.html | 3 +- .../ex/Apple/whataclass.html | 3 +- .../ex/B/abstractMethod.html | 3 +- .../test_package_docs/ex/B/autoCompress.html | 3 +- testing/test_package_docs/ex/B/doNothing.html | 3 +- .../test_package_docs/ex/B/isImplemented.html | 3 +- testing/test_package_docs/ex/B/list.html | 3 +- testing/test_package_docs/ex/B/m1.html | 3 +- testing/test_package_docs/ex/B/s.html | 6 +- testing/test_package_docs/ex/B/writeMsg.html | 3 +- .../test_package_docs/ex/COLOR-constant.html | 5 +- .../ex/COLOR_GREEN-constant.html | 5 +- .../ex/COLOR_ORANGE-constant.html | 5 +- .../ex/COMPLEX_COLOR-constant.html | 5 +- .../ex/Cat/abstractMethod.html | 3 +- .../test_package_docs/ex/Cat/hashCode.html | 3 +- .../ex/Cat/isImplemented.html | 3 +- .../ex/Cat/noSuchMethod.html | 3 +- .../ex/Cat/operator_equals.html | 3 +- .../test_package_docs/ex/Cat/runtimeType.html | 3 +- .../test_package_docs/ex/Cat/toString.html | 3 +- .../test_package_docs/ex/CatString/clear.html | 3 +- .../ex/CatString/hashCode.html | 3 +- .../ex/CatString/isEmpty.html | 3 +- .../ex/CatString/isNotEmpty.html | 3 +- .../ex/CatString/length.html | 3 +- .../ex/CatString/noSuchMethod.html | 3 +- .../ex/CatString/operator_equals.html | 3 +- .../ex/CatString/runtimeType.html | 3 +- .../ex/CatString/toString.html | 3 +- .../test_package_docs/ex/CatString/write.html | 3 +- .../ex/CatString/writeAll.html | 3 +- .../ex/CatString/writeCharCode.html | 3 +- .../ex/CatString/writeln.html | 3 +- .../ex/ConstantCat/abstractMethod.html | 3 +- .../ex/ConstantCat/isImplemented.html | 3 +- .../ex/ConstantCat/name.html | 3 +- .../ex/Deprecated/expires.html | 3 +- .../ex/Deprecated/hashCode.html | 3 +- .../ex/Deprecated/noSuchMethod.html | 3 +- .../ex/Deprecated/operator_equals.html | 3 +- .../ex/Deprecated/runtimeType.html | 3 +- .../ex/Deprecated/toString.html | 3 +- testing/test_package_docs/ex/Dog-class.html | 6 +- .../test_package_docs/ex/Dog/aFinalField.html | 3 +- .../ex/Dog/aGetterReturningRandomThings.html | 3 +- .../ex/Dog/aName-constant.html | 7 +- .../ex/Dog/aProtectedFinalField.html | 3 +- .../ex/Dog/aStaticConstField-constant.html | 5 +- .../ex/Dog/abstractMethod.html | 3 +- .../test_package_docs/ex/Dog/createDog.html | 3 +- .../ex/Dog/deprecatedField.html | 3 +- .../ex/Dog/deprecatedGetter.html | 3 +- .../ex/Dog/deprecatedSetter.html | 3 +- testing/test_package_docs/ex/Dog/foo.html | 3 +- .../ex/Dog/getAnotherClassD.html | 3 +- .../test_package_docs/ex/Dog/getClassA.html | 3 +- .../ex/Dog/isImplemented.html | 3 +- testing/test_package_docs/ex/Dog/name.html | 3 +- .../ex/Dog/operator_equals.html | 3 +- .../ex/Dog/somethingTasty.html | 3 +- .../ex/Dog/staticGetterSetter.html | 6 +- .../test_package_docs/ex/Dog/testGeneric.html | 3 +- .../ex/Dog/testGenericMethod.html | 3 +- .../test_package_docs/ex/Dog/testMethod.html | 3 +- .../test_package_docs/ex/Dog/withMacro.html | 3 +- .../test_package_docs/ex/Dog/withMacro2.html | 3 +- testing/test_package_docs/ex/E/hashCode.html | 3 +- .../test_package_docs/ex/E/noSuchMethod.html | 3 +- .../ex/E/operator_equals.html | 3 +- .../test_package_docs/ex/E/runtimeType.html | 3 +- testing/test_package_docs/ex/E/toString.html | 3 +- .../ex/F/methodWithGenericParam.html | 3 +- testing/test_package_docs/ex/F/test.html | 3 +- .../ex/ForAnnotation/hashCode.html | 3 +- .../ex/ForAnnotation/noSuchMethod.html | 3 +- .../ex/ForAnnotation/operator_equals.html | 3 +- .../ex/ForAnnotation/runtimeType.html | 3 +- .../ex/ForAnnotation/toString.html | 3 +- .../ex/ForAnnotation/value.html | 3 +- .../ex/HasAnnotation/hashCode.html | 3 +- .../ex/HasAnnotation/noSuchMethod.html | 3 +- .../ex/HasAnnotation/operator_equals.html | 3 +- .../ex/HasAnnotation/runtimeType.html | 3 +- .../ex/HasAnnotation/toString.html | 3 +- .../ex/Helper/getContents.html | 3 +- .../test_package_docs/ex/Helper/hashCode.html | 3 +- .../ex/Helper/noSuchMethod.html | 3 +- .../ex/Helper/operator_equals.html | 3 +- .../ex/Helper/runtimeType.html | 3 +- .../test_package_docs/ex/Helper/toString.html | 3 +- .../test_package_docs/ex/Klass/another.html | 3 +- .../ex/Klass/anotherMethod.html | 3 +- .../test_package_docs/ex/Klass/hashCode.html | 3 +- .../ex/Klass/imAFactoryNoReally.html | 3 +- .../ex/Klass/imProtected.html | 3 +- .../test_package_docs/ex/Klass/method.html | 3 +- .../ex/Klass/noSuchMethod.html | 3 +- .../ex/Klass/operator_equals.html | 3 +- .../ex/Klass/runtimeType.html | 3 +- .../test_package_docs/ex/Klass/toString.html | 3 +- .../test_package_docs/ex/MY_CAT-constant.html | 7 +- .../ex/MyError/hashCode.html | 3 +- .../ex/MyError/noSuchMethod.html | 3 +- .../ex/MyError/operator_equals.html | 3 +- .../ex/MyError/runtimeType.html | 3 +- .../ex/MyError/stackTrace.html | 3 +- .../ex/MyError/toString.html | 3 +- .../ex/MyErrorImplements/hashCode.html | 3 +- .../ex/MyErrorImplements/noSuchMethod.html | 3 +- .../ex/MyErrorImplements/operator_equals.html | 3 +- .../ex/MyErrorImplements/runtimeType.html | 3 +- .../ex/MyErrorImplements/stackTrace.html | 3 +- .../ex/MyErrorImplements/toString.html | 3 +- .../ex/MyException/hashCode.html | 3 +- .../ex/MyException/noSuchMethod.html | 3 +- .../ex/MyException/operator_equals.html | 3 +- .../ex/MyException/runtimeType.html | 3 +- .../ex/MyException/toString.html | 3 +- .../ex/MyExceptionImplements/hashCode.html | 3 +- .../MyExceptionImplements/noSuchMethod.html | 3 +- .../operator_equals.html | 3 +- .../ex/MyExceptionImplements/runtimeType.html | 3 +- .../ex/MyExceptionImplements/toString.html | 3 +- .../ex/PRETTY_COLORS-constant.html | 5 +- .../ParameterizedClass/aInheritedField.html | 3 +- .../ParameterizedClass/aInheritedGetter.html | 3 +- .../ParameterizedClass/aInheritedMethod.html | 3 +- .../ParameterizedClass/aInheritedSetter.html | 3 +- .../aInheritedTypedefReturningMethod.html | 3 +- .../ex/ParameterizedClass/hashCode.html | 3 +- .../ex/ParameterizedClass/noSuchMethod.html | 3 +- .../ParameterizedClass/operator_equals.html | 3 +- .../ex/ParameterizedClass/operator_plus.html | 3 +- .../ex/ParameterizedClass/runtimeType.html | 3 +- .../ex/ParameterizedClass/toString.html | 3 +- .../ex/ParameterizedTypedef.html | 3 +- .../hashCode.html | 3 +- .../noSuchMethod.html | 3 +- .../operator_equals.html | 3 +- .../runtimeType.html | 3 +- .../PublicClassExtendsPrivateClass/test.html | 3 +- .../toString.html | 3 +- .../hashCode.html | 3 +- .../noSuchMethod.html | 3 +- .../operator_equals.html | 3 +- .../runtimeType.html | 3 +- .../test.html | 3 +- .../toString.html | 3 +- .../test_package_docs/ex/ShapeType-class.html | 8 +-- .../ex/ShapeType/ellipse-constant.html | 7 +- .../ex/ShapeType/hashCode.html | 3 +- .../test_package_docs/ex/ShapeType/name.html | 3 +- .../ex/ShapeType/noSuchMethod.html | 3 +- .../ex/ShapeType/operator_equals.html | 3 +- .../ex/ShapeType/rect-constant.html | 7 +- .../ex/ShapeType/runtimeType.html | 3 +- .../ex/ShapeType/toString.html | 3 +- .../ex/ShortName/aParameter.html | 3 +- .../ex/ShortName/hashCode.html | 3 +- .../ex/ShortName/noSuchMethod.html | 3 +- .../ex/ShortName/operator_equals.html | 3 +- .../ex/ShortName/runtimeType.html | 3 +- .../ex/ShortName/toString.html | 3 +- .../ex/SpecializedDuration/abs.html | 3 +- .../ex/SpecializedDuration/compareTo.html | 3 +- .../ex/SpecializedDuration/hashCode.html | 3 +- .../ex/SpecializedDuration/inDays.html | 3 +- .../ex/SpecializedDuration/inHours.html | 3 +- .../SpecializedDuration/inMicroseconds.html | 3 +- .../SpecializedDuration/inMilliseconds.html | 3 +- .../ex/SpecializedDuration/inMinutes.html | 3 +- .../ex/SpecializedDuration/inSeconds.html | 3 +- .../ex/SpecializedDuration/isNegative.html | 3 +- .../ex/SpecializedDuration/noSuchMethod.html | 3 +- .../SpecializedDuration/operator_equals.html | 3 +- .../SpecializedDuration/operator_greater.html | 3 +- .../operator_greater_equal.html | 3 +- .../ex/SpecializedDuration/operator_less.html | 3 +- .../operator_less_equal.html | 3 +- .../SpecializedDuration/operator_minus.html | 3 +- .../operator_multiply.html | 3 +- .../ex/SpecializedDuration/operator_plus.html | 3 +- .../operator_truncate_divide.html | 3 +- .../operator_unary_minus.html | 3 +- .../ex/SpecializedDuration/runtimeType.html | 3 +- .../ex/SpecializedDuration/toString.html | 3 +- .../ex/TemplatedClass/aMethod.html | 3 +- .../ex/TemplatedClass/hashCode.html | 3 +- .../ex/TemplatedClass/noSuchMethod.html | 3 +- .../ex/TemplatedClass/operator_equals.html | 3 +- .../ex/TemplatedClass/runtimeType.html | 3 +- .../ex/TemplatedClass/toString.html | 3 +- .../ex/TemplatedInterface/aField.html | 3 +- .../ex/TemplatedInterface/aGetter.html | 3 +- .../TemplatedInterface/aMethodInterface.html | 3 +- .../ex/TemplatedInterface/aSetter.html | 3 +- .../aTypedefReturningMethodInterface.html | 3 +- .../getAComplexTypedef.html | 3 +- .../getAFunctionReturningBool.html | 3 +- .../getAFunctionReturningVoid.html | 3 +- .../hashCode.html | 3 +- .../noSuchMethod.html | 3 +- .../operator_equals.html | 3 +- .../runtimeType.html | 3 +- .../toString.html | 3 +- .../ex/WithGeneric/hashCode.html | 3 +- .../ex/WithGeneric/noSuchMethod.html | 3 +- .../ex/WithGeneric/operator_equals.html | 3 +- .../ex/WithGeneric/prop.html | 3 +- .../ex/WithGeneric/runtimeType.html | 3 +- .../ex/WithGeneric/toString.html | 3 +- .../test_package_docs/ex/aComplexTypedef.html | 3 +- .../ex/aThingToDo/hashCode.html | 3 +- .../ex/aThingToDo/noSuchMethod.html | 3 +- .../ex/aThingToDo/operator_equals.html | 3 +- .../ex/aThingToDo/runtimeType.html | 3 +- .../ex/aThingToDo/toString.html | 3 +- .../test_package_docs/ex/aThingToDo/what.html | 3 +- .../test_package_docs/ex/aThingToDo/who.html | 3 +- .../ex/deprecated-constant.html | 7 +- .../test_package_docs/ex/deprecatedField.html | 3 +- .../ex/deprecatedGetter.html | 3 +- .../ex/deprecatedSetter.html | 3 +- testing/test_package_docs/ex/ex-library.html | 22 +++---- testing/test_package_docs/ex/function1.html | 3 +- .../test_package_docs/ex/genericFunction.html | 3 +- .../ex/incorrectDocReference-constant.html | 5 +- .../incorrectDocReferenceFromEx-constant.html | 5 +- testing/test_package_docs/ex/number.html | 3 +- .../test_package_docs/ex/processMessage.html | 3 +- testing/test_package_docs/ex/y.html | 3 +- .../fake/AMixinCallingSuper/superString.html | 3 +- .../fake/Annotation/hashCode.html | 3 +- .../fake/Annotation/noSuchMethod.html | 3 +- .../fake/Annotation/operator_equals.html | 3 +- .../fake/Annotation/runtimeType.html | 3 +- .../fake/Annotation/toString.html | 3 +- .../fake/Annotation/value.html | 3 +- .../fake/AnotherInterface/hashCode.html | 3 +- .../fake/AnotherInterface/noSuchMethod.html | 3 +- .../AnotherInterface/operator_equals.html | 3 +- .../fake/AnotherInterface/runtimeType.html | 3 +- .../fake/AnotherInterface/toString.html | 3 +- .../BaseForDocComments/anotherMethod.html | 3 +- .../BaseForDocComments/doAwesomeStuff.html | 3 +- .../fake/BaseForDocComments/hashCode.html | 3 +- .../fake/BaseForDocComments/noSuchMethod.html | 3 +- .../BaseForDocComments/operator_equals.html | 3 +- .../fake/BaseForDocComments/runtimeType.html | 3 +- .../fake/BaseForDocComments/toString.html | 3 +- .../fake/BaseThingy/aImplementingThingy.html | 3 +- .../BaseThingy/aImplementingThingyField.html | 3 +- .../BaseThingy/aImplementingThingyMethod.html | 3 +- .../fake/BaseThingy/hashCode.html | 3 +- .../fake/BaseThingy/noSuchMethod.html | 3 +- .../fake/BaseThingy/operator_equals.html | 3 +- .../fake/BaseThingy/runtimeType.html | 3 +- .../fake/BaseThingy/toString.html | 3 +- .../fake/BaseThingy2/aImplementingThingy.html | 3 +- .../fake/CUSTOM_CLASS-constant.html | 7 +- testing/test_package_docs/fake/Callback2.html | 3 +- .../ClassWithUnusualProperties/aMethod.html | 3 +- .../documentedPartialFieldInSubclassOnly.html | 6 +- .../explicitGetter.html | 3 +- .../explicitGetterImplicitSetter.html | 6 +- .../explicitGetterSetter.html | 6 +- ...xplicitNonDocumentedInBaseClassGetter.html | 3 +- .../explicitSetter.html | 3 +- .../finalProperty.html | 3 +- .../implicitGetterExplicitSetter.html | 6 +- .../implicitReadWrite.html | 3 +- .../test_package_docs/fake/Color-class.html | 16 ++--- .../fake/Color/hashCode.html | 3 +- .../fake/Color/noSuchMethod.html | 3 +- .../fake/Color/operator_equals.html | 3 +- .../fake/Color/runtimeType.html | 3 +- .../fake/Color/toString.html | 3 +- .../fake/ConstantClass/hashCode.html | 3 +- .../fake/ConstantClass/noSuchMethod.html | 3 +- .../fake/ConstantClass/operator_equals.html | 3 +- .../fake/ConstantClass/runtimeType.html | 3 +- .../fake/ConstantClass/toString.html | 3 +- .../fake/ConstantClass/value.html | 3 +- .../fake/ConstructorTester/hashCode.html | 3 +- .../fake/ConstructorTester/noSuchMethod.html | 3 +- .../ConstructorTester/operator_equals.html | 3 +- .../fake/ConstructorTester/runtimeType.html | 3 +- .../fake/ConstructorTester/toString.html | 3 +- .../test_package_docs/fake/Cool/hashCode.html | 3 +- .../fake/Cool/noSuchMethod.html | 3 +- .../fake/Cool/operator_equals.html | 3 +- .../fake/Cool/returnCool.html | 3 +- .../fake/Cool/runtimeType.html | 3 +- .../test_package_docs/fake/Cool/toString.html | 3 +- .../test_package_docs/fake/DOWN-constant.html | 5 +- .../fake/DocumentWithATable-class.html | 8 +-- .../fake/DocumentWithATable/aMethod.html | 3 +- .../fake/DocumentWithATable/bar-constant.html | 7 +- .../fake/DocumentWithATable/foo-constant.html | 7 +- .../fake/DocumentWithATable/hashCode.html | 3 +- .../fake/DocumentWithATable/noSuchMethod.html | 3 +- .../DocumentWithATable/operator_equals.html | 3 +- .../fake/DocumentWithATable/runtimeType.html | 3 +- .../fake/DocumentWithATable/toString.html | 3 +- .../test_package_docs/fake/Doh/hashCode.html | 3 +- .../fake/Doh/noSuchMethod.html | 3 +- .../fake/Doh/operator_equals.html | 3 +- .../fake/Doh/runtimeType.html | 3 +- .../fake/Doh/stackTrace.html | 3 +- .../test_package_docs/fake/Doh/toString.html | 3 +- .../test_package_docs/fake/FakeProcesses.html | 3 +- .../test_package_docs/fake/Foo2-class.html | 8 +-- .../fake/Foo2/BAR-constant.html | 7 +- .../fake/Foo2/BAZ-constant.html | 7 +- .../test_package_docs/fake/Foo2/hashCode.html | 3 +- .../test_package_docs/fake/Foo2/index.html | 3 +- .../fake/Foo2/noSuchMethod.html | 3 +- .../fake/Foo2/operator_equals.html | 3 +- .../fake/Foo2/runtimeType.html | 3 +- .../test_package_docs/fake/Foo2/toString.html | 3 +- .../fake/GenericTypedef.html | 3 +- .../fake/HasGenericWithExtends/hashCode.html | 3 +- .../HasGenericWithExtends/noSuchMethod.html | 3 +- .../operator_equals.html | 3 +- .../HasGenericWithExtends/runtimeType.html | 3 +- .../fake/HasGenericWithExtends/toString.html | 3 +- .../fake/HasGenerics/convertToMap.html | 3 +- .../fake/HasGenerics/doStuff.html | 3 +- .../fake/HasGenerics/hashCode.html | 3 +- .../fake/HasGenerics/noSuchMethod.html | 3 +- .../fake/HasGenerics/operator_equals.html | 3 +- .../fake/HasGenerics/returnX.html | 3 +- .../fake/HasGenerics/returnZ.html | 3 +- .../fake/HasGenerics/runtimeType.html | 3 +- .../fake/HasGenerics/toString.html | 3 +- .../explicitGetterImplicitSetter.html | 3 +- .../explicitGetterSetterForInheriting.html | 6 +- .../explicitPartiallyDocumentedField.html | 6 +- .../ImplicitProperties/forInheriting.html | 3 +- .../fake/ImplicitProperties/hashCode.html | 3 +- .../implicitGetterExplicitSetter.html | 3 +- .../fake/ImplicitProperties/noSuchMethod.html | 3 +- .../ImplicitProperties/operator_equals.html | 3 +- .../fake/ImplicitProperties/runtimeType.html | 3 +- .../fake/ImplicitProperties/toString.html | 3 +- .../fake/Interface/hashCode.html | 3 +- .../fake/Interface/noSuchMethod.html | 3 +- .../fake/Interface/operator_equals.html | 3 +- .../fake/Interface/runtimeType.html | 3 +- .../fake/Interface/toString.html | 3 +- .../fake/LongFirstLine-class.html | 4 +- .../fake/LongFirstLine/ANSWER-constant.html | 5 +- .../fake/LongFirstLine/THING-constant.html | 5 +- .../fake/LongFirstLine/aStringProperty.html | 3 +- .../fake/LongFirstLine/dynamicGetter.html | 3 +- .../fake/LongFirstLine/meaningOfLife.html | 3 +- .../fake/LongFirstLine/noParams.html | 3 +- .../fake/LongFirstLine/onlySetter.html | 3 +- .../fake/LongFirstLine/operator_multiply.html | 3 +- .../fake/LongFirstLine/operator_plus.html | 3 +- .../fake/LongFirstLine/optionalParams.html | 3 +- .../fake/LongFirstLine/returnString.html | 3 +- .../fake/LongFirstLine/staticGetter.html | 3 +- .../LongFirstLine/staticMethodNoParams.html | 3 +- .../staticMethodReturnsVoid.html | 3 +- .../fake/LongFirstLine/staticOnlySetter.html | 3 +- .../fake/LongFirstLine/twoParams.html | 3 +- .../fake/LotsAndLotsOfParameters.html | 3 +- .../fake/MixMeIn/hashCode.html | 3 +- .../fake/MixMeIn/noSuchMethod.html | 3 +- .../fake/MixMeIn/operator_equals.html | 3 +- .../fake/MixMeIn/runtimeType.html | 3 +- .../fake/MixMeIn/toString.html | 3 +- .../fake/NAME_SINGLEUNDERSCORE-constant.html | 5 +- .../NAME_WITH_TWO_UNDERSCORES-constant.html | 5 +- .../fake/NewGenericTypedef.html | 3 +- .../fake/NotAMixin/hashCode.html | 3 +- .../fake/NotAMixin/noSuchMethod.html | 3 +- .../fake/NotAMixin/operator_equals.html | 3 +- .../fake/NotAMixin/runtimeType.html | 3 +- .../fake/NotAMixin/superString.html | 3 +- .../fake/NotAMixin/toString.html | 3 +- .../test_package_docs/fake/Oops/hashCode.html | 3 +- .../test_package_docs/fake/Oops/message.html | 3 +- .../fake/Oops/noSuchMethod.html | 3 +- .../fake/Oops/operator_equals.html | 3 +- .../fake/Oops/runtimeType.html | 3 +- .../test_package_docs/fake/Oops/toString.html | 3 +- .../fake/OperatorReferenceClass/hashCode.html | 3 +- .../OperatorReferenceClass/noSuchMethod.html | 3 +- .../operator_equals.html | 3 +- .../OperatorReferenceClass/runtimeType.html | 3 +- .../fake/OperatorReferenceClass/toString.html | 3 +- .../fake/OtherGenericsThing/convert.html | 3 +- .../fake/OtherGenericsThing/hashCode.html | 3 +- .../fake/OtherGenericsThing/noSuchMethod.html | 3 +- .../OtherGenericsThing/operator_equals.html | 3 +- .../fake/OtherGenericsThing/runtimeType.html | 3 +- .../fake/OtherGenericsThing/toString.html | 3 +- .../test_package_docs/fake/PI-constant.html | 5 +- .../fake/SpecialList/add.html | 3 +- .../fake/SpecialList/addAll.html | 3 +- .../fake/SpecialList/any.html | 3 +- .../fake/SpecialList/asMap.html | 3 +- .../fake/SpecialList/clear.html | 3 +- .../fake/SpecialList/contains.html | 3 +- .../fake/SpecialList/elementAt.html | 3 +- .../fake/SpecialList/every.html | 3 +- .../fake/SpecialList/expand.html | 3 +- .../fake/SpecialList/fillRange.html | 3 +- .../fake/SpecialList/first.html | 3 +- .../fake/SpecialList/firstWhere.html | 3 +- .../fake/SpecialList/fold.html | 3 +- .../fake/SpecialList/forEach.html | 3 +- .../fake/SpecialList/getRange.html | 3 +- .../fake/SpecialList/hashCode.html | 3 +- .../fake/SpecialList/indexOf.html | 3 +- .../fake/SpecialList/insert.html | 3 +- .../fake/SpecialList/insertAll.html | 3 +- .../fake/SpecialList/isEmpty.html | 3 +- .../fake/SpecialList/isNotEmpty.html | 3 +- .../fake/SpecialList/iterator.html | 3 +- .../fake/SpecialList/join.html | 3 +- .../fake/SpecialList/last.html | 3 +- .../fake/SpecialList/lastIndexOf.html | 3 +- .../fake/SpecialList/lastWhere.html | 3 +- .../fake/SpecialList/length.html | 6 +- .../fake/SpecialList/map.html | 3 +- .../fake/SpecialList/noSuchMethod.html | 3 +- .../fake/SpecialList/operator_equals.html | 3 +- .../fake/SpecialList/operator_get.html | 3 +- .../fake/SpecialList/operator_put.html | 3 +- .../fake/SpecialList/reduce.html | 3 +- .../fake/SpecialList/remove.html | 3 +- .../fake/SpecialList/removeAt.html | 3 +- .../fake/SpecialList/removeLast.html | 3 +- .../fake/SpecialList/removeRange.html | 3 +- .../fake/SpecialList/removeWhere.html | 3 +- .../fake/SpecialList/replaceRange.html | 3 +- .../fake/SpecialList/retainWhere.html | 3 +- .../fake/SpecialList/reversed.html | 3 +- .../fake/SpecialList/runtimeType.html | 3 +- .../fake/SpecialList/setAll.html | 3 +- .../fake/SpecialList/setRange.html | 3 +- .../fake/SpecialList/shuffle.html | 3 +- .../fake/SpecialList/single.html | 3 +- .../fake/SpecialList/singleWhere.html | 3 +- .../fake/SpecialList/skip.html | 3 +- .../fake/SpecialList/skipWhile.html | 3 +- .../fake/SpecialList/sort.html | 3 +- .../fake/SpecialList/sublist.html | 3 +- .../fake/SpecialList/take.html | 3 +- .../fake/SpecialList/takeWhile.html | 3 +- .../fake/SpecialList/toList.html | 3 +- .../fake/SpecialList/toSet.html | 3 +- .../fake/SpecialList/toString.html | 3 +- .../fake/SpecialList/where.html | 3 +- .../fake/SubForDocComments/localMethod.html | 3 +- .../fake/SuperAwesomeClass/fly.html | 3 +- .../fake/SuperAwesomeClass/hashCode.html | 3 +- .../fake/SuperAwesomeClass/noSuchMethod.html | 3 +- .../SuperAwesomeClass/operator_equals.html | 3 +- .../SuperAwesomeClass/operator_minus.html | 3 +- .../fake/SuperAwesomeClass/powers.html | 3 +- .../fake/SuperAwesomeClass/runtimeType.html | 3 +- .../fake/SuperAwesomeClass/toString.html | 3 +- .../test_package_docs/fake/UP-constant.html | 5 +- .../test_package_docs/fake/VoidCallback.html | 3 +- .../fake/WithGetterAndSetter/hashCode.html | 3 +- .../fake/WithGetterAndSetter/lengthX.html | 6 +- .../WithGetterAndSetter/noSuchMethod.html | 3 +- .../WithGetterAndSetter/operator_equals.html | 3 +- .../fake/WithGetterAndSetter/runtimeType.html | 3 +- .../fake/WithGetterAndSetter/toString.html | 3 +- .../test_package_docs/fake/ZERO-constant.html | 5 +- .../test_package_docs/fake/addCallback.html | 3 +- .../test_package_docs/fake/addCallback2.html | 3 +- .../test_package_docs/fake/dynamicGetter.html | 3 +- .../test_package_docs/fake/fake-library.html | 26 ++++---- .../fake/functionWithFunctionParameters.html | 3 +- .../fake/getterSetterNodocGetter.html | 3 +- .../fake/getterSetterNodocSetter.html | 3 +- .../fake/greatAnnotation-constant.html | 5 +- .../fake/greatestAnnotation-constant.html | 5 +- .../fake/incorrectDocReference-constant.html | 5 +- .../test_package_docs/fake/justGetter.html | 3 +- .../test_package_docs/fake/justSetter.html | 3 +- .../fake/mapWithDynamicKeys.html | 3 +- .../test_package_docs/fake/meaningOfLife.html | 3 +- .../test_package_docs/fake/myCoolTypedef.html | 3 +- .../fake/myGenericFunction.html | 3 +- .../onlyPositionalWithNoDefaultNoType.html | 3 +- .../test_package_docs/fake/paintImage1.html | 3 +- .../test_package_docs/fake/paintImage2.html | 3 +- .../fake/paramFromAnotherLib.html | 3 +- .../fake/required-constant.html | 5 +- testing/test_package_docs/fake/setAndGet.html | 6 +- testing/test_package_docs/fake/short.html | 3 +- .../fake/simpleProperty.html | 3 +- testing/test_package_docs/fake/soIntense.html | 3 +- ...testingCodeSyntaxInOneLiners-constant.html | 5 +- .../fake/thisIsAlsoAsync.html | 3 +- .../test_package_docs/fake/thisIsAsync.html | 3 +- .../fake/topLevelFunction.html | 3 +- testing/test_package_docs/index.json | 64 +++++++++---------- .../reexport_one/SomeOtherClass/hashCode.html | 3 +- .../SomeOtherClass/noSuchMethod.html | 3 +- .../SomeOtherClass/operator_equals.html | 3 +- .../SomeOtherClass/runtimeType.html | 3 +- .../reexport_one/SomeOtherClass/toString.html | 3 +- .../reexport_two/AUnicornClass/hashCode.html | 3 +- .../AUnicornClass/noSuchMethod.html | 3 +- .../AUnicornClass/operator_equals.html | 3 +- .../AUnicornClass/runtimeType.html | 3 +- .../reexport_two/AUnicornClass/toString.html | 3 +- .../reexport_two/SomeClass/hashCode.html | 3 +- .../reexport_two/SomeClass/noSuchMethod.html | 3 +- .../SomeClass/operator_equals.html | 3 +- .../reexport_two/SomeClass/runtimeType.html | 3 +- .../reexport_two/SomeClass/toString.html | 3 +- .../YetAnotherClass/hashCode.html | 3 +- .../YetAnotherClass/noSuchMethod.html | 3 +- .../YetAnotherClass/operator_equals.html | 3 +- .../YetAnotherClass/runtimeType.html | 3 +- .../YetAnotherClass/toString.html | 3 +- .../Whataclass/hashCode.html | 3 +- .../Whataclass/noSuchMethod.html | 3 +- .../Whataclass/operator_equals.html | 3 +- .../Whataclass/runtimeType.html | 3 +- .../Whataclass/toString.html | 3 +- .../Whataclass2/hashCode.html | 3 +- .../Whataclass2/noSuchMethod.html | 3 +- .../Whataclass2/operator_equals.html | 3 +- .../Whataclass2/runtimeType.html | 3 +- .../Whataclass2/toString.html | 3 +- .../two_exports/topLevelVariable.html | 3 +- 569 files changed, 1273 insertions(+), 699 deletions(-) diff --git a/lib/src/model.dart b/lib/src/model.dart index 527a40df1f..4bd9b92b12 100644 --- a/lib/src/model.dart +++ b/lib/src/model.dart @@ -1474,9 +1474,9 @@ class Field extends ModelElement bool get isInherited => _isInherited; @override - String get kind => 'property'; + String get kind => isConst ? 'constant' : 'property'; - String get typeName => "property"; + String get typeName => kind; @override List get annotations { @@ -4806,7 +4806,7 @@ class TopLevelVariable extends ModelElement } @override - String get kind => 'top-level property'; + String get kind => isConst ? 'top-level constant' : 'top-level property'; @override Set get features => super.features..addAll(comboFeatures); diff --git a/test/model_test.dart b/test/model_test.dart index 76fd0f6327..419cae5c11 100644 --- a/test/model_test.dart +++ b/test/model_test.dart @@ -797,10 +797,12 @@ void main() { test('get constants', () { expect(Apple.publicConstants, hasLength(1)); + expect(Apple.publicConstants.first.kind, equals('constant')); }); test('get instance fields', () { expect(Apple.publicInstanceProperties, hasLength(3)); + expect(Apple.publicInstanceProperties.first.kind, equals('property')); }); test('get inherited properties, including properties of Object', () { @@ -1910,6 +1912,10 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, expect(greenConstant.fullyQualifiedName, 'ex.COLOR_GREEN'); }); + test('has the correct kind', () { + expect(greenConstant.kind, equals('top-level constant')); + }); + test('has enclosing element', () { expect(greenConstant.enclosingElement.name, equals(exLibrary.name)); }); diff --git a/testing/test_package_docs/anonymous_library/doesStuff.html b/testing/test_package_docs/anonymous_library/doesStuff.html index 149b67830f..5d5f952069 100644 --- a/testing/test_package_docs/anonymous_library/doesStuff.html +++ b/testing/test_package_docs/anonymous_library/doesStuff.html @@ -54,7 +54,8 @@

doesStuff function

String - doesStuff() + doesStuff +()
diff --git a/testing/test_package_docs/another_anonymous_lib/greeting.html b/testing/test_package_docs/another_anonymous_lib/greeting.html index de1bbcff19..c7ae29120a 100644 --- a/testing/test_package_docs/another_anonymous_lib/greeting.html +++ b/testing/test_package_docs/another_anonymous_lib/greeting.html @@ -54,7 +54,8 @@

greeting function

String - greeting() + greeting +()
diff --git a/testing/test_package_docs/css/theOnlyThingInTheLibrary.html b/testing/test_package_docs/css/theOnlyThingInTheLibrary.html index 8345fe5260..7da489d929 100644 --- a/testing/test_package_docs/css/theOnlyThingInTheLibrary.html +++ b/testing/test_package_docs/css/theOnlyThingInTheLibrary.html @@ -54,7 +54,8 @@

theOnlyThingInTheLibrary top-level property

String - theOnlyThingInTheLibrary
read / write
+ theOnlyThingInTheLibrary +
read / write
diff --git a/testing/test_package_docs/ex/Animal-class.html b/testing/test_package_docs/ex/Animal-class.html index 2d1b1e4652..79af44da3e 100644 --- a/testing/test_package_docs/ex/Animal-class.html +++ b/testing/test_package_docs/ex/Animal-class.html @@ -121,7 +121,7 @@

Constants

CAT - Animal + → const Animal

Single line docs.

@@ -132,7 +132,7 @@

Constants

DOG - Animal + → const Animal

Multi line docs.

@@ -144,7 +144,7 @@

Constants

HORSE - Animal + → const Animal
@@ -155,7 +155,7 @@

Constants

values - → List<Animal> + → const List<Animal>

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

diff --git a/testing/test_package_docs/ex/Animal/hashCode.html b/testing/test_package_docs/ex/Animal/hashCode.html index d68f04d0e4..e2edb08094 100644 --- a/testing/test_package_docs/ex/Animal/hashCode.html +++ b/testing/test_package_docs/ex/Animal/hashCode.html @@ -72,7 +72,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/ex/Animal/noSuchMethod.html b/testing/test_package_docs/ex/Animal/noSuchMethod.html index ee2f7d88f4..9625f58f97 100644 --- a/testing/test_package_docs/ex/Animal/noSuchMethod.html +++ b/testing/test_package_docs/ex/Animal/noSuchMethod.html @@ -69,7 +69,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/ex/Animal/operator_equals.html b/testing/test_package_docs/ex/Animal/operator_equals.html index 63cbbd81d9..f1cb29315d 100644 --- a/testing/test_package_docs/ex/Animal/operator_equals.html +++ b/testing/test_package_docs/ex/Animal/operator_equals.html @@ -69,7 +69,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/ex/Animal/runtimeType.html b/testing/test_package_docs/ex/Animal/runtimeType.html index 0c65757f00..a5ec6791a0 100644 --- a/testing/test_package_docs/ex/Animal/runtimeType.html +++ b/testing/test_package_docs/ex/Animal/runtimeType.html @@ -72,7 +72,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/ex/Animal/toString.html b/testing/test_package_docs/ex/Animal/toString.html index cec2efe902..dad41926bb 100644 --- a/testing/test_package_docs/ex/Animal/toString.html +++ b/testing/test_package_docs/ex/Animal/toString.html @@ -69,7 +69,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/ex/AnotherParameterizedClass/hashCode.html b/testing/test_package_docs/ex/AnotherParameterizedClass/hashCode.html index d2b7061156..56dce1f790 100644 --- a/testing/test_package_docs/ex/AnotherParameterizedClass/hashCode.html +++ b/testing/test_package_docs/ex/AnotherParameterizedClass/hashCode.html @@ -68,7 +68,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/ex/AnotherParameterizedClass/noSuchMethod.html b/testing/test_package_docs/ex/AnotherParameterizedClass/noSuchMethod.html index 9a7abb4782..b4695d3978 100644 --- a/testing/test_package_docs/ex/AnotherParameterizedClass/noSuchMethod.html +++ b/testing/test_package_docs/ex/AnotherParameterizedClass/noSuchMethod.html @@ -65,7 +65,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/ex/AnotherParameterizedClass/operator_equals.html b/testing/test_package_docs/ex/AnotherParameterizedClass/operator_equals.html index e23d47fba2..c62dd5fe16 100644 --- a/testing/test_package_docs/ex/AnotherParameterizedClass/operator_equals.html +++ b/testing/test_package_docs/ex/AnotherParameterizedClass/operator_equals.html @@ -65,7 +65,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/ex/AnotherParameterizedClass/runtimeType.html b/testing/test_package_docs/ex/AnotherParameterizedClass/runtimeType.html index 4587c4baa5..98891268f1 100644 --- a/testing/test_package_docs/ex/AnotherParameterizedClass/runtimeType.html +++ b/testing/test_package_docs/ex/AnotherParameterizedClass/runtimeType.html @@ -68,7 +68,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/ex/AnotherParameterizedClass/toString.html b/testing/test_package_docs/ex/AnotherParameterizedClass/toString.html index 2a68a1b1e4..3f7de8c1c7 100644 --- a/testing/test_package_docs/ex/AnotherParameterizedClass/toString.html +++ b/testing/test_package_docs/ex/AnotherParameterizedClass/toString.html @@ -65,7 +65,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/ex/Apple-class.html b/testing/test_package_docs/ex/Apple-class.html index 9268e96b1c..f5b08f482f 100644 --- a/testing/test_package_docs/ex/Apple-class.html +++ b/testing/test_package_docs/ex/Apple-class.html @@ -319,7 +319,7 @@

Constants

n - → int + → const int
diff --git a/testing/test_package_docs/ex/Apple/fieldWithTypedef.html b/testing/test_package_docs/ex/Apple/fieldWithTypedef.html index 91835f3132..b3fe4fc4a2 100644 --- a/testing/test_package_docs/ex/Apple/fieldWithTypedef.html +++ b/testing/test_package_docs/ex/Apple/fieldWithTypedef.html @@ -80,7 +80,8 @@

fieldWithTypedef property

ParameterizedTypedef<bool> - fieldWithTypedef
final
+ fieldWithTypedef +
final

fieldWithTypedef docs here

diff --git a/testing/test_package_docs/ex/Apple/hashCode.html b/testing/test_package_docs/ex/Apple/hashCode.html index b28e347393..fb75936a11 100644 --- a/testing/test_package_docs/ex/Apple/hashCode.html +++ b/testing/test_package_docs/ex/Apple/hashCode.html @@ -83,7 +83,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/ex/Apple/isGreaterThan.html b/testing/test_package_docs/ex/Apple/isGreaterThan.html index f6b0305de1..d9c1d59b4a 100644 --- a/testing/test_package_docs/ex/Apple/isGreaterThan.html +++ b/testing/test_package_docs/ex/Apple/isGreaterThan.html @@ -80,7 +80,8 @@

isGreaterThan method

bool - isGreaterThan(int number, { int check: 5 }) + isGreaterThan +(int number, { int check: 5 })
diff --git a/testing/test_package_docs/ex/Apple/m.html b/testing/test_package_docs/ex/Apple/m.html index 837297eb56..483a697b9b 100644 --- a/testing/test_package_docs/ex/Apple/m.html +++ b/testing/test_package_docs/ex/Apple/m.html @@ -80,7 +80,8 @@

m property

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

The read-write field m.

diff --git a/testing/test_package_docs/ex/Apple/m1.html b/testing/test_package_docs/ex/Apple/m1.html index 4d93a6f0b7..86bd846a38 100644 --- a/testing/test_package_docs/ex/Apple/m1.html +++ b/testing/test_package_docs/ex/Apple/m1.html @@ -80,7 +80,8 @@

m1 method

void - m1() + m1 +()

This is a method.

diff --git a/testing/test_package_docs/ex/Apple/methodWithTypedefParam.html b/testing/test_package_docs/ex/Apple/methodWithTypedefParam.html index a654ff4da4..9159dd3a33 100644 --- a/testing/test_package_docs/ex/Apple/methodWithTypedefParam.html +++ b/testing/test_package_docs/ex/Apple/methodWithTypedefParam.html @@ -80,7 +80,8 @@

methodWithTypedefParam method

void - methodWithTypedefParam(processMessage p) + methodWithTypedefParam +(processMessage p)
diff --git a/testing/test_package_docs/ex/Apple/n-constant.html b/testing/test_package_docs/ex/Apple/n-constant.html index 401fe8fb5c..917707d011 100644 --- a/testing/test_package_docs/ex/Apple/n-constant.html +++ b/testing/test_package_docs/ex/Apple/n-constant.html @@ -76,11 +76,12 @@
Apple class
-

n property

+

n constant

int - n = + const n + = 5
diff --git a/testing/test_package_docs/ex/Apple/noSuchMethod.html b/testing/test_package_docs/ex/Apple/noSuchMethod.html index 1e87d4b01d..00c71f018d 100644 --- a/testing/test_package_docs/ex/Apple/noSuchMethod.html +++ b/testing/test_package_docs/ex/Apple/noSuchMethod.html @@ -80,7 +80,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/ex/Apple/operator_equals.html b/testing/test_package_docs/ex/Apple/operator_equals.html index 7952a66711..4525913e1c 100644 --- a/testing/test_package_docs/ex/Apple/operator_equals.html +++ b/testing/test_package_docs/ex/Apple/operator_equals.html @@ -80,7 +80,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/ex/Apple/operator_multiply.html b/testing/test_package_docs/ex/Apple/operator_multiply.html index 794d96964b..fa326731c9 100644 --- a/testing/test_package_docs/ex/Apple/operator_multiply.html +++ b/testing/test_package_docs/ex/Apple/operator_multiply.html @@ -80,7 +80,8 @@

operator * method

dynamic - operator *(Apple other) + operator * +(Apple other)
diff --git a/testing/test_package_docs/ex/Apple/paramFromExportLib.html b/testing/test_package_docs/ex/Apple/paramFromExportLib.html index e3685d0134..06cf887f3a 100644 --- a/testing/test_package_docs/ex/Apple/paramFromExportLib.html +++ b/testing/test_package_docs/ex/Apple/paramFromExportLib.html @@ -80,7 +80,8 @@

paramFromExportLib method

void - paramFromExportLib(Helper helper) + paramFromExportLib +(Helper helper)
diff --git a/testing/test_package_docs/ex/Apple/printMsg.html b/testing/test_package_docs/ex/Apple/printMsg.html index bfae083ce7..a1389b7a7b 100644 --- a/testing/test_package_docs/ex/Apple/printMsg.html +++ b/testing/test_package_docs/ex/Apple/printMsg.html @@ -80,7 +80,8 @@

printMsg method

void - printMsg(String msg, [ bool linebreak ]) + printMsg +(String msg, [ bool linebreak ])
diff --git a/testing/test_package_docs/ex/Apple/runtimeType.html b/testing/test_package_docs/ex/Apple/runtimeType.html index 5db1e11696..56adab0987 100644 --- a/testing/test_package_docs/ex/Apple/runtimeType.html +++ b/testing/test_package_docs/ex/Apple/runtimeType.html @@ -83,7 +83,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/ex/Apple/s.html b/testing/test_package_docs/ex/Apple/s.html index 502db70dc9..2a06cced01 100644 --- a/testing/test_package_docs/ex/Apple/s.html +++ b/testing/test_package_docs/ex/Apple/s.html @@ -83,7 +83,8 @@

s property

String - s + s +
@@ -96,7 +97,8 @@

s property

void - s=(String something) + s= +(String something)
diff --git a/testing/test_package_docs/ex/Apple/string.html b/testing/test_package_docs/ex/Apple/string.html index bef85cd9cf..1a1c74cbc8 100644 --- a/testing/test_package_docs/ex/Apple/string.html +++ b/testing/test_package_docs/ex/Apple/string.html @@ -80,7 +80,8 @@

string property

String - string
read / write
+ string +
read / write
diff --git a/testing/test_package_docs/ex/Apple/toString.html b/testing/test_package_docs/ex/Apple/toString.html index b0fc3f96b4..a88826826e 100644 --- a/testing/test_package_docs/ex/Apple/toString.html +++ b/testing/test_package_docs/ex/Apple/toString.html @@ -80,7 +80,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/ex/Apple/whataclass.html b/testing/test_package_docs/ex/Apple/whataclass.html index 5ffc711a9a..624674c1a1 100644 --- a/testing/test_package_docs/ex/Apple/whataclass.html +++ b/testing/test_package_docs/ex/Apple/whataclass.html @@ -80,7 +80,8 @@

whataclass method

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

Apple docs for whataclass

diff --git a/testing/test_package_docs/ex/B/abstractMethod.html b/testing/test_package_docs/ex/B/abstractMethod.html index 62c1f59e44..a94c51eb3a 100644 --- a/testing/test_package_docs/ex/B/abstractMethod.html +++ b/testing/test_package_docs/ex/B/abstractMethod.html @@ -86,7 +86,8 @@

abstractMethod method

void - abstractMethod() + abstractMethod +()
diff --git a/testing/test_package_docs/ex/B/autoCompress.html b/testing/test_package_docs/ex/B/autoCompress.html index 02d9bd883f..ea2bea48b3 100644 --- a/testing/test_package_docs/ex/B/autoCompress.html +++ b/testing/test_package_docs/ex/B/autoCompress.html @@ -81,7 +81,8 @@

autoCompress property

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

The default value is false (compression disabled). diff --git a/testing/test_package_docs/ex/B/doNothing.html b/testing/test_package_docs/ex/B/doNothing.html index 9c5b622392..221fe391e2 100644 --- a/testing/test_package_docs/ex/B/doNothing.html +++ b/testing/test_package_docs/ex/B/doNothing.html @@ -86,7 +86,8 @@

doNothing method

Future - doNothing() + doNothing +()
diff --git a/testing/test_package_docs/ex/B/isImplemented.html b/testing/test_package_docs/ex/B/isImplemented.html index 0cd256f7be..5273c6891e 100644 --- a/testing/test_package_docs/ex/B/isImplemented.html +++ b/testing/test_package_docs/ex/B/isImplemented.html @@ -84,7 +84,8 @@

isImplemented property

bool - isImplemented + isImplemented +
diff --git a/testing/test_package_docs/ex/B/list.html b/testing/test_package_docs/ex/B/list.html index 434deeac6b..b30ba798bf 100644 --- a/testing/test_package_docs/ex/B/list.html +++ b/testing/test_package_docs/ex/B/list.html @@ -81,7 +81,8 @@

list property

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

A list of Strings

diff --git a/testing/test_package_docs/ex/B/m1.html b/testing/test_package_docs/ex/B/m1.html index 1456d46933..09a3f22e1e 100644 --- a/testing/test_package_docs/ex/B/m1.html +++ b/testing/test_package_docs/ex/B/m1.html @@ -86,7 +86,8 @@

m1 method

void - m1() + m1 +()

This is a method.

diff --git a/testing/test_package_docs/ex/B/s.html b/testing/test_package_docs/ex/B/s.html index 96212e919c..4faf30a91b 100644 --- a/testing/test_package_docs/ex/B/s.html +++ b/testing/test_package_docs/ex/B/s.html @@ -84,7 +84,8 @@

s property

String - s + s +
@@ -97,7 +98,8 @@

s property

void - s=(String something) + s= +(String something)
inherited
diff --git a/testing/test_package_docs/ex/B/writeMsg.html b/testing/test_package_docs/ex/B/writeMsg.html index a098f370bc..0f3efb82a1 100644 --- a/testing/test_package_docs/ex/B/writeMsg.html +++ b/testing/test_package_docs/ex/B/writeMsg.html @@ -81,7 +81,8 @@

writeMsg method

void - writeMsg(String msg, [ String transformMsg(String origMsg, bool flag) ]) + writeMsg +(String msg, [ String transformMsg(String origMsg, bool flag) ])
diff --git a/testing/test_package_docs/ex/COLOR-constant.html b/testing/test_package_docs/ex/COLOR-constant.html index ab80aa2373..e50721de75 100644 --- a/testing/test_package_docs/ex/COLOR-constant.html +++ b/testing/test_package_docs/ex/COLOR-constant.html @@ -107,10 +107,11 @@
ex library
-

COLOR top-level property

+

COLOR top-level constant

- COLOR = + const COLOR + = 'red'
diff --git a/testing/test_package_docs/ex/COLOR_GREEN-constant.html b/testing/test_package_docs/ex/COLOR_GREEN-constant.html index c4dffbc4e2..0a81fc3a51 100644 --- a/testing/test_package_docs/ex/COLOR_GREEN-constant.html +++ b/testing/test_package_docs/ex/COLOR_GREEN-constant.html @@ -107,10 +107,11 @@
ex library
-

COLOR_GREEN top-level property

+

COLOR_GREEN top-level constant

- COLOR_GREEN = + const COLOR_GREEN + = 'green'
diff --git a/testing/test_package_docs/ex/COLOR_ORANGE-constant.html b/testing/test_package_docs/ex/COLOR_ORANGE-constant.html index 5e72ba47b2..438015c116 100644 --- a/testing/test_package_docs/ex/COLOR_ORANGE-constant.html +++ b/testing/test_package_docs/ex/COLOR_ORANGE-constant.html @@ -107,10 +107,11 @@
ex library
-

COLOR_ORANGE top-level property

+

COLOR_ORANGE top-level constant

- COLOR_ORANGE = + const COLOR_ORANGE + = 'orange'
diff --git a/testing/test_package_docs/ex/COMPLEX_COLOR-constant.html b/testing/test_package_docs/ex/COMPLEX_COLOR-constant.html index b3bc20b830..66b25e9c45 100644 --- a/testing/test_package_docs/ex/COMPLEX_COLOR-constant.html +++ b/testing/test_package_docs/ex/COMPLEX_COLOR-constant.html @@ -107,10 +107,11 @@
ex library
-

COMPLEX_COLOR top-level property

+

COMPLEX_COLOR top-level constant

- COMPLEX_COLOR = + const COMPLEX_COLOR + = 'red' + '-' + 'green' + '-' + 'blue'
diff --git a/testing/test_package_docs/ex/Cat/abstractMethod.html b/testing/test_package_docs/ex/Cat/abstractMethod.html index 5594000aea..c8fe81c4cb 100644 --- a/testing/test_package_docs/ex/Cat/abstractMethod.html +++ b/testing/test_package_docs/ex/Cat/abstractMethod.html @@ -67,7 +67,8 @@

abstractMethod method

void - abstractMethod() + abstractMethod +()
diff --git a/testing/test_package_docs/ex/Cat/hashCode.html b/testing/test_package_docs/ex/Cat/hashCode.html index d52e31a8cc..78b5add16a 100644 --- a/testing/test_package_docs/ex/Cat/hashCode.html +++ b/testing/test_package_docs/ex/Cat/hashCode.html @@ -70,7 +70,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/ex/Cat/isImplemented.html b/testing/test_package_docs/ex/Cat/isImplemented.html index 2d876aa7c2..0321bf3097 100644 --- a/testing/test_package_docs/ex/Cat/isImplemented.html +++ b/testing/test_package_docs/ex/Cat/isImplemented.html @@ -70,7 +70,8 @@

isImplemented property

bool - isImplemented + isImplemented +
diff --git a/testing/test_package_docs/ex/Cat/noSuchMethod.html b/testing/test_package_docs/ex/Cat/noSuchMethod.html index 2787670c92..18dac50af9 100644 --- a/testing/test_package_docs/ex/Cat/noSuchMethod.html +++ b/testing/test_package_docs/ex/Cat/noSuchMethod.html @@ -67,7 +67,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/ex/Cat/operator_equals.html b/testing/test_package_docs/ex/Cat/operator_equals.html index 6ab382a900..31ae83b1af 100644 --- a/testing/test_package_docs/ex/Cat/operator_equals.html +++ b/testing/test_package_docs/ex/Cat/operator_equals.html @@ -67,7 +67,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/ex/Cat/runtimeType.html b/testing/test_package_docs/ex/Cat/runtimeType.html index ecdccc4ff3..fc6ac1065d 100644 --- a/testing/test_package_docs/ex/Cat/runtimeType.html +++ b/testing/test_package_docs/ex/Cat/runtimeType.html @@ -70,7 +70,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/ex/Cat/toString.html b/testing/test_package_docs/ex/Cat/toString.html index b416c91637..b3a91e0fd9 100644 --- a/testing/test_package_docs/ex/Cat/toString.html +++ b/testing/test_package_docs/ex/Cat/toString.html @@ -67,7 +67,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/ex/CatString/clear.html b/testing/test_package_docs/ex/CatString/clear.html index eaa7ce1577..3d91b5771b 100644 --- a/testing/test_package_docs/ex/CatString/clear.html +++ b/testing/test_package_docs/ex/CatString/clear.html @@ -73,7 +73,8 @@

clear method

void - clear() + clear +()
diff --git a/testing/test_package_docs/ex/CatString/hashCode.html b/testing/test_package_docs/ex/CatString/hashCode.html index db276dfa54..468cd02357 100644 --- a/testing/test_package_docs/ex/CatString/hashCode.html +++ b/testing/test_package_docs/ex/CatString/hashCode.html @@ -76,7 +76,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/ex/CatString/isEmpty.html b/testing/test_package_docs/ex/CatString/isEmpty.html index 1e2e80f090..f7388edff5 100644 --- a/testing/test_package_docs/ex/CatString/isEmpty.html +++ b/testing/test_package_docs/ex/CatString/isEmpty.html @@ -76,7 +76,8 @@

isEmpty property

bool - isEmpty
inherited
+ isEmpty +
inherited
diff --git a/testing/test_package_docs/ex/CatString/isNotEmpty.html b/testing/test_package_docs/ex/CatString/isNotEmpty.html index dc9d20d610..7930acf8da 100644 --- a/testing/test_package_docs/ex/CatString/isNotEmpty.html +++ b/testing/test_package_docs/ex/CatString/isNotEmpty.html @@ -76,7 +76,8 @@

isNotEmpty property

bool - isNotEmpty
inherited
+ isNotEmpty +
inherited
diff --git a/testing/test_package_docs/ex/CatString/length.html b/testing/test_package_docs/ex/CatString/length.html index 8c6d9bcef3..4676c48a14 100644 --- a/testing/test_package_docs/ex/CatString/length.html +++ b/testing/test_package_docs/ex/CatString/length.html @@ -76,7 +76,8 @@

length property

int - length
inherited
+ length +
inherited
diff --git a/testing/test_package_docs/ex/CatString/noSuchMethod.html b/testing/test_package_docs/ex/CatString/noSuchMethod.html index 54978a0350..7ce7cc140e 100644 --- a/testing/test_package_docs/ex/CatString/noSuchMethod.html +++ b/testing/test_package_docs/ex/CatString/noSuchMethod.html @@ -73,7 +73,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/ex/CatString/operator_equals.html b/testing/test_package_docs/ex/CatString/operator_equals.html index 1563488bca..afd7ff88b2 100644 --- a/testing/test_package_docs/ex/CatString/operator_equals.html +++ b/testing/test_package_docs/ex/CatString/operator_equals.html @@ -73,7 +73,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/ex/CatString/runtimeType.html b/testing/test_package_docs/ex/CatString/runtimeType.html index 368782c3bb..cfc7a16052 100644 --- a/testing/test_package_docs/ex/CatString/runtimeType.html +++ b/testing/test_package_docs/ex/CatString/runtimeType.html @@ -76,7 +76,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/ex/CatString/toString.html b/testing/test_package_docs/ex/CatString/toString.html index 16d788a9bb..8871eaee4b 100644 --- a/testing/test_package_docs/ex/CatString/toString.html +++ b/testing/test_package_docs/ex/CatString/toString.html @@ -73,7 +73,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/ex/CatString/write.html b/testing/test_package_docs/ex/CatString/write.html index d356f11a2a..6e3f7d9f1c 100644 --- a/testing/test_package_docs/ex/CatString/write.html +++ b/testing/test_package_docs/ex/CatString/write.html @@ -73,7 +73,8 @@

write method

void - write(Object obj) + write +(Object obj)
diff --git a/testing/test_package_docs/ex/CatString/writeAll.html b/testing/test_package_docs/ex/CatString/writeAll.html index d9e5e6b119..90ff631e2d 100644 --- a/testing/test_package_docs/ex/CatString/writeAll.html +++ b/testing/test_package_docs/ex/CatString/writeAll.html @@ -73,7 +73,8 @@

writeAll method

void - writeAll(Iterable objects, [ String separator = "" ]) + writeAll +(Iterable objects, [ String separator = "" ])
diff --git a/testing/test_package_docs/ex/CatString/writeCharCode.html b/testing/test_package_docs/ex/CatString/writeCharCode.html index f45d0f25e7..9871c9dec2 100644 --- a/testing/test_package_docs/ex/CatString/writeCharCode.html +++ b/testing/test_package_docs/ex/CatString/writeCharCode.html @@ -73,7 +73,8 @@

writeCharCode method

void - writeCharCode(int charCode) + writeCharCode +(int charCode)
diff --git a/testing/test_package_docs/ex/CatString/writeln.html b/testing/test_package_docs/ex/CatString/writeln.html index e0841d920c..b8f0b1b377 100644 --- a/testing/test_package_docs/ex/CatString/writeln.html +++ b/testing/test_package_docs/ex/CatString/writeln.html @@ -73,7 +73,8 @@

writeln method

void - writeln([Object obj = "" ]) + writeln +([Object obj = "" ])
diff --git a/testing/test_package_docs/ex/ConstantCat/abstractMethod.html b/testing/test_package_docs/ex/ConstantCat/abstractMethod.html index 440771ec3f..022f6f53c4 100644 --- a/testing/test_package_docs/ex/ConstantCat/abstractMethod.html +++ b/testing/test_package_docs/ex/ConstantCat/abstractMethod.html @@ -73,7 +73,8 @@

abstractMethod method

void - abstractMethod() + abstractMethod +()
diff --git a/testing/test_package_docs/ex/ConstantCat/isImplemented.html b/testing/test_package_docs/ex/ConstantCat/isImplemented.html index dd7a7286db..51e87d6c5c 100644 --- a/testing/test_package_docs/ex/ConstantCat/isImplemented.html +++ b/testing/test_package_docs/ex/ConstantCat/isImplemented.html @@ -71,7 +71,8 @@

isImplemented property

bool - isImplemented + isImplemented +
diff --git a/testing/test_package_docs/ex/ConstantCat/name.html b/testing/test_package_docs/ex/ConstantCat/name.html index 8530927a9e..68452470de 100644 --- a/testing/test_package_docs/ex/ConstantCat/name.html +++ b/testing/test_package_docs/ex/ConstantCat/name.html @@ -68,7 +68,8 @@

name property

String - name
final
+ name +
final
diff --git a/testing/test_package_docs/ex/Deprecated/expires.html b/testing/test_package_docs/ex/Deprecated/expires.html index fe4e9527a3..6d94e90cab 100644 --- a/testing/test_package_docs/ex/Deprecated/expires.html +++ b/testing/test_package_docs/ex/Deprecated/expires.html @@ -66,7 +66,8 @@

expires property

String - expires
final
+ expires +
final
diff --git a/testing/test_package_docs/ex/Deprecated/hashCode.html b/testing/test_package_docs/ex/Deprecated/hashCode.html index c33caeeef0..0759d01a7e 100644 --- a/testing/test_package_docs/ex/Deprecated/hashCode.html +++ b/testing/test_package_docs/ex/Deprecated/hashCode.html @@ -69,7 +69,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/ex/Deprecated/noSuchMethod.html b/testing/test_package_docs/ex/Deprecated/noSuchMethod.html index 1cd6dcea92..3ec351cd44 100644 --- a/testing/test_package_docs/ex/Deprecated/noSuchMethod.html +++ b/testing/test_package_docs/ex/Deprecated/noSuchMethod.html @@ -66,7 +66,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/ex/Deprecated/operator_equals.html b/testing/test_package_docs/ex/Deprecated/operator_equals.html index 3db47aa561..cc74a1337a 100644 --- a/testing/test_package_docs/ex/Deprecated/operator_equals.html +++ b/testing/test_package_docs/ex/Deprecated/operator_equals.html @@ -66,7 +66,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/ex/Deprecated/runtimeType.html b/testing/test_package_docs/ex/Deprecated/runtimeType.html index 24f514b0e3..5b526bcd93 100644 --- a/testing/test_package_docs/ex/Deprecated/runtimeType.html +++ b/testing/test_package_docs/ex/Deprecated/runtimeType.html @@ -69,7 +69,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/ex/Deprecated/toString.html b/testing/test_package_docs/ex/Deprecated/toString.html index 08e06250eb..25a9121331 100644 --- a/testing/test_package_docs/ex/Deprecated/toString.html +++ b/testing/test_package_docs/ex/Deprecated/toString.html @@ -66,7 +66,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/ex/Dog-class.html b/testing/test_package_docs/ex/Dog-class.html index 9d19e10633..1c48c4a770 100644 --- a/testing/test_package_docs/ex/Dog-class.html +++ b/testing/test_package_docs/ex/Dog-class.html @@ -411,18 +411,18 @@

Constants

aName - ShortName + → const ShortName
Verify link substitution in constants (#1535)
- const ExtendedShortName("hello there") + const ExtendedShortName("hello there")
aStaticConstField - → String + → const String
diff --git a/testing/test_package_docs/ex/Dog/aFinalField.html b/testing/test_package_docs/ex/Dog/aFinalField.html index 215c0ef01c..b74b26978b 100644 --- a/testing/test_package_docs/ex/Dog/aFinalField.html +++ b/testing/test_package_docs/ex/Dog/aFinalField.html @@ -91,7 +91,8 @@

aFinalField property

int - aFinalField
final
+ aFinalField +
final
diff --git a/testing/test_package_docs/ex/Dog/aGetterReturningRandomThings.html b/testing/test_package_docs/ex/Dog/aGetterReturningRandomThings.html index 799e4a4e0a..b403e809a1 100644 --- a/testing/test_package_docs/ex/Dog/aGetterReturningRandomThings.html +++ b/testing/test_package_docs/ex/Dog/aGetterReturningRandomThings.html @@ -94,7 +94,8 @@

aGetterReturningRandomThings property

int - aGetterReturningRandomThings + aGetterReturningRandomThings +
diff --git a/testing/test_package_docs/ex/Dog/aName-constant.html b/testing/test_package_docs/ex/Dog/aName-constant.html index b37cc87c35..9368bce3d7 100644 --- a/testing/test_package_docs/ex/Dog/aName-constant.html +++ b/testing/test_package_docs/ex/Dog/aName-constant.html @@ -87,12 +87,13 @@
Dog class
-

aName property

+

aName constant

ShortName - aName = - const ExtendedShortName("hello there") + const aName + = + const ExtendedShortName("hello there")
diff --git a/testing/test_package_docs/ex/Dog/aProtectedFinalField.html b/testing/test_package_docs/ex/Dog/aProtectedFinalField.html index 32ea2dadf5..e1dda9791b 100644 --- a/testing/test_package_docs/ex/Dog/aProtectedFinalField.html +++ b/testing/test_package_docs/ex/Dog/aProtectedFinalField.html @@ -91,7 +91,8 @@

aProtectedFinalField property

int - aProtectedFinalField
@protected, final
+ aProtectedFinalField +
@protected, final
diff --git a/testing/test_package_docs/ex/Dog/aStaticConstField-constant.html b/testing/test_package_docs/ex/Dog/aStaticConstField-constant.html index 30c572f686..df85c695dd 100644 --- a/testing/test_package_docs/ex/Dog/aStaticConstField-constant.html +++ b/testing/test_package_docs/ex/Dog/aStaticConstField-constant.html @@ -87,11 +87,12 @@
Dog class
-

aStaticConstField property

+

aStaticConstField constant

String - aStaticConstField = + const aStaticConstField + = "A Constant Dog"
diff --git a/testing/test_package_docs/ex/Dog/abstractMethod.html b/testing/test_package_docs/ex/Dog/abstractMethod.html index e55f878fda..9a1c0e1e1a 100644 --- a/testing/test_package_docs/ex/Dog/abstractMethod.html +++ b/testing/test_package_docs/ex/Dog/abstractMethod.html @@ -96,7 +96,8 @@

abstractMethod method

void - abstractMethod() + abstractMethod +()
diff --git a/testing/test_package_docs/ex/Dog/createDog.html b/testing/test_package_docs/ex/Dog/createDog.html index d5aa368f27..b5a9fcf606 100644 --- a/testing/test_package_docs/ex/Dog/createDog.html +++ b/testing/test_package_docs/ex/Dog/createDog.html @@ -96,7 +96,8 @@

createDog method

Dog - createDog(String s) + createDog +(String s)
diff --git a/testing/test_package_docs/ex/Dog/deprecatedField.html b/testing/test_package_docs/ex/Dog/deprecatedField.html index 90362b48d8..e98f4bd0b6 100644 --- a/testing/test_package_docs/ex/Dog/deprecatedField.html +++ b/testing/test_package_docs/ex/Dog/deprecatedField.html @@ -91,7 +91,8 @@

deprecatedField property

int - deprecatedField
read / write
+ deprecatedField +
read / write
diff --git a/testing/test_package_docs/ex/Dog/deprecatedGetter.html b/testing/test_package_docs/ex/Dog/deprecatedGetter.html index ee7dbde16f..bbf68d06a7 100644 --- a/testing/test_package_docs/ex/Dog/deprecatedGetter.html +++ b/testing/test_package_docs/ex/Dog/deprecatedGetter.html @@ -94,7 +94,8 @@

deprecatedGetter property

int - deprecatedGetter + deprecatedGetter +
diff --git a/testing/test_package_docs/ex/Dog/deprecatedSetter.html b/testing/test_package_docs/ex/Dog/deprecatedSetter.html index c83e6e12d4..648e06cbcb 100644 --- a/testing/test_package_docs/ex/Dog/deprecatedSetter.html +++ b/testing/test_package_docs/ex/Dog/deprecatedSetter.html @@ -95,7 +95,8 @@

deprecatedSetter property

void - deprecatedSetter=(int value) + deprecatedSetter= +(int value)
diff --git a/testing/test_package_docs/ex/Dog/foo.html b/testing/test_package_docs/ex/Dog/foo.html index d824cf8b33..00cb2a6802 100644 --- a/testing/test_package_docs/ex/Dog/foo.html +++ b/testing/test_package_docs/ex/Dog/foo.html @@ -91,7 +91,8 @@

foo method

Future - foo() + foo +()
diff --git a/testing/test_package_docs/ex/Dog/getAnotherClassD.html b/testing/test_package_docs/ex/Dog/getAnotherClassD.html index 0abea24e21..22a267dbf0 100644 --- a/testing/test_package_docs/ex/Dog/getAnotherClassD.html +++ b/testing/test_package_docs/ex/Dog/getAnotherClassD.html @@ -96,7 +96,8 @@

getAnotherClassD method

List<Dog> - getAnotherClassD() + getAnotherClassD +()
diff --git a/testing/test_package_docs/ex/Dog/getClassA.html b/testing/test_package_docs/ex/Dog/getClassA.html index 32948a2f28..fe70c86ed3 100644 --- a/testing/test_package_docs/ex/Dog/getClassA.html +++ b/testing/test_package_docs/ex/Dog/getClassA.html @@ -96,7 +96,8 @@

getClassA method

List<Apple> - getClassA() + getClassA +()
diff --git a/testing/test_package_docs/ex/Dog/isImplemented.html b/testing/test_package_docs/ex/Dog/isImplemented.html index d832c6543d..03711abb1a 100644 --- a/testing/test_package_docs/ex/Dog/isImplemented.html +++ b/testing/test_package_docs/ex/Dog/isImplemented.html @@ -94,7 +94,8 @@

isImplemented property

bool - isImplemented + isImplemented +
diff --git a/testing/test_package_docs/ex/Dog/name.html b/testing/test_package_docs/ex/Dog/name.html index 51fa129488..6afcf1a555 100644 --- a/testing/test_package_docs/ex/Dog/name.html +++ b/testing/test_package_docs/ex/Dog/name.html @@ -91,7 +91,8 @@

name property

String - name
read / write
+ name +
read / write
diff --git a/testing/test_package_docs/ex/Dog/operator_equals.html b/testing/test_package_docs/ex/Dog/operator_equals.html index 4edb165892..e1ef573f59 100644 --- a/testing/test_package_docs/ex/Dog/operator_equals.html +++ b/testing/test_package_docs/ex/Dog/operator_equals.html @@ -96,7 +96,8 @@

operator == method

dynamic - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/ex/Dog/somethingTasty.html b/testing/test_package_docs/ex/Dog/somethingTasty.html index 7f889a14d7..df31928ef9 100644 --- a/testing/test_package_docs/ex/Dog/somethingTasty.html +++ b/testing/test_package_docs/ex/Dog/somethingTasty.html @@ -91,7 +91,8 @@

somethingTasty property

int - somethingTasty
final
+ somethingTasty +
final

A tasty static + final property.

diff --git a/testing/test_package_docs/ex/Dog/staticGetterSetter.html b/testing/test_package_docs/ex/Dog/staticGetterSetter.html index c646cd1f59..42184d1559 100644 --- a/testing/test_package_docs/ex/Dog/staticGetterSetter.html +++ b/testing/test_package_docs/ex/Dog/staticGetterSetter.html @@ -94,7 +94,8 @@

staticGetterSetter property

int - staticGetterSetter + staticGetterSetter +
@@ -104,7 +105,8 @@

staticGetterSetter property

void - staticGetterSetter=(x) + staticGetterSetter= +(x)
diff --git a/testing/test_package_docs/ex/Dog/testGeneric.html b/testing/test_package_docs/ex/Dog/testGeneric.html index c1a100c386..c2b73bfd8a 100644 --- a/testing/test_package_docs/ex/Dog/testGeneric.html +++ b/testing/test_package_docs/ex/Dog/testGeneric.html @@ -91,7 +91,8 @@

testGeneric method

void - testGeneric(Map<String, dynamic> args) + testGeneric +(Map<String, dynamic> args)
diff --git a/testing/test_package_docs/ex/Dog/testGenericMethod.html b/testing/test_package_docs/ex/Dog/testGenericMethod.html index ae58685a6b..5f1190c24d 100644 --- a/testing/test_package_docs/ex/Dog/testGenericMethod.html +++ b/testing/test_package_docs/ex/Dog/testGenericMethod.html @@ -91,7 +91,8 @@

testGenericMethod<T> method

T - testGenericMethod<T>(T arg) + testGenericMethod +<T>(T arg)
diff --git a/testing/test_package_docs/ex/Dog/testMethod.html b/testing/test_package_docs/ex/Dog/testMethod.html index dbdf7d02e8..2840ef0e4c 100644 --- a/testing/test_package_docs/ex/Dog/testMethod.html +++ b/testing/test_package_docs/ex/Dog/testMethod.html @@ -91,7 +91,8 @@

testMethod method

void - testMethod(Iterable it) + testMethod +(Iterable it)
diff --git a/testing/test_package_docs/ex/Dog/withMacro.html b/testing/test_package_docs/ex/Dog/withMacro.html index 229d1a1a0a..a14beb01ed 100644 --- a/testing/test_package_docs/ex/Dog/withMacro.html +++ b/testing/test_package_docs/ex/Dog/withMacro.html @@ -91,7 +91,8 @@

withMacro method

void - withMacro() + withMacro +()

Macro method

diff --git a/testing/test_package_docs/ex/Dog/withMacro2.html b/testing/test_package_docs/ex/Dog/withMacro2.html index d04609406a..dee96ff179 100644 --- a/testing/test_package_docs/ex/Dog/withMacro2.html +++ b/testing/test_package_docs/ex/Dog/withMacro2.html @@ -91,7 +91,8 @@

withMacro2 method

void - withMacro2() + withMacro2 +()

Foo macro content

diff --git a/testing/test_package_docs/ex/E/hashCode.html b/testing/test_package_docs/ex/E/hashCode.html index 09e3f39e38..87ff8cd96b 100644 --- a/testing/test_package_docs/ex/E/hashCode.html +++ b/testing/test_package_docs/ex/E/hashCode.html @@ -68,7 +68,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/ex/E/noSuchMethod.html b/testing/test_package_docs/ex/E/noSuchMethod.html index 92992195a5..f214f190c3 100644 --- a/testing/test_package_docs/ex/E/noSuchMethod.html +++ b/testing/test_package_docs/ex/E/noSuchMethod.html @@ -65,7 +65,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/ex/E/operator_equals.html b/testing/test_package_docs/ex/E/operator_equals.html index 86c8da4473..7a7a2b7455 100644 --- a/testing/test_package_docs/ex/E/operator_equals.html +++ b/testing/test_package_docs/ex/E/operator_equals.html @@ -65,7 +65,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/ex/E/runtimeType.html b/testing/test_package_docs/ex/E/runtimeType.html index 3fd2788def..d6b7359699 100644 --- a/testing/test_package_docs/ex/E/runtimeType.html +++ b/testing/test_package_docs/ex/E/runtimeType.html @@ -68,7 +68,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/ex/E/toString.html b/testing/test_package_docs/ex/E/toString.html index 6a75f19566..71abd44534 100644 --- a/testing/test_package_docs/ex/E/toString.html +++ b/testing/test_package_docs/ex/E/toString.html @@ -65,7 +65,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/ex/F/methodWithGenericParam.html b/testing/test_package_docs/ex/F/methodWithGenericParam.html index f7743cbcab..8e75e13a95 100644 --- a/testing/test_package_docs/ex/F/methodWithGenericParam.html +++ b/testing/test_package_docs/ex/F/methodWithGenericParam.html @@ -84,7 +84,8 @@

methodWithGenericParam method

void - methodWithGenericParam([List<Apple> msgs ]) + methodWithGenericParam +([List<Apple> msgs ])
diff --git a/testing/test_package_docs/ex/F/test.html b/testing/test_package_docs/ex/F/test.html index 1376cef0d8..2b94af8205 100644 --- a/testing/test_package_docs/ex/F/test.html +++ b/testing/test_package_docs/ex/F/test.html @@ -84,7 +84,8 @@

test method

void - test() + test +()
diff --git a/testing/test_package_docs/ex/ForAnnotation/hashCode.html b/testing/test_package_docs/ex/ForAnnotation/hashCode.html index 5c3411f1a9..e85e555d40 100644 --- a/testing/test_package_docs/ex/ForAnnotation/hashCode.html +++ b/testing/test_package_docs/ex/ForAnnotation/hashCode.html @@ -69,7 +69,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/ex/ForAnnotation/noSuchMethod.html b/testing/test_package_docs/ex/ForAnnotation/noSuchMethod.html index 550834abc8..cf71953fb2 100644 --- a/testing/test_package_docs/ex/ForAnnotation/noSuchMethod.html +++ b/testing/test_package_docs/ex/ForAnnotation/noSuchMethod.html @@ -66,7 +66,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/ex/ForAnnotation/operator_equals.html b/testing/test_package_docs/ex/ForAnnotation/operator_equals.html index 69ac4254b0..f72f605bdf 100644 --- a/testing/test_package_docs/ex/ForAnnotation/operator_equals.html +++ b/testing/test_package_docs/ex/ForAnnotation/operator_equals.html @@ -66,7 +66,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/ex/ForAnnotation/runtimeType.html b/testing/test_package_docs/ex/ForAnnotation/runtimeType.html index 89f9f6c0d6..aac17c8cd7 100644 --- a/testing/test_package_docs/ex/ForAnnotation/runtimeType.html +++ b/testing/test_package_docs/ex/ForAnnotation/runtimeType.html @@ -69,7 +69,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/ex/ForAnnotation/toString.html b/testing/test_package_docs/ex/ForAnnotation/toString.html index a0bc1ed076..25a45a12d2 100644 --- a/testing/test_package_docs/ex/ForAnnotation/toString.html +++ b/testing/test_package_docs/ex/ForAnnotation/toString.html @@ -66,7 +66,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/ex/ForAnnotation/value.html b/testing/test_package_docs/ex/ForAnnotation/value.html index 59ba1c9684..6021056616 100644 --- a/testing/test_package_docs/ex/ForAnnotation/value.html +++ b/testing/test_package_docs/ex/ForAnnotation/value.html @@ -66,7 +66,8 @@

value property

String - value
final
+ value +
final
diff --git a/testing/test_package_docs/ex/HasAnnotation/hashCode.html b/testing/test_package_docs/ex/HasAnnotation/hashCode.html index 0038c28945..ea97a4b63a 100644 --- a/testing/test_package_docs/ex/HasAnnotation/hashCode.html +++ b/testing/test_package_docs/ex/HasAnnotation/hashCode.html @@ -68,7 +68,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/ex/HasAnnotation/noSuchMethod.html b/testing/test_package_docs/ex/HasAnnotation/noSuchMethod.html index 6430ca594f..59a950ceed 100644 --- a/testing/test_package_docs/ex/HasAnnotation/noSuchMethod.html +++ b/testing/test_package_docs/ex/HasAnnotation/noSuchMethod.html @@ -65,7 +65,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/ex/HasAnnotation/operator_equals.html b/testing/test_package_docs/ex/HasAnnotation/operator_equals.html index 70b80e422d..93ca1cf630 100644 --- a/testing/test_package_docs/ex/HasAnnotation/operator_equals.html +++ b/testing/test_package_docs/ex/HasAnnotation/operator_equals.html @@ -65,7 +65,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/ex/HasAnnotation/runtimeType.html b/testing/test_package_docs/ex/HasAnnotation/runtimeType.html index 78fba74748..14164a9156 100644 --- a/testing/test_package_docs/ex/HasAnnotation/runtimeType.html +++ b/testing/test_package_docs/ex/HasAnnotation/runtimeType.html @@ -68,7 +68,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/ex/HasAnnotation/toString.html b/testing/test_package_docs/ex/HasAnnotation/toString.html index 835c21683f..a3ef3a9557 100644 --- a/testing/test_package_docs/ex/HasAnnotation/toString.html +++ b/testing/test_package_docs/ex/HasAnnotation/toString.html @@ -65,7 +65,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/ex/Helper/getContents.html b/testing/test_package_docs/ex/Helper/getContents.html index ad64852856..a025a7ca9b 100644 --- a/testing/test_package_docs/ex/Helper/getContents.html +++ b/testing/test_package_docs/ex/Helper/getContents.html @@ -66,7 +66,8 @@

getContents method

String - getContents() + getContents +()
diff --git a/testing/test_package_docs/ex/Helper/hashCode.html b/testing/test_package_docs/ex/Helper/hashCode.html index 735d6e3971..e79f06b4be 100644 --- a/testing/test_package_docs/ex/Helper/hashCode.html +++ b/testing/test_package_docs/ex/Helper/hashCode.html @@ -69,7 +69,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/ex/Helper/noSuchMethod.html b/testing/test_package_docs/ex/Helper/noSuchMethod.html index 6dc4b5a02c..5aa219636c 100644 --- a/testing/test_package_docs/ex/Helper/noSuchMethod.html +++ b/testing/test_package_docs/ex/Helper/noSuchMethod.html @@ -66,7 +66,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/ex/Helper/operator_equals.html b/testing/test_package_docs/ex/Helper/operator_equals.html index b476ac05bd..2ba5d81e31 100644 --- a/testing/test_package_docs/ex/Helper/operator_equals.html +++ b/testing/test_package_docs/ex/Helper/operator_equals.html @@ -66,7 +66,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/ex/Helper/runtimeType.html b/testing/test_package_docs/ex/Helper/runtimeType.html index 236b4a362f..7f69afcbf5 100644 --- a/testing/test_package_docs/ex/Helper/runtimeType.html +++ b/testing/test_package_docs/ex/Helper/runtimeType.html @@ -69,7 +69,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/ex/Helper/toString.html b/testing/test_package_docs/ex/Helper/toString.html index c9ee9b8fe8..c44af947fc 100644 --- a/testing/test_package_docs/ex/Helper/toString.html +++ b/testing/test_package_docs/ex/Helper/toString.html @@ -66,7 +66,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/ex/Klass/another.html b/testing/test_package_docs/ex/Klass/another.html index ed8d05e67b..50abbdc483 100644 --- a/testing/test_package_docs/ex/Klass/another.html +++ b/testing/test_package_docs/ex/Klass/another.html @@ -70,7 +70,8 @@

another method

dynamic - another() + another +()

Another method

diff --git a/testing/test_package_docs/ex/Klass/anotherMethod.html b/testing/test_package_docs/ex/Klass/anotherMethod.html index 180e5e856e..e5a67d97d7 100644 --- a/testing/test_package_docs/ex/Klass/anotherMethod.html +++ b/testing/test_package_docs/ex/Klass/anotherMethod.html @@ -75,7 +75,8 @@

anotherMethod method

dynamic - anotherMethod() + anotherMethod +()

A method with a custom annotation

diff --git a/testing/test_package_docs/ex/Klass/hashCode.html b/testing/test_package_docs/ex/Klass/hashCode.html index fd95a1d6c5..f0522f9ab1 100644 --- a/testing/test_package_docs/ex/Klass/hashCode.html +++ b/testing/test_package_docs/ex/Klass/hashCode.html @@ -73,7 +73,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/ex/Klass/imAFactoryNoReally.html b/testing/test_package_docs/ex/Klass/imAFactoryNoReally.html index e68e7d8135..5a25f5ef23 100644 --- a/testing/test_package_docs/ex/Klass/imAFactoryNoReally.html +++ b/testing/test_package_docs/ex/Klass/imAFactoryNoReally.html @@ -75,7 +75,8 @@

imAFactoryNoReally method

dynamic - imAFactoryNoReally() + imAFactoryNoReally +()

Not really a factory, but...

diff --git a/testing/test_package_docs/ex/Klass/imProtected.html b/testing/test_package_docs/ex/Klass/imProtected.html index ae306b1811..2629baebb7 100644 --- a/testing/test_package_docs/ex/Klass/imProtected.html +++ b/testing/test_package_docs/ex/Klass/imProtected.html @@ -75,7 +75,8 @@

imProtected method

dynamic - imProtected() + imProtected +()

A protected method

diff --git a/testing/test_package_docs/ex/Klass/method.html b/testing/test_package_docs/ex/Klass/method.html index 4c175bcb8c..5e5b24a684 100644 --- a/testing/test_package_docs/ex/Klass/method.html +++ b/testing/test_package_docs/ex/Klass/method.html @@ -70,7 +70,8 @@

method method

dynamic - method() + method +()

A method

diff --git a/testing/test_package_docs/ex/Klass/noSuchMethod.html b/testing/test_package_docs/ex/Klass/noSuchMethod.html index f2143408b2..bbf58c9877 100644 --- a/testing/test_package_docs/ex/Klass/noSuchMethod.html +++ b/testing/test_package_docs/ex/Klass/noSuchMethod.html @@ -70,7 +70,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/ex/Klass/operator_equals.html b/testing/test_package_docs/ex/Klass/operator_equals.html index de1fed4a7a..b5af6c495d 100644 --- a/testing/test_package_docs/ex/Klass/operator_equals.html +++ b/testing/test_package_docs/ex/Klass/operator_equals.html @@ -70,7 +70,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/ex/Klass/runtimeType.html b/testing/test_package_docs/ex/Klass/runtimeType.html index 1d7f060af0..75533e844f 100644 --- a/testing/test_package_docs/ex/Klass/runtimeType.html +++ b/testing/test_package_docs/ex/Klass/runtimeType.html @@ -73,7 +73,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/ex/Klass/toString.html b/testing/test_package_docs/ex/Klass/toString.html index 4a2d7db812..4d591b8d12 100644 --- a/testing/test_package_docs/ex/Klass/toString.html +++ b/testing/test_package_docs/ex/Klass/toString.html @@ -75,7 +75,8 @@

toString method

dynamic - toString() + toString +()

A shadowed method

diff --git a/testing/test_package_docs/ex/MY_CAT-constant.html b/testing/test_package_docs/ex/MY_CAT-constant.html index dbc9227f57..9e11c6f603 100644 --- a/testing/test_package_docs/ex/MY_CAT-constant.html +++ b/testing/test_package_docs/ex/MY_CAT-constant.html @@ -107,11 +107,12 @@
ex library
-

MY_CAT top-level property

+

MY_CAT top-level constant

- MY_CAT = - const ConstantCat('tabby') + const MY_CAT + = + const ConstantCat('tabby')
diff --git a/testing/test_package_docs/ex/MyError/hashCode.html b/testing/test_package_docs/ex/MyError/hashCode.html index 24a325cf06..6b006ba9e0 100644 --- a/testing/test_package_docs/ex/MyError/hashCode.html +++ b/testing/test_package_docs/ex/MyError/hashCode.html @@ -69,7 +69,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/ex/MyError/noSuchMethod.html b/testing/test_package_docs/ex/MyError/noSuchMethod.html index e0107ed081..e5bc1205e9 100644 --- a/testing/test_package_docs/ex/MyError/noSuchMethod.html +++ b/testing/test_package_docs/ex/MyError/noSuchMethod.html @@ -66,7 +66,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/ex/MyError/operator_equals.html b/testing/test_package_docs/ex/MyError/operator_equals.html index 6962569a29..85e325f9d6 100644 --- a/testing/test_package_docs/ex/MyError/operator_equals.html +++ b/testing/test_package_docs/ex/MyError/operator_equals.html @@ -66,7 +66,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/ex/MyError/runtimeType.html b/testing/test_package_docs/ex/MyError/runtimeType.html index 546a4f488f..b88b1e9107 100644 --- a/testing/test_package_docs/ex/MyError/runtimeType.html +++ b/testing/test_package_docs/ex/MyError/runtimeType.html @@ -69,7 +69,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/ex/MyError/stackTrace.html b/testing/test_package_docs/ex/MyError/stackTrace.html index 4b74842e4d..446546030a 100644 --- a/testing/test_package_docs/ex/MyError/stackTrace.html +++ b/testing/test_package_docs/ex/MyError/stackTrace.html @@ -69,7 +69,8 @@

stackTrace property

StackTrace - stackTrace
inherited
+ stackTrace +
inherited
diff --git a/testing/test_package_docs/ex/MyError/toString.html b/testing/test_package_docs/ex/MyError/toString.html index f8b8b5da5a..1785ad532a 100644 --- a/testing/test_package_docs/ex/MyError/toString.html +++ b/testing/test_package_docs/ex/MyError/toString.html @@ -66,7 +66,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/ex/MyErrorImplements/hashCode.html b/testing/test_package_docs/ex/MyErrorImplements/hashCode.html index 615482869f..8e24a7df14 100644 --- a/testing/test_package_docs/ex/MyErrorImplements/hashCode.html +++ b/testing/test_package_docs/ex/MyErrorImplements/hashCode.html @@ -69,7 +69,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/ex/MyErrorImplements/noSuchMethod.html b/testing/test_package_docs/ex/MyErrorImplements/noSuchMethod.html index 6e9483e8c9..7409d1af3b 100644 --- a/testing/test_package_docs/ex/MyErrorImplements/noSuchMethod.html +++ b/testing/test_package_docs/ex/MyErrorImplements/noSuchMethod.html @@ -66,7 +66,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/ex/MyErrorImplements/operator_equals.html b/testing/test_package_docs/ex/MyErrorImplements/operator_equals.html index aa799b2919..8e7fe510d1 100644 --- a/testing/test_package_docs/ex/MyErrorImplements/operator_equals.html +++ b/testing/test_package_docs/ex/MyErrorImplements/operator_equals.html @@ -66,7 +66,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/ex/MyErrorImplements/runtimeType.html b/testing/test_package_docs/ex/MyErrorImplements/runtimeType.html index 9cedfdbfd4..175ab689b8 100644 --- a/testing/test_package_docs/ex/MyErrorImplements/runtimeType.html +++ b/testing/test_package_docs/ex/MyErrorImplements/runtimeType.html @@ -69,7 +69,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/ex/MyErrorImplements/stackTrace.html b/testing/test_package_docs/ex/MyErrorImplements/stackTrace.html index ad8f84e676..5ad534a197 100644 --- a/testing/test_package_docs/ex/MyErrorImplements/stackTrace.html +++ b/testing/test_package_docs/ex/MyErrorImplements/stackTrace.html @@ -69,7 +69,8 @@

stackTrace property

StackTrace - stackTrace + stackTrace +
diff --git a/testing/test_package_docs/ex/MyErrorImplements/toString.html b/testing/test_package_docs/ex/MyErrorImplements/toString.html index 8f083a60d6..228c02ef55 100644 --- a/testing/test_package_docs/ex/MyErrorImplements/toString.html +++ b/testing/test_package_docs/ex/MyErrorImplements/toString.html @@ -66,7 +66,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/ex/MyException/hashCode.html b/testing/test_package_docs/ex/MyException/hashCode.html index a9dc25f66e..ca6cfde2e4 100644 --- a/testing/test_package_docs/ex/MyException/hashCode.html +++ b/testing/test_package_docs/ex/MyException/hashCode.html @@ -68,7 +68,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/ex/MyException/noSuchMethod.html b/testing/test_package_docs/ex/MyException/noSuchMethod.html index c3b72f6175..a484ef4c45 100644 --- a/testing/test_package_docs/ex/MyException/noSuchMethod.html +++ b/testing/test_package_docs/ex/MyException/noSuchMethod.html @@ -65,7 +65,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/ex/MyException/operator_equals.html b/testing/test_package_docs/ex/MyException/operator_equals.html index f5fd83bfcb..5a2185aa58 100644 --- a/testing/test_package_docs/ex/MyException/operator_equals.html +++ b/testing/test_package_docs/ex/MyException/operator_equals.html @@ -65,7 +65,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/ex/MyException/runtimeType.html b/testing/test_package_docs/ex/MyException/runtimeType.html index f75b856594..af79773e29 100644 --- a/testing/test_package_docs/ex/MyException/runtimeType.html +++ b/testing/test_package_docs/ex/MyException/runtimeType.html @@ -68,7 +68,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/ex/MyException/toString.html b/testing/test_package_docs/ex/MyException/toString.html index 569b3b1110..113a0d11a8 100644 --- a/testing/test_package_docs/ex/MyException/toString.html +++ b/testing/test_package_docs/ex/MyException/toString.html @@ -65,7 +65,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/ex/MyExceptionImplements/hashCode.html b/testing/test_package_docs/ex/MyExceptionImplements/hashCode.html index 62d8149508..e11618f186 100644 --- a/testing/test_package_docs/ex/MyExceptionImplements/hashCode.html +++ b/testing/test_package_docs/ex/MyExceptionImplements/hashCode.html @@ -68,7 +68,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/ex/MyExceptionImplements/noSuchMethod.html b/testing/test_package_docs/ex/MyExceptionImplements/noSuchMethod.html index 713ba80ec5..cf035a9014 100644 --- a/testing/test_package_docs/ex/MyExceptionImplements/noSuchMethod.html +++ b/testing/test_package_docs/ex/MyExceptionImplements/noSuchMethod.html @@ -65,7 +65,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/ex/MyExceptionImplements/operator_equals.html b/testing/test_package_docs/ex/MyExceptionImplements/operator_equals.html index d24ecb5ce3..e76d404568 100644 --- a/testing/test_package_docs/ex/MyExceptionImplements/operator_equals.html +++ b/testing/test_package_docs/ex/MyExceptionImplements/operator_equals.html @@ -65,7 +65,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/ex/MyExceptionImplements/runtimeType.html b/testing/test_package_docs/ex/MyExceptionImplements/runtimeType.html index 833cc72418..9a4183a34c 100644 --- a/testing/test_package_docs/ex/MyExceptionImplements/runtimeType.html +++ b/testing/test_package_docs/ex/MyExceptionImplements/runtimeType.html @@ -68,7 +68,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/ex/MyExceptionImplements/toString.html b/testing/test_package_docs/ex/MyExceptionImplements/toString.html index a03fc72f34..423536f584 100644 --- a/testing/test_package_docs/ex/MyExceptionImplements/toString.html +++ b/testing/test_package_docs/ex/MyExceptionImplements/toString.html @@ -65,7 +65,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/ex/PRETTY_COLORS-constant.html b/testing/test_package_docs/ex/PRETTY_COLORS-constant.html index 00f2eba058..695cc1885d 100644 --- a/testing/test_package_docs/ex/PRETTY_COLORS-constant.html +++ b/testing/test_package_docs/ex/PRETTY_COLORS-constant.html @@ -107,10 +107,11 @@
ex library
-

PRETTY_COLORS top-level property

+

PRETTY_COLORS top-level constant

- PRETTY_COLORS = + const PRETTY_COLORS + = const <String> [COLOR_GREEN, COLOR_ORANGE, 'blue']
diff --git a/testing/test_package_docs/ex/ParameterizedClass/aInheritedField.html b/testing/test_package_docs/ex/ParameterizedClass/aInheritedField.html index 6b7609c581..e178599ca8 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/aInheritedField.html +++ b/testing/test_package_docs/ex/ParameterizedClass/aInheritedField.html @@ -71,7 +71,8 @@

aInheritedField property

AnotherParameterizedClass<T> - aInheritedField
read / write
+ aInheritedField +
read / write
diff --git a/testing/test_package_docs/ex/ParameterizedClass/aInheritedGetter.html b/testing/test_package_docs/ex/ParameterizedClass/aInheritedGetter.html index 54cd88bf6e..9d81c19683 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/aInheritedGetter.html +++ b/testing/test_package_docs/ex/ParameterizedClass/aInheritedGetter.html @@ -74,7 +74,8 @@

aInheritedGetter property

AnotherParameterizedClass<T> - aInheritedGetter + aInheritedGetter +
diff --git a/testing/test_package_docs/ex/ParameterizedClass/aInheritedMethod.html b/testing/test_package_docs/ex/ParameterizedClass/aInheritedMethod.html index bdfe58c54c..3248859744 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/aInheritedMethod.html +++ b/testing/test_package_docs/ex/ParameterizedClass/aInheritedMethod.html @@ -71,7 +71,8 @@

aInheritedMethod method

AnotherParameterizedClass<T> - aInheritedMethod(int foo) + aInheritedMethod +(int foo)
diff --git a/testing/test_package_docs/ex/ParameterizedClass/aInheritedSetter.html b/testing/test_package_docs/ex/ParameterizedClass/aInheritedSetter.html index f4214a5127..7263601940 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/aInheritedSetter.html +++ b/testing/test_package_docs/ex/ParameterizedClass/aInheritedSetter.html @@ -75,7 +75,8 @@

aInheritedSetter property

void - aInheritedSetter=(AnotherParameterizedClass<T> thingToSet) + aInheritedSetter= +(AnotherParameterizedClass<T> thingToSet)
diff --git a/testing/test_package_docs/ex/ParameterizedClass/aInheritedTypedefReturningMethod.html b/testing/test_package_docs/ex/ParameterizedClass/aInheritedTypedefReturningMethod.html index 573b02fe52..29432bb39b 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/aInheritedTypedefReturningMethod.html +++ b/testing/test_package_docs/ex/ParameterizedClass/aInheritedTypedefReturningMethod.html @@ -71,7 +71,8 @@

aInheritedTypedefReturningMethod method

ParameterizedTypedef<T> - aInheritedTypedefReturningMethod() + aInheritedTypedefReturningMethod +()
diff --git a/testing/test_package_docs/ex/ParameterizedClass/hashCode.html b/testing/test_package_docs/ex/ParameterizedClass/hashCode.html index e18c8941b4..fac6c4056b 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/hashCode.html +++ b/testing/test_package_docs/ex/ParameterizedClass/hashCode.html @@ -74,7 +74,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/ex/ParameterizedClass/noSuchMethod.html b/testing/test_package_docs/ex/ParameterizedClass/noSuchMethod.html index 690ebd8fa7..06dccd7256 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/noSuchMethod.html +++ b/testing/test_package_docs/ex/ParameterizedClass/noSuchMethod.html @@ -71,7 +71,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/ex/ParameterizedClass/operator_equals.html b/testing/test_package_docs/ex/ParameterizedClass/operator_equals.html index 20ac79adcf..b3f331e316 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/operator_equals.html +++ b/testing/test_package_docs/ex/ParameterizedClass/operator_equals.html @@ -71,7 +71,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/ex/ParameterizedClass/operator_plus.html b/testing/test_package_docs/ex/ParameterizedClass/operator_plus.html index 3ef106c271..67845d91ed 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/operator_plus.html +++ b/testing/test_package_docs/ex/ParameterizedClass/operator_plus.html @@ -71,7 +71,8 @@

operator + method

ParameterizedClass<T> - operator +(ParameterizedClass<T> other) + operator + +(ParameterizedClass<T> other)
diff --git a/testing/test_package_docs/ex/ParameterizedClass/runtimeType.html b/testing/test_package_docs/ex/ParameterizedClass/runtimeType.html index fb920fb970..635f4a5ffc 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/runtimeType.html +++ b/testing/test_package_docs/ex/ParameterizedClass/runtimeType.html @@ -74,7 +74,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/ex/ParameterizedClass/toString.html b/testing/test_package_docs/ex/ParameterizedClass/toString.html index 7408d181c8..6e4daa9ebd 100644 --- a/testing/test_package_docs/ex/ParameterizedClass/toString.html +++ b/testing/test_package_docs/ex/ParameterizedClass/toString.html @@ -71,7 +71,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/ex/ParameterizedTypedef.html b/testing/test_package_docs/ex/ParameterizedTypedef.html index 67686dd7ee..f0b2888149 100644 --- a/testing/test_package_docs/ex/ParameterizedTypedef.html +++ b/testing/test_package_docs/ex/ParameterizedTypedef.html @@ -111,7 +111,8 @@

ParameterizedTypedef<T> typedef

String - ParameterizedTypedef(T msg, int foo) + ParameterizedTypedef +(T msg, int foo)
diff --git a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/hashCode.html b/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/hashCode.html index 85c4fe6299..c65cb103b1 100644 --- a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/hashCode.html +++ b/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/hashCode.html @@ -69,7 +69,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/noSuchMethod.html b/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/noSuchMethod.html index 51ad97f177..66a830d535 100644 --- a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/noSuchMethod.html +++ b/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/noSuchMethod.html @@ -66,7 +66,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/operator_equals.html b/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/operator_equals.html index 0996924da8..b98e63e8a4 100644 --- a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/operator_equals.html +++ b/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/operator_equals.html @@ -66,7 +66,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/runtimeType.html b/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/runtimeType.html index 875f3f9804..cabaa1861f 100644 --- a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/runtimeType.html +++ b/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/runtimeType.html @@ -69,7 +69,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/test.html b/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/test.html index 53799057ce..d9c19e0918 100644 --- a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/test.html +++ b/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/test.html @@ -66,7 +66,8 @@

test method

void - test() + test +()
diff --git a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/toString.html b/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/toString.html index 9dad83537d..9233a6924e 100644 --- a/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/toString.html +++ b/testing/test_package_docs/ex/PublicClassExtendsPrivateClass/toString.html @@ -66,7 +66,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/hashCode.html b/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/hashCode.html index 712e211bda..4bc8a9b415 100644 --- a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/hashCode.html +++ b/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/hashCode.html @@ -69,7 +69,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/noSuchMethod.html b/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/noSuchMethod.html index ab886df467..3896127bf2 100644 --- a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/noSuchMethod.html +++ b/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/noSuchMethod.html @@ -66,7 +66,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/operator_equals.html b/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/operator_equals.html index 04369956da..a6b29fe14d 100644 --- a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/operator_equals.html +++ b/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/operator_equals.html @@ -66,7 +66,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/runtimeType.html b/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/runtimeType.html index 7565cdd2d4..d8dbd5cc07 100644 --- a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/runtimeType.html +++ b/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/runtimeType.html @@ -69,7 +69,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/test.html b/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/test.html index 6c4c77b7bf..0e3791943b 100644 --- a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/test.html +++ b/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/test.html @@ -71,7 +71,8 @@

test method

void - test() + test +()
diff --git a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/toString.html b/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/toString.html index f9c9fdf560..efdff28cf9 100644 --- a/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/toString.html +++ b/testing/test_package_docs/ex/PublicClassImplementsPrivateInterface/toString.html @@ -66,7 +66,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/ex/ShapeType-class.html b/testing/test_package_docs/ex/ShapeType-class.html index 4bfcf9306e..b5517b2333 100644 --- a/testing/test_package_docs/ex/ShapeType-class.html +++ b/testing/test_package_docs/ex/ShapeType-class.html @@ -196,24 +196,24 @@

Constants

ellipse - ShapeType + → const ShapeType
- const ShapeType._internal("Ellipse") + const ShapeType.ShapeType._internal("Ellipse")
rect - ShapeType + → const ShapeType
- const ShapeType._internal("Rect") + const ShapeType.ShapeType._internal("Rect")
diff --git a/testing/test_package_docs/ex/ShapeType/ellipse-constant.html b/testing/test_package_docs/ex/ShapeType/ellipse-constant.html index d1a559d3b6..d25cad3f5e 100644 --- a/testing/test_package_docs/ex/ShapeType/ellipse-constant.html +++ b/testing/test_package_docs/ex/ShapeType/ellipse-constant.html @@ -63,12 +63,13 @@
ShapeType class
-

ellipse property

+

ellipse constant

ShapeType - ellipse = - const ShapeType._internal("Ellipse") + const ellipse + = + const ShapeType.ShapeType._internal("Ellipse")
diff --git a/testing/test_package_docs/ex/ShapeType/hashCode.html b/testing/test_package_docs/ex/ShapeType/hashCode.html index e0f6c77d47..a0da420f4b 100644 --- a/testing/test_package_docs/ex/ShapeType/hashCode.html +++ b/testing/test_package_docs/ex/ShapeType/hashCode.html @@ -70,7 +70,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/ex/ShapeType/name.html b/testing/test_package_docs/ex/ShapeType/name.html index b80a4aac4d..fa3104a146 100644 --- a/testing/test_package_docs/ex/ShapeType/name.html +++ b/testing/test_package_docs/ex/ShapeType/name.html @@ -67,7 +67,8 @@

name property

String - name
final, inherited
+ name +
final, inherited
diff --git a/testing/test_package_docs/ex/ShapeType/noSuchMethod.html b/testing/test_package_docs/ex/ShapeType/noSuchMethod.html index 1bc0fc2074..e4053cf3fe 100644 --- a/testing/test_package_docs/ex/ShapeType/noSuchMethod.html +++ b/testing/test_package_docs/ex/ShapeType/noSuchMethod.html @@ -67,7 +67,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/ex/ShapeType/operator_equals.html b/testing/test_package_docs/ex/ShapeType/operator_equals.html index fe5a2c1fc3..a06cbfff7a 100644 --- a/testing/test_package_docs/ex/ShapeType/operator_equals.html +++ b/testing/test_package_docs/ex/ShapeType/operator_equals.html @@ -67,7 +67,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/ex/ShapeType/rect-constant.html b/testing/test_package_docs/ex/ShapeType/rect-constant.html index b6831d48f9..314b5b87dc 100644 --- a/testing/test_package_docs/ex/ShapeType/rect-constant.html +++ b/testing/test_package_docs/ex/ShapeType/rect-constant.html @@ -63,12 +63,13 @@
ShapeType class
-

rect property

+

rect constant

ShapeType - rect = - const ShapeType._internal("Rect") + const rect + = + const ShapeType.ShapeType._internal("Rect")
diff --git a/testing/test_package_docs/ex/ShapeType/runtimeType.html b/testing/test_package_docs/ex/ShapeType/runtimeType.html index 16788585af..a279cd62cb 100644 --- a/testing/test_package_docs/ex/ShapeType/runtimeType.html +++ b/testing/test_package_docs/ex/ShapeType/runtimeType.html @@ -70,7 +70,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/ex/ShapeType/toString.html b/testing/test_package_docs/ex/ShapeType/toString.html index 796555c725..cc6e432ef4 100644 --- a/testing/test_package_docs/ex/ShapeType/toString.html +++ b/testing/test_package_docs/ex/ShapeType/toString.html @@ -72,7 +72,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/ex/ShortName/aParameter.html b/testing/test_package_docs/ex/ShortName/aParameter.html index 97d67fdb7a..1b91fc133b 100644 --- a/testing/test_package_docs/ex/ShortName/aParameter.html +++ b/testing/test_package_docs/ex/ShortName/aParameter.html @@ -66,7 +66,8 @@

aParameter property

String - aParameter
final
+ aParameter +
final
diff --git a/testing/test_package_docs/ex/ShortName/hashCode.html b/testing/test_package_docs/ex/ShortName/hashCode.html index 3e1a49dbac..86deeb417b 100644 --- a/testing/test_package_docs/ex/ShortName/hashCode.html +++ b/testing/test_package_docs/ex/ShortName/hashCode.html @@ -69,7 +69,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/ex/ShortName/noSuchMethod.html b/testing/test_package_docs/ex/ShortName/noSuchMethod.html index c4d9fe6a69..c3559eb69f 100644 --- a/testing/test_package_docs/ex/ShortName/noSuchMethod.html +++ b/testing/test_package_docs/ex/ShortName/noSuchMethod.html @@ -66,7 +66,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/ex/ShortName/operator_equals.html b/testing/test_package_docs/ex/ShortName/operator_equals.html index 4d803779b5..278d6ebfaf 100644 --- a/testing/test_package_docs/ex/ShortName/operator_equals.html +++ b/testing/test_package_docs/ex/ShortName/operator_equals.html @@ -66,7 +66,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/ex/ShortName/runtimeType.html b/testing/test_package_docs/ex/ShortName/runtimeType.html index 7d4c1f4479..1165a4f43e 100644 --- a/testing/test_package_docs/ex/ShortName/runtimeType.html +++ b/testing/test_package_docs/ex/ShortName/runtimeType.html @@ -69,7 +69,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/ex/ShortName/toString.html b/testing/test_package_docs/ex/ShortName/toString.html index f9570ea3c6..ad4ddea877 100644 --- a/testing/test_package_docs/ex/ShortName/toString.html +++ b/testing/test_package_docs/ex/ShortName/toString.html @@ -66,7 +66,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/ex/SpecializedDuration/abs.html b/testing/test_package_docs/ex/SpecializedDuration/abs.html index d4c7bb1dfb..00909237a0 100644 --- a/testing/test_package_docs/ex/SpecializedDuration/abs.html +++ b/testing/test_package_docs/ex/SpecializedDuration/abs.html @@ -83,7 +83,8 @@

abs method

Duration - abs() + abs +()
diff --git a/testing/test_package_docs/ex/SpecializedDuration/compareTo.html b/testing/test_package_docs/ex/SpecializedDuration/compareTo.html index ffc6449db4..1676fbde9f 100644 --- a/testing/test_package_docs/ex/SpecializedDuration/compareTo.html +++ b/testing/test_package_docs/ex/SpecializedDuration/compareTo.html @@ -83,7 +83,8 @@

compareTo method

int - compareTo(Duration other) + compareTo +(Duration other)
diff --git a/testing/test_package_docs/ex/SpecializedDuration/hashCode.html b/testing/test_package_docs/ex/SpecializedDuration/hashCode.html index c8cd9afed5..7e528f08f0 100644 --- a/testing/test_package_docs/ex/SpecializedDuration/hashCode.html +++ b/testing/test_package_docs/ex/SpecializedDuration/hashCode.html @@ -86,7 +86,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/ex/SpecializedDuration/inDays.html b/testing/test_package_docs/ex/SpecializedDuration/inDays.html index 7b1ce1a067..eb5d074c1a 100644 --- a/testing/test_package_docs/ex/SpecializedDuration/inDays.html +++ b/testing/test_package_docs/ex/SpecializedDuration/inDays.html @@ -86,7 +86,8 @@

inDays property

int - inDays
inherited
+ inDays +
inherited
diff --git a/testing/test_package_docs/ex/SpecializedDuration/inHours.html b/testing/test_package_docs/ex/SpecializedDuration/inHours.html index b35844738a..263d697328 100644 --- a/testing/test_package_docs/ex/SpecializedDuration/inHours.html +++ b/testing/test_package_docs/ex/SpecializedDuration/inHours.html @@ -86,7 +86,8 @@

inHours property

int - inHours
inherited
+ inHours +
inherited
diff --git a/testing/test_package_docs/ex/SpecializedDuration/inMicroseconds.html b/testing/test_package_docs/ex/SpecializedDuration/inMicroseconds.html index a9253b2f35..3e3e9c3131 100644 --- a/testing/test_package_docs/ex/SpecializedDuration/inMicroseconds.html +++ b/testing/test_package_docs/ex/SpecializedDuration/inMicroseconds.html @@ -86,7 +86,8 @@

inMicroseconds property

int - inMicroseconds
inherited
+ inMicroseconds +
inherited
diff --git a/testing/test_package_docs/ex/SpecializedDuration/inMilliseconds.html b/testing/test_package_docs/ex/SpecializedDuration/inMilliseconds.html index f9e319e93c..ad5fd1f59a 100644 --- a/testing/test_package_docs/ex/SpecializedDuration/inMilliseconds.html +++ b/testing/test_package_docs/ex/SpecializedDuration/inMilliseconds.html @@ -86,7 +86,8 @@

inMilliseconds property

int - inMilliseconds
inherited
+ inMilliseconds +
inherited
diff --git a/testing/test_package_docs/ex/SpecializedDuration/inMinutes.html b/testing/test_package_docs/ex/SpecializedDuration/inMinutes.html index 49ef51efb8..0af2e7d259 100644 --- a/testing/test_package_docs/ex/SpecializedDuration/inMinutes.html +++ b/testing/test_package_docs/ex/SpecializedDuration/inMinutes.html @@ -86,7 +86,8 @@

inMinutes property

int - inMinutes
inherited
+ inMinutes +
inherited
diff --git a/testing/test_package_docs/ex/SpecializedDuration/inSeconds.html b/testing/test_package_docs/ex/SpecializedDuration/inSeconds.html index 8692bd1b65..2d07fe9491 100644 --- a/testing/test_package_docs/ex/SpecializedDuration/inSeconds.html +++ b/testing/test_package_docs/ex/SpecializedDuration/inSeconds.html @@ -86,7 +86,8 @@

inSeconds property

int - inSeconds
inherited
+ inSeconds +
inherited
diff --git a/testing/test_package_docs/ex/SpecializedDuration/isNegative.html b/testing/test_package_docs/ex/SpecializedDuration/isNegative.html index 0640b79ad5..41a9fade8d 100644 --- a/testing/test_package_docs/ex/SpecializedDuration/isNegative.html +++ b/testing/test_package_docs/ex/SpecializedDuration/isNegative.html @@ -86,7 +86,8 @@

isNegative property

bool - isNegative
inherited
+ isNegative +
inherited
diff --git a/testing/test_package_docs/ex/SpecializedDuration/noSuchMethod.html b/testing/test_package_docs/ex/SpecializedDuration/noSuchMethod.html index 6e65926aca..9a7f86a87d 100644 --- a/testing/test_package_docs/ex/SpecializedDuration/noSuchMethod.html +++ b/testing/test_package_docs/ex/SpecializedDuration/noSuchMethod.html @@ -83,7 +83,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/ex/SpecializedDuration/operator_equals.html b/testing/test_package_docs/ex/SpecializedDuration/operator_equals.html index d4c0ed00c4..d457e6e66f 100644 --- a/testing/test_package_docs/ex/SpecializedDuration/operator_equals.html +++ b/testing/test_package_docs/ex/SpecializedDuration/operator_equals.html @@ -83,7 +83,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/ex/SpecializedDuration/operator_greater.html b/testing/test_package_docs/ex/SpecializedDuration/operator_greater.html index 9cf8018dfa..30bebd6f85 100644 --- a/testing/test_package_docs/ex/SpecializedDuration/operator_greater.html +++ b/testing/test_package_docs/ex/SpecializedDuration/operator_greater.html @@ -83,7 +83,8 @@

operator > method

bool - operator >(Duration other) + operator > +(Duration other)
diff --git a/testing/test_package_docs/ex/SpecializedDuration/operator_greater_equal.html b/testing/test_package_docs/ex/SpecializedDuration/operator_greater_equal.html index 7711ee6d64..000eb5326b 100644 --- a/testing/test_package_docs/ex/SpecializedDuration/operator_greater_equal.html +++ b/testing/test_package_docs/ex/SpecializedDuration/operator_greater_equal.html @@ -83,7 +83,8 @@

operator >= method

bool - operator >=(Duration other) + operator >= +(Duration other)
diff --git a/testing/test_package_docs/ex/SpecializedDuration/operator_less.html b/testing/test_package_docs/ex/SpecializedDuration/operator_less.html index 1a50fc106a..0611bba70b 100644 --- a/testing/test_package_docs/ex/SpecializedDuration/operator_less.html +++ b/testing/test_package_docs/ex/SpecializedDuration/operator_less.html @@ -83,7 +83,8 @@

operator < method

bool - operator <(Duration other) + operator < +(Duration other)
diff --git a/testing/test_package_docs/ex/SpecializedDuration/operator_less_equal.html b/testing/test_package_docs/ex/SpecializedDuration/operator_less_equal.html index b40b76c770..b94683ca1a 100644 --- a/testing/test_package_docs/ex/SpecializedDuration/operator_less_equal.html +++ b/testing/test_package_docs/ex/SpecializedDuration/operator_less_equal.html @@ -83,7 +83,8 @@

operator <= method

bool - operator <=(Duration other) + operator <= +(Duration other)
diff --git a/testing/test_package_docs/ex/SpecializedDuration/operator_minus.html b/testing/test_package_docs/ex/SpecializedDuration/operator_minus.html index 56fe9d8634..52adb6be6d 100644 --- a/testing/test_package_docs/ex/SpecializedDuration/operator_minus.html +++ b/testing/test_package_docs/ex/SpecializedDuration/operator_minus.html @@ -83,7 +83,8 @@

operator - method

Duration - operator -(Duration other) + operator - +(Duration other)
diff --git a/testing/test_package_docs/ex/SpecializedDuration/operator_multiply.html b/testing/test_package_docs/ex/SpecializedDuration/operator_multiply.html index 68a40111b6..3b66f690d9 100644 --- a/testing/test_package_docs/ex/SpecializedDuration/operator_multiply.html +++ b/testing/test_package_docs/ex/SpecializedDuration/operator_multiply.html @@ -83,7 +83,8 @@

operator * method

Duration - operator *(num factor) + operator * +(num factor)
diff --git a/testing/test_package_docs/ex/SpecializedDuration/operator_plus.html b/testing/test_package_docs/ex/SpecializedDuration/operator_plus.html index 6be545b46f..7731a60055 100644 --- a/testing/test_package_docs/ex/SpecializedDuration/operator_plus.html +++ b/testing/test_package_docs/ex/SpecializedDuration/operator_plus.html @@ -83,7 +83,8 @@

operator + method

Duration - operator +(Duration other) + operator + +(Duration other)
diff --git a/testing/test_package_docs/ex/SpecializedDuration/operator_truncate_divide.html b/testing/test_package_docs/ex/SpecializedDuration/operator_truncate_divide.html index 9bc27a8bda..96cf44f6c3 100644 --- a/testing/test_package_docs/ex/SpecializedDuration/operator_truncate_divide.html +++ b/testing/test_package_docs/ex/SpecializedDuration/operator_truncate_divide.html @@ -83,7 +83,8 @@

operator ~/ method

Duration - operator ~/(int quotient) + operator ~/ +(int quotient)
diff --git a/testing/test_package_docs/ex/SpecializedDuration/operator_unary_minus.html b/testing/test_package_docs/ex/SpecializedDuration/operator_unary_minus.html index 6116b5cb8b..06c1410903 100644 --- a/testing/test_package_docs/ex/SpecializedDuration/operator_unary_minus.html +++ b/testing/test_package_docs/ex/SpecializedDuration/operator_unary_minus.html @@ -83,7 +83,8 @@

operator unary- method

Duration - operator unary-() + operator unary- +()
diff --git a/testing/test_package_docs/ex/SpecializedDuration/runtimeType.html b/testing/test_package_docs/ex/SpecializedDuration/runtimeType.html index cff0b88137..e4b4e4cad7 100644 --- a/testing/test_package_docs/ex/SpecializedDuration/runtimeType.html +++ b/testing/test_package_docs/ex/SpecializedDuration/runtimeType.html @@ -86,7 +86,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/ex/SpecializedDuration/toString.html b/testing/test_package_docs/ex/SpecializedDuration/toString.html index 0d31a411c1..352f624484 100644 --- a/testing/test_package_docs/ex/SpecializedDuration/toString.html +++ b/testing/test_package_docs/ex/SpecializedDuration/toString.html @@ -83,7 +83,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/ex/TemplatedClass/aMethod.html b/testing/test_package_docs/ex/TemplatedClass/aMethod.html index c1788bdd12..4bb9932a08 100644 --- a/testing/test_package_docs/ex/TemplatedClass/aMethod.html +++ b/testing/test_package_docs/ex/TemplatedClass/aMethod.html @@ -66,7 +66,8 @@

aMethod method

int - aMethod(X input) + aMethod +(X input)
diff --git a/testing/test_package_docs/ex/TemplatedClass/hashCode.html b/testing/test_package_docs/ex/TemplatedClass/hashCode.html index cf246b34f6..fb0b376286 100644 --- a/testing/test_package_docs/ex/TemplatedClass/hashCode.html +++ b/testing/test_package_docs/ex/TemplatedClass/hashCode.html @@ -69,7 +69,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/ex/TemplatedClass/noSuchMethod.html b/testing/test_package_docs/ex/TemplatedClass/noSuchMethod.html index 43444b0859..ba0c63c75f 100644 --- a/testing/test_package_docs/ex/TemplatedClass/noSuchMethod.html +++ b/testing/test_package_docs/ex/TemplatedClass/noSuchMethod.html @@ -66,7 +66,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/ex/TemplatedClass/operator_equals.html b/testing/test_package_docs/ex/TemplatedClass/operator_equals.html index aac6e6560e..de1648c493 100644 --- a/testing/test_package_docs/ex/TemplatedClass/operator_equals.html +++ b/testing/test_package_docs/ex/TemplatedClass/operator_equals.html @@ -66,7 +66,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/ex/TemplatedClass/runtimeType.html b/testing/test_package_docs/ex/TemplatedClass/runtimeType.html index d87b9d8932..193151de83 100644 --- a/testing/test_package_docs/ex/TemplatedClass/runtimeType.html +++ b/testing/test_package_docs/ex/TemplatedClass/runtimeType.html @@ -69,7 +69,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/ex/TemplatedClass/toString.html b/testing/test_package_docs/ex/TemplatedClass/toString.html index ffdaf20718..228625a73c 100644 --- a/testing/test_package_docs/ex/TemplatedClass/toString.html +++ b/testing/test_package_docs/ex/TemplatedClass/toString.html @@ -66,7 +66,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/ex/TemplatedInterface/aField.html b/testing/test_package_docs/ex/TemplatedInterface/aField.html index 2c262d4f2e..6a47417d5e 100644 --- a/testing/test_package_docs/ex/TemplatedInterface/aField.html +++ b/testing/test_package_docs/ex/TemplatedInterface/aField.html @@ -76,7 +76,8 @@

aField property

AnotherParameterizedClass<Stream<List<int>>> - aField
read / write
+ aField +
read / write
diff --git a/testing/test_package_docs/ex/TemplatedInterface/aGetter.html b/testing/test_package_docs/ex/TemplatedInterface/aGetter.html index df9ad3416b..5f07fb4796 100644 --- a/testing/test_package_docs/ex/TemplatedInterface/aGetter.html +++ b/testing/test_package_docs/ex/TemplatedInterface/aGetter.html @@ -79,7 +79,8 @@

aGetter property

AnotherParameterizedClass<Map<A, List<String>>> - aGetter + aGetter +
diff --git a/testing/test_package_docs/ex/TemplatedInterface/aMethodInterface.html b/testing/test_package_docs/ex/TemplatedInterface/aMethodInterface.html index 6862a6e022..6cc47144ae 100644 --- a/testing/test_package_docs/ex/TemplatedInterface/aMethodInterface.html +++ b/testing/test_package_docs/ex/TemplatedInterface/aMethodInterface.html @@ -76,7 +76,8 @@

aMethodInterface method

AnotherParameterizedClass<List<int>> - aMethodInterface(A value) + aMethodInterface +(A value)
diff --git a/testing/test_package_docs/ex/TemplatedInterface/aSetter.html b/testing/test_package_docs/ex/TemplatedInterface/aSetter.html index 2b3a5739ad..d466d9735c 100644 --- a/testing/test_package_docs/ex/TemplatedInterface/aSetter.html +++ b/testing/test_package_docs/ex/TemplatedInterface/aSetter.html @@ -80,7 +80,8 @@

aSetter property

void - aSetter=(AnotherParameterizedClass<List<bool>> thingToSet) + aSetter= +(AnotherParameterizedClass<List<bool>> thingToSet)
diff --git a/testing/test_package_docs/ex/TemplatedInterface/aTypedefReturningMethodInterface.html b/testing/test_package_docs/ex/TemplatedInterface/aTypedefReturningMethodInterface.html index 5ea6dcfc1c..2e91d887f6 100644 --- a/testing/test_package_docs/ex/TemplatedInterface/aTypedefReturningMethodInterface.html +++ b/testing/test_package_docs/ex/TemplatedInterface/aTypedefReturningMethodInterface.html @@ -76,7 +76,8 @@

aTypedefReturningMethodInterface method

ParameterizedTypedef<List<String>> - aTypedefReturningMethodInterface() + aTypedefReturningMethodInterface +()
diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAComplexTypedef.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAComplexTypedef.html index c4572a327b..b5978b94f8 100644 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAComplexTypedef.html +++ b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAComplexTypedef.html @@ -68,7 +68,8 @@

getAComplexTypedef<A4, A5, A6> method

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

Returns a complex typedef that includes some anonymous typed functions.

diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningBool.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningBool.html index d34f1f2cc7..e3b9e6da91 100644 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningBool.html +++ b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningBool.html @@ -68,7 +68,8 @@

getAFunctionReturningBool<T1, T2, T3> method

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

This helps us make sure we get both the empty and the non-empty diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningVoid.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningVoid.html index 37169895c8..989fc47521 100644 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningVoid.html +++ b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/getAFunctionReturningVoid.html @@ -68,7 +68,8 @@

getAFunctionReturningVoid<T1, T2> method

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

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

diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/hashCode.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/hashCode.html index 6cdac90ced..d8ea2ee474 100644 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/hashCode.html +++ b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/hashCode.html @@ -71,7 +71,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/noSuchMethod.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/noSuchMethod.html index 38603c0db4..001c957524 100644 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/noSuchMethod.html +++ b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/noSuchMethod.html @@ -68,7 +68,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/operator_equals.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/operator_equals.html index 568ebf89c4..9452c20031 100644 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/operator_equals.html +++ b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/operator_equals.html @@ -68,7 +68,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/runtimeType.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/runtimeType.html index 8e64d66689..d437cc77b4 100644 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/runtimeType.html +++ b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/runtimeType.html @@ -71,7 +71,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/toString.html b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/toString.html index be160a3b79..318258a4ad 100644 --- a/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/toString.html +++ b/testing/test_package_docs/ex/TypedFunctionsWithoutTypedefs/toString.html @@ -68,7 +68,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/ex/WithGeneric/hashCode.html b/testing/test_package_docs/ex/WithGeneric/hashCode.html index 02face6ecc..1a36bb89f7 100644 --- a/testing/test_package_docs/ex/WithGeneric/hashCode.html +++ b/testing/test_package_docs/ex/WithGeneric/hashCode.html @@ -69,7 +69,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/ex/WithGeneric/noSuchMethod.html b/testing/test_package_docs/ex/WithGeneric/noSuchMethod.html index 7937398b45..6dcff3193f 100644 --- a/testing/test_package_docs/ex/WithGeneric/noSuchMethod.html +++ b/testing/test_package_docs/ex/WithGeneric/noSuchMethod.html @@ -66,7 +66,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/ex/WithGeneric/operator_equals.html b/testing/test_package_docs/ex/WithGeneric/operator_equals.html index 37a2ebd3c0..a64a0a84f6 100644 --- a/testing/test_package_docs/ex/WithGeneric/operator_equals.html +++ b/testing/test_package_docs/ex/WithGeneric/operator_equals.html @@ -66,7 +66,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/ex/WithGeneric/prop.html b/testing/test_package_docs/ex/WithGeneric/prop.html index 59351de314..403398171a 100644 --- a/testing/test_package_docs/ex/WithGeneric/prop.html +++ b/testing/test_package_docs/ex/WithGeneric/prop.html @@ -66,7 +66,8 @@

prop property

T - prop
read / write
+ prop +
read / write
diff --git a/testing/test_package_docs/ex/WithGeneric/runtimeType.html b/testing/test_package_docs/ex/WithGeneric/runtimeType.html index 19c7cb01eb..fa8e210967 100644 --- a/testing/test_package_docs/ex/WithGeneric/runtimeType.html +++ b/testing/test_package_docs/ex/WithGeneric/runtimeType.html @@ -69,7 +69,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/ex/WithGeneric/toString.html b/testing/test_package_docs/ex/WithGeneric/toString.html index 418f236b2a..08dd0f26e0 100644 --- a/testing/test_package_docs/ex/WithGeneric/toString.html +++ b/testing/test_package_docs/ex/WithGeneric/toString.html @@ -66,7 +66,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/ex/aComplexTypedef.html b/testing/test_package_docs/ex/aComplexTypedef.html index 59aee60532..5094a3be92 100644 --- a/testing/test_package_docs/ex/aComplexTypedef.html +++ b/testing/test_package_docs/ex/aComplexTypedef.html @@ -111,7 +111,8 @@

aComplexTypedef<A1, A2, A3> typedef

Function(A1, A2, A3) - aComplexTypedef(A3, String) + aComplexTypedef +(A3, String)
diff --git a/testing/test_package_docs/ex/aThingToDo/hashCode.html b/testing/test_package_docs/ex/aThingToDo/hashCode.html index 10a4c75b68..e6dc0cbedf 100644 --- a/testing/test_package_docs/ex/aThingToDo/hashCode.html +++ b/testing/test_package_docs/ex/aThingToDo/hashCode.html @@ -70,7 +70,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/ex/aThingToDo/noSuchMethod.html b/testing/test_package_docs/ex/aThingToDo/noSuchMethod.html index 8b2352b942..9c221e9465 100644 --- a/testing/test_package_docs/ex/aThingToDo/noSuchMethod.html +++ b/testing/test_package_docs/ex/aThingToDo/noSuchMethod.html @@ -67,7 +67,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/ex/aThingToDo/operator_equals.html b/testing/test_package_docs/ex/aThingToDo/operator_equals.html index d23771a7f3..313c71e67c 100644 --- a/testing/test_package_docs/ex/aThingToDo/operator_equals.html +++ b/testing/test_package_docs/ex/aThingToDo/operator_equals.html @@ -67,7 +67,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/ex/aThingToDo/runtimeType.html b/testing/test_package_docs/ex/aThingToDo/runtimeType.html index ba8f5abfc5..4e2463c1a5 100644 --- a/testing/test_package_docs/ex/aThingToDo/runtimeType.html +++ b/testing/test_package_docs/ex/aThingToDo/runtimeType.html @@ -70,7 +70,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/ex/aThingToDo/toString.html b/testing/test_package_docs/ex/aThingToDo/toString.html index 37587ecddf..83da70f0bd 100644 --- a/testing/test_package_docs/ex/aThingToDo/toString.html +++ b/testing/test_package_docs/ex/aThingToDo/toString.html @@ -67,7 +67,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/ex/aThingToDo/what.html b/testing/test_package_docs/ex/aThingToDo/what.html index ca02f54bed..8cae52f5ae 100644 --- a/testing/test_package_docs/ex/aThingToDo/what.html +++ b/testing/test_package_docs/ex/aThingToDo/what.html @@ -67,7 +67,8 @@

what property

String - what
final
+ what +
final
diff --git a/testing/test_package_docs/ex/aThingToDo/who.html b/testing/test_package_docs/ex/aThingToDo/who.html index e23910a64a..415b04d457 100644 --- a/testing/test_package_docs/ex/aThingToDo/who.html +++ b/testing/test_package_docs/ex/aThingToDo/who.html @@ -67,7 +67,8 @@

who property

String - who
final
+ who +
final
diff --git a/testing/test_package_docs/ex/deprecated-constant.html b/testing/test_package_docs/ex/deprecated-constant.html index d4b8921417..18003b8516 100644 --- a/testing/test_package_docs/ex/deprecated-constant.html +++ b/testing/test_package_docs/ex/deprecated-constant.html @@ -107,11 +107,12 @@
ex library
-

deprecated top-level property

+

deprecated top-level constant

- deprecated = - const Deprecated("next release") + const deprecated + = + const Deprecated("next release")
diff --git a/testing/test_package_docs/ex/deprecatedField.html b/testing/test_package_docs/ex/deprecatedField.html index 5e88f9c703..c7c359cbb0 100644 --- a/testing/test_package_docs/ex/deprecatedField.html +++ b/testing/test_package_docs/ex/deprecatedField.html @@ -111,7 +111,8 @@

deprecatedField top-level property

int - deprecatedField
read / write
+ deprecatedField +
read / write
diff --git a/testing/test_package_docs/ex/deprecatedGetter.html b/testing/test_package_docs/ex/deprecatedGetter.html index 62e9118276..2d2cf1684f 100644 --- a/testing/test_package_docs/ex/deprecatedGetter.html +++ b/testing/test_package_docs/ex/deprecatedGetter.html @@ -114,7 +114,8 @@

deprecatedGetter top-level property

int - deprecatedGetter + deprecatedGetter +
diff --git a/testing/test_package_docs/ex/deprecatedSetter.html b/testing/test_package_docs/ex/deprecatedSetter.html index b6f3fd77ef..390dc985fd 100644 --- a/testing/test_package_docs/ex/deprecatedSetter.html +++ b/testing/test_package_docs/ex/deprecatedSetter.html @@ -115,7 +115,8 @@

deprecatedSetter top-level property

void - deprecatedSetter=(int value) + deprecatedSetter= +(int value)
diff --git a/testing/test_package_docs/ex/ex-library.html b/testing/test_package_docs/ex/ex-library.html index 93dd490c76..ae64f9c292 100644 --- a/testing/test_package_docs/ex/ex-library.html +++ b/testing/test_package_docs/ex/ex-library.html @@ -244,7 +244,7 @@

Constants

COLOR - → String + → const String
@@ -255,7 +255,7 @@

Constants

COLOR_GREEN - → String + → const String
@@ -266,7 +266,7 @@

Constants

COLOR_ORANGE - → String + → const String
@@ -277,7 +277,7 @@

Constants

COMPLEX_COLOR - → String + → const String
@@ -288,18 +288,18 @@

Constants

deprecated - Deprecated + → const Deprecated
- const Deprecated("next release") + const Deprecated("next release")
incorrectDocReference - → dynamic + → const dynamic
This is the same name as a top-level const from the fake lib. @@ -310,7 +310,7 @@

Constants

incorrectDocReferenceFromEx - → dynamic + → const dynamic
This should not work. @@ -321,18 +321,18 @@

Constants

MY_CAT - ConstantCat + → const ConstantCat
- const ConstantCat('tabby') + const ConstantCat('tabby')
PRETTY_COLORS - → List<String> + → const List<String>
diff --git a/testing/test_package_docs/ex/function1.html b/testing/test_package_docs/ex/function1.html index ca2e36d3f2..627fe3f6c1 100644 --- a/testing/test_package_docs/ex/function1.html +++ b/testing/test_package_docs/ex/function1.html @@ -111,7 +111,8 @@

function1 function

int - function1(String s, bool b, lastParam) + function1 +(String s, bool b, lastParam)
diff --git a/testing/test_package_docs/ex/genericFunction.html b/testing/test_package_docs/ex/genericFunction.html index 857b40bb70..918c6c3a2c 100644 --- a/testing/test_package_docs/ex/genericFunction.html +++ b/testing/test_package_docs/ex/genericFunction.html @@ -111,7 +111,8 @@

genericFunction<T> function

T - genericFunction<T>(T arg) + genericFunction +<T>(T arg)
diff --git a/testing/test_package_docs/ex/incorrectDocReference-constant.html b/testing/test_package_docs/ex/incorrectDocReference-constant.html index 926f9f6523..512d5924eb 100644 --- a/testing/test_package_docs/ex/incorrectDocReference-constant.html +++ b/testing/test_package_docs/ex/incorrectDocReference-constant.html @@ -107,10 +107,11 @@
ex library
-

incorrectDocReference top-level property

+

incorrectDocReference top-level constant

- incorrectDocReference = + const incorrectDocReference + = 'same name as const from fake'
diff --git a/testing/test_package_docs/ex/incorrectDocReferenceFromEx-constant.html b/testing/test_package_docs/ex/incorrectDocReferenceFromEx-constant.html index 4862d1efc3..dc4d8782ec 100644 --- a/testing/test_package_docs/ex/incorrectDocReferenceFromEx-constant.html +++ b/testing/test_package_docs/ex/incorrectDocReferenceFromEx-constant.html @@ -107,10 +107,11 @@
ex library
-

incorrectDocReferenceFromEx top-level property

+

incorrectDocReferenceFromEx top-level constant

- incorrectDocReferenceFromEx = + const incorrectDocReferenceFromEx + = 'doh'
diff --git a/testing/test_package_docs/ex/number.html b/testing/test_package_docs/ex/number.html index d1a054576f..8751c4409f 100644 --- a/testing/test_package_docs/ex/number.html +++ b/testing/test_package_docs/ex/number.html @@ -111,7 +111,8 @@

number top-level property

double - number
read / write
+ number +
read / write
diff --git a/testing/test_package_docs/ex/processMessage.html b/testing/test_package_docs/ex/processMessage.html index 7e2426c7e3..161d13c3bb 100644 --- a/testing/test_package_docs/ex/processMessage.html +++ b/testing/test_package_docs/ex/processMessage.html @@ -111,7 +111,8 @@

processMessage<T> typedef

String - processMessage(String msg) + processMessage +(String msg)
diff --git a/testing/test_package_docs/ex/y.html b/testing/test_package_docs/ex/y.html index d1df70c448..84522932d9 100644 --- a/testing/test_package_docs/ex/y.html +++ b/testing/test_package_docs/ex/y.html @@ -114,7 +114,8 @@

y top-level property

dynamic - y + y +
diff --git a/testing/test_package_docs/fake/AMixinCallingSuper/superString.html b/testing/test_package_docs/fake/AMixinCallingSuper/superString.html index f26116e4f1..dcf615559f 100644 --- a/testing/test_package_docs/fake/AMixinCallingSuper/superString.html +++ b/testing/test_package_docs/fake/AMixinCallingSuper/superString.html @@ -69,7 +69,8 @@

superString property

String - superString + superString +
diff --git a/testing/test_package_docs/fake/Annotation/hashCode.html b/testing/test_package_docs/fake/Annotation/hashCode.html index 70dbaf6dfd..2f9c64c8c1 100644 --- a/testing/test_package_docs/fake/Annotation/hashCode.html +++ b/testing/test_package_docs/fake/Annotation/hashCode.html @@ -69,7 +69,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/fake/Annotation/noSuchMethod.html b/testing/test_package_docs/fake/Annotation/noSuchMethod.html index 4fbcb16999..6b8335a21d 100644 --- a/testing/test_package_docs/fake/Annotation/noSuchMethod.html +++ b/testing/test_package_docs/fake/Annotation/noSuchMethod.html @@ -66,7 +66,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/fake/Annotation/operator_equals.html b/testing/test_package_docs/fake/Annotation/operator_equals.html index 12fad2a069..79e078dc3c 100644 --- a/testing/test_package_docs/fake/Annotation/operator_equals.html +++ b/testing/test_package_docs/fake/Annotation/operator_equals.html @@ -66,7 +66,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/fake/Annotation/runtimeType.html b/testing/test_package_docs/fake/Annotation/runtimeType.html index 4319e149be..42767c84c2 100644 --- a/testing/test_package_docs/fake/Annotation/runtimeType.html +++ b/testing/test_package_docs/fake/Annotation/runtimeType.html @@ -69,7 +69,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/fake/Annotation/toString.html b/testing/test_package_docs/fake/Annotation/toString.html index 9ed1d6be5f..bb083ec843 100644 --- a/testing/test_package_docs/fake/Annotation/toString.html +++ b/testing/test_package_docs/fake/Annotation/toString.html @@ -66,7 +66,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/fake/Annotation/value.html b/testing/test_package_docs/fake/Annotation/value.html index 5bf5debcd0..bc74d6f4d9 100644 --- a/testing/test_package_docs/fake/Annotation/value.html +++ b/testing/test_package_docs/fake/Annotation/value.html @@ -66,7 +66,8 @@

value property

String - value
final
+ value +
final
diff --git a/testing/test_package_docs/fake/AnotherInterface/hashCode.html b/testing/test_package_docs/fake/AnotherInterface/hashCode.html index 950580e163..7f7808caf0 100644 --- a/testing/test_package_docs/fake/AnotherInterface/hashCode.html +++ b/testing/test_package_docs/fake/AnotherInterface/hashCode.html @@ -68,7 +68,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/fake/AnotherInterface/noSuchMethod.html b/testing/test_package_docs/fake/AnotherInterface/noSuchMethod.html index 2d7bc334cf..ebd2488945 100644 --- a/testing/test_package_docs/fake/AnotherInterface/noSuchMethod.html +++ b/testing/test_package_docs/fake/AnotherInterface/noSuchMethod.html @@ -65,7 +65,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/fake/AnotherInterface/operator_equals.html b/testing/test_package_docs/fake/AnotherInterface/operator_equals.html index 98ba16224e..3f7dfe688a 100644 --- a/testing/test_package_docs/fake/AnotherInterface/operator_equals.html +++ b/testing/test_package_docs/fake/AnotherInterface/operator_equals.html @@ -65,7 +65,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/fake/AnotherInterface/runtimeType.html b/testing/test_package_docs/fake/AnotherInterface/runtimeType.html index ec851d0a40..5adc30e19d 100644 --- a/testing/test_package_docs/fake/AnotherInterface/runtimeType.html +++ b/testing/test_package_docs/fake/AnotherInterface/runtimeType.html @@ -68,7 +68,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/fake/AnotherInterface/toString.html b/testing/test_package_docs/fake/AnotherInterface/toString.html index 73fe3f1b57..38a56aa916 100644 --- a/testing/test_package_docs/fake/AnotherInterface/toString.html +++ b/testing/test_package_docs/fake/AnotherInterface/toString.html @@ -65,7 +65,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/fake/BaseForDocComments/anotherMethod.html b/testing/test_package_docs/fake/BaseForDocComments/anotherMethod.html index 6fb4e00101..3835051955 100644 --- a/testing/test_package_docs/fake/BaseForDocComments/anotherMethod.html +++ b/testing/test_package_docs/fake/BaseForDocComments/anotherMethod.html @@ -67,7 +67,8 @@

anotherMethod method

void - anotherMethod() + anotherMethod +()
diff --git a/testing/test_package_docs/fake/BaseForDocComments/doAwesomeStuff.html b/testing/test_package_docs/fake/BaseForDocComments/doAwesomeStuff.html index af727df02e..c9ca5d9cf7 100644 --- a/testing/test_package_docs/fake/BaseForDocComments/doAwesomeStuff.html +++ b/testing/test_package_docs/fake/BaseForDocComments/doAwesomeStuff.html @@ -67,7 +67,8 @@

doAwesomeStuff method

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

Takes a value and returns a String.

diff --git a/testing/test_package_docs/fake/BaseForDocComments/hashCode.html b/testing/test_package_docs/fake/BaseForDocComments/hashCode.html index 399401e321..44ade5beb7 100644 --- a/testing/test_package_docs/fake/BaseForDocComments/hashCode.html +++ b/testing/test_package_docs/fake/BaseForDocComments/hashCode.html @@ -70,7 +70,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/fake/BaseForDocComments/noSuchMethod.html b/testing/test_package_docs/fake/BaseForDocComments/noSuchMethod.html index a583fed70e..e58ba83645 100644 --- a/testing/test_package_docs/fake/BaseForDocComments/noSuchMethod.html +++ b/testing/test_package_docs/fake/BaseForDocComments/noSuchMethod.html @@ -67,7 +67,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/fake/BaseForDocComments/operator_equals.html b/testing/test_package_docs/fake/BaseForDocComments/operator_equals.html index aa7c93ff77..1e80af2c72 100644 --- a/testing/test_package_docs/fake/BaseForDocComments/operator_equals.html +++ b/testing/test_package_docs/fake/BaseForDocComments/operator_equals.html @@ -67,7 +67,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/fake/BaseForDocComments/runtimeType.html b/testing/test_package_docs/fake/BaseForDocComments/runtimeType.html index 16f33624de..37e3cbcf93 100644 --- a/testing/test_package_docs/fake/BaseForDocComments/runtimeType.html +++ b/testing/test_package_docs/fake/BaseForDocComments/runtimeType.html @@ -70,7 +70,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/fake/BaseForDocComments/toString.html b/testing/test_package_docs/fake/BaseForDocComments/toString.html index e20178f6b9..26e569a77a 100644 --- a/testing/test_package_docs/fake/BaseForDocComments/toString.html +++ b/testing/test_package_docs/fake/BaseForDocComments/toString.html @@ -67,7 +67,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/fake/BaseThingy/aImplementingThingy.html b/testing/test_package_docs/fake/BaseThingy/aImplementingThingy.html index 099fc255c6..9e9a4d231e 100644 --- a/testing/test_package_docs/fake/BaseThingy/aImplementingThingy.html +++ b/testing/test_package_docs/fake/BaseThingy/aImplementingThingy.html @@ -71,7 +71,8 @@

aImplementingThingy property

ImplementingThingy - aImplementingThingy + aImplementingThingy +
diff --git a/testing/test_package_docs/fake/BaseThingy/aImplementingThingyField.html b/testing/test_package_docs/fake/BaseThingy/aImplementingThingyField.html index fd2859005e..39113ff0c5 100644 --- a/testing/test_package_docs/fake/BaseThingy/aImplementingThingyField.html +++ b/testing/test_package_docs/fake/BaseThingy/aImplementingThingyField.html @@ -68,7 +68,8 @@

aImplementingThingyField property

ImplementingThingy - aImplementingThingyField
read / write
+ aImplementingThingyField +
read / write
diff --git a/testing/test_package_docs/fake/BaseThingy/aImplementingThingyMethod.html b/testing/test_package_docs/fake/BaseThingy/aImplementingThingyMethod.html index 7fe48cbb22..1c42b2ccc0 100644 --- a/testing/test_package_docs/fake/BaseThingy/aImplementingThingyMethod.html +++ b/testing/test_package_docs/fake/BaseThingy/aImplementingThingyMethod.html @@ -68,7 +68,8 @@

aImplementingThingyMethod method

void - aImplementingThingyMethod(ImplementingThingy parameter) + aImplementingThingyMethod +(ImplementingThingy parameter)
diff --git a/testing/test_package_docs/fake/BaseThingy/hashCode.html b/testing/test_package_docs/fake/BaseThingy/hashCode.html index 24106331d8..47ec8b0ace 100644 --- a/testing/test_package_docs/fake/BaseThingy/hashCode.html +++ b/testing/test_package_docs/fake/BaseThingy/hashCode.html @@ -71,7 +71,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/fake/BaseThingy/noSuchMethod.html b/testing/test_package_docs/fake/BaseThingy/noSuchMethod.html index 7b487f1108..73d661fcd6 100644 --- a/testing/test_package_docs/fake/BaseThingy/noSuchMethod.html +++ b/testing/test_package_docs/fake/BaseThingy/noSuchMethod.html @@ -68,7 +68,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/fake/BaseThingy/operator_equals.html b/testing/test_package_docs/fake/BaseThingy/operator_equals.html index 36a62f1450..19f595f8c5 100644 --- a/testing/test_package_docs/fake/BaseThingy/operator_equals.html +++ b/testing/test_package_docs/fake/BaseThingy/operator_equals.html @@ -68,7 +68,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/fake/BaseThingy/runtimeType.html b/testing/test_package_docs/fake/BaseThingy/runtimeType.html index dd9717fc4a..d6c0cb21a9 100644 --- a/testing/test_package_docs/fake/BaseThingy/runtimeType.html +++ b/testing/test_package_docs/fake/BaseThingy/runtimeType.html @@ -71,7 +71,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/fake/BaseThingy/toString.html b/testing/test_package_docs/fake/BaseThingy/toString.html index aa980b6f7f..79ac9d5eec 100644 --- a/testing/test_package_docs/fake/BaseThingy/toString.html +++ b/testing/test_package_docs/fake/BaseThingy/toString.html @@ -68,7 +68,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/fake/BaseThingy2/aImplementingThingy.html b/testing/test_package_docs/fake/BaseThingy2/aImplementingThingy.html index 9c040fef82..86fc46902e 100644 --- a/testing/test_package_docs/fake/BaseThingy2/aImplementingThingy.html +++ b/testing/test_package_docs/fake/BaseThingy2/aImplementingThingy.html @@ -71,7 +71,8 @@

aImplementingThingy property

ImplementingThingy2 - aImplementingThingy + aImplementingThingy +
diff --git a/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html b/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html index 475c011f36..51645cc5fd 100644 --- a/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html +++ b/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html @@ -128,11 +128,12 @@
fake library
-

CUSTOM_CLASS top-level property

+

CUSTOM_CLASS top-level constant

- CUSTOM_CLASS = - const ConstantClass('custom') + const CUSTOM_CLASS + = + const ConstantClass('custom')
diff --git a/testing/test_package_docs/fake/Callback2.html b/testing/test_package_docs/fake/Callback2.html index 116a47c4a7..95773c60fa 100644 --- a/testing/test_package_docs/fake/Callback2.html +++ b/testing/test_package_docs/fake/Callback2.html @@ -132,7 +132,8 @@

Callback2 typedef

int - Callback2(String) + Callback2 +(String)
diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties/aMethod.html b/testing/test_package_docs/fake/ClassWithUnusualProperties/aMethod.html index db974b1b6a..21c784d57a 100644 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties/aMethod.html +++ b/testing/test_package_docs/fake/ClassWithUnusualProperties/aMethod.html @@ -78,7 +78,8 @@

aMethod method

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

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

diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties/documentedPartialFieldInSubclassOnly.html b/testing/test_package_docs/fake/ClassWithUnusualProperties/documentedPartialFieldInSubclassOnly.html index 5142460e46..baeed4b356 100644 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties/documentedPartialFieldInSubclassOnly.html +++ b/testing/test_package_docs/fake/ClassWithUnusualProperties/documentedPartialFieldInSubclassOnly.html @@ -81,7 +81,8 @@

documentedPartialFieldInSubclassOnly property

String - documentedPartialFieldInSubclassOnly + documentedPartialFieldInSubclassOnly +
@@ -94,7 +95,8 @@

documentedPartialFieldInSubclassOnly property

void - documentedPartialFieldInSubclassOnly=(String _documentedPartialFieldInSubclassOnly) + documentedPartialFieldInSubclassOnly= +(String _documentedPartialFieldInSubclassOnly)
inherited
diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetter.html b/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetter.html index ed2c8ce053..a4ea672d5a 100644 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetter.html +++ b/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetter.html @@ -81,7 +81,8 @@

explicitGetter property

myCoolTypedef - explicitGetter + explicitGetter +
diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetterImplicitSetter.html b/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetterImplicitSetter.html index 406dbe9bab..032a2ac00d 100644 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetterImplicitSetter.html +++ b/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetterImplicitSetter.html @@ -81,7 +81,8 @@

explicitGetterImplicitSetter property

List<int> - explicitGetterImplicitSetter + explicitGetterImplicitSetter +
@@ -94,7 +95,8 @@

explicitGetterImplicitSetter property

void - explicitGetterImplicitSetter=(List<int> _explicitGetterImplicitSetter) + explicitGetterImplicitSetter= +(List<int> _explicitGetterImplicitSetter)
inherited
diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetterSetter.html b/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetterSetter.html index e5d6b05899..4c7c7ad683 100644 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetterSetter.html +++ b/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitGetterSetter.html @@ -81,7 +81,8 @@

explicitGetterSetter property

myCoolTypedef - explicitGetterSetter
@Annotation('a Getter Annotation')
+ explicitGetterSetter +
@Annotation('a Getter Annotation')
@@ -94,7 +95,8 @@

explicitGetterSetter property

void - explicitGetterSetter=(myCoolTypedef f) + explicitGetterSetter= +(myCoolTypedef f)
@Annotation('a Setter Annotation')
diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitNonDocumentedInBaseClassGetter.html b/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitNonDocumentedInBaseClassGetter.html index c990b73098..8aa6bc4adf 100644 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitNonDocumentedInBaseClassGetter.html +++ b/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitNonDocumentedInBaseClassGetter.html @@ -81,7 +81,8 @@

explicitNonDocumentedInBaseClassGetter property

String - explicitNonDocumentedInBaseClassGetter + explicitNonDocumentedInBaseClassGetter +
diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitSetter.html b/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitSetter.html index 0009ff23ca..03656081a1 100644 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitSetter.html +++ b/testing/test_package_docs/fake/ClassWithUnusualProperties/explicitSetter.html @@ -82,7 +82,8 @@

explicitSetter property

void - explicitSetter=(dynamic f(int bar, Cool baz, List<int> macTruck)) + explicitSetter= +(dynamic f(int bar, Cool baz, List<int> macTruck))
diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties/finalProperty.html b/testing/test_package_docs/fake/ClassWithUnusualProperties/finalProperty.html index ab4f2bfc54..96a1041e85 100644 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties/finalProperty.html +++ b/testing/test_package_docs/fake/ClassWithUnusualProperties/finalProperty.html @@ -78,7 +78,8 @@

finalProperty property

Set - finalProperty
final
+ finalProperty +
final

This property has some docs, too.

diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties/implicitGetterExplicitSetter.html b/testing/test_package_docs/fake/ClassWithUnusualProperties/implicitGetterExplicitSetter.html index 152b4e6193..6cbf900d5f 100644 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties/implicitGetterExplicitSetter.html +++ b/testing/test_package_docs/fake/ClassWithUnusualProperties/implicitGetterExplicitSetter.html @@ -81,7 +81,8 @@

implicitGetterExplicitSetter property

String - implicitGetterExplicitSetter
inherited
+ implicitGetterExplicitSetter +
inherited
@@ -94,7 +95,8 @@

implicitGetterExplicitSetter property

void - implicitGetterExplicitSetter=(String x) + implicitGetterExplicitSetter= +(String x)
diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties/implicitReadWrite.html b/testing/test_package_docs/fake/ClassWithUnusualProperties/implicitReadWrite.html index a4acc49fd5..f57dd639a8 100644 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties/implicitReadWrite.html +++ b/testing/test_package_docs/fake/ClassWithUnusualProperties/implicitReadWrite.html @@ -78,7 +78,8 @@

implicitReadWrite property

Map - implicitReadWrite
read / write
+ implicitReadWrite +
read / write
diff --git a/testing/test_package_docs/fake/Color-class.html b/testing/test_package_docs/fake/Color-class.html index e88e0ebf11..56cf4622e1 100644 --- a/testing/test_package_docs/fake/Color-class.html +++ b/testing/test_package_docs/fake/Color-class.html @@ -141,7 +141,7 @@

Constants

BLUE - Color + → const Color

Some constants have long docs.

@@ -154,7 +154,7 @@

Constants

GREEN - Color + → const Color
@@ -165,7 +165,7 @@

Constants

INDIGO - Color + → const Color
@@ -176,7 +176,7 @@

Constants

ORANGE - Color + → const Color

Orange

@@ -187,7 +187,7 @@

Constants

RED - Color + → const Color

Red

@@ -198,7 +198,7 @@

Constants

values - → List<Color> + → const List<Color>

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

@@ -209,7 +209,7 @@

Constants

VIOLET - Color + → const Color
@@ -220,7 +220,7 @@

Constants

YELLOW - Color + → const Color
diff --git a/testing/test_package_docs/fake/Color/hashCode.html b/testing/test_package_docs/fake/Color/hashCode.html index bcd07d7634..939fdc1862 100644 --- a/testing/test_package_docs/fake/Color/hashCode.html +++ b/testing/test_package_docs/fake/Color/hashCode.html @@ -76,7 +76,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/fake/Color/noSuchMethod.html b/testing/test_package_docs/fake/Color/noSuchMethod.html index 802d1d2891..fafc5c7520 100644 --- a/testing/test_package_docs/fake/Color/noSuchMethod.html +++ b/testing/test_package_docs/fake/Color/noSuchMethod.html @@ -73,7 +73,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/fake/Color/operator_equals.html b/testing/test_package_docs/fake/Color/operator_equals.html index 40fef06bc9..4c6a2629d6 100644 --- a/testing/test_package_docs/fake/Color/operator_equals.html +++ b/testing/test_package_docs/fake/Color/operator_equals.html @@ -73,7 +73,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/fake/Color/runtimeType.html b/testing/test_package_docs/fake/Color/runtimeType.html index e47dd5a69c..73513ea36c 100644 --- a/testing/test_package_docs/fake/Color/runtimeType.html +++ b/testing/test_package_docs/fake/Color/runtimeType.html @@ -76,7 +76,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/fake/Color/toString.html b/testing/test_package_docs/fake/Color/toString.html index 470164257c..fda0ee4e49 100644 --- a/testing/test_package_docs/fake/Color/toString.html +++ b/testing/test_package_docs/fake/Color/toString.html @@ -73,7 +73,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/fake/ConstantClass/hashCode.html b/testing/test_package_docs/fake/ConstantClass/hashCode.html index 63cb71a08b..0715d16e8c 100644 --- a/testing/test_package_docs/fake/ConstantClass/hashCode.html +++ b/testing/test_package_docs/fake/ConstantClass/hashCode.html @@ -71,7 +71,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/fake/ConstantClass/noSuchMethod.html b/testing/test_package_docs/fake/ConstantClass/noSuchMethod.html index 0e2b733ad9..f24d479276 100644 --- a/testing/test_package_docs/fake/ConstantClass/noSuchMethod.html +++ b/testing/test_package_docs/fake/ConstantClass/noSuchMethod.html @@ -68,7 +68,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/fake/ConstantClass/operator_equals.html b/testing/test_package_docs/fake/ConstantClass/operator_equals.html index ac1162503b..92d8e62605 100644 --- a/testing/test_package_docs/fake/ConstantClass/operator_equals.html +++ b/testing/test_package_docs/fake/ConstantClass/operator_equals.html @@ -68,7 +68,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/fake/ConstantClass/runtimeType.html b/testing/test_package_docs/fake/ConstantClass/runtimeType.html index 944df36ef7..5f3c478bcc 100644 --- a/testing/test_package_docs/fake/ConstantClass/runtimeType.html +++ b/testing/test_package_docs/fake/ConstantClass/runtimeType.html @@ -71,7 +71,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/fake/ConstantClass/toString.html b/testing/test_package_docs/fake/ConstantClass/toString.html index 03f1e6cb53..fdd1097541 100644 --- a/testing/test_package_docs/fake/ConstantClass/toString.html +++ b/testing/test_package_docs/fake/ConstantClass/toString.html @@ -68,7 +68,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/fake/ConstantClass/value.html b/testing/test_package_docs/fake/ConstantClass/value.html index b61d510216..57f8dafeb3 100644 --- a/testing/test_package_docs/fake/ConstantClass/value.html +++ b/testing/test_package_docs/fake/ConstantClass/value.html @@ -68,7 +68,8 @@

value property

String - value
final
+ value +
final
diff --git a/testing/test_package_docs/fake/ConstructorTester/hashCode.html b/testing/test_package_docs/fake/ConstructorTester/hashCode.html index 6bdda73ace..3d4914537f 100644 --- a/testing/test_package_docs/fake/ConstructorTester/hashCode.html +++ b/testing/test_package_docs/fake/ConstructorTester/hashCode.html @@ -69,7 +69,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/fake/ConstructorTester/noSuchMethod.html b/testing/test_package_docs/fake/ConstructorTester/noSuchMethod.html index 74b6569069..e2014acc6e 100644 --- a/testing/test_package_docs/fake/ConstructorTester/noSuchMethod.html +++ b/testing/test_package_docs/fake/ConstructorTester/noSuchMethod.html @@ -66,7 +66,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/fake/ConstructorTester/operator_equals.html b/testing/test_package_docs/fake/ConstructorTester/operator_equals.html index 86dd557368..49ab0730e0 100644 --- a/testing/test_package_docs/fake/ConstructorTester/operator_equals.html +++ b/testing/test_package_docs/fake/ConstructorTester/operator_equals.html @@ -66,7 +66,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/fake/ConstructorTester/runtimeType.html b/testing/test_package_docs/fake/ConstructorTester/runtimeType.html index 8229b8ad04..6d652fab8f 100644 --- a/testing/test_package_docs/fake/ConstructorTester/runtimeType.html +++ b/testing/test_package_docs/fake/ConstructorTester/runtimeType.html @@ -69,7 +69,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/fake/ConstructorTester/toString.html b/testing/test_package_docs/fake/ConstructorTester/toString.html index 00e5aa489b..c6b83bf857 100644 --- a/testing/test_package_docs/fake/ConstructorTester/toString.html +++ b/testing/test_package_docs/fake/ConstructorTester/toString.html @@ -66,7 +66,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/fake/Cool/hashCode.html b/testing/test_package_docs/fake/Cool/hashCode.html index 5137faf83f..20136121af 100644 --- a/testing/test_package_docs/fake/Cool/hashCode.html +++ b/testing/test_package_docs/fake/Cool/hashCode.html @@ -69,7 +69,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/fake/Cool/noSuchMethod.html b/testing/test_package_docs/fake/Cool/noSuchMethod.html index ca59d4af13..9f4d5125cb 100644 --- a/testing/test_package_docs/fake/Cool/noSuchMethod.html +++ b/testing/test_package_docs/fake/Cool/noSuchMethod.html @@ -66,7 +66,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/fake/Cool/operator_equals.html b/testing/test_package_docs/fake/Cool/operator_equals.html index b7e5dda8af..66582d8501 100644 --- a/testing/test_package_docs/fake/Cool/operator_equals.html +++ b/testing/test_package_docs/fake/Cool/operator_equals.html @@ -66,7 +66,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/fake/Cool/returnCool.html b/testing/test_package_docs/fake/Cool/returnCool.html index 606b4e2fd8..9abdefa916 100644 --- a/testing/test_package_docs/fake/Cool/returnCool.html +++ b/testing/test_package_docs/fake/Cool/returnCool.html @@ -66,7 +66,8 @@

returnCool method

Cool - returnCool() + returnCool +()
diff --git a/testing/test_package_docs/fake/Cool/runtimeType.html b/testing/test_package_docs/fake/Cool/runtimeType.html index 0609a3d905..48202c5c37 100644 --- a/testing/test_package_docs/fake/Cool/runtimeType.html +++ b/testing/test_package_docs/fake/Cool/runtimeType.html @@ -69,7 +69,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/fake/Cool/toString.html b/testing/test_package_docs/fake/Cool/toString.html index e760168fd3..5c033cc5f9 100644 --- a/testing/test_package_docs/fake/Cool/toString.html +++ b/testing/test_package_docs/fake/Cool/toString.html @@ -66,7 +66,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/fake/DOWN-constant.html b/testing/test_package_docs/fake/DOWN-constant.html index d3c1c24a70..8011ab99df 100644 --- a/testing/test_package_docs/fake/DOWN-constant.html +++ b/testing/test_package_docs/fake/DOWN-constant.html @@ -128,10 +128,11 @@
fake library
-

DOWN top-level property

+

DOWN top-level constant

- DOWN = + const DOWN + = 'down'
diff --git a/testing/test_package_docs/fake/DocumentWithATable-class.html b/testing/test_package_docs/fake/DocumentWithATable-class.html index c3a41664f8..eece778ad9 100644 --- a/testing/test_package_docs/fake/DocumentWithATable-class.html +++ b/testing/test_package_docs/fake/DocumentWithATable-class.html @@ -231,24 +231,24 @@

Constants

bar - DocumentWithATable + → const DocumentWithATable
- const DocumentWithATable() + const DocumentWithATable()
foo - DocumentWithATable + → const DocumentWithATable
- const DocumentWithATable() + const DocumentWithATable()
diff --git a/testing/test_package_docs/fake/DocumentWithATable/aMethod.html b/testing/test_package_docs/fake/DocumentWithATable/aMethod.html index f9d2fbcb45..3bb0696cd7 100644 --- a/testing/test_package_docs/fake/DocumentWithATable/aMethod.html +++ b/testing/test_package_docs/fake/DocumentWithATable/aMethod.html @@ -69,7 +69,8 @@

aMethod method

void - aMethod(String parameter) + aMethod +(String parameter)
diff --git a/testing/test_package_docs/fake/DocumentWithATable/bar-constant.html b/testing/test_package_docs/fake/DocumentWithATable/bar-constant.html index cd455d7499..342699fdf4 100644 --- a/testing/test_package_docs/fake/DocumentWithATable/bar-constant.html +++ b/testing/test_package_docs/fake/DocumentWithATable/bar-constant.html @@ -65,12 +65,13 @@
DocumentWithATable class
-

bar property

+

bar constant

DocumentWithATable - bar = - const DocumentWithATable() + const bar + = + const DocumentWithATable()
diff --git a/testing/test_package_docs/fake/DocumentWithATable/foo-constant.html b/testing/test_package_docs/fake/DocumentWithATable/foo-constant.html index 6742f36c60..6350ae7958 100644 --- a/testing/test_package_docs/fake/DocumentWithATable/foo-constant.html +++ b/testing/test_package_docs/fake/DocumentWithATable/foo-constant.html @@ -65,12 +65,13 @@
DocumentWithATable class
-

foo property

+

foo constant

DocumentWithATable - foo = - const DocumentWithATable() + const foo + = + const DocumentWithATable()
diff --git a/testing/test_package_docs/fake/DocumentWithATable/hashCode.html b/testing/test_package_docs/fake/DocumentWithATable/hashCode.html index f2ca71e624..94fd7c49b7 100644 --- a/testing/test_package_docs/fake/DocumentWithATable/hashCode.html +++ b/testing/test_package_docs/fake/DocumentWithATable/hashCode.html @@ -72,7 +72,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/fake/DocumentWithATable/noSuchMethod.html b/testing/test_package_docs/fake/DocumentWithATable/noSuchMethod.html index 1601fc447d..ee28e487df 100644 --- a/testing/test_package_docs/fake/DocumentWithATable/noSuchMethod.html +++ b/testing/test_package_docs/fake/DocumentWithATable/noSuchMethod.html @@ -69,7 +69,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/fake/DocumentWithATable/operator_equals.html b/testing/test_package_docs/fake/DocumentWithATable/operator_equals.html index 7a613a0f74..52431e3d42 100644 --- a/testing/test_package_docs/fake/DocumentWithATable/operator_equals.html +++ b/testing/test_package_docs/fake/DocumentWithATable/operator_equals.html @@ -69,7 +69,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/fake/DocumentWithATable/runtimeType.html b/testing/test_package_docs/fake/DocumentWithATable/runtimeType.html index d916a1c72b..4643a16777 100644 --- a/testing/test_package_docs/fake/DocumentWithATable/runtimeType.html +++ b/testing/test_package_docs/fake/DocumentWithATable/runtimeType.html @@ -72,7 +72,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/fake/DocumentWithATable/toString.html b/testing/test_package_docs/fake/DocumentWithATable/toString.html index 6d8724aff5..4fef00a91c 100644 --- a/testing/test_package_docs/fake/DocumentWithATable/toString.html +++ b/testing/test_package_docs/fake/DocumentWithATable/toString.html @@ -69,7 +69,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/fake/Doh/hashCode.html b/testing/test_package_docs/fake/Doh/hashCode.html index da5d68e6bd..834ca69b04 100644 --- a/testing/test_package_docs/fake/Doh/hashCode.html +++ b/testing/test_package_docs/fake/Doh/hashCode.html @@ -69,7 +69,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/fake/Doh/noSuchMethod.html b/testing/test_package_docs/fake/Doh/noSuchMethod.html index 677c841ade..a8e3b3792f 100644 --- a/testing/test_package_docs/fake/Doh/noSuchMethod.html +++ b/testing/test_package_docs/fake/Doh/noSuchMethod.html @@ -66,7 +66,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/fake/Doh/operator_equals.html b/testing/test_package_docs/fake/Doh/operator_equals.html index 201e4d9256..4efa4bcc54 100644 --- a/testing/test_package_docs/fake/Doh/operator_equals.html +++ b/testing/test_package_docs/fake/Doh/operator_equals.html @@ -66,7 +66,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/fake/Doh/runtimeType.html b/testing/test_package_docs/fake/Doh/runtimeType.html index 8871e17dc9..ce93d10059 100644 --- a/testing/test_package_docs/fake/Doh/runtimeType.html +++ b/testing/test_package_docs/fake/Doh/runtimeType.html @@ -69,7 +69,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/fake/Doh/stackTrace.html b/testing/test_package_docs/fake/Doh/stackTrace.html index 8f7b291e63..7b5ea310c9 100644 --- a/testing/test_package_docs/fake/Doh/stackTrace.html +++ b/testing/test_package_docs/fake/Doh/stackTrace.html @@ -69,7 +69,8 @@

stackTrace property

StackTrace - stackTrace
inherited
+ stackTrace +
inherited
diff --git a/testing/test_package_docs/fake/Doh/toString.html b/testing/test_package_docs/fake/Doh/toString.html index 73da58e252..7d9bd958a7 100644 --- a/testing/test_package_docs/fake/Doh/toString.html +++ b/testing/test_package_docs/fake/Doh/toString.html @@ -66,7 +66,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/fake/FakeProcesses.html b/testing/test_package_docs/fake/FakeProcesses.html index 4f5267dd08..5ab8c8362d 100644 --- a/testing/test_package_docs/fake/FakeProcesses.html +++ b/testing/test_package_docs/fake/FakeProcesses.html @@ -137,7 +137,8 @@

FakeProcesses typedef

String - FakeProcesses(String input) + FakeProcesses +(String input)
diff --git a/testing/test_package_docs/fake/Foo2-class.html b/testing/test_package_docs/fake/Foo2-class.html index 9f7c5e4428..93894213ca 100644 --- a/testing/test_package_docs/fake/Foo2-class.html +++ b/testing/test_package_docs/fake/Foo2-class.html @@ -227,24 +227,24 @@

Constants

BAR - Foo2 + → const Foo2
- const Foo2(0) + const Foo2(0)
BAZ - Foo2 + → const Foo2
- const Foo2(1) + const Foo2(1)
diff --git a/testing/test_package_docs/fake/Foo2/BAR-constant.html b/testing/test_package_docs/fake/Foo2/BAR-constant.html index 82db9b3d6d..37bc60fb06 100644 --- a/testing/test_package_docs/fake/Foo2/BAR-constant.html +++ b/testing/test_package_docs/fake/Foo2/BAR-constant.html @@ -65,12 +65,13 @@
Foo2 class
-

BAR property

+

BAR constant

Foo2 - BAR = - const Foo2(0) + const BAR + = + const Foo2(0)
diff --git a/testing/test_package_docs/fake/Foo2/BAZ-constant.html b/testing/test_package_docs/fake/Foo2/BAZ-constant.html index a02075ead0..6698308f61 100644 --- a/testing/test_package_docs/fake/Foo2/BAZ-constant.html +++ b/testing/test_package_docs/fake/Foo2/BAZ-constant.html @@ -65,12 +65,13 @@
Foo2 class
-

BAZ property

+

BAZ constant

Foo2 - BAZ = - const Foo2(1) + const BAZ + = + const Foo2(1)
diff --git a/testing/test_package_docs/fake/Foo2/hashCode.html b/testing/test_package_docs/fake/Foo2/hashCode.html index 948498b9a3..ec601bfec0 100644 --- a/testing/test_package_docs/fake/Foo2/hashCode.html +++ b/testing/test_package_docs/fake/Foo2/hashCode.html @@ -72,7 +72,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/fake/Foo2/index.html b/testing/test_package_docs/fake/Foo2/index.html index 017cb2db31..282f55da7e 100644 --- a/testing/test_package_docs/fake/Foo2/index.html +++ b/testing/test_package_docs/fake/Foo2/index.html @@ -69,7 +69,8 @@

index property

int - index
final
+ index +
final
diff --git a/testing/test_package_docs/fake/Foo2/noSuchMethod.html b/testing/test_package_docs/fake/Foo2/noSuchMethod.html index c4e1ab77ae..02d725ac9d 100644 --- a/testing/test_package_docs/fake/Foo2/noSuchMethod.html +++ b/testing/test_package_docs/fake/Foo2/noSuchMethod.html @@ -69,7 +69,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/fake/Foo2/operator_equals.html b/testing/test_package_docs/fake/Foo2/operator_equals.html index a83961db9d..95dcbe9447 100644 --- a/testing/test_package_docs/fake/Foo2/operator_equals.html +++ b/testing/test_package_docs/fake/Foo2/operator_equals.html @@ -69,7 +69,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/fake/Foo2/runtimeType.html b/testing/test_package_docs/fake/Foo2/runtimeType.html index 99e6645a56..fdfcd43625 100644 --- a/testing/test_package_docs/fake/Foo2/runtimeType.html +++ b/testing/test_package_docs/fake/Foo2/runtimeType.html @@ -72,7 +72,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/fake/Foo2/toString.html b/testing/test_package_docs/fake/Foo2/toString.html index af568841d1..b11402a3a7 100644 --- a/testing/test_package_docs/fake/Foo2/toString.html +++ b/testing/test_package_docs/fake/Foo2/toString.html @@ -69,7 +69,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/fake/GenericTypedef.html b/testing/test_package_docs/fake/GenericTypedef.html index 646becf500..f2761e4ef4 100644 --- a/testing/test_package_docs/fake/GenericTypedef.html +++ b/testing/test_package_docs/fake/GenericTypedef.html @@ -132,7 +132,8 @@

GenericTypedef<T> typedef

T - GenericTypedef(T input) + GenericTypedef +(T input)
diff --git a/testing/test_package_docs/fake/HasGenericWithExtends/hashCode.html b/testing/test_package_docs/fake/HasGenericWithExtends/hashCode.html index 308ef063e6..84fbb44093 100644 --- a/testing/test_package_docs/fake/HasGenericWithExtends/hashCode.html +++ b/testing/test_package_docs/fake/HasGenericWithExtends/hashCode.html @@ -68,7 +68,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/fake/HasGenericWithExtends/noSuchMethod.html b/testing/test_package_docs/fake/HasGenericWithExtends/noSuchMethod.html index 02339c2986..2e8e4bbde8 100644 --- a/testing/test_package_docs/fake/HasGenericWithExtends/noSuchMethod.html +++ b/testing/test_package_docs/fake/HasGenericWithExtends/noSuchMethod.html @@ -65,7 +65,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/fake/HasGenericWithExtends/operator_equals.html b/testing/test_package_docs/fake/HasGenericWithExtends/operator_equals.html index 4ebb4c75fe..db10f18d0b 100644 --- a/testing/test_package_docs/fake/HasGenericWithExtends/operator_equals.html +++ b/testing/test_package_docs/fake/HasGenericWithExtends/operator_equals.html @@ -65,7 +65,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/fake/HasGenericWithExtends/runtimeType.html b/testing/test_package_docs/fake/HasGenericWithExtends/runtimeType.html index a8927038cf..d2be0d583b 100644 --- a/testing/test_package_docs/fake/HasGenericWithExtends/runtimeType.html +++ b/testing/test_package_docs/fake/HasGenericWithExtends/runtimeType.html @@ -68,7 +68,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/fake/HasGenericWithExtends/toString.html b/testing/test_package_docs/fake/HasGenericWithExtends/toString.html index be95585189..7d926ae7fb 100644 --- a/testing/test_package_docs/fake/HasGenericWithExtends/toString.html +++ b/testing/test_package_docs/fake/HasGenericWithExtends/toString.html @@ -65,7 +65,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/fake/HasGenerics/convertToMap.html b/testing/test_package_docs/fake/HasGenerics/convertToMap.html index b3a157ef0c..bcf6658673 100644 --- a/testing/test_package_docs/fake/HasGenerics/convertToMap.html +++ b/testing/test_package_docs/fake/HasGenerics/convertToMap.html @@ -69,7 +69,8 @@

convertToMap method

Map<X, Y> - convertToMap() + convertToMap +()

Converts itself to a map.

diff --git a/testing/test_package_docs/fake/HasGenerics/doStuff.html b/testing/test_package_docs/fake/HasGenerics/doStuff.html index 84356e9189..c6a835dac4 100644 --- a/testing/test_package_docs/fake/HasGenerics/doStuff.html +++ b/testing/test_package_docs/fake/HasGenerics/doStuff.html @@ -69,7 +69,8 @@

doStuff method

Z - doStuff(String s, X x) + doStuff +(String s, X x)
diff --git a/testing/test_package_docs/fake/HasGenerics/hashCode.html b/testing/test_package_docs/fake/HasGenerics/hashCode.html index 5410c8c464..c30ae6218c 100644 --- a/testing/test_package_docs/fake/HasGenerics/hashCode.html +++ b/testing/test_package_docs/fake/HasGenerics/hashCode.html @@ -72,7 +72,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/fake/HasGenerics/noSuchMethod.html b/testing/test_package_docs/fake/HasGenerics/noSuchMethod.html index 2e61e05d44..4747d4ceb3 100644 --- a/testing/test_package_docs/fake/HasGenerics/noSuchMethod.html +++ b/testing/test_package_docs/fake/HasGenerics/noSuchMethod.html @@ -69,7 +69,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/fake/HasGenerics/operator_equals.html b/testing/test_package_docs/fake/HasGenerics/operator_equals.html index d6b459921e..ed877d94c8 100644 --- a/testing/test_package_docs/fake/HasGenerics/operator_equals.html +++ b/testing/test_package_docs/fake/HasGenerics/operator_equals.html @@ -69,7 +69,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/fake/HasGenerics/returnX.html b/testing/test_package_docs/fake/HasGenerics/returnX.html index 117d8a5768..de50650d83 100644 --- a/testing/test_package_docs/fake/HasGenerics/returnX.html +++ b/testing/test_package_docs/fake/HasGenerics/returnX.html @@ -69,7 +69,8 @@

returnX method

X - returnX() + returnX +()
diff --git a/testing/test_package_docs/fake/HasGenerics/returnZ.html b/testing/test_package_docs/fake/HasGenerics/returnZ.html index d2f8a87c28..08a6fc2ea1 100644 --- a/testing/test_package_docs/fake/HasGenerics/returnZ.html +++ b/testing/test_package_docs/fake/HasGenerics/returnZ.html @@ -69,7 +69,8 @@

returnZ method

Z - returnZ() + returnZ +()
diff --git a/testing/test_package_docs/fake/HasGenerics/runtimeType.html b/testing/test_package_docs/fake/HasGenerics/runtimeType.html index a976c69423..a89c73ca93 100644 --- a/testing/test_package_docs/fake/HasGenerics/runtimeType.html +++ b/testing/test_package_docs/fake/HasGenerics/runtimeType.html @@ -72,7 +72,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/fake/HasGenerics/toString.html b/testing/test_package_docs/fake/HasGenerics/toString.html index c58b0f0876..27a043eb42 100644 --- a/testing/test_package_docs/fake/HasGenerics/toString.html +++ b/testing/test_package_docs/fake/HasGenerics/toString.html @@ -69,7 +69,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/fake/ImplicitProperties/explicitGetterImplicitSetter.html b/testing/test_package_docs/fake/ImplicitProperties/explicitGetterImplicitSetter.html index df22e903bc..4d1f66c260 100644 --- a/testing/test_package_docs/fake/ImplicitProperties/explicitGetterImplicitSetter.html +++ b/testing/test_package_docs/fake/ImplicitProperties/explicitGetterImplicitSetter.html @@ -70,7 +70,8 @@

explicitGetterImplicitSetter property

List<int> - explicitGetterImplicitSetter
read / write
+ explicitGetterImplicitSetter +
read / write

Docs for explicitGetterImplicitSetter from ImplicitProperties.

diff --git a/testing/test_package_docs/fake/ImplicitProperties/explicitGetterSetterForInheriting.html b/testing/test_package_docs/fake/ImplicitProperties/explicitGetterSetterForInheriting.html index ca31e2eb28..d5bd878efe 100644 --- a/testing/test_package_docs/fake/ImplicitProperties/explicitGetterSetterForInheriting.html +++ b/testing/test_package_docs/fake/ImplicitProperties/explicitGetterSetterForInheriting.html @@ -73,7 +73,8 @@

explicitGetterSetterForInheriting property

int - explicitGetterSetterForInheriting + explicitGetterSetterForInheriting +
@@ -86,7 +87,8 @@

explicitGetterSetterForInheriting property

void - explicitGetterSetterForInheriting=(int foo) + explicitGetterSetterForInheriting= +(int foo)
diff --git a/testing/test_package_docs/fake/ImplicitProperties/explicitPartiallyDocumentedField.html b/testing/test_package_docs/fake/ImplicitProperties/explicitPartiallyDocumentedField.html index 05dadc9143..498e05f0a1 100644 --- a/testing/test_package_docs/fake/ImplicitProperties/explicitPartiallyDocumentedField.html +++ b/testing/test_package_docs/fake/ImplicitProperties/explicitPartiallyDocumentedField.html @@ -73,7 +73,8 @@

explicitPartiallyDocumentedField property

double - explicitPartiallyDocumentedField + explicitPartiallyDocumentedField +
@@ -86,7 +87,8 @@

explicitPartiallyDocumentedField property

void - explicitPartiallyDocumentedField=(double foo) + explicitPartiallyDocumentedField= +(double foo)
diff --git a/testing/test_package_docs/fake/ImplicitProperties/forInheriting.html b/testing/test_package_docs/fake/ImplicitProperties/forInheriting.html index efc09eaae3..949646613a 100644 --- a/testing/test_package_docs/fake/ImplicitProperties/forInheriting.html +++ b/testing/test_package_docs/fake/ImplicitProperties/forInheriting.html @@ -70,7 +70,8 @@

forInheriting property

int - forInheriting
read / write
+ forInheriting +
read / write

A simple property to inherit.

diff --git a/testing/test_package_docs/fake/ImplicitProperties/hashCode.html b/testing/test_package_docs/fake/ImplicitProperties/hashCode.html index 93823fbec7..cf763c3e07 100644 --- a/testing/test_package_docs/fake/ImplicitProperties/hashCode.html +++ b/testing/test_package_docs/fake/ImplicitProperties/hashCode.html @@ -73,7 +73,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/fake/ImplicitProperties/implicitGetterExplicitSetter.html b/testing/test_package_docs/fake/ImplicitProperties/implicitGetterExplicitSetter.html index 7086331823..b6113f7c86 100644 --- a/testing/test_package_docs/fake/ImplicitProperties/implicitGetterExplicitSetter.html +++ b/testing/test_package_docs/fake/ImplicitProperties/implicitGetterExplicitSetter.html @@ -70,7 +70,8 @@

implicitGetterExplicitSetter property

String - implicitGetterExplicitSetter
read / write
+ implicitGetterExplicitSetter +
read / write

Docs for implicitGetterExplicitSetter from ImplicitProperties.

diff --git a/testing/test_package_docs/fake/ImplicitProperties/noSuchMethod.html b/testing/test_package_docs/fake/ImplicitProperties/noSuchMethod.html index b41b0da553..0787b4c1ff 100644 --- a/testing/test_package_docs/fake/ImplicitProperties/noSuchMethod.html +++ b/testing/test_package_docs/fake/ImplicitProperties/noSuchMethod.html @@ -70,7 +70,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/fake/ImplicitProperties/operator_equals.html b/testing/test_package_docs/fake/ImplicitProperties/operator_equals.html index 9e52666456..ec745f217d 100644 --- a/testing/test_package_docs/fake/ImplicitProperties/operator_equals.html +++ b/testing/test_package_docs/fake/ImplicitProperties/operator_equals.html @@ -70,7 +70,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/fake/ImplicitProperties/runtimeType.html b/testing/test_package_docs/fake/ImplicitProperties/runtimeType.html index 4a5e7d0581..074d046df4 100644 --- a/testing/test_package_docs/fake/ImplicitProperties/runtimeType.html +++ b/testing/test_package_docs/fake/ImplicitProperties/runtimeType.html @@ -73,7 +73,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/fake/ImplicitProperties/toString.html b/testing/test_package_docs/fake/ImplicitProperties/toString.html index 0a2733849a..a98573c195 100644 --- a/testing/test_package_docs/fake/ImplicitProperties/toString.html +++ b/testing/test_package_docs/fake/ImplicitProperties/toString.html @@ -70,7 +70,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/fake/Interface/hashCode.html b/testing/test_package_docs/fake/Interface/hashCode.html index c0014aa247..3959dd3388 100644 --- a/testing/test_package_docs/fake/Interface/hashCode.html +++ b/testing/test_package_docs/fake/Interface/hashCode.html @@ -68,7 +68,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/fake/Interface/noSuchMethod.html b/testing/test_package_docs/fake/Interface/noSuchMethod.html index 85574a9276..d51fdfba7e 100644 --- a/testing/test_package_docs/fake/Interface/noSuchMethod.html +++ b/testing/test_package_docs/fake/Interface/noSuchMethod.html @@ -65,7 +65,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/fake/Interface/operator_equals.html b/testing/test_package_docs/fake/Interface/operator_equals.html index b7748ffd37..0f5aa2cc5b 100644 --- a/testing/test_package_docs/fake/Interface/operator_equals.html +++ b/testing/test_package_docs/fake/Interface/operator_equals.html @@ -65,7 +65,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/fake/Interface/runtimeType.html b/testing/test_package_docs/fake/Interface/runtimeType.html index 1e229a5df1..2fd48db8f0 100644 --- a/testing/test_package_docs/fake/Interface/runtimeType.html +++ b/testing/test_package_docs/fake/Interface/runtimeType.html @@ -68,7 +68,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/fake/Interface/toString.html b/testing/test_package_docs/fake/Interface/toString.html index 2a2d281395..dc7c273542 100644 --- a/testing/test_package_docs/fake/Interface/toString.html +++ b/testing/test_package_docs/fake/Interface/toString.html @@ -65,7 +65,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/fake/LongFirstLine-class.html b/testing/test_package_docs/fake/LongFirstLine-class.html index 460c741308..533bdc03af 100644 --- a/testing/test_package_docs/fake/LongFirstLine-class.html +++ b/testing/test_package_docs/fake/LongFirstLine-class.html @@ -418,7 +418,7 @@

Constants

ANSWER - → int + → const int
@@ -429,7 +429,7 @@

Constants

THING - → dynamic + → const dynamic
diff --git a/testing/test_package_docs/fake/LongFirstLine/ANSWER-constant.html b/testing/test_package_docs/fake/LongFirstLine/ANSWER-constant.html index f58aa94b93..07bc09fff6 100644 --- a/testing/test_package_docs/fake/LongFirstLine/ANSWER-constant.html +++ b/testing/test_package_docs/fake/LongFirstLine/ANSWER-constant.html @@ -85,11 +85,12 @@
LongFirstLine class
-

ANSWER property

+

ANSWER constant

int - ANSWER = + const ANSWER + = 42
diff --git a/testing/test_package_docs/fake/LongFirstLine/THING-constant.html b/testing/test_package_docs/fake/LongFirstLine/THING-constant.html index 14f8dea0e9..9db739f1e2 100644 --- a/testing/test_package_docs/fake/LongFirstLine/THING-constant.html +++ b/testing/test_package_docs/fake/LongFirstLine/THING-constant.html @@ -85,11 +85,12 @@
LongFirstLine class
-

THING property

+

THING constant

dynamic - THING = + const THING + = 'yup'
diff --git a/testing/test_package_docs/fake/LongFirstLine/aStringProperty.html b/testing/test_package_docs/fake/LongFirstLine/aStringProperty.html index 9d46e5ee88..e0cf938608 100644 --- a/testing/test_package_docs/fake/LongFirstLine/aStringProperty.html +++ b/testing/test_package_docs/fake/LongFirstLine/aStringProperty.html @@ -89,7 +89,8 @@

aStringProperty property

String - aStringProperty
read / write
+ aStringProperty +
read / write

An instance string property. Readable and writable.

diff --git a/testing/test_package_docs/fake/LongFirstLine/dynamicGetter.html b/testing/test_package_docs/fake/LongFirstLine/dynamicGetter.html index 3396634c5a..df8ee621d1 100644 --- a/testing/test_package_docs/fake/LongFirstLine/dynamicGetter.html +++ b/testing/test_package_docs/fake/LongFirstLine/dynamicGetter.html @@ -92,7 +92,8 @@

dynamicGetter property

dynamic - dynamicGetter + dynamicGetter +
diff --git a/testing/test_package_docs/fake/LongFirstLine/meaningOfLife.html b/testing/test_package_docs/fake/LongFirstLine/meaningOfLife.html index 9c71d9dcd5..edfeccdd3c 100644 --- a/testing/test_package_docs/fake/LongFirstLine/meaningOfLife.html +++ b/testing/test_package_docs/fake/LongFirstLine/meaningOfLife.html @@ -89,7 +89,8 @@

meaningOfLife property

int - meaningOfLife
read / write
+ meaningOfLife +
read / write

A static int property.

diff --git a/testing/test_package_docs/fake/LongFirstLine/noParams.html b/testing/test_package_docs/fake/LongFirstLine/noParams.html index 92d9d2d2ba..7ec8df1c79 100644 --- a/testing/test_package_docs/fake/LongFirstLine/noParams.html +++ b/testing/test_package_docs/fake/LongFirstLine/noParams.html @@ -94,7 +94,8 @@

noParams method

void - noParams() + noParams +()

No params.

diff --git a/testing/test_package_docs/fake/LongFirstLine/onlySetter.html b/testing/test_package_docs/fake/LongFirstLine/onlySetter.html index 8b411e478f..ab6769e83f 100644 --- a/testing/test_package_docs/fake/LongFirstLine/onlySetter.html +++ b/testing/test_package_docs/fake/LongFirstLine/onlySetter.html @@ -93,7 +93,8 @@

onlySetter property

void - onlySetter=(double d) + onlySetter= +(double d)
diff --git a/testing/test_package_docs/fake/LongFirstLine/operator_multiply.html b/testing/test_package_docs/fake/LongFirstLine/operator_multiply.html index 435101336f..43d497345d 100644 --- a/testing/test_package_docs/fake/LongFirstLine/operator_multiply.html +++ b/testing/test_package_docs/fake/LongFirstLine/operator_multiply.html @@ -89,7 +89,8 @@

operator * method

LongFirstLine - operator *(LongFirstLine other) + operator * +(LongFirstLine other)

Multiplies a thingies to this thingie and then returns a new thingie.

diff --git a/testing/test_package_docs/fake/LongFirstLine/operator_plus.html b/testing/test_package_docs/fake/LongFirstLine/operator_plus.html index 79654d2d59..1de21f6eb8 100644 --- a/testing/test_package_docs/fake/LongFirstLine/operator_plus.html +++ b/testing/test_package_docs/fake/LongFirstLine/operator_plus.html @@ -89,7 +89,8 @@

operator + method

LongFirstLine - operator +(LongFirstLine other) + operator + +(LongFirstLine other)

Adds another one of these thingies.

diff --git a/testing/test_package_docs/fake/LongFirstLine/optionalParams.html b/testing/test_package_docs/fake/LongFirstLine/optionalParams.html index dc6041ab8b..5b3d0e23c6 100644 --- a/testing/test_package_docs/fake/LongFirstLine/optionalParams.html +++ b/testing/test_package_docs/fake/LongFirstLine/optionalParams.html @@ -89,7 +89,8 @@

optionalParams method

bool - optionalParams(first, { second, int third }) + optionalParams +(first, { second, int third })

One dynamic param, two named optionals.

diff --git a/testing/test_package_docs/fake/LongFirstLine/returnString.html b/testing/test_package_docs/fake/LongFirstLine/returnString.html index 806f7ca270..110b4874d5 100644 --- a/testing/test_package_docs/fake/LongFirstLine/returnString.html +++ b/testing/test_package_docs/fake/LongFirstLine/returnString.html @@ -89,7 +89,8 @@

returnString method

String - returnString() + returnString +()

Returns a single string.

diff --git a/testing/test_package_docs/fake/LongFirstLine/staticGetter.html b/testing/test_package_docs/fake/LongFirstLine/staticGetter.html index ad962b312d..1a8b67f235 100644 --- a/testing/test_package_docs/fake/LongFirstLine/staticGetter.html +++ b/testing/test_package_docs/fake/LongFirstLine/staticGetter.html @@ -92,7 +92,8 @@

staticGetter property

int - staticGetter + staticGetter +
diff --git a/testing/test_package_docs/fake/LongFirstLine/staticMethodNoParams.html b/testing/test_package_docs/fake/LongFirstLine/staticMethodNoParams.html index 0561d449dc..55c4d0b548 100644 --- a/testing/test_package_docs/fake/LongFirstLine/staticMethodNoParams.html +++ b/testing/test_package_docs/fake/LongFirstLine/staticMethodNoParams.html @@ -89,7 +89,8 @@

staticMethodNoParams method

int - staticMethodNoParams() + staticMethodNoParams +()

Just a static method with no parameters.

diff --git a/testing/test_package_docs/fake/LongFirstLine/staticMethodReturnsVoid.html b/testing/test_package_docs/fake/LongFirstLine/staticMethodReturnsVoid.html index 8d3df7125b..928f9e09b2 100644 --- a/testing/test_package_docs/fake/LongFirstLine/staticMethodReturnsVoid.html +++ b/testing/test_package_docs/fake/LongFirstLine/staticMethodReturnsVoid.html @@ -89,7 +89,8 @@

staticMethodReturnsVoid method

void - staticMethodReturnsVoid(dynamicThing) + staticMethodReturnsVoid +(dynamicThing)

A static method that takes a single dynamic thing, and returns void.

diff --git a/testing/test_package_docs/fake/LongFirstLine/staticOnlySetter.html b/testing/test_package_docs/fake/LongFirstLine/staticOnlySetter.html index 36082ab648..63bfd9ac99 100644 --- a/testing/test_package_docs/fake/LongFirstLine/staticOnlySetter.html +++ b/testing/test_package_docs/fake/LongFirstLine/staticOnlySetter.html @@ -93,7 +93,8 @@

staticOnlySetter property

void - staticOnlySetter=(bool thing) + staticOnlySetter= +(bool thing)
diff --git a/testing/test_package_docs/fake/LongFirstLine/twoParams.html b/testing/test_package_docs/fake/LongFirstLine/twoParams.html index 6e9387e12c..4717bb4f0b 100644 --- a/testing/test_package_docs/fake/LongFirstLine/twoParams.html +++ b/testing/test_package_docs/fake/LongFirstLine/twoParams.html @@ -89,7 +89,8 @@

twoParams method

int - twoParams(String one, two) + twoParams +(String one, two)

Two params, the first has a type annotation, the second does not.

diff --git a/testing/test_package_docs/fake/LotsAndLotsOfParameters.html b/testing/test_package_docs/fake/LotsAndLotsOfParameters.html index f0b9d28bf5..1c50ad5aff 100644 --- a/testing/test_package_docs/fake/LotsAndLotsOfParameters.html +++ b/testing/test_package_docs/fake/LotsAndLotsOfParameters.html @@ -132,7 +132,8 @@

LotsAndLotsOfParameters typedef

int - LotsAndLotsOfParameters(so, many, parameters, it, should, wrap, when, converted, to, html, documentation) + LotsAndLotsOfParameters +(so, many, parameters, it, should, wrap, when, converted, to, html, documentation)
diff --git a/testing/test_package_docs/fake/MixMeIn/hashCode.html b/testing/test_package_docs/fake/MixMeIn/hashCode.html index aee9298660..82d2a109bd 100644 --- a/testing/test_package_docs/fake/MixMeIn/hashCode.html +++ b/testing/test_package_docs/fake/MixMeIn/hashCode.html @@ -68,7 +68,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/fake/MixMeIn/noSuchMethod.html b/testing/test_package_docs/fake/MixMeIn/noSuchMethod.html index 9bdd0fed9f..bc19b37c61 100644 --- a/testing/test_package_docs/fake/MixMeIn/noSuchMethod.html +++ b/testing/test_package_docs/fake/MixMeIn/noSuchMethod.html @@ -65,7 +65,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/fake/MixMeIn/operator_equals.html b/testing/test_package_docs/fake/MixMeIn/operator_equals.html index cae52b2124..c20e066dc8 100644 --- a/testing/test_package_docs/fake/MixMeIn/operator_equals.html +++ b/testing/test_package_docs/fake/MixMeIn/operator_equals.html @@ -65,7 +65,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/fake/MixMeIn/runtimeType.html b/testing/test_package_docs/fake/MixMeIn/runtimeType.html index 982cd60a49..8bbddb31cf 100644 --- a/testing/test_package_docs/fake/MixMeIn/runtimeType.html +++ b/testing/test_package_docs/fake/MixMeIn/runtimeType.html @@ -68,7 +68,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/fake/MixMeIn/toString.html b/testing/test_package_docs/fake/MixMeIn/toString.html index d82667e783..aac1373fb0 100644 --- a/testing/test_package_docs/fake/MixMeIn/toString.html +++ b/testing/test_package_docs/fake/MixMeIn/toString.html @@ -65,7 +65,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html b/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html index 18e66f9b2d..dd57e6bf02 100644 --- a/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html +++ b/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html @@ -128,10 +128,11 @@
fake library
-

NAME_SINGLEUNDERSCORE top-level property

+

NAME_SINGLEUNDERSCORE top-level constant

- NAME_SINGLEUNDERSCORE = + const NAME_SINGLEUNDERSCORE + = 'yay bug hunting'
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 a2dfc0d86b..630dd5c399 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 @@ -128,10 +128,11 @@
fake library
-

NAME_WITH_TWO_UNDERSCORES top-level property

+

NAME_WITH_TWO_UNDERSCORES top-level constant

- NAME_WITH_TWO_UNDERSCORES = + const NAME_WITH_TWO_UNDERSCORES + = 'episode seven better be good; episode seven better be good; episode seven better be good; episode seven better be good'
diff --git a/testing/test_package_docs/fake/NewGenericTypedef.html b/testing/test_package_docs/fake/NewGenericTypedef.html index 3138fc1418..0f1f1ad165 100644 --- a/testing/test_package_docs/fake/NewGenericTypedef.html +++ b/testing/test_package_docs/fake/NewGenericTypedef.html @@ -132,7 +132,8 @@

NewGenericTypedef<T> typedef

List<S> - NewGenericTypedef<S>(T, int, bool) + NewGenericTypedef +<S>(T, int, bool)
diff --git a/testing/test_package_docs/fake/NotAMixin/hashCode.html b/testing/test_package_docs/fake/NotAMixin/hashCode.html index f35de620fd..0db9834fd6 100644 --- a/testing/test_package_docs/fake/NotAMixin/hashCode.html +++ b/testing/test_package_docs/fake/NotAMixin/hashCode.html @@ -69,7 +69,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/fake/NotAMixin/noSuchMethod.html b/testing/test_package_docs/fake/NotAMixin/noSuchMethod.html index 64d5d9d044..f03ab32056 100644 --- a/testing/test_package_docs/fake/NotAMixin/noSuchMethod.html +++ b/testing/test_package_docs/fake/NotAMixin/noSuchMethod.html @@ -66,7 +66,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/fake/NotAMixin/operator_equals.html b/testing/test_package_docs/fake/NotAMixin/operator_equals.html index 39f082ff77..5d5f572e8d 100644 --- a/testing/test_package_docs/fake/NotAMixin/operator_equals.html +++ b/testing/test_package_docs/fake/NotAMixin/operator_equals.html @@ -66,7 +66,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/fake/NotAMixin/runtimeType.html b/testing/test_package_docs/fake/NotAMixin/runtimeType.html index 00cc9c651d..59515ba941 100644 --- a/testing/test_package_docs/fake/NotAMixin/runtimeType.html +++ b/testing/test_package_docs/fake/NotAMixin/runtimeType.html @@ -69,7 +69,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/fake/NotAMixin/superString.html b/testing/test_package_docs/fake/NotAMixin/superString.html index 7e6f97ed53..b8bf7c0c6f 100644 --- a/testing/test_package_docs/fake/NotAMixin/superString.html +++ b/testing/test_package_docs/fake/NotAMixin/superString.html @@ -69,7 +69,8 @@

superString property

String - superString + superString +
diff --git a/testing/test_package_docs/fake/NotAMixin/toString.html b/testing/test_package_docs/fake/NotAMixin/toString.html index 0df6823b0e..baa92d983a 100644 --- a/testing/test_package_docs/fake/NotAMixin/toString.html +++ b/testing/test_package_docs/fake/NotAMixin/toString.html @@ -66,7 +66,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/fake/Oops/hashCode.html b/testing/test_package_docs/fake/Oops/hashCode.html index 64969bcf30..2185b873b1 100644 --- a/testing/test_package_docs/fake/Oops/hashCode.html +++ b/testing/test_package_docs/fake/Oops/hashCode.html @@ -69,7 +69,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/fake/Oops/message.html b/testing/test_package_docs/fake/Oops/message.html index 2e08b8abc6..21580ab073 100644 --- a/testing/test_package_docs/fake/Oops/message.html +++ b/testing/test_package_docs/fake/Oops/message.html @@ -66,7 +66,8 @@

message property

String - message
final
+ message +
final
diff --git a/testing/test_package_docs/fake/Oops/noSuchMethod.html b/testing/test_package_docs/fake/Oops/noSuchMethod.html index 116cd244ac..bd2c39af63 100644 --- a/testing/test_package_docs/fake/Oops/noSuchMethod.html +++ b/testing/test_package_docs/fake/Oops/noSuchMethod.html @@ -66,7 +66,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/fake/Oops/operator_equals.html b/testing/test_package_docs/fake/Oops/operator_equals.html index f9a69e0c85..bdab78d83d 100644 --- a/testing/test_package_docs/fake/Oops/operator_equals.html +++ b/testing/test_package_docs/fake/Oops/operator_equals.html @@ -66,7 +66,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/fake/Oops/runtimeType.html b/testing/test_package_docs/fake/Oops/runtimeType.html index df854e8ce7..0b03a3dc5d 100644 --- a/testing/test_package_docs/fake/Oops/runtimeType.html +++ b/testing/test_package_docs/fake/Oops/runtimeType.html @@ -69,7 +69,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/fake/Oops/toString.html b/testing/test_package_docs/fake/Oops/toString.html index 043ec6443a..4f9a092ced 100644 --- a/testing/test_package_docs/fake/Oops/toString.html +++ b/testing/test_package_docs/fake/Oops/toString.html @@ -66,7 +66,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/fake/OperatorReferenceClass/hashCode.html b/testing/test_package_docs/fake/OperatorReferenceClass/hashCode.html index 4dee47eb19..4c1916d44a 100644 --- a/testing/test_package_docs/fake/OperatorReferenceClass/hashCode.html +++ b/testing/test_package_docs/fake/OperatorReferenceClass/hashCode.html @@ -68,7 +68,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/fake/OperatorReferenceClass/noSuchMethod.html b/testing/test_package_docs/fake/OperatorReferenceClass/noSuchMethod.html index 5f0f440585..3c3dba77c3 100644 --- a/testing/test_package_docs/fake/OperatorReferenceClass/noSuchMethod.html +++ b/testing/test_package_docs/fake/OperatorReferenceClass/noSuchMethod.html @@ -65,7 +65,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/fake/OperatorReferenceClass/operator_equals.html b/testing/test_package_docs/fake/OperatorReferenceClass/operator_equals.html index 90b4f2ba0c..2e0cfe1313 100644 --- a/testing/test_package_docs/fake/OperatorReferenceClass/operator_equals.html +++ b/testing/test_package_docs/fake/OperatorReferenceClass/operator_equals.html @@ -70,7 +70,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/fake/OperatorReferenceClass/runtimeType.html b/testing/test_package_docs/fake/OperatorReferenceClass/runtimeType.html index 9d5d245b88..a513d83574 100644 --- a/testing/test_package_docs/fake/OperatorReferenceClass/runtimeType.html +++ b/testing/test_package_docs/fake/OperatorReferenceClass/runtimeType.html @@ -68,7 +68,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/fake/OperatorReferenceClass/toString.html b/testing/test_package_docs/fake/OperatorReferenceClass/toString.html index 4ecfc92a29..e2135bb971 100644 --- a/testing/test_package_docs/fake/OperatorReferenceClass/toString.html +++ b/testing/test_package_docs/fake/OperatorReferenceClass/toString.html @@ -65,7 +65,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/fake/OtherGenericsThing/convert.html b/testing/test_package_docs/fake/OtherGenericsThing/convert.html index bde1ed567a..96b25ed060 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing/convert.html +++ b/testing/test_package_docs/fake/OtherGenericsThing/convert.html @@ -66,7 +66,8 @@

convert method

HasGenerics<A, Cool, String> - convert() + convert +()
diff --git a/testing/test_package_docs/fake/OtherGenericsThing/hashCode.html b/testing/test_package_docs/fake/OtherGenericsThing/hashCode.html index d22b149209..601d51d7a1 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing/hashCode.html +++ b/testing/test_package_docs/fake/OtherGenericsThing/hashCode.html @@ -69,7 +69,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/fake/OtherGenericsThing/noSuchMethod.html b/testing/test_package_docs/fake/OtherGenericsThing/noSuchMethod.html index 693091fc27..e69c84c3b7 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing/noSuchMethod.html +++ b/testing/test_package_docs/fake/OtherGenericsThing/noSuchMethod.html @@ -66,7 +66,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/fake/OtherGenericsThing/operator_equals.html b/testing/test_package_docs/fake/OtherGenericsThing/operator_equals.html index 874405dba0..139b25997b 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing/operator_equals.html +++ b/testing/test_package_docs/fake/OtherGenericsThing/operator_equals.html @@ -66,7 +66,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/fake/OtherGenericsThing/runtimeType.html b/testing/test_package_docs/fake/OtherGenericsThing/runtimeType.html index 4e0b83c193..b09b1e4ca6 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing/runtimeType.html +++ b/testing/test_package_docs/fake/OtherGenericsThing/runtimeType.html @@ -69,7 +69,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/fake/OtherGenericsThing/toString.html b/testing/test_package_docs/fake/OtherGenericsThing/toString.html index 452f1c8e93..e992a0bb27 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing/toString.html +++ b/testing/test_package_docs/fake/OtherGenericsThing/toString.html @@ -66,7 +66,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/fake/PI-constant.html b/testing/test_package_docs/fake/PI-constant.html index fd11cc75fb..d1d9d61b07 100644 --- a/testing/test_package_docs/fake/PI-constant.html +++ b/testing/test_package_docs/fake/PI-constant.html @@ -128,10 +128,11 @@
fake library
-

PI top-level property

+

PI top-level constant

- PI = + const PI + = 3.14159
diff --git a/testing/test_package_docs/fake/SpecialList/add.html b/testing/test_package_docs/fake/SpecialList/add.html index 8e7a09c261..3038792fc0 100644 --- a/testing/test_package_docs/fake/SpecialList/add.html +++ b/testing/test_package_docs/fake/SpecialList/add.html @@ -117,7 +117,8 @@

add method

void - add(E element) + add +(E element)
diff --git a/testing/test_package_docs/fake/SpecialList/addAll.html b/testing/test_package_docs/fake/SpecialList/addAll.html index d9c60af2c0..8045a5a146 100644 --- a/testing/test_package_docs/fake/SpecialList/addAll.html +++ b/testing/test_package_docs/fake/SpecialList/addAll.html @@ -117,7 +117,8 @@

addAll method

void - addAll(Iterable<E> iterable) + addAll +(Iterable<E> iterable)
diff --git a/testing/test_package_docs/fake/SpecialList/any.html b/testing/test_package_docs/fake/SpecialList/any.html index c7d9ef00bf..2bde678f5b 100644 --- a/testing/test_package_docs/fake/SpecialList/any.html +++ b/testing/test_package_docs/fake/SpecialList/any.html @@ -117,7 +117,8 @@

any method

bool - any(bool test(E element)) + any +(bool test(E element))
diff --git a/testing/test_package_docs/fake/SpecialList/asMap.html b/testing/test_package_docs/fake/SpecialList/asMap.html index 2c02a5648a..309aaa7753 100644 --- a/testing/test_package_docs/fake/SpecialList/asMap.html +++ b/testing/test_package_docs/fake/SpecialList/asMap.html @@ -117,7 +117,8 @@

asMap method

Map<int, E> - asMap() + asMap +()
diff --git a/testing/test_package_docs/fake/SpecialList/clear.html b/testing/test_package_docs/fake/SpecialList/clear.html index a7b42e8ea2..2f49699ff7 100644 --- a/testing/test_package_docs/fake/SpecialList/clear.html +++ b/testing/test_package_docs/fake/SpecialList/clear.html @@ -117,7 +117,8 @@

clear method

void - clear() + clear +()
diff --git a/testing/test_package_docs/fake/SpecialList/contains.html b/testing/test_package_docs/fake/SpecialList/contains.html index 45f8c54928..9180b6ec09 100644 --- a/testing/test_package_docs/fake/SpecialList/contains.html +++ b/testing/test_package_docs/fake/SpecialList/contains.html @@ -117,7 +117,8 @@

contains method

bool - contains(Object element) + contains +(Object element)
diff --git a/testing/test_package_docs/fake/SpecialList/elementAt.html b/testing/test_package_docs/fake/SpecialList/elementAt.html index c5220d0164..a358b8f680 100644 --- a/testing/test_package_docs/fake/SpecialList/elementAt.html +++ b/testing/test_package_docs/fake/SpecialList/elementAt.html @@ -117,7 +117,8 @@

elementAt method

E - elementAt(int index) + elementAt +(int index)
diff --git a/testing/test_package_docs/fake/SpecialList/every.html b/testing/test_package_docs/fake/SpecialList/every.html index 4f06b32259..1bcd3c3114 100644 --- a/testing/test_package_docs/fake/SpecialList/every.html +++ b/testing/test_package_docs/fake/SpecialList/every.html @@ -117,7 +117,8 @@

every method

bool - every(bool test(E element)) + every +(bool test(E element))
diff --git a/testing/test_package_docs/fake/SpecialList/expand.html b/testing/test_package_docs/fake/SpecialList/expand.html index 2d0548a220..65a9a51ab1 100644 --- a/testing/test_package_docs/fake/SpecialList/expand.html +++ b/testing/test_package_docs/fake/SpecialList/expand.html @@ -117,7 +117,8 @@

expand<T> method

Iterable<T> - expand<T>(Iterable<T> f(E element)) + expand +<T>(Iterable<T> f(E element))
diff --git a/testing/test_package_docs/fake/SpecialList/fillRange.html b/testing/test_package_docs/fake/SpecialList/fillRange.html index d3412b7b3c..cc6c4417bf 100644 --- a/testing/test_package_docs/fake/SpecialList/fillRange.html +++ b/testing/test_package_docs/fake/SpecialList/fillRange.html @@ -117,7 +117,8 @@

fillRange method

void - fillRange(int start, int end, [ E fill ]) + fillRange +(int start, int end, [ E fill ])
diff --git a/testing/test_package_docs/fake/SpecialList/first.html b/testing/test_package_docs/fake/SpecialList/first.html index 3eae53ddd8..50f38e36ab 100644 --- a/testing/test_package_docs/fake/SpecialList/first.html +++ b/testing/test_package_docs/fake/SpecialList/first.html @@ -120,7 +120,8 @@

first property

E - first
inherited
+ first +
inherited
diff --git a/testing/test_package_docs/fake/SpecialList/firstWhere.html b/testing/test_package_docs/fake/SpecialList/firstWhere.html index d2ab96d344..7cdb606849 100644 --- a/testing/test_package_docs/fake/SpecialList/firstWhere.html +++ b/testing/test_package_docs/fake/SpecialList/firstWhere.html @@ -117,7 +117,8 @@

firstWhere method

E - firstWhere(bool test(E element), { E orElse() }) + firstWhere +(bool test(E element), { E orElse() })
diff --git a/testing/test_package_docs/fake/SpecialList/fold.html b/testing/test_package_docs/fake/SpecialList/fold.html index 6590c67a06..76e1105ae2 100644 --- a/testing/test_package_docs/fake/SpecialList/fold.html +++ b/testing/test_package_docs/fake/SpecialList/fold.html @@ -117,7 +117,8 @@

fold<T> method

T - fold<T>(T initialValue, T combine(T previousValue, E element)) + fold +<T>(T initialValue, T combine(T previousValue, E element))
diff --git a/testing/test_package_docs/fake/SpecialList/forEach.html b/testing/test_package_docs/fake/SpecialList/forEach.html index 664b5e484c..efb43150b3 100644 --- a/testing/test_package_docs/fake/SpecialList/forEach.html +++ b/testing/test_package_docs/fake/SpecialList/forEach.html @@ -117,7 +117,8 @@

forEach method

void - forEach(void action(E element)) + forEach +(void action(E element))
diff --git a/testing/test_package_docs/fake/SpecialList/getRange.html b/testing/test_package_docs/fake/SpecialList/getRange.html index 2e68592f7e..d3eed551cf 100644 --- a/testing/test_package_docs/fake/SpecialList/getRange.html +++ b/testing/test_package_docs/fake/SpecialList/getRange.html @@ -117,7 +117,8 @@

getRange method

Iterable<E> - getRange(int start, int end) + getRange +(int start, int end)
diff --git a/testing/test_package_docs/fake/SpecialList/hashCode.html b/testing/test_package_docs/fake/SpecialList/hashCode.html index 9f1a747d63..be26d46e2f 100644 --- a/testing/test_package_docs/fake/SpecialList/hashCode.html +++ b/testing/test_package_docs/fake/SpecialList/hashCode.html @@ -120,7 +120,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/fake/SpecialList/indexOf.html b/testing/test_package_docs/fake/SpecialList/indexOf.html index 1f2ee3142b..93a0039364 100644 --- a/testing/test_package_docs/fake/SpecialList/indexOf.html +++ b/testing/test_package_docs/fake/SpecialList/indexOf.html @@ -117,7 +117,8 @@

indexOf method

int - indexOf(Object element, [ int startIndex = 0 ]) + indexOf +(Object element, [ int startIndex = 0 ])
diff --git a/testing/test_package_docs/fake/SpecialList/insert.html b/testing/test_package_docs/fake/SpecialList/insert.html index a31cfdc2ef..0967f609db 100644 --- a/testing/test_package_docs/fake/SpecialList/insert.html +++ b/testing/test_package_docs/fake/SpecialList/insert.html @@ -117,7 +117,8 @@

insert method

void - insert(int index, E element) + insert +(int index, E element)
diff --git a/testing/test_package_docs/fake/SpecialList/insertAll.html b/testing/test_package_docs/fake/SpecialList/insertAll.html index 58380698ea..c0d1ee8208 100644 --- a/testing/test_package_docs/fake/SpecialList/insertAll.html +++ b/testing/test_package_docs/fake/SpecialList/insertAll.html @@ -117,7 +117,8 @@

insertAll method

void - insertAll(int index, Iterable<E> iterable) + insertAll +(int index, Iterable<E> iterable)
diff --git a/testing/test_package_docs/fake/SpecialList/isEmpty.html b/testing/test_package_docs/fake/SpecialList/isEmpty.html index 02b57d0720..043e431715 100644 --- a/testing/test_package_docs/fake/SpecialList/isEmpty.html +++ b/testing/test_package_docs/fake/SpecialList/isEmpty.html @@ -120,7 +120,8 @@

isEmpty property

bool - isEmpty
inherited
+ isEmpty +
inherited
diff --git a/testing/test_package_docs/fake/SpecialList/isNotEmpty.html b/testing/test_package_docs/fake/SpecialList/isNotEmpty.html index 8de961253b..0b8c871c1f 100644 --- a/testing/test_package_docs/fake/SpecialList/isNotEmpty.html +++ b/testing/test_package_docs/fake/SpecialList/isNotEmpty.html @@ -120,7 +120,8 @@

isNotEmpty property

bool - isNotEmpty
inherited
+ isNotEmpty +
inherited
diff --git a/testing/test_package_docs/fake/SpecialList/iterator.html b/testing/test_package_docs/fake/SpecialList/iterator.html index 6ec4bd189f..f1aef1e9fd 100644 --- a/testing/test_package_docs/fake/SpecialList/iterator.html +++ b/testing/test_package_docs/fake/SpecialList/iterator.html @@ -120,7 +120,8 @@

iterator property

Iterator<E> - iterator
inherited
+ iterator +
inherited
diff --git a/testing/test_package_docs/fake/SpecialList/join.html b/testing/test_package_docs/fake/SpecialList/join.html index 8ce6979ab4..e49fb02752 100644 --- a/testing/test_package_docs/fake/SpecialList/join.html +++ b/testing/test_package_docs/fake/SpecialList/join.html @@ -117,7 +117,8 @@

join method

String - join([String separator = "" ]) + join +([String separator = "" ])
diff --git a/testing/test_package_docs/fake/SpecialList/last.html b/testing/test_package_docs/fake/SpecialList/last.html index 74ba27d57b..a264926304 100644 --- a/testing/test_package_docs/fake/SpecialList/last.html +++ b/testing/test_package_docs/fake/SpecialList/last.html @@ -120,7 +120,8 @@

last property

E - last
inherited
+ last +
inherited
diff --git a/testing/test_package_docs/fake/SpecialList/lastIndexOf.html b/testing/test_package_docs/fake/SpecialList/lastIndexOf.html index 51feb31ab7..c77f81ba52 100644 --- a/testing/test_package_docs/fake/SpecialList/lastIndexOf.html +++ b/testing/test_package_docs/fake/SpecialList/lastIndexOf.html @@ -117,7 +117,8 @@

lastIndexOf method

int - lastIndexOf(Object element, [ int startIndex ]) + lastIndexOf +(Object element, [ int startIndex ])
diff --git a/testing/test_package_docs/fake/SpecialList/lastWhere.html b/testing/test_package_docs/fake/SpecialList/lastWhere.html index c2723b44da..2632c865c9 100644 --- a/testing/test_package_docs/fake/SpecialList/lastWhere.html +++ b/testing/test_package_docs/fake/SpecialList/lastWhere.html @@ -117,7 +117,8 @@

lastWhere method

E - lastWhere(bool test(E element), { E orElse() }) + lastWhere +(bool test(E element), { E orElse() })
diff --git a/testing/test_package_docs/fake/SpecialList/length.html b/testing/test_package_docs/fake/SpecialList/length.html index a1443cab3a..a6c42e9274 100644 --- a/testing/test_package_docs/fake/SpecialList/length.html +++ b/testing/test_package_docs/fake/SpecialList/length.html @@ -120,7 +120,8 @@

length property

int - length + length +
@@ -130,7 +131,8 @@

length property

void - length=(int length) + length= +(int length)
diff --git a/testing/test_package_docs/fake/SpecialList/map.html b/testing/test_package_docs/fake/SpecialList/map.html index 103df26767..20ac7c8ef1 100644 --- a/testing/test_package_docs/fake/SpecialList/map.html +++ b/testing/test_package_docs/fake/SpecialList/map.html @@ -117,7 +117,8 @@

map<T> method

Iterable<T> - map<T>(T f(E element)) + map +<T>(T f(E element))
diff --git a/testing/test_package_docs/fake/SpecialList/noSuchMethod.html b/testing/test_package_docs/fake/SpecialList/noSuchMethod.html index 13eaee1c3e..556b6a4e8f 100644 --- a/testing/test_package_docs/fake/SpecialList/noSuchMethod.html +++ b/testing/test_package_docs/fake/SpecialList/noSuchMethod.html @@ -117,7 +117,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/fake/SpecialList/operator_equals.html b/testing/test_package_docs/fake/SpecialList/operator_equals.html index 4d76b3e539..129d232a1a 100644 --- a/testing/test_package_docs/fake/SpecialList/operator_equals.html +++ b/testing/test_package_docs/fake/SpecialList/operator_equals.html @@ -117,7 +117,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/fake/SpecialList/operator_get.html b/testing/test_package_docs/fake/SpecialList/operator_get.html index 6e428e277a..201a021b3c 100644 --- a/testing/test_package_docs/fake/SpecialList/operator_get.html +++ b/testing/test_package_docs/fake/SpecialList/operator_get.html @@ -117,7 +117,8 @@

operator [] method

E - operator [](int index) + operator [] +(int index)
diff --git a/testing/test_package_docs/fake/SpecialList/operator_put.html b/testing/test_package_docs/fake/SpecialList/operator_put.html index 69974c0a9a..77dba9cdf9 100644 --- a/testing/test_package_docs/fake/SpecialList/operator_put.html +++ b/testing/test_package_docs/fake/SpecialList/operator_put.html @@ -117,7 +117,8 @@

operator []= method

void - operator []=(int index, E value) + operator []= +(int index, E value)
diff --git a/testing/test_package_docs/fake/SpecialList/reduce.html b/testing/test_package_docs/fake/SpecialList/reduce.html index b5e41fb5d5..3ca7e1884c 100644 --- a/testing/test_package_docs/fake/SpecialList/reduce.html +++ b/testing/test_package_docs/fake/SpecialList/reduce.html @@ -117,7 +117,8 @@

reduce method

E - reduce(E combine(E previousValue, E element)) + reduce +(E combine(E previousValue, E element))
diff --git a/testing/test_package_docs/fake/SpecialList/remove.html b/testing/test_package_docs/fake/SpecialList/remove.html index ab50eb63d5..32ee45be09 100644 --- a/testing/test_package_docs/fake/SpecialList/remove.html +++ b/testing/test_package_docs/fake/SpecialList/remove.html @@ -117,7 +117,8 @@

remove method

bool - remove(Object element) + remove +(Object element)
diff --git a/testing/test_package_docs/fake/SpecialList/removeAt.html b/testing/test_package_docs/fake/SpecialList/removeAt.html index 11248ff052..053b1a385b 100644 --- a/testing/test_package_docs/fake/SpecialList/removeAt.html +++ b/testing/test_package_docs/fake/SpecialList/removeAt.html @@ -117,7 +117,8 @@

removeAt method

E - removeAt(int index) + removeAt +(int index)
diff --git a/testing/test_package_docs/fake/SpecialList/removeLast.html b/testing/test_package_docs/fake/SpecialList/removeLast.html index 10b7c76f59..6c8459f34d 100644 --- a/testing/test_package_docs/fake/SpecialList/removeLast.html +++ b/testing/test_package_docs/fake/SpecialList/removeLast.html @@ -117,7 +117,8 @@

removeLast method

E - removeLast() + removeLast +()
diff --git a/testing/test_package_docs/fake/SpecialList/removeRange.html b/testing/test_package_docs/fake/SpecialList/removeRange.html index ca8c74695b..78b7d517c8 100644 --- a/testing/test_package_docs/fake/SpecialList/removeRange.html +++ b/testing/test_package_docs/fake/SpecialList/removeRange.html @@ -117,7 +117,8 @@

removeRange method

void - removeRange(int start, int end) + removeRange +(int start, int end)
diff --git a/testing/test_package_docs/fake/SpecialList/removeWhere.html b/testing/test_package_docs/fake/SpecialList/removeWhere.html index 3bd4727e89..f355030be9 100644 --- a/testing/test_package_docs/fake/SpecialList/removeWhere.html +++ b/testing/test_package_docs/fake/SpecialList/removeWhere.html @@ -117,7 +117,8 @@

removeWhere method

void - removeWhere(bool test(E element)) + removeWhere +(bool test(E element))
diff --git a/testing/test_package_docs/fake/SpecialList/replaceRange.html b/testing/test_package_docs/fake/SpecialList/replaceRange.html index ddbfba38d5..c236507451 100644 --- a/testing/test_package_docs/fake/SpecialList/replaceRange.html +++ b/testing/test_package_docs/fake/SpecialList/replaceRange.html @@ -117,7 +117,8 @@

replaceRange method

void - replaceRange(int start, int end, Iterable<E> newContents) + replaceRange +(int start, int end, Iterable<E> newContents)
diff --git a/testing/test_package_docs/fake/SpecialList/retainWhere.html b/testing/test_package_docs/fake/SpecialList/retainWhere.html index 51b0edad42..002bc23b56 100644 --- a/testing/test_package_docs/fake/SpecialList/retainWhere.html +++ b/testing/test_package_docs/fake/SpecialList/retainWhere.html @@ -117,7 +117,8 @@

retainWhere method

void - retainWhere(bool test(E element)) + retainWhere +(bool test(E element))
diff --git a/testing/test_package_docs/fake/SpecialList/reversed.html b/testing/test_package_docs/fake/SpecialList/reversed.html index 793634e266..01368524ef 100644 --- a/testing/test_package_docs/fake/SpecialList/reversed.html +++ b/testing/test_package_docs/fake/SpecialList/reversed.html @@ -120,7 +120,8 @@

reversed property

Iterable<E> - reversed
inherited
+ reversed +
inherited
diff --git a/testing/test_package_docs/fake/SpecialList/runtimeType.html b/testing/test_package_docs/fake/SpecialList/runtimeType.html index 8ad95ebe6e..405ac258fa 100644 --- a/testing/test_package_docs/fake/SpecialList/runtimeType.html +++ b/testing/test_package_docs/fake/SpecialList/runtimeType.html @@ -120,7 +120,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/fake/SpecialList/setAll.html b/testing/test_package_docs/fake/SpecialList/setAll.html index e6c6425d1f..582aaa0f9f 100644 --- a/testing/test_package_docs/fake/SpecialList/setAll.html +++ b/testing/test_package_docs/fake/SpecialList/setAll.html @@ -117,7 +117,8 @@

setAll method

void - setAll(int index, Iterable<E> iterable) + setAll +(int index, Iterable<E> iterable)
diff --git a/testing/test_package_docs/fake/SpecialList/setRange.html b/testing/test_package_docs/fake/SpecialList/setRange.html index 34780c274f..5372224628 100644 --- a/testing/test_package_docs/fake/SpecialList/setRange.html +++ b/testing/test_package_docs/fake/SpecialList/setRange.html @@ -117,7 +117,8 @@

setRange method

void - setRange(int start, int end, Iterable<E> iterable, [ int skipCount = 0 ]) + setRange +(int start, int end, Iterable<E> iterable, [ int skipCount = 0 ])
diff --git a/testing/test_package_docs/fake/SpecialList/shuffle.html b/testing/test_package_docs/fake/SpecialList/shuffle.html index 2c532bb455..7912edc517 100644 --- a/testing/test_package_docs/fake/SpecialList/shuffle.html +++ b/testing/test_package_docs/fake/SpecialList/shuffle.html @@ -117,7 +117,8 @@

shuffle method

void - shuffle([Random random ]) + shuffle +([Random random ])
diff --git a/testing/test_package_docs/fake/SpecialList/single.html b/testing/test_package_docs/fake/SpecialList/single.html index 2bfc0ab8ab..ed79e95a56 100644 --- a/testing/test_package_docs/fake/SpecialList/single.html +++ b/testing/test_package_docs/fake/SpecialList/single.html @@ -120,7 +120,8 @@

single property

E - single
inherited
+ single +
inherited
diff --git a/testing/test_package_docs/fake/SpecialList/singleWhere.html b/testing/test_package_docs/fake/SpecialList/singleWhere.html index c78ae195d1..5eacbb5f76 100644 --- a/testing/test_package_docs/fake/SpecialList/singleWhere.html +++ b/testing/test_package_docs/fake/SpecialList/singleWhere.html @@ -117,7 +117,8 @@

singleWhere method

E - singleWhere(bool test(E element)) + singleWhere +(bool test(E element))
diff --git a/testing/test_package_docs/fake/SpecialList/skip.html b/testing/test_package_docs/fake/SpecialList/skip.html index 77b78dd2ad..f4b0cb7a9f 100644 --- a/testing/test_package_docs/fake/SpecialList/skip.html +++ b/testing/test_package_docs/fake/SpecialList/skip.html @@ -117,7 +117,8 @@

skip method

Iterable<E> - skip(int count) + skip +(int count)
diff --git a/testing/test_package_docs/fake/SpecialList/skipWhile.html b/testing/test_package_docs/fake/SpecialList/skipWhile.html index 68f10ae503..4ba48b8ad5 100644 --- a/testing/test_package_docs/fake/SpecialList/skipWhile.html +++ b/testing/test_package_docs/fake/SpecialList/skipWhile.html @@ -117,7 +117,8 @@

skipWhile method

Iterable<E> - skipWhile(bool test(E element)) + skipWhile +(bool test(E element))
diff --git a/testing/test_package_docs/fake/SpecialList/sort.html b/testing/test_package_docs/fake/SpecialList/sort.html index d5f5a46192..29974fee8c 100644 --- a/testing/test_package_docs/fake/SpecialList/sort.html +++ b/testing/test_package_docs/fake/SpecialList/sort.html @@ -117,7 +117,8 @@

sort method

void - sort([int compare(E a, E b) ]) + sort +([int compare(E a, E b) ])
diff --git a/testing/test_package_docs/fake/SpecialList/sublist.html b/testing/test_package_docs/fake/SpecialList/sublist.html index db7480e668..0340a94355 100644 --- a/testing/test_package_docs/fake/SpecialList/sublist.html +++ b/testing/test_package_docs/fake/SpecialList/sublist.html @@ -117,7 +117,8 @@

sublist method

List<E> - sublist(int start, [ int end ]) + sublist +(int start, [ int end ])
diff --git a/testing/test_package_docs/fake/SpecialList/take.html b/testing/test_package_docs/fake/SpecialList/take.html index aedc22b079..301cf59a1f 100644 --- a/testing/test_package_docs/fake/SpecialList/take.html +++ b/testing/test_package_docs/fake/SpecialList/take.html @@ -117,7 +117,8 @@

take method

Iterable<E> - take(int count) + take +(int count)
diff --git a/testing/test_package_docs/fake/SpecialList/takeWhile.html b/testing/test_package_docs/fake/SpecialList/takeWhile.html index 3fc0d75f74..2081aa5805 100644 --- a/testing/test_package_docs/fake/SpecialList/takeWhile.html +++ b/testing/test_package_docs/fake/SpecialList/takeWhile.html @@ -117,7 +117,8 @@

takeWhile method

Iterable<E> - takeWhile(bool test(E element)) + takeWhile +(bool test(E element))
diff --git a/testing/test_package_docs/fake/SpecialList/toList.html b/testing/test_package_docs/fake/SpecialList/toList.html index d344ef10b3..9fd5961770 100644 --- a/testing/test_package_docs/fake/SpecialList/toList.html +++ b/testing/test_package_docs/fake/SpecialList/toList.html @@ -117,7 +117,8 @@

toList method

List<E> - toList({bool growable: true }) + toList +({bool growable: true })
diff --git a/testing/test_package_docs/fake/SpecialList/toSet.html b/testing/test_package_docs/fake/SpecialList/toSet.html index d4f5b9fada..ac27286811 100644 --- a/testing/test_package_docs/fake/SpecialList/toSet.html +++ b/testing/test_package_docs/fake/SpecialList/toSet.html @@ -117,7 +117,8 @@

toSet method

Set<E> - toSet() + toSet +()
diff --git a/testing/test_package_docs/fake/SpecialList/toString.html b/testing/test_package_docs/fake/SpecialList/toString.html index dcdab4910b..2f2fbfe721 100644 --- a/testing/test_package_docs/fake/SpecialList/toString.html +++ b/testing/test_package_docs/fake/SpecialList/toString.html @@ -117,7 +117,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/fake/SpecialList/where.html b/testing/test_package_docs/fake/SpecialList/where.html index eadb01cf56..f726cc41d1 100644 --- a/testing/test_package_docs/fake/SpecialList/where.html +++ b/testing/test_package_docs/fake/SpecialList/where.html @@ -117,7 +117,8 @@

where method

Iterable<E> - where(bool test(E element)) + where +(bool test(E element))
diff --git a/testing/test_package_docs/fake/SubForDocComments/localMethod.html b/testing/test_package_docs/fake/SubForDocComments/localMethod.html index 2969ed2609..1118a24ebe 100644 --- a/testing/test_package_docs/fake/SubForDocComments/localMethod.html +++ b/testing/test_package_docs/fake/SubForDocComments/localMethod.html @@ -68,7 +68,8 @@

localMethod method

void - localMethod(String foo, bar) + localMethod +(String foo, bar)

Reference to foo and bar

diff --git a/testing/test_package_docs/fake/SuperAwesomeClass/fly.html b/testing/test_package_docs/fake/SuperAwesomeClass/fly.html index 9cd03e2d30..dd40d208e0 100644 --- a/testing/test_package_docs/fake/SuperAwesomeClass/fly.html +++ b/testing/test_package_docs/fake/SuperAwesomeClass/fly.html @@ -68,7 +68,8 @@

fly method

void - fly(int height, Cool superCool, { String msg }) + fly +(int height, Cool superCool, { String msg })

In the super class.

diff --git a/testing/test_package_docs/fake/SuperAwesomeClass/hashCode.html b/testing/test_package_docs/fake/SuperAwesomeClass/hashCode.html index ae496e8b11..d4a17de4db 100644 --- a/testing/test_package_docs/fake/SuperAwesomeClass/hashCode.html +++ b/testing/test_package_docs/fake/SuperAwesomeClass/hashCode.html @@ -71,7 +71,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/fake/SuperAwesomeClass/noSuchMethod.html b/testing/test_package_docs/fake/SuperAwesomeClass/noSuchMethod.html index 3db65fb393..d4e93d3239 100644 --- a/testing/test_package_docs/fake/SuperAwesomeClass/noSuchMethod.html +++ b/testing/test_package_docs/fake/SuperAwesomeClass/noSuchMethod.html @@ -68,7 +68,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/fake/SuperAwesomeClass/operator_equals.html b/testing/test_package_docs/fake/SuperAwesomeClass/operator_equals.html index ad87910bdc..397fff8581 100644 --- a/testing/test_package_docs/fake/SuperAwesomeClass/operator_equals.html +++ b/testing/test_package_docs/fake/SuperAwesomeClass/operator_equals.html @@ -68,7 +68,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/fake/SuperAwesomeClass/operator_minus.html b/testing/test_package_docs/fake/SuperAwesomeClass/operator_minus.html index 5664a2d350..c0681e2d7e 100644 --- a/testing/test_package_docs/fake/SuperAwesomeClass/operator_minus.html +++ b/testing/test_package_docs/fake/SuperAwesomeClass/operator_minus.html @@ -68,7 +68,8 @@

operator - method

SuperAwesomeClass - operator -(other) + operator - +(other)
diff --git a/testing/test_package_docs/fake/SuperAwesomeClass/powers.html b/testing/test_package_docs/fake/SuperAwesomeClass/powers.html index d1b7971be3..50f710886b 100644 --- a/testing/test_package_docs/fake/SuperAwesomeClass/powers.html +++ b/testing/test_package_docs/fake/SuperAwesomeClass/powers.html @@ -68,7 +68,8 @@

powers property

List<String> - powers
read / write
+ powers +
read / write

In the super class.

diff --git a/testing/test_package_docs/fake/SuperAwesomeClass/runtimeType.html b/testing/test_package_docs/fake/SuperAwesomeClass/runtimeType.html index 8e86476a3a..75e7fd0a5b 100644 --- a/testing/test_package_docs/fake/SuperAwesomeClass/runtimeType.html +++ b/testing/test_package_docs/fake/SuperAwesomeClass/runtimeType.html @@ -71,7 +71,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/fake/SuperAwesomeClass/toString.html b/testing/test_package_docs/fake/SuperAwesomeClass/toString.html index 3c5a9a3860..8a361ba434 100644 --- a/testing/test_package_docs/fake/SuperAwesomeClass/toString.html +++ b/testing/test_package_docs/fake/SuperAwesomeClass/toString.html @@ -68,7 +68,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/fake/UP-constant.html b/testing/test_package_docs/fake/UP-constant.html index 8af16c6911..ff1196191e 100644 --- a/testing/test_package_docs/fake/UP-constant.html +++ b/testing/test_package_docs/fake/UP-constant.html @@ -128,10 +128,11 @@
fake library
-

UP top-level property

+

UP top-level constant

- UP = + const UP + = 'up'
diff --git a/testing/test_package_docs/fake/VoidCallback.html b/testing/test_package_docs/fake/VoidCallback.html index 935d1e3a6c..edcd38fca9 100644 --- a/testing/test_package_docs/fake/VoidCallback.html +++ b/testing/test_package_docs/fake/VoidCallback.html @@ -132,7 +132,8 @@

VoidCallback typedef

void - VoidCallback() + VoidCallback +()
diff --git a/testing/test_package_docs/fake/WithGetterAndSetter/hashCode.html b/testing/test_package_docs/fake/WithGetterAndSetter/hashCode.html index 14a43e4a1e..adf432f6e3 100644 --- a/testing/test_package_docs/fake/WithGetterAndSetter/hashCode.html +++ b/testing/test_package_docs/fake/WithGetterAndSetter/hashCode.html @@ -69,7 +69,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/fake/WithGetterAndSetter/lengthX.html b/testing/test_package_docs/fake/WithGetterAndSetter/lengthX.html index a478365a69..b6faa9fe81 100644 --- a/testing/test_package_docs/fake/WithGetterAndSetter/lengthX.html +++ b/testing/test_package_docs/fake/WithGetterAndSetter/lengthX.html @@ -69,7 +69,8 @@

lengthX property

int - lengthX + lengthX +
@@ -83,7 +84,8 @@

lengthX property

void - lengthX=(int _length) + lengthX= +(int _length)
diff --git a/testing/test_package_docs/fake/WithGetterAndSetter/noSuchMethod.html b/testing/test_package_docs/fake/WithGetterAndSetter/noSuchMethod.html index e9d416fea4..8a8841e7ed 100644 --- a/testing/test_package_docs/fake/WithGetterAndSetter/noSuchMethod.html +++ b/testing/test_package_docs/fake/WithGetterAndSetter/noSuchMethod.html @@ -66,7 +66,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/fake/WithGetterAndSetter/operator_equals.html b/testing/test_package_docs/fake/WithGetterAndSetter/operator_equals.html index 944ec7b2a7..7fb0f0fcbc 100644 --- a/testing/test_package_docs/fake/WithGetterAndSetter/operator_equals.html +++ b/testing/test_package_docs/fake/WithGetterAndSetter/operator_equals.html @@ -66,7 +66,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/fake/WithGetterAndSetter/runtimeType.html b/testing/test_package_docs/fake/WithGetterAndSetter/runtimeType.html index eeb308a221..62a1285cf1 100644 --- a/testing/test_package_docs/fake/WithGetterAndSetter/runtimeType.html +++ b/testing/test_package_docs/fake/WithGetterAndSetter/runtimeType.html @@ -69,7 +69,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/fake/WithGetterAndSetter/toString.html b/testing/test_package_docs/fake/WithGetterAndSetter/toString.html index 1bdc8af757..29b4dfb7a9 100644 --- a/testing/test_package_docs/fake/WithGetterAndSetter/toString.html +++ b/testing/test_package_docs/fake/WithGetterAndSetter/toString.html @@ -66,7 +66,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/fake/ZERO-constant.html b/testing/test_package_docs/fake/ZERO-constant.html index 3945828ba8..fc56ca4f37 100644 --- a/testing/test_package_docs/fake/ZERO-constant.html +++ b/testing/test_package_docs/fake/ZERO-constant.html @@ -128,10 +128,11 @@
fake library
-

ZERO top-level property

+

ZERO top-level constant

- ZERO = + const ZERO + = 0
diff --git a/testing/test_package_docs/fake/addCallback.html b/testing/test_package_docs/fake/addCallback.html index 1c8da37ed0..c60eb3d055 100644 --- a/testing/test_package_docs/fake/addCallback.html +++ b/testing/test_package_docs/fake/addCallback.html @@ -132,7 +132,8 @@

addCallback function

void - addCallback(VoidCallback callback) + addCallback +(VoidCallback callback)

Adds a callback.

diff --git a/testing/test_package_docs/fake/addCallback2.html b/testing/test_package_docs/fake/addCallback2.html index 1f858b572b..2015a8d429 100644 --- a/testing/test_package_docs/fake/addCallback2.html +++ b/testing/test_package_docs/fake/addCallback2.html @@ -132,7 +132,8 @@

addCallback2 function

void - addCallback2(Callback2 callback) + addCallback2 +(Callback2 callback)

Adds another callback.

diff --git a/testing/test_package_docs/fake/dynamicGetter.html b/testing/test_package_docs/fake/dynamicGetter.html index 44cd1345a6..6b10629819 100644 --- a/testing/test_package_docs/fake/dynamicGetter.html +++ b/testing/test_package_docs/fake/dynamicGetter.html @@ -135,7 +135,8 @@

dynamicGetter top-level property

dynamic - dynamicGetter + dynamicGetter +
diff --git a/testing/test_package_docs/fake/fake-library.html b/testing/test_package_docs/fake/fake-library.html index 3e4d50a492..946d9e2de6 100644 --- a/testing/test_package_docs/fake/fake-library.html +++ b/testing/test_package_docs/fake/fake-library.html @@ -268,18 +268,18 @@

Constants

CUSTOM_CLASS - ConstantClass + → const ConstantClass
- const ConstantClass('custom') + const ConstantClass('custom')
DOWN - → dynamic + → const dynamic
Dynamic-typed down. @@ -290,7 +290,7 @@

Constants

greatAnnotation - → dynamic + → const dynamic
This is a great thing. @@ -301,7 +301,7 @@

Constants

greatestAnnotation - → dynamic + → const dynamic
This is the greatest thing. @@ -312,7 +312,7 @@

Constants

incorrectDocReference - → dynamic + → const dynamic
Referencing something that doesn't exist. @@ -323,7 +323,7 @@

Constants

NAME_SINGLEUNDERSCORE - → String + → const String
@@ -334,7 +334,7 @@

Constants

NAME_WITH_TWO_UNDERSCORES - → String + → const String
@@ -345,7 +345,7 @@

Constants

PI - → double + → const double
Constant property. @@ -356,7 +356,7 @@

Constants

required - → dynamic + → const dynamic
@@ -367,7 +367,7 @@

Constants

testingCodeSyntaxInOneLiners - → dynamic + → const dynamic
These are code syntaxes: true and false @@ -378,7 +378,7 @@

Constants

UP - → String + → const String
Up is a direction. [...] @@ -389,7 +389,7 @@

Constants

ZERO - → int + → const int
A constant integer value, diff --git a/testing/test_package_docs/fake/functionWithFunctionParameters.html b/testing/test_package_docs/fake/functionWithFunctionParameters.html index ef0f657fc7..5e3cfaf053 100644 --- a/testing/test_package_docs/fake/functionWithFunctionParameters.html +++ b/testing/test_package_docs/fake/functionWithFunctionParameters.html @@ -132,7 +132,8 @@

functionWithFunctionParameters function

String - functionWithFunctionParameters(int number, void thing(one, two), String string, Future asyncThing(three, four, five, six, seven)) + functionWithFunctionParameters +(int number, void thing(one, two), String string, Future asyncThing(three, four, five, six, seven))

This function has two parameters that are functions.

diff --git a/testing/test_package_docs/fake/getterSetterNodocGetter.html b/testing/test_package_docs/fake/getterSetterNodocGetter.html index c2c6363840..263794b9fd 100644 --- a/testing/test_package_docs/fake/getterSetterNodocGetter.html +++ b/testing/test_package_docs/fake/getterSetterNodocGetter.html @@ -136,7 +136,8 @@

getterSetterNodocGetter top-level property

void - getterSetterNodocGetter=(int value) + getterSetterNodocGetter= +(int value)
diff --git a/testing/test_package_docs/fake/getterSetterNodocSetter.html b/testing/test_package_docs/fake/getterSetterNodocSetter.html index d784b5f75b..b5fcd8ba3e 100644 --- a/testing/test_package_docs/fake/getterSetterNodocSetter.html +++ b/testing/test_package_docs/fake/getterSetterNodocSetter.html @@ -135,7 +135,8 @@

getterSetterNodocSetter top-level property

int - getterSetterNodocSetter + getterSetterNodocSetter +
diff --git a/testing/test_package_docs/fake/greatAnnotation-constant.html b/testing/test_package_docs/fake/greatAnnotation-constant.html index 0d742630bd..ca06fb4791 100644 --- a/testing/test_package_docs/fake/greatAnnotation-constant.html +++ b/testing/test_package_docs/fake/greatAnnotation-constant.html @@ -128,10 +128,11 @@
fake library
-

greatAnnotation top-level property

+

greatAnnotation top-level constant

- greatAnnotation = + const greatAnnotation + = 'great'
diff --git a/testing/test_package_docs/fake/greatestAnnotation-constant.html b/testing/test_package_docs/fake/greatestAnnotation-constant.html index dda8de4e6b..f6dc851cfc 100644 --- a/testing/test_package_docs/fake/greatestAnnotation-constant.html +++ b/testing/test_package_docs/fake/greatestAnnotation-constant.html @@ -128,10 +128,11 @@
fake library
-

greatestAnnotation top-level property

+

greatestAnnotation top-level constant

- greatestAnnotation = + const greatestAnnotation + = 'greatest'
diff --git a/testing/test_package_docs/fake/incorrectDocReference-constant.html b/testing/test_package_docs/fake/incorrectDocReference-constant.html index 961ad38933..6a6f15f12f 100644 --- a/testing/test_package_docs/fake/incorrectDocReference-constant.html +++ b/testing/test_package_docs/fake/incorrectDocReference-constant.html @@ -128,10 +128,11 @@
fake library
-

incorrectDocReference top-level property

+

incorrectDocReference top-level constant

- incorrectDocReference = + const incorrectDocReference + = 'doh'
diff --git a/testing/test_package_docs/fake/justGetter.html b/testing/test_package_docs/fake/justGetter.html index 5d35200d2c..4fb53c9f56 100644 --- a/testing/test_package_docs/fake/justGetter.html +++ b/testing/test_package_docs/fake/justGetter.html @@ -135,7 +135,8 @@

justGetter top-level property

bool - justGetter + justGetter +
diff --git a/testing/test_package_docs/fake/justSetter.html b/testing/test_package_docs/fake/justSetter.html index 74dd6feb49..b0a91673a9 100644 --- a/testing/test_package_docs/fake/justSetter.html +++ b/testing/test_package_docs/fake/justSetter.html @@ -136,7 +136,8 @@

justSetter top-level property

void - justSetter=(int value) + justSetter= +(int value)
diff --git a/testing/test_package_docs/fake/mapWithDynamicKeys.html b/testing/test_package_docs/fake/mapWithDynamicKeys.html index e7203a144a..4dfb0cfe8e 100644 --- a/testing/test_package_docs/fake/mapWithDynamicKeys.html +++ b/testing/test_package_docs/fake/mapWithDynamicKeys.html @@ -132,7 +132,8 @@

mapWithDynamicKeys top-level property

Map<dynamic, String> - mapWithDynamicKeys
read / write
+ mapWithDynamicKeys +
read / write
diff --git a/testing/test_package_docs/fake/meaningOfLife.html b/testing/test_package_docs/fake/meaningOfLife.html index 486a4a4b3e..e0e1ba72a8 100644 --- a/testing/test_package_docs/fake/meaningOfLife.html +++ b/testing/test_package_docs/fake/meaningOfLife.html @@ -132,7 +132,8 @@

meaningOfLife top-level property

int - meaningOfLife
final
+ meaningOfLife +
final

Final property.

diff --git a/testing/test_package_docs/fake/myCoolTypedef.html b/testing/test_package_docs/fake/myCoolTypedef.html index 5d0ec3b8d2..77de103e01 100644 --- a/testing/test_package_docs/fake/myCoolTypedef.html +++ b/testing/test_package_docs/fake/myCoolTypedef.html @@ -132,7 +132,8 @@

myCoolTypedef typedef

void - myCoolTypedef(Cool x, bool y) + myCoolTypedef +(Cool x, bool y)
diff --git a/testing/test_package_docs/fake/myGenericFunction.html b/testing/test_package_docs/fake/myGenericFunction.html index bf6de22008..80b5bb48b0 100644 --- a/testing/test_package_docs/fake/myGenericFunction.html +++ b/testing/test_package_docs/fake/myGenericFunction.html @@ -132,7 +132,8 @@

myGenericFunction<S> function

void - myGenericFunction<S>(int a, bool b, S c) + myGenericFunction +<S>(int a, bool b, S c)

A generic function with a type parameter.

diff --git a/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html b/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html index 0084452103..1b0696aea3 100644 --- a/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html +++ b/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html @@ -137,7 +137,8 @@

onlyPositionalWithNoDefaultNoType function

void - onlyPositionalWithNoDefaultNoType([@greatestAnnotation anything ]) + onlyPositionalWithNoDefaultNoType +([@greatestAnnotation anything ])

A single optional positional param, no type annotation, no default value.

diff --git a/testing/test_package_docs/fake/paintImage1.html b/testing/test_package_docs/fake/paintImage1.html index 5348087435..9730dfd53a 100644 --- a/testing/test_package_docs/fake/paintImage1.html +++ b/testing/test_package_docs/fake/paintImage1.html @@ -132,7 +132,8 @@

paintImage1 function

void - paintImage1({@required String canvas, @required int rect, @required ExtraSpecialList image, BaseForDocComments colorFilter, String repeat: LongFirstLine.THING }) + paintImage1 +({@required String canvas, @required int rect, @required ExtraSpecialList image, BaseForDocComments colorFilter, String repeat: LongFirstLine.THING })

Paints an image into the given rectangle in the canvas.

diff --git a/testing/test_package_docs/fake/paintImage2.html b/testing/test_package_docs/fake/paintImage2.html index 18532b02ee..5757f44444 100644 --- a/testing/test_package_docs/fake/paintImage2.html +++ b/testing/test_package_docs/fake/paintImage2.html @@ -132,7 +132,8 @@

paintImage2 function

void - paintImage2(String fooParam, [ @required String canvas, @required int rect, @required ExtraSpecialList image, BaseForDocComments colorFilter, String repeat = LongFirstLine.THING ]) + paintImage2 +(String fooParam, [ @required String canvas, @required int rect, @required ExtraSpecialList image, BaseForDocComments colorFilter, String repeat = LongFirstLine.THING ])

Paints an image into the given rectangle in the canvas.

diff --git a/testing/test_package_docs/fake/paramFromAnotherLib.html b/testing/test_package_docs/fake/paramFromAnotherLib.html index a27da405b4..ae0b265014 100644 --- a/testing/test_package_docs/fake/paramFromAnotherLib.html +++ b/testing/test_package_docs/fake/paramFromAnotherLib.html @@ -132,7 +132,8 @@

paramFromAnotherLib function

void - paramFromAnotherLib(Apple thing) + paramFromAnotherLib +(Apple thing)

FooBar comes from another library.

diff --git a/testing/test_package_docs/fake/required-constant.html b/testing/test_package_docs/fake/required-constant.html index e864200cdb..2e2b0b336d 100644 --- a/testing/test_package_docs/fake/required-constant.html +++ b/testing/test_package_docs/fake/required-constant.html @@ -128,10 +128,11 @@
fake library
-

required top-level property

+

required top-level constant

- required = + const required + = 'required'
diff --git a/testing/test_package_docs/fake/setAndGet.html b/testing/test_package_docs/fake/setAndGet.html index 20fef20f1f..5bb1862f52 100644 --- a/testing/test_package_docs/fake/setAndGet.html +++ b/testing/test_package_docs/fake/setAndGet.html @@ -135,7 +135,8 @@

setAndGet top-level property

String - setAndGet + setAndGet +
@@ -148,7 +149,8 @@

setAndGet top-level property

void - setAndGet=(String thing) + setAndGet= +(String thing)
diff --git a/testing/test_package_docs/fake/short.html b/testing/test_package_docs/fake/short.html index e83d8af6d9..ae8827a543 100644 --- a/testing/test_package_docs/fake/short.html +++ b/testing/test_package_docs/fake/short.html @@ -132,7 +132,8 @@

short function

void - short() + short +()

Testing NAME_WITH_TWO_UNDERSCORES should not be italicized.

diff --git a/testing/test_package_docs/fake/simpleProperty.html b/testing/test_package_docs/fake/simpleProperty.html index 5addccf4a6..52454c77a8 100644 --- a/testing/test_package_docs/fake/simpleProperty.html +++ b/testing/test_package_docs/fake/simpleProperty.html @@ -132,7 +132,8 @@

simpleProperty top-level property

String - simpleProperty
read / write
+ simpleProperty +
read / write

Simple property

diff --git a/testing/test_package_docs/fake/soIntense.html b/testing/test_package_docs/fake/soIntense.html index ea1cc8a45b..8794973a94 100644 --- a/testing/test_package_docs/fake/soIntense.html +++ b/testing/test_package_docs/fake/soIntense.html @@ -132,7 +132,8 @@

soIntense function

void - soIntense(anything, { bool flag: true, int value }) + soIntense +(anything, { bool flag: true, int value })

Top-level function with 1 param and 2 optional named params, 1 with a diff --git a/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html b/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html index a5861f7126..5d5b16176b 100644 --- a/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html +++ b/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html @@ -128,10 +128,11 @@

fake library
-

testingCodeSyntaxInOneLiners top-level property

+

testingCodeSyntaxInOneLiners top-level constant

- testingCodeSyntaxInOneLiners = + const testingCodeSyntaxInOneLiners + = 'fantastic'
diff --git a/testing/test_package_docs/fake/thisIsAlsoAsync.html b/testing/test_package_docs/fake/thisIsAlsoAsync.html index 8ea93cc9d7..ea8379c043 100644 --- a/testing/test_package_docs/fake/thisIsAlsoAsync.html +++ b/testing/test_package_docs/fake/thisIsAlsoAsync.html @@ -132,7 +132,8 @@

thisIsAlsoAsync function

Future - thisIsAlsoAsync() + thisIsAlsoAsync +()

Explicitly returns a Future and is marked async.

diff --git a/testing/test_package_docs/fake/thisIsAsync.html b/testing/test_package_docs/fake/thisIsAsync.html index 416f898e35..64c17e227d 100644 --- a/testing/test_package_docs/fake/thisIsAsync.html +++ b/testing/test_package_docs/fake/thisIsAsync.html @@ -132,7 +132,8 @@

thisIsAsync function

Future - thisIsAsync() + thisIsAsync +()

An async function. It should look like I return a Future.

diff --git a/testing/test_package_docs/fake/topLevelFunction.html b/testing/test_package_docs/fake/topLevelFunction.html index 0e0b032851..f0926ee851 100644 --- a/testing/test_package_docs/fake/topLevelFunction.html +++ b/testing/test_package_docs/fake/topLevelFunction.html @@ -137,7 +137,8 @@

topLevelFunction function

String - topLevelFunction(int param1, bool param2, Cool coolBeans, [ double optionalPositional = 0.0 ]) + topLevelFunction +(int param1, bool param2, Cool coolBeans, [ double optionalPositional = 0.0 ])

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

diff --git a/testing/test_package_docs/index.json b/testing/test_package_docs/index.json index b4d56ed812..55fc592e8b 100644 --- a/testing/test_package_docs/index.json +++ b/testing/test_package_docs/index.json @@ -335,7 +335,7 @@ "name": "n", "qualifiedName": "ex.Apple.n", "href": "ex/Apple/n-constant.html", - "type": "property", + "type": "constant", "overriddenDepth": 0, "enclosedBy": { "name": "Apple", @@ -544,7 +544,7 @@ "name": "COLOR", "qualifiedName": "ex.COLOR", "href": "ex/COLOR-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "ex", @@ -555,7 +555,7 @@ "name": "COLOR_GREEN", "qualifiedName": "ex.COLOR_GREEN", "href": "ex/COLOR_GREEN-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "ex", @@ -566,7 +566,7 @@ "name": "COLOR_ORANGE", "qualifiedName": "ex.COLOR_ORANGE", "href": "ex/COLOR_ORANGE-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "ex", @@ -577,7 +577,7 @@ "name": "COMPLEX_COLOR", "qualifiedName": "ex.COMPLEX_COLOR", "href": "ex/COMPLEX_COLOR-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "ex", @@ -1050,7 +1050,7 @@ "name": "aName", "qualifiedName": "ex.Dog.aName", "href": "ex/Dog/aName-constant.html", - "type": "property", + "type": "constant", "overriddenDepth": 0, "enclosedBy": { "name": "Dog", @@ -1072,7 +1072,7 @@ "name": "aStaticConstField", "qualifiedName": "ex.Dog.aStaticConstField", "href": "ex/Dog/aStaticConstField-constant.html", - "type": "property", + "type": "constant", "overriddenDepth": 0, "enclosedBy": { "name": "Dog", @@ -1809,7 +1809,7 @@ "name": "MY_CAT", "qualifiedName": "ex.MY_CAT", "href": "ex/MY_CAT-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "ex", @@ -2150,7 +2150,7 @@ "name": "PRETTY_COLORS", "qualifiedName": "ex.PRETTY_COLORS", "href": "ex/PRETTY_COLORS-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "ex", @@ -2513,7 +2513,7 @@ "name": "ellipse", "qualifiedName": "ex.ShapeType.ellipse", "href": "ex/ShapeType/ellipse-constant.html", - "type": "property", + "type": "constant", "overriddenDepth": 0, "enclosedBy": { "name": "ShapeType", @@ -2557,7 +2557,7 @@ "name": "rect", "qualifiedName": "ex.ShapeType.rect", "href": "ex/ShapeType/rect-constant.html", - "type": "property", + "type": "constant", "overriddenDepth": 0, "enclosedBy": { "name": "ShapeType", @@ -3448,7 +3448,7 @@ "name": "deprecated", "qualifiedName": "ex.deprecated", "href": "ex/deprecated-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "ex", @@ -3514,7 +3514,7 @@ "name": "incorrectDocReference", "qualifiedName": "ex.incorrectDocReference", "href": "ex/incorrectDocReference-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "ex", @@ -3525,7 +3525,7 @@ "name": "incorrectDocReferenceFromEx", "qualifiedName": "ex.incorrectDocReferenceFromEx", "href": "ex/incorrectDocReferenceFromEx-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "ex", @@ -4038,7 +4038,7 @@ "name": "CUSTOM_CLASS", "qualifiedName": "fake.CUSTOM_CLASS", "href": "fake/CUSTOM_CLASS-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "fake", @@ -4544,7 +4544,7 @@ "name": "DOWN", "qualifiedName": "fake.DOWN", "href": "fake/DOWN-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "fake", @@ -4599,7 +4599,7 @@ "name": "bar", "qualifiedName": "fake.DocumentWithATable.bar", "href": "fake/DocumentWithATable/bar-constant.html", - "type": "property", + "type": "constant", "overriddenDepth": 0, "enclosedBy": { "name": "DocumentWithATable", @@ -4610,7 +4610,7 @@ "name": "foo", "qualifiedName": "fake.DocumentWithATable.foo", "href": "fake/DocumentWithATable/foo-constant.html", - "type": "property", + "type": "constant", "overriddenDepth": 0, "enclosedBy": { "name": "DocumentWithATable", @@ -4819,7 +4819,7 @@ "name": "BAR", "qualifiedName": "fake.Foo2.BAR", "href": "fake/Foo2/BAR-constant.html", - "type": "property", + "type": "constant", "overriddenDepth": 0, "enclosedBy": { "name": "Foo2", @@ -4830,7 +4830,7 @@ "name": "BAZ", "qualifiedName": "fake.Foo2.BAZ", "href": "fake/Foo2/BAZ-constant.html", - "type": "property", + "type": "constant", "overriddenDepth": 0, "enclosedBy": { "name": "Foo2", @@ -5402,7 +5402,7 @@ "name": "ANSWER", "qualifiedName": "fake.LongFirstLine.ANSWER", "href": "fake/LongFirstLine/ANSWER-constant.html", - "type": "property", + "type": "constant", "overriddenDepth": 0, "enclosedBy": { "name": "LongFirstLine", @@ -5413,7 +5413,7 @@ "name": "THING", "qualifiedName": "fake.LongFirstLine.THING", "href": "fake/LongFirstLine/THING-constant.html", - "type": "property", + "type": "constant", "overriddenDepth": 0, "enclosedBy": { "name": "LongFirstLine", @@ -5666,7 +5666,7 @@ "name": "NAME_SINGLEUNDERSCORE", "qualifiedName": "fake.NAME_SINGLEUNDERSCORE", "href": "fake/NAME_SINGLEUNDERSCORE-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "fake", @@ -5677,7 +5677,7 @@ "name": "NAME_WITH_TWO_UNDERSCORES", "qualifiedName": "fake.NAME_WITH_TWO_UNDERSCORES", "href": "fake/NAME_WITH_TWO_UNDERSCORES-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "fake", @@ -6040,7 +6040,7 @@ "name": "PI", "qualifiedName": "fake.PI", "href": "fake/PI-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "fake", @@ -6843,7 +6843,7 @@ "name": "UP", "qualifiedName": "fake.UP", "href": "fake/UP-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "fake", @@ -6953,7 +6953,7 @@ "name": "ZERO", "qualifiedName": "fake.ZERO", "href": "fake/ZERO-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "fake", @@ -7030,7 +7030,7 @@ "name": "greatAnnotation", "qualifiedName": "fake.greatAnnotation", "href": "fake/greatAnnotation-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "fake", @@ -7041,7 +7041,7 @@ "name": "greatestAnnotation", "qualifiedName": "fake.greatestAnnotation", "href": "fake/greatestAnnotation-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "fake", @@ -7052,7 +7052,7 @@ "name": "incorrectDocReference", "qualifiedName": "fake.incorrectDocReference", "href": "fake/incorrectDocReference-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "fake", @@ -7173,7 +7173,7 @@ "name": "required", "qualifiedName": "fake.required", "href": "fake/required-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "fake", @@ -7228,7 +7228,7 @@ "name": "testingCodeSyntaxInOneLiners", "qualifiedName": "fake.testingCodeSyntaxInOneLiners", "href": "fake/testingCodeSyntaxInOneLiners-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "fake", diff --git a/testing/test_package_docs/reexport_one/SomeOtherClass/hashCode.html b/testing/test_package_docs/reexport_one/SomeOtherClass/hashCode.html index 92f99f9774..d6e57064ed 100644 --- a/testing/test_package_docs/reexport_one/SomeOtherClass/hashCode.html +++ b/testing/test_package_docs/reexport_one/SomeOtherClass/hashCode.html @@ -68,7 +68,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/reexport_one/SomeOtherClass/noSuchMethod.html b/testing/test_package_docs/reexport_one/SomeOtherClass/noSuchMethod.html index 0f3a721b9d..e62cb643e1 100644 --- a/testing/test_package_docs/reexport_one/SomeOtherClass/noSuchMethod.html +++ b/testing/test_package_docs/reexport_one/SomeOtherClass/noSuchMethod.html @@ -65,7 +65,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/reexport_one/SomeOtherClass/operator_equals.html b/testing/test_package_docs/reexport_one/SomeOtherClass/operator_equals.html index d0993a506c..2b9cdd707f 100644 --- a/testing/test_package_docs/reexport_one/SomeOtherClass/operator_equals.html +++ b/testing/test_package_docs/reexport_one/SomeOtherClass/operator_equals.html @@ -65,7 +65,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/reexport_one/SomeOtherClass/runtimeType.html b/testing/test_package_docs/reexport_one/SomeOtherClass/runtimeType.html index 387c11ab23..77dd2dcbb7 100644 --- a/testing/test_package_docs/reexport_one/SomeOtherClass/runtimeType.html +++ b/testing/test_package_docs/reexport_one/SomeOtherClass/runtimeType.html @@ -68,7 +68,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/reexport_one/SomeOtherClass/toString.html b/testing/test_package_docs/reexport_one/SomeOtherClass/toString.html index 941e655c21..19abf825d5 100644 --- a/testing/test_package_docs/reexport_one/SomeOtherClass/toString.html +++ b/testing/test_package_docs/reexport_one/SomeOtherClass/toString.html @@ -65,7 +65,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/reexport_two/AUnicornClass/hashCode.html b/testing/test_package_docs/reexport_two/AUnicornClass/hashCode.html index 8d8348a457..b237b9a76a 100644 --- a/testing/test_package_docs/reexport_two/AUnicornClass/hashCode.html +++ b/testing/test_package_docs/reexport_two/AUnicornClass/hashCode.html @@ -68,7 +68,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/reexport_two/AUnicornClass/noSuchMethod.html b/testing/test_package_docs/reexport_two/AUnicornClass/noSuchMethod.html index e76d3efe7e..49c49645d9 100644 --- a/testing/test_package_docs/reexport_two/AUnicornClass/noSuchMethod.html +++ b/testing/test_package_docs/reexport_two/AUnicornClass/noSuchMethod.html @@ -65,7 +65,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/reexport_two/AUnicornClass/operator_equals.html b/testing/test_package_docs/reexport_two/AUnicornClass/operator_equals.html index a13202ef2e..05e36e0d50 100644 --- a/testing/test_package_docs/reexport_two/AUnicornClass/operator_equals.html +++ b/testing/test_package_docs/reexport_two/AUnicornClass/operator_equals.html @@ -65,7 +65,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/reexport_two/AUnicornClass/runtimeType.html b/testing/test_package_docs/reexport_two/AUnicornClass/runtimeType.html index e22469f78c..6b422b7676 100644 --- a/testing/test_package_docs/reexport_two/AUnicornClass/runtimeType.html +++ b/testing/test_package_docs/reexport_two/AUnicornClass/runtimeType.html @@ -68,7 +68,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/reexport_two/AUnicornClass/toString.html b/testing/test_package_docs/reexport_two/AUnicornClass/toString.html index 43de44a35c..bf6441461f 100644 --- a/testing/test_package_docs/reexport_two/AUnicornClass/toString.html +++ b/testing/test_package_docs/reexport_two/AUnicornClass/toString.html @@ -65,7 +65,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/reexport_two/SomeClass/hashCode.html b/testing/test_package_docs/reexport_two/SomeClass/hashCode.html index e6c81b20cf..12732ef956 100644 --- a/testing/test_package_docs/reexport_two/SomeClass/hashCode.html +++ b/testing/test_package_docs/reexport_two/SomeClass/hashCode.html @@ -68,7 +68,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/reexport_two/SomeClass/noSuchMethod.html b/testing/test_package_docs/reexport_two/SomeClass/noSuchMethod.html index 160a2f4c8f..859820a05a 100644 --- a/testing/test_package_docs/reexport_two/SomeClass/noSuchMethod.html +++ b/testing/test_package_docs/reexport_two/SomeClass/noSuchMethod.html @@ -65,7 +65,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/reexport_two/SomeClass/operator_equals.html b/testing/test_package_docs/reexport_two/SomeClass/operator_equals.html index cd00de069c..6e43f5f669 100644 --- a/testing/test_package_docs/reexport_two/SomeClass/operator_equals.html +++ b/testing/test_package_docs/reexport_two/SomeClass/operator_equals.html @@ -65,7 +65,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/reexport_two/SomeClass/runtimeType.html b/testing/test_package_docs/reexport_two/SomeClass/runtimeType.html index 6c13112335..41bb831dbf 100644 --- a/testing/test_package_docs/reexport_two/SomeClass/runtimeType.html +++ b/testing/test_package_docs/reexport_two/SomeClass/runtimeType.html @@ -68,7 +68,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/reexport_two/SomeClass/toString.html b/testing/test_package_docs/reexport_two/SomeClass/toString.html index 678546521c..58794da9a7 100644 --- a/testing/test_package_docs/reexport_two/SomeClass/toString.html +++ b/testing/test_package_docs/reexport_two/SomeClass/toString.html @@ -65,7 +65,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/reexport_two/YetAnotherClass/hashCode.html b/testing/test_package_docs/reexport_two/YetAnotherClass/hashCode.html index 51d18e8bed..9a1a90bf5a 100644 --- a/testing/test_package_docs/reexport_two/YetAnotherClass/hashCode.html +++ b/testing/test_package_docs/reexport_two/YetAnotherClass/hashCode.html @@ -68,7 +68,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/reexport_two/YetAnotherClass/noSuchMethod.html b/testing/test_package_docs/reexport_two/YetAnotherClass/noSuchMethod.html index ffcf98eb40..484b209db8 100644 --- a/testing/test_package_docs/reexport_two/YetAnotherClass/noSuchMethod.html +++ b/testing/test_package_docs/reexport_two/YetAnotherClass/noSuchMethod.html @@ -65,7 +65,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/reexport_two/YetAnotherClass/operator_equals.html b/testing/test_package_docs/reexport_two/YetAnotherClass/operator_equals.html index 2672ab4305..cc9f917716 100644 --- a/testing/test_package_docs/reexport_two/YetAnotherClass/operator_equals.html +++ b/testing/test_package_docs/reexport_two/YetAnotherClass/operator_equals.html @@ -65,7 +65,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/reexport_two/YetAnotherClass/runtimeType.html b/testing/test_package_docs/reexport_two/YetAnotherClass/runtimeType.html index 65915ebd39..b47ad27669 100644 --- a/testing/test_package_docs/reexport_two/YetAnotherClass/runtimeType.html +++ b/testing/test_package_docs/reexport_two/YetAnotherClass/runtimeType.html @@ -68,7 +68,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/reexport_two/YetAnotherClass/toString.html b/testing/test_package_docs/reexport_two/YetAnotherClass/toString.html index e691264cbf..daa044f003 100644 --- a/testing/test_package_docs/reexport_two/YetAnotherClass/toString.html +++ b/testing/test_package_docs/reexport_two/YetAnotherClass/toString.html @@ -65,7 +65,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/test_package_imported.main/Whataclass/hashCode.html b/testing/test_package_docs/test_package_imported.main/Whataclass/hashCode.html index 150aa02b2e..aa4148cc7d 100644 --- a/testing/test_package_docs/test_package_imported.main/Whataclass/hashCode.html +++ b/testing/test_package_docs/test_package_imported.main/Whataclass/hashCode.html @@ -68,7 +68,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/test_package_imported.main/Whataclass/noSuchMethod.html b/testing/test_package_docs/test_package_imported.main/Whataclass/noSuchMethod.html index 9933689866..bac8197308 100644 --- a/testing/test_package_docs/test_package_imported.main/Whataclass/noSuchMethod.html +++ b/testing/test_package_docs/test_package_imported.main/Whataclass/noSuchMethod.html @@ -65,7 +65,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/test_package_imported.main/Whataclass/operator_equals.html b/testing/test_package_docs/test_package_imported.main/Whataclass/operator_equals.html index 8de52854d6..cca01a7aa6 100644 --- a/testing/test_package_docs/test_package_imported.main/Whataclass/operator_equals.html +++ b/testing/test_package_docs/test_package_imported.main/Whataclass/operator_equals.html @@ -65,7 +65,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/test_package_imported.main/Whataclass/runtimeType.html b/testing/test_package_docs/test_package_imported.main/Whataclass/runtimeType.html index 6c69610124..a7364b8205 100644 --- a/testing/test_package_docs/test_package_imported.main/Whataclass/runtimeType.html +++ b/testing/test_package_docs/test_package_imported.main/Whataclass/runtimeType.html @@ -68,7 +68,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/test_package_imported.main/Whataclass/toString.html b/testing/test_package_docs/test_package_imported.main/Whataclass/toString.html index 4e6908bc6e..c86c99f90c 100644 --- a/testing/test_package_docs/test_package_imported.main/Whataclass/toString.html +++ b/testing/test_package_docs/test_package_imported.main/Whataclass/toString.html @@ -65,7 +65,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/test_package_imported.main/Whataclass2/hashCode.html b/testing/test_package_docs/test_package_imported.main/Whataclass2/hashCode.html index 638185a75c..3627c93057 100644 --- a/testing/test_package_docs/test_package_imported.main/Whataclass2/hashCode.html +++ b/testing/test_package_docs/test_package_imported.main/Whataclass2/hashCode.html @@ -68,7 +68,8 @@

hashCode property

int - hashCode
inherited
+ hashCode +
inherited
diff --git a/testing/test_package_docs/test_package_imported.main/Whataclass2/noSuchMethod.html b/testing/test_package_docs/test_package_imported.main/Whataclass2/noSuchMethod.html index f48fd452bb..d24950afff 100644 --- a/testing/test_package_docs/test_package_imported.main/Whataclass2/noSuchMethod.html +++ b/testing/test_package_docs/test_package_imported.main/Whataclass2/noSuchMethod.html @@ -65,7 +65,8 @@

noSuchMethod method

dynamic - noSuchMethod(Invocation invocation) + noSuchMethod +(Invocation invocation)
diff --git a/testing/test_package_docs/test_package_imported.main/Whataclass2/operator_equals.html b/testing/test_package_docs/test_package_imported.main/Whataclass2/operator_equals.html index 0f398af9b4..a162b4c27f 100644 --- a/testing/test_package_docs/test_package_imported.main/Whataclass2/operator_equals.html +++ b/testing/test_package_docs/test_package_imported.main/Whataclass2/operator_equals.html @@ -65,7 +65,8 @@

operator == method

bool - operator ==(other) + operator == +(other)
diff --git a/testing/test_package_docs/test_package_imported.main/Whataclass2/runtimeType.html b/testing/test_package_docs/test_package_imported.main/Whataclass2/runtimeType.html index 990c887b27..ab9b0325af 100644 --- a/testing/test_package_docs/test_package_imported.main/Whataclass2/runtimeType.html +++ b/testing/test_package_docs/test_package_imported.main/Whataclass2/runtimeType.html @@ -68,7 +68,8 @@

runtimeType property

Type - runtimeType
inherited
+ runtimeType +
inherited
diff --git a/testing/test_package_docs/test_package_imported.main/Whataclass2/toString.html b/testing/test_package_docs/test_package_imported.main/Whataclass2/toString.html index 6dfe761a91..f69d3280ab 100644 --- a/testing/test_package_docs/test_package_imported.main/Whataclass2/toString.html +++ b/testing/test_package_docs/test_package_imported.main/Whataclass2/toString.html @@ -65,7 +65,8 @@

toString method

String - toString() + toString +()
diff --git a/testing/test_package_docs/two_exports/topLevelVariable.html b/testing/test_package_docs/two_exports/topLevelVariable.html index 3d3158d897..55724b955b 100644 --- a/testing/test_package_docs/two_exports/topLevelVariable.html +++ b/testing/test_package_docs/two_exports/topLevelVariable.html @@ -57,7 +57,8 @@

topLevelVariable top-level property

int - topLevelVariable
read / write
+ topLevelVariable +
read / write
From 0211ffb82b2f3d0adcb7c6359d9c0bf43a11fd91 Mon Sep 17 00:00:00 2001 From: Janice Collins Date: Fri, 5 Jan 2018 09:27:31 -0800 Subject: [PATCH 09/10] WIP --- lib/src/model.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/model.dart b/lib/src/model.dart index 4bd9b92b12..3f858802c8 100644 --- a/lib/src/model.dart +++ b/lib/src/model.dart @@ -1587,7 +1587,7 @@ abstract class GetterSetterCombo implements ModelElement { return original.replaceAll(constructorName, "${target.linkedName}"); } return original.replaceAll( - constructorName, "${targetClass.linkedName}.${target.linkedName}"); + "${targetClass.name}.${target.name}", "${targetClass.linkedName}.${target.linkedName}"); } String _constantValueBase; From 80c7aba453a159d83e588186bf90c534ff6387e9 Mon Sep 17 00:00:00 2001 From: Janice Collins Date: Mon, 8 Jan 2018 10:16:27 -0800 Subject: [PATCH 10/10] rebuild test package docs --- testing/test_package_docs/ex/Dog/withPrivateMacro.html | 3 ++- testing/test_package_docs/ex/Dog/withUndefinedMacro.html | 3 ++- testing/test_package_docs/ex/ShapeType-class.html | 4 ++-- testing/test_package_docs/ex/ShapeType/ellipse-constant.html | 2 +- testing/test_package_docs/ex/ShapeType/rect-constant.html | 2 +- 5 files changed, 8 insertions(+), 6 deletions(-) diff --git a/testing/test_package_docs/ex/Dog/withPrivateMacro.html b/testing/test_package_docs/ex/Dog/withPrivateMacro.html index 6b4136f08a..a5f830ff23 100644 --- a/testing/test_package_docs/ex/Dog/withPrivateMacro.html +++ b/testing/test_package_docs/ex/Dog/withPrivateMacro.html @@ -93,7 +93,8 @@

withPrivateMacro method

void - withPrivateMacro() + withPrivateMacro +()

Use a privately defined macro: Private macro content

diff --git a/testing/test_package_docs/ex/Dog/withUndefinedMacro.html b/testing/test_package_docs/ex/Dog/withUndefinedMacro.html index b7b678c080..b55b2893f3 100644 --- a/testing/test_package_docs/ex/Dog/withUndefinedMacro.html +++ b/testing/test_package_docs/ex/Dog/withUndefinedMacro.html @@ -93,7 +93,8 @@

withUndefinedMacro method

void - withUndefinedMacro() + withUndefinedMacro +()

Don't define this: null

diff --git a/testing/test_package_docs/ex/ShapeType-class.html b/testing/test_package_docs/ex/ShapeType-class.html index b5517b2333..367c30340b 100644 --- a/testing/test_package_docs/ex/ShapeType-class.html +++ b/testing/test_package_docs/ex/ShapeType-class.html @@ -202,7 +202,7 @@

Constants

- const ShapeType.ShapeType._internal("Ellipse") + const ShapeType._internal("Ellipse")
@@ -213,7 +213,7 @@

Constants

- const ShapeType.ShapeType._internal("Rect") + const ShapeType._internal("Rect")
diff --git a/testing/test_package_docs/ex/ShapeType/ellipse-constant.html b/testing/test_package_docs/ex/ShapeType/ellipse-constant.html index d25cad3f5e..09085b57d2 100644 --- a/testing/test_package_docs/ex/ShapeType/ellipse-constant.html +++ b/testing/test_package_docs/ex/ShapeType/ellipse-constant.html @@ -69,7 +69,7 @@

ellipse constant

ShapeType const ellipse = - const ShapeType.ShapeType._internal("Ellipse") + const ShapeType._internal("Ellipse") diff --git a/testing/test_package_docs/ex/ShapeType/rect-constant.html b/testing/test_package_docs/ex/ShapeType/rect-constant.html index 314b5b87dc..09de663aaa 100644 --- a/testing/test_package_docs/ex/ShapeType/rect-constant.html +++ b/testing/test_package_docs/ex/ShapeType/rect-constant.html @@ -69,7 +69,7 @@

rect constant

ShapeType const rect = - const ShapeType.ShapeType._internal("Rect") + const ShapeType._internal("Rect")