diff --git a/lib/src/markdown_processor.dart b/lib/src/markdown_processor.dart index 76fd23c3e2..b6b7e15b19 100644 --- a/lib/src/markdown_processor.dart +++ b/lib/src/markdown_processor.dart @@ -145,7 +145,10 @@ final HtmlEscape htmlEscape = const HtmlEscape(HtmlEscapeMode.ELEMENT); final List _markdown_syntaxes = [ new _InlineCodeSyntax(), new _AutolinkWithoutScheme() -]; +]..addAll(md.ExtensionSet.gitHub.inlineSyntaxes); + +final List _markdown_block_syntaxes = [] + ..addAll(md.ExtensionSet.gitHub.blockSyntaxes); // Remove these schemas from the display text for hyperlinks. final RegExp _hide_schemes = new RegExp('^(http|https)://'); @@ -984,7 +987,9 @@ class Documentation { String text = _element.documentation; _showWarningsForGenericsOutsideSquareBracketsBlocks(text, _element); MarkdownDocument document = new MarkdownDocument( - inlineSyntaxes: _markdown_syntaxes, linkResolver: _linkResolver); + inlineSyntaxes: _markdown_syntaxes, + blockSyntaxes: _markdown_block_syntaxes, + linkResolver: _linkResolver); List lines = text.replaceAll('\r\n', '\n').split('\n'); return document.renderLinesToHtml(lines, processFullDocs); } diff --git a/lib/src/model.dart b/lib/src/model.dart index 31720e458d..cc9bf11c60 100644 --- a/lib/src/model.dart +++ b/lib/src/model.dart @@ -1133,7 +1133,8 @@ class Constructor extends ModelElement @override // TODO(jcollins-g): Revisit this when dart-lang/sdk#31517 is implemented. - List get typeParameters => (enclosingElement as Class).typeParameters; + List get typeParameters => + (enclosingElement as Class).typeParameters; @override ModelElement get enclosingElement => @@ -1184,7 +1185,8 @@ class Constructor extends ModelElement if (constructorName.isEmpty) { _nameWithGenerics = '${enclosingElement.name}${genericParameters}'; } else { - _nameWithGenerics = '${enclosingElement.name}${genericParameters}.$constructorName'; + _nameWithGenerics = + '${enclosingElement.name}${genericParameters}.$constructorName'; } } return _nameWithGenerics; diff --git a/pubspec.lock b/pubspec.lock index 87c5193dd5..e7d86666e6 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -144,7 +144,7 @@ packages: name: markdown url: "https://pub.dartlang.org" source: hosted - version: "0.11.4" + version: "1.0.0" matcher: description: name: matcher diff --git a/pubspec.yaml b/pubspec.yaml index f95de927c5..a4828810ac 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -17,7 +17,7 @@ dependencies: # least version 3.0.3 to work around an issue with 3.0.2. http_parser: '>=3.0.3 <4.0.0' logging: ^0.11.3+1 - markdown: ^0.11.2 + markdown: ^1.0.0 mustache4dart: ^2.1.0 package_config: '>=0.1.5 <2.0.0' path: ^1.3.0 diff --git a/test/model_test.dart b/test/model_test.dart index 13fb1cef45..d94823e7f4 100644 --- a/test/model_test.dart +++ b/test/model_test.dart @@ -418,6 +418,36 @@ void main() { short = fakeLibrary.functions.firstWhere((f) => f.name == 'short'); }); + group('markdown extensions', () { + Class DocumentWithATable; + String docsAsHtml; + + setUp(() { + DocumentWithATable = fakeLibrary.classes + .firstWhere((cls) => cls.name == 'DocumentWithATable'); + docsAsHtml = DocumentWithATable.documentationAsHtml; + }); + + test('Verify table appearance', () { + expect(docsAsHtml.contains(''), + isTrue); + }); + + test('Verify links inside of table headers', () { + expect( + docsAsHtml.contains( + ''), + isTrue); + }); + + test('Verify links inside of table body', () { + expect( + docsAsHtml.contains( + ''), + isTrue); + }); + }); + group('doc references', () { String docsAsHtml; @@ -1863,9 +1893,8 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, exLibrary.constants.firstWhere((c) => c.name == 'deprecated'); Class Dog = exLibrary.allClasses.firstWhere((c) => c.name == 'Dog'); aStaticConstField = - Dog.allFields.firstWhere((f) => f.name == 'aStaticConstField'); - aName = - Dog.allFields.firstWhere((f) => f.name == 'aName'); + Dog.allFields.firstWhere((f) => f.name == 'aStaticConstField'); + aName = Dog.allFields.firstWhere((f) => f.name == 'aName'); }); test('substrings of the constant values type are not linked (#1535)', () { @@ -1903,8 +1932,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, }); test('MY_CAT is not linked', () { - expect(cat.constantValue, - 'const ConstantCat('tabby')'); + expect(cat.constantValue, 'const ConstantCat('tabby')'); }); test('exported property', () { @@ -1920,21 +1948,24 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans, setUp(() { apple = exLibrary.classes.firstWhere((c) => c.name == 'Apple'); constCat = exLibrary.classes.firstWhere((c) => c.name == 'ConstantCat'); - constructorTester = fakeLibrary.classes.firstWhere((c) => c.name == 'ConstructorTester'); + constructorTester = + fakeLibrary.classes.firstWhere((c) => c.name == 'ConstructorTester'); constCatConstructor = constCat.constructors[0]; appleDefaultConstructor = apple.constructors.firstWhere((c) => c.name == 'Apple'); appleConstructorFromString = apple.constructors.firstWhere((c) => c.name == 'Apple.fromString'); - constructorTesterDefault = - constructorTester.constructors.firstWhere((c) => c.name == 'ConstructorTester'); - constructorTesterFromSomething = - constructorTester.constructors.firstWhere((c) => c.name == 'ConstructorTester.fromSomething'); + constructorTesterDefault = constructorTester.constructors + .firstWhere((c) => c.name == 'ConstructorTester'); + constructorTesterFromSomething = constructorTester.constructors + .firstWhere((c) => c.name == 'ConstructorTester.fromSomething'); }); test('displays generic parameters correctly', () { - expect(constructorTesterDefault.nameWithGenerics, 'ConstructorTester<A, B>'); - expect(constructorTesterFromSomething.nameWithGenerics, 'ConstructorTester<A, B>.fromSomething'); + expect(constructorTesterDefault.nameWithGenerics, + 'ConstructorTester<A, B>'); + expect(constructorTesterFromSomething.nameWithGenerics, + 'ConstructorTester<A, B>.fromSomething'); }); test('has a fully qualified name', () { diff --git a/test/src/utils.dart b/test/src/utils.dart index f33bde4c09..88af738a25 100644 --- a/test/src/utils.dart +++ b/test/src/utils.dart @@ -66,4 +66,4 @@ Package bootBasicPackage( true, withAutoIncludedDependencies) .buildPackage(); -} \ No newline at end of file +} diff --git a/testing/test_package/lib/fake.dart b/testing/test_package/lib/fake.dart index 1375f0e600..ab0c6b2baa 100644 --- a/testing/test_package/lib/fake.dart +++ b/testing/test_package/lib/fake.dart @@ -92,6 +92,42 @@ class HasGenerics { Map convertToMap() => null; } + +/// This is a class with a table. +/// +/// It has multiple sentences before the table. Because testing is a good +/// idea. +/// +/// | Component | Symbol | Short Form | Long Form | Numeric | 2-digit | +/// |-----------|:------:|--------------|-------------------|-----------|-----------| +/// | era | G | G (AD) | GGGG (Anno Domini)| - | - | +/// | year | y | - | - | y (2015) | yy (15) | +/// | month | M | MMM (Sep) | MMMM (September) | M (9) | MM (09) | +/// | day | d | - | - | d (3) | dd (03) | +/// | weekday | E | EEE (Sun) | EEEE (Sunday) | - | - | +/// | hour | j | - | - | j (13) | jj (13) | +/// | hour12 | h | - | - | h (1 PM) | hh (01 PM)| +/// | hour24 | H | - | - | H (13) | HH (13) | +/// | minute | m | - | - | m (5) | mm (05) | +/// | second | s | - | - | s (9) | ss (09) | +/// | timezone | z | - | z (Pacific Standard Time)| - | - | +/// | timezone | Z | Z (GMT-8:00) | - | - | - | +/// +/// It also has a short table with embedded links. +/// +/// | [DocumentWithATable] | [Annotation] | [aMethod] | +/// |----------------------|--------------|-----------| +/// | [foo] | Not really | "blah" | +/// | [bar] | Maybe | "stuff" | +class DocumentWithATable { + static const DocumentWithATable foo = const DocumentWithATable(); + static const DocumentWithATable bar = const DocumentWithATable(); + + const DocumentWithATable(); + void aMethod(String parameter) {} +} + + Map mapWithDynamicKeys = {}; /// Useful for annotations. diff --git a/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html b/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html index 6c1aeb845d..1c21adaaea 100644 --- a/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html +++ b/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html @@ -50,6 +50,7 @@
library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/AMixinCallingSuper-class.html b/testing/test_package_docs/fake/AMixinCallingSuper-class.html index 4c32dabee3..c8f3607889 100644 --- a/testing/test_package_docs/fake/AMixinCallingSuper-class.html +++ b/testing/test_package_docs/fake/AMixinCallingSuper-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/Annotation-class.html b/testing/test_package_docs/fake/Annotation-class.html index 98caec6dcf..bb98a76dbf 100644 --- a/testing/test_package_docs/fake/Annotation-class.html +++ b/testing/test_package_docs/fake/Annotation-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/AnotherInterface-class.html b/testing/test_package_docs/fake/AnotherInterface-class.html index cc9d34b71f..d4a45d12d7 100644 --- a/testing/test_package_docs/fake/AnotherInterface-class.html +++ b/testing/test_package_docs/fake/AnotherInterface-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/BaseForDocComments-class.html b/testing/test_package_docs/fake/BaseForDocComments-class.html index 7d5e8ed4a7..9e87065a58 100644 --- a/testing/test_package_docs/fake/BaseForDocComments-class.html +++ b/testing/test_package_docs/fake/BaseForDocComments-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/BaseThingy-class.html b/testing/test_package_docs/fake/BaseThingy-class.html index 8840f2eda9..7203feee33 100644 --- a/testing/test_package_docs/fake/BaseThingy-class.html +++ b/testing/test_package_docs/fake/BaseThingy-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/BaseThingy2-class.html b/testing/test_package_docs/fake/BaseThingy2-class.html index 036ee063cc..2e89b6230e 100644 --- a/testing/test_package_docs/fake/BaseThingy2-class.html +++ b/testing/test_package_docs/fake/BaseThingy2-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html b/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html index aec999e00e..e5b7c64b12 100644 --- a/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html +++ b/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/Callback2.html b/testing/test_package_docs/fake/Callback2.html index 0d39b90ccc..c920752e27 100644 --- a/testing/test_package_docs/fake/Callback2.html +++ b/testing/test_package_docs/fake/Callback2.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html b/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html index 72de83aa1a..10ce93c09e 100644 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html +++ b/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/Color-class.html b/testing/test_package_docs/fake/Color-class.html index 2749819d28..bfea0d91df 100644 --- a/testing/test_package_docs/fake/Color-class.html +++ b/testing/test_package_docs/fake/Color-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/ConstantClass-class.html b/testing/test_package_docs/fake/ConstantClass-class.html index 96cf1c38db..67e72354d3 100644 --- a/testing/test_package_docs/fake/ConstantClass-class.html +++ b/testing/test_package_docs/fake/ConstantClass-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/ConstructorTester-class.html b/testing/test_package_docs/fake/ConstructorTester-class.html index 3a46ab69d7..f853f43ab9 100644 --- a/testing/test_package_docs/fake/ConstructorTester-class.html +++ b/testing/test_package_docs/fake/ConstructorTester-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/Cool-class.html b/testing/test_package_docs/fake/Cool-class.html index 5877a9bb6e..2d5a1cad5c 100644 --- a/testing/test_package_docs/fake/Cool-class.html +++ b/testing/test_package_docs/fake/Cool-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/DOWN-constant.html b/testing/test_package_docs/fake/DOWN-constant.html index d1f664a219..74e16d3ebb 100644 --- a/testing/test_package_docs/fake/DOWN-constant.html +++ b/testing/test_package_docs/fake/DOWN-constant.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/DocumentWithATable-class.html b/testing/test_package_docs/fake/DocumentWithATable-class.html new file mode 100644 index 0000000000..5b06a2f836 --- /dev/null +++ b/testing/test_package_docs/fake/DocumentWithATable-class.html @@ -0,0 +1,304 @@ + + + + + + + + DocumentWithATable class - fake library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    DocumentWithATable
    + + + +
    + +
    + + + +
    + +
    +

    This is a class with a table.

    +

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

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

    It also has a short table with embedded links.

    DocumentWithATableAnnotationaMethod
    fooNot really"blah"
    barMaybe"stuff"
    + + + +
    +

    Constructors

    + +
    +
    + DocumentWithATable() +
    +
    + +
    const
    +
    +
    +
    + +
    +

    Properties

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

    Methods

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

    Operators

    +
    +
    + operator ==(other) + → bool + +
    +
    + +
    inherited
    +
    +
    +
    + + + +
    +

    Constants

    + +
    +
    + bar + DocumentWithATable +
    +
    + + +
    + const DocumentWithATable() +
    +
    +
    + foo + DocumentWithATable +
    +
    + + +
    + const DocumentWithATable() +
    +
    +
    +
    + + + + + + + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/DocumentWithATable/DocumentWithATable.html b/testing/test_package_docs/fake/DocumentWithATable/DocumentWithATable.html new file mode 100644 index 0000000000..7e80a7f4fc --- /dev/null +++ b/testing/test_package_docs/fake/DocumentWithATable/DocumentWithATable.html @@ -0,0 +1,100 @@ + + + + + + + + DocumentWithATable constructor - DocumentWithATable class - fake library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    DocumentWithATable
    + +
    + +
    + + + +
    +
    + const + DocumentWithATable() +
    + + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/DocumentWithATable/aMethod.html b/testing/test_package_docs/fake/DocumentWithATable/aMethod.html new file mode 100644 index 0000000000..2ba784587c --- /dev/null +++ b/testing/test_package_docs/fake/DocumentWithATable/aMethod.html @@ -0,0 +1,99 @@ + + + + + + + + aMethod method - DocumentWithATable class - fake library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    aMethod
    + +
    + +
    + + + +
    +
    + void + aMethod(String parameter) +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/DocumentWithATable/bar-constant.html b/testing/test_package_docs/fake/DocumentWithATable/bar-constant.html new file mode 100644 index 0000000000..ffd2bea68b --- /dev/null +++ b/testing/test_package_docs/fake/DocumentWithATable/bar-constant.html @@ -0,0 +1,101 @@ + + + + + + + + bar constant - DocumentWithATable class - fake library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    bar
    + +
    + +
    + + + +
    + +
    + DocumentWithATable + bar = + const DocumentWithATable() +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/DocumentWithATable/foo-constant.html b/testing/test_package_docs/fake/DocumentWithATable/foo-constant.html new file mode 100644 index 0000000000..a9d09be32a --- /dev/null +++ b/testing/test_package_docs/fake/DocumentWithATable/foo-constant.html @@ -0,0 +1,101 @@ + + + + + + + + foo constant - DocumentWithATable class - fake library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    foo
    + +
    + +
    + + + +
    + +
    + DocumentWithATable + foo = + const DocumentWithATable() +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/DocumentWithATable/hashCode.html b/testing/test_package_docs/fake/DocumentWithATable/hashCode.html new file mode 100644 index 0000000000..b0f13a836a --- /dev/null +++ b/testing/test_package_docs/fake/DocumentWithATable/hashCode.html @@ -0,0 +1,103 @@ + + + + + + + + hashCode property - DocumentWithATable class - fake library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    hashCode
    + +
    + +
    + + + +
    + +
    + +
    + int + hashCode
    inherited
    +
    + + +
    + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/DocumentWithATable/noSuchMethod.html b/testing/test_package_docs/fake/DocumentWithATable/noSuchMethod.html new file mode 100644 index 0000000000..a503d43d77 --- /dev/null +++ b/testing/test_package_docs/fake/DocumentWithATable/noSuchMethod.html @@ -0,0 +1,99 @@ + + + + + + + + noSuchMethod method - DocumentWithATable class - fake library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    noSuchMethod
    + +
    + +
    + + + +
    +
    + dynamic + noSuchMethod(Invocation invocation) +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/DocumentWithATable/operator_equals.html b/testing/test_package_docs/fake/DocumentWithATable/operator_equals.html new file mode 100644 index 0000000000..846bfe7583 --- /dev/null +++ b/testing/test_package_docs/fake/DocumentWithATable/operator_equals.html @@ -0,0 +1,99 @@ + + + + + + + + operator == method - DocumentWithATable class - fake library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    operator ==
    + +
    + +
    + + + +
    +
    + bool + operator ==(other) +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/DocumentWithATable/runtimeType.html b/testing/test_package_docs/fake/DocumentWithATable/runtimeType.html new file mode 100644 index 0000000000..c19f214ffe --- /dev/null +++ b/testing/test_package_docs/fake/DocumentWithATable/runtimeType.html @@ -0,0 +1,103 @@ + + + + + + + + runtimeType property - DocumentWithATable class - fake library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    runtimeType
    + +
    + +
    + + + +
    + +
    + +
    + Type + runtimeType
    inherited
    +
    + + +
    + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/DocumentWithATable/toString.html b/testing/test_package_docs/fake/DocumentWithATable/toString.html new file mode 100644 index 0000000000..7695e9ab07 --- /dev/null +++ b/testing/test_package_docs/fake/DocumentWithATable/toString.html @@ -0,0 +1,99 @@ + + + + + + + + toString method - DocumentWithATable class - fake library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    toString
    + +
    + +
    + + + +
    +
    + String + toString() +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/Doh-class.html b/testing/test_package_docs/fake/Doh-class.html index e6ab2f1784..32e5aee28c 100644 --- a/testing/test_package_docs/fake/Doh-class.html +++ b/testing/test_package_docs/fake/Doh-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/ExtraSpecialList-class.html b/testing/test_package_docs/fake/ExtraSpecialList-class.html index e74fc88f6f..adfdc249c2 100644 --- a/testing/test_package_docs/fake/ExtraSpecialList-class.html +++ b/testing/test_package_docs/fake/ExtraSpecialList-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/FakeProcesses.html b/testing/test_package_docs/fake/FakeProcesses.html index f9126f27c9..5680e0842e 100644 --- a/testing/test_package_docs/fake/FakeProcesses.html +++ b/testing/test_package_docs/fake/FakeProcesses.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/Foo2-class.html b/testing/test_package_docs/fake/Foo2-class.html index a244cbceb5..9f876747f9 100644 --- a/testing/test_package_docs/fake/Foo2-class.html +++ b/testing/test_package_docs/fake/Foo2-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/GenericTypedef.html b/testing/test_package_docs/fake/GenericTypedef.html index e6ead83891..5b4427ce7c 100644 --- a/testing/test_package_docs/fake/GenericTypedef.html +++ b/testing/test_package_docs/fake/GenericTypedef.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/HasGenericWithExtends-class.html b/testing/test_package_docs/fake/HasGenericWithExtends-class.html index 58dee2c272..236da1370c 100644 --- a/testing/test_package_docs/fake/HasGenericWithExtends-class.html +++ b/testing/test_package_docs/fake/HasGenericWithExtends-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/HasGenerics-class.html b/testing/test_package_docs/fake/HasGenerics-class.html index 4128e01365..89068d794e 100644 --- a/testing/test_package_docs/fake/HasGenerics-class.html +++ b/testing/test_package_docs/fake/HasGenerics-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/ImplementingThingy-class.html b/testing/test_package_docs/fake/ImplementingThingy-class.html index dab2fff6ed..467688ca03 100644 --- a/testing/test_package_docs/fake/ImplementingThingy-class.html +++ b/testing/test_package_docs/fake/ImplementingThingy-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/ImplementingThingy2-class.html b/testing/test_package_docs/fake/ImplementingThingy2-class.html index d737bac678..b2e6512b36 100644 --- a/testing/test_package_docs/fake/ImplementingThingy2-class.html +++ b/testing/test_package_docs/fake/ImplementingThingy2-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/ImplicitProperties-class.html b/testing/test_package_docs/fake/ImplicitProperties-class.html index f39d52e385..9770b9bd4b 100644 --- a/testing/test_package_docs/fake/ImplicitProperties-class.html +++ b/testing/test_package_docs/fake/ImplicitProperties-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/Interface-class.html b/testing/test_package_docs/fake/Interface-class.html index d0e094e4a0..7ca336bd01 100644 --- a/testing/test_package_docs/fake/Interface-class.html +++ b/testing/test_package_docs/fake/Interface-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/LongFirstLine-class.html b/testing/test_package_docs/fake/LongFirstLine-class.html index 3dd05d3963..f294e1f44d 100644 --- a/testing/test_package_docs/fake/LongFirstLine-class.html +++ b/testing/test_package_docs/fake/LongFirstLine-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/LotsAndLotsOfParameters.html b/testing/test_package_docs/fake/LotsAndLotsOfParameters.html index 86c96b84b4..30e08ac5b8 100644 --- a/testing/test_package_docs/fake/LotsAndLotsOfParameters.html +++ b/testing/test_package_docs/fake/LotsAndLotsOfParameters.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/MixMeIn-class.html b/testing/test_package_docs/fake/MixMeIn-class.html index 97eec98f85..4d6e224e18 100644 --- a/testing/test_package_docs/fake/MixMeIn-class.html +++ b/testing/test_package_docs/fake/MixMeIn-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html b/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html index 400efc0c67..28150574d2 100644 --- a/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html +++ b/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • 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 4703f454f2..5bbec1112b 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 @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/NewGenericTypedef.html b/testing/test_package_docs/fake/NewGenericTypedef.html index f40645f3d6..e65de9ef60 100644 --- a/testing/test_package_docs/fake/NewGenericTypedef.html +++ b/testing/test_package_docs/fake/NewGenericTypedef.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/NotAMixin-class.html b/testing/test_package_docs/fake/NotAMixin-class.html index 88461cd302..44f7227f5c 100644 --- a/testing/test_package_docs/fake/NotAMixin-class.html +++ b/testing/test_package_docs/fake/NotAMixin-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/Oops-class.html b/testing/test_package_docs/fake/Oops-class.html index 5792b79e68..fcde8049d6 100644 --- a/testing/test_package_docs/fake/Oops-class.html +++ b/testing/test_package_docs/fake/Oops-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/OperatorReferenceClass-class.html b/testing/test_package_docs/fake/OperatorReferenceClass-class.html index c37e9ba707..ab6ed53ad9 100644 --- a/testing/test_package_docs/fake/OperatorReferenceClass-class.html +++ b/testing/test_package_docs/fake/OperatorReferenceClass-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/OtherGenericsThing-class.html b/testing/test_package_docs/fake/OtherGenericsThing-class.html index 016c19c5ee..7865f122ac 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing-class.html +++ b/testing/test_package_docs/fake/OtherGenericsThing-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/PI-constant.html b/testing/test_package_docs/fake/PI-constant.html index 8f81997c0d..843263d934 100644 --- a/testing/test_package_docs/fake/PI-constant.html +++ b/testing/test_package_docs/fake/PI-constant.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/SpecialList-class.html b/testing/test_package_docs/fake/SpecialList-class.html index 94e6f8da01..2deb6e1af0 100644 --- a/testing/test_package_docs/fake/SpecialList-class.html +++ b/testing/test_package_docs/fake/SpecialList-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/SubForDocComments-class.html b/testing/test_package_docs/fake/SubForDocComments-class.html index 17664e8ba6..b0d6711f58 100644 --- a/testing/test_package_docs/fake/SubForDocComments-class.html +++ b/testing/test_package_docs/fake/SubForDocComments-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/SuperAwesomeClass-class.html b/testing/test_package_docs/fake/SuperAwesomeClass-class.html index f69aa393f1..b512037f9d 100644 --- a/testing/test_package_docs/fake/SuperAwesomeClass-class.html +++ b/testing/test_package_docs/fake/SuperAwesomeClass-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/UP-constant.html b/testing/test_package_docs/fake/UP-constant.html index d272b81b65..094985a63c 100644 --- a/testing/test_package_docs/fake/UP-constant.html +++ b/testing/test_package_docs/fake/UP-constant.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/VoidCallback.html b/testing/test_package_docs/fake/VoidCallback.html index 6bf39ebe0a..55c8fecc45 100644 --- a/testing/test_package_docs/fake/VoidCallback.html +++ b/testing/test_package_docs/fake/VoidCallback.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/WithGetterAndSetter-class.html b/testing/test_package_docs/fake/WithGetterAndSetter-class.html index 558edc7c08..11b543430f 100644 --- a/testing/test_package_docs/fake/WithGetterAndSetter-class.html +++ b/testing/test_package_docs/fake/WithGetterAndSetter-class.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/ZERO-constant.html b/testing/test_package_docs/fake/ZERO-constant.html index 106ed2badb..461e4b57f5 100644 --- a/testing/test_package_docs/fake/ZERO-constant.html +++ b/testing/test_package_docs/fake/ZERO-constant.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/addCallback.html b/testing/test_package_docs/fake/addCallback.html index e1a73fc8b3..45f932db72 100644 --- a/testing/test_package_docs/fake/addCallback.html +++ b/testing/test_package_docs/fake/addCallback.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/addCallback2.html b/testing/test_package_docs/fake/addCallback2.html index fd59fce1b0..3261a202e8 100644 --- a/testing/test_package_docs/fake/addCallback2.html +++ b/testing/test_package_docs/fake/addCallback2.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/dynamicGetter.html b/testing/test_package_docs/fake/dynamicGetter.html index 437f1bb049..e7a0015a39 100644 --- a/testing/test_package_docs/fake/dynamicGetter.html +++ b/testing/test_package_docs/fake/dynamicGetter.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/fake-library.html b/testing/test_package_docs/fake/fake-library.html index 2a0934a13b..fb1eba4611 100644 --- a/testing/test_package_docs/fake/fake-library.html +++ b/testing/test_package_docs/fake/fake-library.html @@ -148,6 +148,12 @@

    Classes

    This class is cool!
    +
    + DocumentWithATable +
    +
    + This is a class with a table. [...] +
    ExtraSpecialList
    @@ -718,6 +724,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/functionWithFunctionParameters.html b/testing/test_package_docs/fake/functionWithFunctionParameters.html index 1e72e62679..5c1c877a31 100644 --- a/testing/test_package_docs/fake/functionWithFunctionParameters.html +++ b/testing/test_package_docs/fake/functionWithFunctionParameters.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/getterSetterNodocGetter.html b/testing/test_package_docs/fake/getterSetterNodocGetter.html index 76fa5fd15f..cbdf34cd3d 100644 --- a/testing/test_package_docs/fake/getterSetterNodocGetter.html +++ b/testing/test_package_docs/fake/getterSetterNodocGetter.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/getterSetterNodocSetter.html b/testing/test_package_docs/fake/getterSetterNodocSetter.html index c7189665e7..5c62f144c0 100644 --- a/testing/test_package_docs/fake/getterSetterNodocSetter.html +++ b/testing/test_package_docs/fake/getterSetterNodocSetter.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/greatAnnotation-constant.html b/testing/test_package_docs/fake/greatAnnotation-constant.html index c60b63c4fb..d1c0d7a71a 100644 --- a/testing/test_package_docs/fake/greatAnnotation-constant.html +++ b/testing/test_package_docs/fake/greatAnnotation-constant.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/greatestAnnotation-constant.html b/testing/test_package_docs/fake/greatestAnnotation-constant.html index 34acf3b70b..4eeddde95c 100644 --- a/testing/test_package_docs/fake/greatestAnnotation-constant.html +++ b/testing/test_package_docs/fake/greatestAnnotation-constant.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/incorrectDocReference-constant.html b/testing/test_package_docs/fake/incorrectDocReference-constant.html index bb4d107728..0b2bccabe0 100644 --- a/testing/test_package_docs/fake/incorrectDocReference-constant.html +++ b/testing/test_package_docs/fake/incorrectDocReference-constant.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/justGetter.html b/testing/test_package_docs/fake/justGetter.html index 9ca91f08b6..e7bfee1477 100644 --- a/testing/test_package_docs/fake/justGetter.html +++ b/testing/test_package_docs/fake/justGetter.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/justSetter.html b/testing/test_package_docs/fake/justSetter.html index e5a6f594fb..16625547cc 100644 --- a/testing/test_package_docs/fake/justSetter.html +++ b/testing/test_package_docs/fake/justSetter.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/mapWithDynamicKeys.html b/testing/test_package_docs/fake/mapWithDynamicKeys.html index 33991cf184..da80e42d9d 100644 --- a/testing/test_package_docs/fake/mapWithDynamicKeys.html +++ b/testing/test_package_docs/fake/mapWithDynamicKeys.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/meaningOfLife.html b/testing/test_package_docs/fake/meaningOfLife.html index 183da664f7..9b0c0c9987 100644 --- a/testing/test_package_docs/fake/meaningOfLife.html +++ b/testing/test_package_docs/fake/meaningOfLife.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/myCoolTypedef.html b/testing/test_package_docs/fake/myCoolTypedef.html index 0c6f575568..f190443134 100644 --- a/testing/test_package_docs/fake/myCoolTypedef.html +++ b/testing/test_package_docs/fake/myCoolTypedef.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/myGenericFunction.html b/testing/test_package_docs/fake/myGenericFunction.html index 3d785d3104..cc522b3444 100644 --- a/testing/test_package_docs/fake/myGenericFunction.html +++ b/testing/test_package_docs/fake/myGenericFunction.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html b/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html index ae3b840f31..a30da45523 100644 --- a/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html +++ b/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/paintImage1.html b/testing/test_package_docs/fake/paintImage1.html index ec06335406..3422608438 100644 --- a/testing/test_package_docs/fake/paintImage1.html +++ b/testing/test_package_docs/fake/paintImage1.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/paintImage2.html b/testing/test_package_docs/fake/paintImage2.html index d357064c35..94bc107031 100644 --- a/testing/test_package_docs/fake/paintImage2.html +++ b/testing/test_package_docs/fake/paintImage2.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/paramFromAnotherLib.html b/testing/test_package_docs/fake/paramFromAnotherLib.html index 02ca879745..f6f9d5a395 100644 --- a/testing/test_package_docs/fake/paramFromAnotherLib.html +++ b/testing/test_package_docs/fake/paramFromAnotherLib.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/required-constant.html b/testing/test_package_docs/fake/required-constant.html index 7d65ff613a..13980e9832 100644 --- a/testing/test_package_docs/fake/required-constant.html +++ b/testing/test_package_docs/fake/required-constant.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/setAndGet.html b/testing/test_package_docs/fake/setAndGet.html index c2201b5af5..3f12df362e 100644 --- a/testing/test_package_docs/fake/setAndGet.html +++ b/testing/test_package_docs/fake/setAndGet.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/short.html b/testing/test_package_docs/fake/short.html index f1584d7e4f..02314df160 100644 --- a/testing/test_package_docs/fake/short.html +++ b/testing/test_package_docs/fake/short.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/simpleProperty.html b/testing/test_package_docs/fake/simpleProperty.html index 733f922977..27da6ba02b 100644 --- a/testing/test_package_docs/fake/simpleProperty.html +++ b/testing/test_package_docs/fake/simpleProperty.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/soIntense.html b/testing/test_package_docs/fake/soIntense.html index a58d2b735b..2f8916a09c 100644 --- a/testing/test_package_docs/fake/soIntense.html +++ b/testing/test_package_docs/fake/soIntense.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html b/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html index bf4b81a352..fc25e429d4 100644 --- a/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html +++ b/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/thisIsAlsoAsync.html b/testing/test_package_docs/fake/thisIsAlsoAsync.html index 7aeda63a04..ef96771314 100644 --- a/testing/test_package_docs/fake/thisIsAlsoAsync.html +++ b/testing/test_package_docs/fake/thisIsAlsoAsync.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/thisIsAsync.html b/testing/test_package_docs/fake/thisIsAsync.html index 1e6b3d8692..9c39f271ca 100644 --- a/testing/test_package_docs/fake/thisIsAsync.html +++ b/testing/test_package_docs/fake/thisIsAsync.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/fake/topLevelFunction.html b/testing/test_package_docs/fake/topLevelFunction.html index 74c72ec5be..2febd3c97d 100644 --- a/testing/test_package_docs/fake/topLevelFunction.html +++ b/testing/test_package_docs/fake/topLevelFunction.html @@ -50,6 +50,7 @@
    library fake
  • ConstantClass
  • ConstructorTester
  • Cool
  • +
  • DocumentWithATable
  • ExtraSpecialList
  • Foo2
  • HasGenerics
  • diff --git a/testing/test_package_docs/index.json b/testing/test_package_docs/index.json index e177de151f..b4d56ed812 100644 --- a/testing/test_package_docs/index.json +++ b/testing/test_package_docs/index.json @@ -4551,6 +4551,116 @@ "type": "library" } }, + { + "name": "DocumentWithATable", + "qualifiedName": "fake.DocumentWithATable", + "href": "fake/DocumentWithATable-class.html", + "type": "class", + "overriddenDepth": 0, + "enclosedBy": { + "name": "fake", + "type": "library" + } + }, + { + "name": "DocumentWithATable", + "qualifiedName": "fake.DocumentWithATable", + "href": "fake/DocumentWithATable/DocumentWithATable.html", + "type": "constructor", + "overriddenDepth": 0, + "enclosedBy": { + "name": "DocumentWithATable", + "type": "class" + } + }, + { + "name": "operator ==", + "qualifiedName": "fake.DocumentWithATable.==", + "href": "fake/DocumentWithATable/operator_equals.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "DocumentWithATable", + "type": "class" + } + }, + { + "name": "aMethod", + "qualifiedName": "fake.DocumentWithATable.aMethod", + "href": "fake/DocumentWithATable/aMethod.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "DocumentWithATable", + "type": "class" + } + }, + { + "name": "bar", + "qualifiedName": "fake.DocumentWithATable.bar", + "href": "fake/DocumentWithATable/bar-constant.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "DocumentWithATable", + "type": "class" + } + }, + { + "name": "foo", + "qualifiedName": "fake.DocumentWithATable.foo", + "href": "fake/DocumentWithATable/foo-constant.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "DocumentWithATable", + "type": "class" + } + }, + { + "name": "hashCode", + "qualifiedName": "fake.DocumentWithATable.hashCode", + "href": "fake/DocumentWithATable/hashCode.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "DocumentWithATable", + "type": "class" + } + }, + { + "name": "noSuchMethod", + "qualifiedName": "fake.DocumentWithATable.noSuchMethod", + "href": "fake/DocumentWithATable/noSuchMethod.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "DocumentWithATable", + "type": "class" + } + }, + { + "name": "runtimeType", + "qualifiedName": "fake.DocumentWithATable.runtimeType", + "href": "fake/DocumentWithATable/runtimeType.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "DocumentWithATable", + "type": "class" + } + }, + { + "name": "toString", + "qualifiedName": "fake.DocumentWithATable.toString", + "href": "fake/DocumentWithATable/toString.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "DocumentWithATable", + "type": "class" + } + }, { "name": "Doh", "qualifiedName": "fake.Doh",