diff --git a/lib/src/model.dart b/lib/src/model.dart index d1c0d67e4d..90ca35802f 100644 --- a/lib/src/model.dart +++ b/lib/src/model.dart @@ -13,7 +13,9 @@ import 'package:analyzer/dart/ast/ast.dart' show AnnotatedNode, Declaration, + Expression, FieldDeclaration, + InstanceCreationExpression, VariableDeclaration, VariableDeclarationList; import 'package:analyzer/dart/element/element.dart'; @@ -24,6 +26,7 @@ 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/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'; @@ -1449,9 +1452,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 { @@ -1540,21 +1543,36 @@ abstract class GetterSetterCombo implements ModelElement { ModelElement enclosingElement; bool get isInherited; - String _constantValueBase() { - if (element.computeNode() != null) { - var v = element.computeNode().toSource(); - if (v == null) return null; - var string = v.substring(v.indexOf('=') + 1, v.length).trim(); - return const HtmlEscape(HtmlEscapeMode.UNKNOWN).convert(string); + 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; + 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 null; + return original.replaceAll( + "${targetClass.name}.${target.name}", "${targetClass.linkedName}.${target.linkedName}"); } - String get constantValueBase => _memoizer.memoized(_constantValueBase); - - String get constantValue => constantValueBase; + String _constantValueBase() { + String result = constantInitializer?.toString() ?? ''; + return const HtmlEscape(HtmlEscapeMode.UNKNOWN).convert(result); + } - String get constantValueTruncated => truncateString(constantValueBase, 200); + String get constantValue => linkifyConstantValue(constantValueBase); + String get constantValueTruncated => + linkifyConstantValue(truncateString(constantValueBase, 200)); + String get constantValueBase => _memoizer.memoized(_constantValueBase); /// Returns true if both accessors are synthetic. bool get hasSyntheticAccessors { @@ -4632,7 +4650,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/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/test/model_test.dart b/test/model_test.dart index 9749f08ba2..67a5b3e63b 100644 --- a/test/model_test.dart +++ b/test/model_test.dart @@ -809,10 +809,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', () { @@ -1911,7 +1913,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', () { @@ -1922,6 +1924,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)); }); @@ -1943,8 +1949,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_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 b01e22b841..10d7eafbe9 100644 --- a/testing/test_package_docs/ex/Dog-class.html +++ b/testing/test_package_docs/ex/Dog-class.html @@ -429,18 +429,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 3bca870bfc..d3593ddd5b 100644 --- a/testing/test_package_docs/ex/Dog/aFinalField.html +++ b/testing/test_package_docs/ex/Dog/aFinalField.html @@ -93,7 +93,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 81b515efe4..233a40fdd5 100644 --- a/testing/test_package_docs/ex/Dog/aGetterReturningRandomThings.html +++ b/testing/test_package_docs/ex/Dog/aGetterReturningRandomThings.html @@ -96,7 +96,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 4bf9c2f677..c7e3b22d6f 100644 --- a/testing/test_package_docs/ex/Dog/aName-constant.html +++ b/testing/test_package_docs/ex/Dog/aName-constant.html @@ -89,12 +89,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 c9df7126cb..e751c5e7ed 100644 --- a/testing/test_package_docs/ex/Dog/aProtectedFinalField.html +++ b/testing/test_package_docs/ex/Dog/aProtectedFinalField.html @@ -93,7 +93,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 85a3dffe77..7d2fc5e310 100644 --- a/testing/test_package_docs/ex/Dog/aStaticConstField-constant.html +++ b/testing/test_package_docs/ex/Dog/aStaticConstField-constant.html @@ -89,11 +89,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 847d7b03a4..46d71a7506 100644 --- a/testing/test_package_docs/ex/Dog/abstractMethod.html +++ b/testing/test_package_docs/ex/Dog/abstractMethod.html @@ -98,7 +98,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 0c28d51314..94b73aba2d 100644 --- a/testing/test_package_docs/ex/Dog/createDog.html +++ b/testing/test_package_docs/ex/Dog/createDog.html @@ -98,7 +98,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 cc81b3db0a..f536b72b16 100644 --- a/testing/test_package_docs/ex/Dog/deprecatedField.html +++ b/testing/test_package_docs/ex/Dog/deprecatedField.html @@ -93,7 +93,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 7766c0bbee..ac1771caf7 100644 --- a/testing/test_package_docs/ex/Dog/deprecatedGetter.html +++ b/testing/test_package_docs/ex/Dog/deprecatedGetter.html @@ -96,7 +96,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 8521065f03..d26dd36552 100644 --- a/testing/test_package_docs/ex/Dog/deprecatedSetter.html +++ b/testing/test_package_docs/ex/Dog/deprecatedSetter.html @@ -97,7 +97,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 e3c8bb8019..b96b88dbbb 100644 --- a/testing/test_package_docs/ex/Dog/foo.html +++ b/testing/test_package_docs/ex/Dog/foo.html @@ -93,7 +93,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 f717e229d4..302e66eb7f 100644 --- a/testing/test_package_docs/ex/Dog/getAnotherClassD.html +++ b/testing/test_package_docs/ex/Dog/getAnotherClassD.html @@ -98,7 +98,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 a03e9d1437..e169bfbb02 100644 --- a/testing/test_package_docs/ex/Dog/getClassA.html +++ b/testing/test_package_docs/ex/Dog/getClassA.html @@ -98,7 +98,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 60d3172d9d..7687802dd7 100644 --- a/testing/test_package_docs/ex/Dog/isImplemented.html +++ b/testing/test_package_docs/ex/Dog/isImplemented.html @@ -96,7 +96,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 f1aec0b280..d877faef17 100644 --- a/testing/test_package_docs/ex/Dog/name.html +++ b/testing/test_package_docs/ex/Dog/name.html @@ -93,7 +93,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 c18f510e96..9251d1dd0d 100644 --- a/testing/test_package_docs/ex/Dog/operator_equals.html +++ b/testing/test_package_docs/ex/Dog/operator_equals.html @@ -98,7 +98,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 8bae0dc69f..2e7413da4b 100644 --- a/testing/test_package_docs/ex/Dog/somethingTasty.html +++ b/testing/test_package_docs/ex/Dog/somethingTasty.html @@ -93,7 +93,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 bdd3d8528b..718f3becda 100644 --- a/testing/test_package_docs/ex/Dog/staticGetterSetter.html +++ b/testing/test_package_docs/ex/Dog/staticGetterSetter.html @@ -96,7 +96,8 @@

staticGetterSetter property

int - staticGetterSetter + staticGetterSetter +
@@ -106,7 +107,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 6d247c3b51..85f662f787 100644 --- a/testing/test_package_docs/ex/Dog/testGeneric.html +++ b/testing/test_package_docs/ex/Dog/testGeneric.html @@ -93,7 +93,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 8028b05ddf..249525ff4c 100644 --- a/testing/test_package_docs/ex/Dog/testGenericMethod.html +++ b/testing/test_package_docs/ex/Dog/testGenericMethod.html @@ -93,7 +93,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 c557d24bc5..77f5102a8b 100644 --- a/testing/test_package_docs/ex/Dog/testMethod.html +++ b/testing/test_package_docs/ex/Dog/testMethod.html @@ -93,7 +93,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 cc6c56c46e..46712c035a 100644 --- a/testing/test_package_docs/ex/Dog/withMacro.html +++ b/testing/test_package_docs/ex/Dog/withMacro.html @@ -93,7 +93,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 3d0a9417eb..0cd806e349 100644 --- a/testing/test_package_docs/ex/Dog/withMacro2.html +++ b/testing/test_package_docs/ex/Dog/withMacro2.html @@ -93,7 +93,8 @@

withMacro2 method

void - withMacro2() + withMacro2 +()

Foo macro content

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/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 12ea64f801..7cfd5da496 100644 --- a/testing/test_package_docs/ex/F/methodWithGenericParam.html +++ b/testing/test_package_docs/ex/F/methodWithGenericParam.html @@ -86,7 +86,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 143540e841..ad439f1dfe 100644 --- a/testing/test_package_docs/ex/F/test.html +++ b/testing/test_package_docs/ex/F/test.html @@ -86,7 +86,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..367c30340b 100644 --- a/testing/test_package_docs/ex/ShapeType-class.html +++ b/testing/test_package_docs/ex/ShapeType-class.html @@ -196,7 +196,7 @@

Constants

ellipse - ShapeType + → const ShapeType
@@ -207,7 +207,7 @@

Constants

rect - ShapeType + → const ShapeType
diff --git a/testing/test_package_docs/ex/ShapeType/ellipse-constant.html b/testing/test_package_docs/ex/ShapeType/ellipse-constant.html index d1a559d3b6..09085b57d2 100644 --- a/testing/test_package_docs/ex/ShapeType/ellipse-constant.html +++ b/testing/test_package_docs/ex/ShapeType/ellipse-constant.html @@ -63,11 +63,12 @@
ShapeType class
-

ellipse property

+

ellipse constant

ShapeType - ellipse = + const ellipse + = const 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..09de663aaa 100644 --- a/testing/test_package_docs/ex/ShapeType/rect-constant.html +++ b/testing/test_package_docs/ex/ShapeType/rect-constant.html @@ -63,11 +63,12 @@
ShapeType class
-

rect property

+

rect constant

ShapeType - rect = + const rect + = const 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 a0af904d06..fdff83558d 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", @@ -1831,7 +1831,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", @@ -2172,7 +2172,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", @@ -2535,7 +2535,7 @@ "name": "ellipse", "qualifiedName": "ex.ShapeType.ellipse", "href": "ex/ShapeType/ellipse-constant.html", - "type": "property", + "type": "constant", "overriddenDepth": 0, "enclosedBy": { "name": "ShapeType", @@ -2579,7 +2579,7 @@ "name": "rect", "qualifiedName": "ex.ShapeType.rect", "href": "ex/ShapeType/rect-constant.html", - "type": "property", + "type": "constant", "overriddenDepth": 0, "enclosedBy": { "name": "ShapeType", @@ -3470,7 +3470,7 @@ "name": "deprecated", "qualifiedName": "ex.deprecated", "href": "ex/deprecated-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "ex", @@ -3536,7 +3536,7 @@ "name": "incorrectDocReference", "qualifiedName": "ex.incorrectDocReference", "href": "ex/incorrectDocReference-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "ex", @@ -3547,7 +3547,7 @@ "name": "incorrectDocReferenceFromEx", "qualifiedName": "ex.incorrectDocReferenceFromEx", "href": "ex/incorrectDocReferenceFromEx-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "ex", @@ -4060,7 +4060,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", @@ -4566,7 +4566,7 @@ "name": "DOWN", "qualifiedName": "fake.DOWN", "href": "fake/DOWN-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "fake", @@ -4621,7 +4621,7 @@ "name": "bar", "qualifiedName": "fake.DocumentWithATable.bar", "href": "fake/DocumentWithATable/bar-constant.html", - "type": "property", + "type": "constant", "overriddenDepth": 0, "enclosedBy": { "name": "DocumentWithATable", @@ -4632,7 +4632,7 @@ "name": "foo", "qualifiedName": "fake.DocumentWithATable.foo", "href": "fake/DocumentWithATable/foo-constant.html", - "type": "property", + "type": "constant", "overriddenDepth": 0, "enclosedBy": { "name": "DocumentWithATable", @@ -4841,7 +4841,7 @@ "name": "BAR", "qualifiedName": "fake.Foo2.BAR", "href": "fake/Foo2/BAR-constant.html", - "type": "property", + "type": "constant", "overriddenDepth": 0, "enclosedBy": { "name": "Foo2", @@ -4852,7 +4852,7 @@ "name": "BAZ", "qualifiedName": "fake.Foo2.BAZ", "href": "fake/Foo2/BAZ-constant.html", - "type": "property", + "type": "constant", "overriddenDepth": 0, "enclosedBy": { "name": "Foo2", @@ -5424,7 +5424,7 @@ "name": "ANSWER", "qualifiedName": "fake.LongFirstLine.ANSWER", "href": "fake/LongFirstLine/ANSWER-constant.html", - "type": "property", + "type": "constant", "overriddenDepth": 0, "enclosedBy": { "name": "LongFirstLine", @@ -5435,7 +5435,7 @@ "name": "THING", "qualifiedName": "fake.LongFirstLine.THING", "href": "fake/LongFirstLine/THING-constant.html", - "type": "property", + "type": "constant", "overriddenDepth": 0, "enclosedBy": { "name": "LongFirstLine", @@ -5688,7 +5688,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", @@ -5699,7 +5699,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", @@ -6062,7 +6062,7 @@ "name": "PI", "qualifiedName": "fake.PI", "href": "fake/PI-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "fake", @@ -6865,7 +6865,7 @@ "name": "UP", "qualifiedName": "fake.UP", "href": "fake/UP-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "fake", @@ -6975,7 +6975,7 @@ "name": "ZERO", "qualifiedName": "fake.ZERO", "href": "fake/ZERO-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "fake", @@ -7052,7 +7052,7 @@ "name": "greatAnnotation", "qualifiedName": "fake.greatAnnotation", "href": "fake/greatAnnotation-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "fake", @@ -7063,7 +7063,7 @@ "name": "greatestAnnotation", "qualifiedName": "fake.greatestAnnotation", "href": "fake/greatestAnnotation-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "fake", @@ -7074,7 +7074,7 @@ "name": "incorrectDocReference", "qualifiedName": "fake.incorrectDocReference", "href": "fake/incorrectDocReference-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "fake", @@ -7195,7 +7195,7 @@ "name": "required", "qualifiedName": "fake.required", "href": "fake/required-constant.html", - "type": "top-level property", + "type": "top-level constant", "overriddenDepth": 0, "enclosedBy": { "name": "fake", @@ -7250,7 +7250,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