diff --git a/test/model_test.dart b/test/model_test.dart index 8728eaa97a..cc9f6895ff 100644 --- a/test/model_test.dart +++ b/test/model_test.dart @@ -6,7 +6,6 @@ library dartdoc.model_test; import 'dart:io'; -import 'package:analyzer/dart/element/element.dart'; import 'package:dartdoc/dartdoc.dart'; import 'package:dartdoc/src/model.dart'; import 'package:dartdoc/src/warnings.dart'; @@ -1048,18 +1047,33 @@ void main() { group('Function', () { ModelFunction f1; ModelFunction genericFunction; + ModelFunction paramOfFutureOrNull; ModelFunction thisIsAsync; + ModelFunction thisIsFutureOr; + ModelFunction thisIsFutureOrNull; + ModelFunction thisIsFutureOrT; ModelFunction topLevelFunction; + ModelFunction typeParamOfFutureOr; setUp(() { f1 = exLibrary.functions.first; genericFunction = exLibrary.functions.firstWhere((f) => f.name == 'genericFunction'); + paramOfFutureOrNull = + fakeLibrary.functions.firstWhere((f) => f.name == 'paramOfFutureOrNull'); thisIsAsync = fakeLibrary.functions.firstWhere((f) => f.name == 'thisIsAsync'); + thisIsFutureOr = + fakeLibrary.functions.firstWhere((f) => f.name == 'thisIsFutureOr'); + thisIsFutureOrNull = + fakeLibrary.functions.firstWhere((f) => f.name == 'thisIsFutureOrNull'); + thisIsFutureOrT = + fakeLibrary.functions.firstWhere((f) => f.name == 'thisIsFutureOrT'); topLevelFunction = fakeLibrary.functions.firstWhere((f) => f.name == 'topLevelFunction'); - }); + typeParamOfFutureOr = + fakeLibrary.functions.firstWhere((f) => f.name == 'typeParamOfFutureOr'); + }); test('has a fully qualified name', () { expect(thisIsAsync.fullyQualifiedName, 'fake.thisIsAsync'); @@ -1102,6 +1116,29 @@ void main() { '

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

')); }); + test('function returning FutureOr', () { + expect(thisIsFutureOr.isAsynchronous, isFalse); + expect(thisIsFutureOr.linkedReturnType, equals('FutureOr')); + }); + + test('function returning FutureOr', () { + expect(thisIsFutureOrNull.isAsynchronous, isFalse); + expect(thisIsFutureOrNull.linkedReturnType, equals('FutureOr<Null>')); + }); + + test('function returning FutureOr', () { + expect(thisIsFutureOrNull.isAsynchronous, isFalse); + expect(thisIsFutureOrT.linkedReturnType, equals('FutureOr<T>')); + }); + + test('function with a parameter having type FutureOr', () { + expect(paramOfFutureOrNull.linkedParams(), equals('FutureOr<Null> future')); + }); + + test('function with a bound type to FutureOr', () { + expect(typeParamOfFutureOr.linkedGenericParameters, equals('<T extends FutureOr<List>>')); + }); + test('docs do not lose brackets in code blocks', () { expect(topLevelFunction.documentation, contains("['hello from dart']")); }); diff --git a/testing/test_package/lib/fake.dart b/testing/test_package/lib/fake.dart index 396f0b9b87..8ebb76963b 100644 --- a/testing/test_package/lib/fake.dart +++ b/testing/test_package/lib/fake.dart @@ -564,6 +564,21 @@ thisIsAsync() async => 42; /// Explicitly returns a Future and is marked async. Future thisIsAlsoAsync() async => 43; +/// Explicitly return a `FutureOr`. +FutureOr thisIsFutureOr() => null; + +/// Explicitly return a `FutureOr`. +FutureOr thisIsFutureOrNull() => null; + +/// Explicitly return a `FutureOr`. +FutureOr thisIsFutureOrT() => null; + +/// Has a parameter explicitly typed `FutureOr`. +void paramOfFutureOrNull(FutureOr future) {} + +/// Has a type parameter bound to `FutureOr`. +void typeParamOfFutureOr>() {} + /// A generic function with a type parameter. void myGenericFunction(int a, bool b, S c) { return; diff --git a/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html b/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html index a324cb878c..68eded37e4 100644 --- a/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html +++ b/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html @@ -112,11 +112,16 @@
fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/AClassWithFancyProperties-class.html b/testing/test_package_docs/fake/AClassWithFancyProperties-class.html index f5c3ab37c6..c0dc8a49ab 100644 --- a/testing/test_package_docs/fake/AClassWithFancyProperties-class.html +++ b/testing/test_package_docs/fake/AClassWithFancyProperties-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/AMixinCallingSuper-class.html b/testing/test_package_docs/fake/AMixinCallingSuper-class.html index 1260ecaed6..e918b4af3b 100644 --- a/testing/test_package_docs/fake/AMixinCallingSuper-class.html +++ b/testing/test_package_docs/fake/AMixinCallingSuper-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/Annotation-class.html b/testing/test_package_docs/fake/Annotation-class.html index 0104e792f3..d245906f3d 100644 --- a/testing/test_package_docs/fake/Annotation-class.html +++ b/testing/test_package_docs/fake/Annotation-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/AnotherInterface-class.html b/testing/test_package_docs/fake/AnotherInterface-class.html index 3900ccc978..5c6fc5b735 100644 --- a/testing/test_package_docs/fake/AnotherInterface-class.html +++ b/testing/test_package_docs/fake/AnotherInterface-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/BaseForDocComments-class.html b/testing/test_package_docs/fake/BaseForDocComments-class.html index 9b318e377a..bea1a78785 100644 --- a/testing/test_package_docs/fake/BaseForDocComments-class.html +++ b/testing/test_package_docs/fake/BaseForDocComments-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/BaseThingy-class.html b/testing/test_package_docs/fake/BaseThingy-class.html index 23d6f3b68b..57fd190445 100644 --- a/testing/test_package_docs/fake/BaseThingy-class.html +++ b/testing/test_package_docs/fake/BaseThingy-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/BaseThingy2-class.html b/testing/test_package_docs/fake/BaseThingy2-class.html index e015336985..6222c1e3b7 100644 --- a/testing/test_package_docs/fake/BaseThingy2-class.html +++ b/testing/test_package_docs/fake/BaseThingy2-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html b/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html index 33c5e8c787..fb79925d47 100644 --- a/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html +++ b/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/CUSTOM_CLASS_PRIVATE-constant.html b/testing/test_package_docs/fake/CUSTOM_CLASS_PRIVATE-constant.html index bf5cf3fdf8..900f537649 100644 --- a/testing/test_package_docs/fake/CUSTOM_CLASS_PRIVATE-constant.html +++ b/testing/test_package_docs/fake/CUSTOM_CLASS_PRIVATE-constant.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/Callback2.html b/testing/test_package_docs/fake/Callback2.html index a6c662027a..4cc8f61006 100644 --- a/testing/test_package_docs/fake/Callback2.html +++ b/testing/test_package_docs/fake/Callback2.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html b/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html index fb6b948dbe..09fe8f10fd 100644 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html +++ b/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/Color-class.html b/testing/test_package_docs/fake/Color-class.html index 7e0c39a605..aeedd5c861 100644 --- a/testing/test_package_docs/fake/Color-class.html +++ b/testing/test_package_docs/fake/Color-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/ConstantClass-class.html b/testing/test_package_docs/fake/ConstantClass-class.html index 290200d76d..9e3c1563fe 100644 --- a/testing/test_package_docs/fake/ConstantClass-class.html +++ b/testing/test_package_docs/fake/ConstantClass-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/ConstructorTester-class.html b/testing/test_package_docs/fake/ConstructorTester-class.html index ee1b184756..2c405487b2 100644 --- a/testing/test_package_docs/fake/ConstructorTester-class.html +++ b/testing/test_package_docs/fake/ConstructorTester-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/Cool-class.html b/testing/test_package_docs/fake/Cool-class.html index 72d83c47e7..f98053cce2 100644 --- a/testing/test_package_docs/fake/Cool-class.html +++ b/testing/test_package_docs/fake/Cool-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/DOWN-constant.html b/testing/test_package_docs/fake/DOWN-constant.html index 61f9a5e001..b6bc7b0201 100644 --- a/testing/test_package_docs/fake/DOWN-constant.html +++ b/testing/test_package_docs/fake/DOWN-constant.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/DocumentWithATable-class.html b/testing/test_package_docs/fake/DocumentWithATable-class.html index f5c0eae386..6ba6a2053e 100644 --- a/testing/test_package_docs/fake/DocumentWithATable-class.html +++ b/testing/test_package_docs/fake/DocumentWithATable-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/Doh-class.html b/testing/test_package_docs/fake/Doh-class.html index 02e7e9a688..4774aae9fc 100644 --- a/testing/test_package_docs/fake/Doh-class.html +++ b/testing/test_package_docs/fake/Doh-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/ExtraSpecialList-class.html b/testing/test_package_docs/fake/ExtraSpecialList-class.html index b7f9aff694..a4d83d8dec 100644 --- a/testing/test_package_docs/fake/ExtraSpecialList-class.html +++ b/testing/test_package_docs/fake/ExtraSpecialList-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/FakeProcesses.html b/testing/test_package_docs/fake/FakeProcesses.html index f38b309531..be45178127 100644 --- a/testing/test_package_docs/fake/FakeProcesses.html +++ b/testing/test_package_docs/fake/FakeProcesses.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/Foo2-class.html b/testing/test_package_docs/fake/Foo2-class.html index a239d2493e..0150f82ecd 100644 --- a/testing/test_package_docs/fake/Foo2-class.html +++ b/testing/test_package_docs/fake/Foo2-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/GenericTypedef.html b/testing/test_package_docs/fake/GenericTypedef.html index f84ed17122..79789d4ca7 100644 --- a/testing/test_package_docs/fake/GenericTypedef.html +++ b/testing/test_package_docs/fake/GenericTypedef.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/HasGenericWithExtends-class.html b/testing/test_package_docs/fake/HasGenericWithExtends-class.html index 2cc5ca9dc7..13945302c0 100644 --- a/testing/test_package_docs/fake/HasGenericWithExtends-class.html +++ b/testing/test_package_docs/fake/HasGenericWithExtends-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/HasGenerics-class.html b/testing/test_package_docs/fake/HasGenerics-class.html index c04e5b4425..26ec8acbd7 100644 --- a/testing/test_package_docs/fake/HasGenerics-class.html +++ b/testing/test_package_docs/fake/HasGenerics-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/ImplementingThingy-class.html b/testing/test_package_docs/fake/ImplementingThingy-class.html index 5ade0951b0..d00378ca68 100644 --- a/testing/test_package_docs/fake/ImplementingThingy-class.html +++ b/testing/test_package_docs/fake/ImplementingThingy-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/ImplementingThingy2-class.html b/testing/test_package_docs/fake/ImplementingThingy2-class.html index db9aa83cdf..29dcf4472f 100644 --- a/testing/test_package_docs/fake/ImplementingThingy2-class.html +++ b/testing/test_package_docs/fake/ImplementingThingy2-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/ImplicitProperties-class.html b/testing/test_package_docs/fake/ImplicitProperties-class.html index fe3c64a7fb..15c003f9a8 100644 --- a/testing/test_package_docs/fake/ImplicitProperties-class.html +++ b/testing/test_package_docs/fake/ImplicitProperties-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/InheritingClassOne-class.html b/testing/test_package_docs/fake/InheritingClassOne-class.html index 1b56e711d7..272903ce63 100644 --- a/testing/test_package_docs/fake/InheritingClassOne-class.html +++ b/testing/test_package_docs/fake/InheritingClassOne-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/InheritingClassTwo-class.html b/testing/test_package_docs/fake/InheritingClassTwo-class.html index 9b9f8e4461..68d710e4ee 100644 --- a/testing/test_package_docs/fake/InheritingClassTwo-class.html +++ b/testing/test_package_docs/fake/InheritingClassTwo-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/Interface-class.html b/testing/test_package_docs/fake/Interface-class.html index 8e626ba222..a12c88651c 100644 --- a/testing/test_package_docs/fake/Interface-class.html +++ b/testing/test_package_docs/fake/Interface-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/LongFirstLine-class.html b/testing/test_package_docs/fake/LongFirstLine-class.html index 2169b86143..391f8e3084 100644 --- a/testing/test_package_docs/fake/LongFirstLine-class.html +++ b/testing/test_package_docs/fake/LongFirstLine-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/LotsAndLotsOfParameters.html b/testing/test_package_docs/fake/LotsAndLotsOfParameters.html index 99c7cd699d..5a524b2ae3 100644 --- a/testing/test_package_docs/fake/LotsAndLotsOfParameters.html +++ b/testing/test_package_docs/fake/LotsAndLotsOfParameters.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/MIEEBase-class.html b/testing/test_package_docs/fake/MIEEBase-class.html index 0ca7269157..9b54ac4cc3 100644 --- a/testing/test_package_docs/fake/MIEEBase-class.html +++ b/testing/test_package_docs/fake/MIEEBase-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/MIEEMixin-class.html b/testing/test_package_docs/fake/MIEEMixin-class.html index a115b81edb..7783cff694 100644 --- a/testing/test_package_docs/fake/MIEEMixin-class.html +++ b/testing/test_package_docs/fake/MIEEMixin-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/MIEEMixinWithOverride-class.html b/testing/test_package_docs/fake/MIEEMixinWithOverride-class.html index 34dce6deb2..7df7a1be53 100644 --- a/testing/test_package_docs/fake/MIEEMixinWithOverride-class.html +++ b/testing/test_package_docs/fake/MIEEMixinWithOverride-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/MIEEThing-class.html b/testing/test_package_docs/fake/MIEEThing-class.html index 8e677ba1e4..7959d60b6f 100644 --- a/testing/test_package_docs/fake/MIEEThing-class.html +++ b/testing/test_package_docs/fake/MIEEThing-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/MixMeIn-class.html b/testing/test_package_docs/fake/MixMeIn-class.html index 2a20cdb1c4..6f2652135e 100644 --- a/testing/test_package_docs/fake/MixMeIn-class.html +++ b/testing/test_package_docs/fake/MixMeIn-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html b/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html index 0a0246b4d6..df2e4ee0d1 100644 --- a/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html +++ b/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • 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 591ca2132c..d1fd86beb5 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 @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/NewGenericTypedef.html b/testing/test_package_docs/fake/NewGenericTypedef.html index d3f069b004..1a620ad076 100644 --- a/testing/test_package_docs/fake/NewGenericTypedef.html +++ b/testing/test_package_docs/fake/NewGenericTypedef.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/NotAMixin-class.html b/testing/test_package_docs/fake/NotAMixin-class.html index 748a9346ab..7adf5a8295 100644 --- a/testing/test_package_docs/fake/NotAMixin-class.html +++ b/testing/test_package_docs/fake/NotAMixin-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/Oops-class.html b/testing/test_package_docs/fake/Oops-class.html index e053f60768..c9b6e8893b 100644 --- a/testing/test_package_docs/fake/Oops-class.html +++ b/testing/test_package_docs/fake/Oops-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/OperatorReferenceClass-class.html b/testing/test_package_docs/fake/OperatorReferenceClass-class.html index 6a332c3102..4422b2b25b 100644 --- a/testing/test_package_docs/fake/OperatorReferenceClass-class.html +++ b/testing/test_package_docs/fake/OperatorReferenceClass-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/OtherGenericsThing-class.html b/testing/test_package_docs/fake/OtherGenericsThing-class.html index 87f4ee9244..c7d2790e93 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing-class.html +++ b/testing/test_package_docs/fake/OtherGenericsThing-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/PI-constant.html b/testing/test_package_docs/fake/PI-constant.html index acef8f15fb..15a6f4e20e 100644 --- a/testing/test_package_docs/fake/PI-constant.html +++ b/testing/test_package_docs/fake/PI-constant.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/ReferringClass-class.html b/testing/test_package_docs/fake/ReferringClass-class.html index b6c593bcbe..c5154016cc 100644 --- a/testing/test_package_docs/fake/ReferringClass-class.html +++ b/testing/test_package_docs/fake/ReferringClass-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/SpecialList-class.html b/testing/test_package_docs/fake/SpecialList-class.html index 961ac64c12..dabad1838d 100644 --- a/testing/test_package_docs/fake/SpecialList-class.html +++ b/testing/test_package_docs/fake/SpecialList-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/SubForDocComments-class.html b/testing/test_package_docs/fake/SubForDocComments-class.html index c125aafd00..1ebce5b0d4 100644 --- a/testing/test_package_docs/fake/SubForDocComments-class.html +++ b/testing/test_package_docs/fake/SubForDocComments-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/SuperAwesomeClass-class.html b/testing/test_package_docs/fake/SuperAwesomeClass-class.html index 1a240cba4d..dd181c3ead 100644 --- a/testing/test_package_docs/fake/SuperAwesomeClass-class.html +++ b/testing/test_package_docs/fake/SuperAwesomeClass-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/UP-constant.html b/testing/test_package_docs/fake/UP-constant.html index 72ed96bc61..57b500c9e3 100644 --- a/testing/test_package_docs/fake/UP-constant.html +++ b/testing/test_package_docs/fake/UP-constant.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/VoidCallback.html b/testing/test_package_docs/fake/VoidCallback.html index 8e224c8f5a..7bef52dcbe 100644 --- a/testing/test_package_docs/fake/VoidCallback.html +++ b/testing/test_package_docs/fake/VoidCallback.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/WithGetterAndSetter-class.html b/testing/test_package_docs/fake/WithGetterAndSetter-class.html index ec40e6d920..ffcd7399ce 100644 --- a/testing/test_package_docs/fake/WithGetterAndSetter-class.html +++ b/testing/test_package_docs/fake/WithGetterAndSetter-class.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/ZERO-constant.html b/testing/test_package_docs/fake/ZERO-constant.html index b3f8e90294..d7bd870fe5 100644 --- a/testing/test_package_docs/fake/ZERO-constant.html +++ b/testing/test_package_docs/fake/ZERO-constant.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/addCallback.html b/testing/test_package_docs/fake/addCallback.html index b5d4831cfb..e46f91f8dd 100644 --- a/testing/test_package_docs/fake/addCallback.html +++ b/testing/test_package_docs/fake/addCallback.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/addCallback2.html b/testing/test_package_docs/fake/addCallback2.html index 67529f2091..2a3231536d 100644 --- a/testing/test_package_docs/fake/addCallback2.html +++ b/testing/test_package_docs/fake/addCallback2.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/dynamicGetter.html b/testing/test_package_docs/fake/dynamicGetter.html index 55c05e41ef..1db9f5af69 100644 --- a/testing/test_package_docs/fake/dynamicGetter.html +++ b/testing/test_package_docs/fake/dynamicGetter.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/fake-library.html b/testing/test_package_docs/fake/fake-library.html index a9dc9a02cb..e6ae6c3ca3 100644 --- a/testing/test_package_docs/fake/fake-library.html +++ b/testing/test_package_docs/fake/fake-library.html @@ -617,6 +617,15 @@

    Functions

    FooBar comes from another library. +
    +
    + paramOfFutureOrNull(FutureOr<Null> future) + → void + +
    +
    + Has a parameter explicitly typed FutureOr<Null>. +
    short() @@ -654,6 +663,33 @@

    Functions

    An async function. It should look like I return a Future. +
    +
    + thisIsFutureOr() + → FutureOr + +
    +
    + Explicitly return a FutureOr. + +
    +
    + thisIsFutureOrNull() + → FutureOr<Null> + +
    +
    + Explicitly return a FutureOr<Null>. + +
    +
    + thisIsFutureOrT<T>() + → FutureOr<T> + +
    +
    + Explicitly return a FutureOr<T>. +
    topLevelFunction(int param1, bool param2, Cool coolBeans, [ double optionalPositional = 0.0 ]) @@ -663,6 +699,15 @@

    Functions

    Top-level function 3 params and 1 optional positional param. [...] +
    +
    + typeParamOfFutureOr<T extends FutureOr<List>>() + → void + +
    +
    + Has a type parameter bound to FutureOr<List>. +
    @@ -848,11 +893,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/functionWithFunctionParameters.html b/testing/test_package_docs/fake/functionWithFunctionParameters.html index 85a436a6a9..309ddd7b3c 100644 --- a/testing/test_package_docs/fake/functionWithFunctionParameters.html +++ b/testing/test_package_docs/fake/functionWithFunctionParameters.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/getterSetterNodocGetter.html b/testing/test_package_docs/fake/getterSetterNodocGetter.html index c2e61e3227..02144c72d8 100644 --- a/testing/test_package_docs/fake/getterSetterNodocGetter.html +++ b/testing/test_package_docs/fake/getterSetterNodocGetter.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/getterSetterNodocSetter.html b/testing/test_package_docs/fake/getterSetterNodocSetter.html index 4ec44e376d..a77f52eb8c 100644 --- a/testing/test_package_docs/fake/getterSetterNodocSetter.html +++ b/testing/test_package_docs/fake/getterSetterNodocSetter.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/greatAnnotation-constant.html b/testing/test_package_docs/fake/greatAnnotation-constant.html index bc8726f1e9..5d51bda26a 100644 --- a/testing/test_package_docs/fake/greatAnnotation-constant.html +++ b/testing/test_package_docs/fake/greatAnnotation-constant.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/greatestAnnotation-constant.html b/testing/test_package_docs/fake/greatestAnnotation-constant.html index ffdf1d96a0..62866fdcbd 100644 --- a/testing/test_package_docs/fake/greatestAnnotation-constant.html +++ b/testing/test_package_docs/fake/greatestAnnotation-constant.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/incorrectDocReference-constant.html b/testing/test_package_docs/fake/incorrectDocReference-constant.html index 00ce2cfc0c..c673318802 100644 --- a/testing/test_package_docs/fake/incorrectDocReference-constant.html +++ b/testing/test_package_docs/fake/incorrectDocReference-constant.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/justGetter.html b/testing/test_package_docs/fake/justGetter.html index 770ac5d4fb..f49369da9f 100644 --- a/testing/test_package_docs/fake/justGetter.html +++ b/testing/test_package_docs/fake/justGetter.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/justSetter.html b/testing/test_package_docs/fake/justSetter.html index 4a31b0322b..dae30797d8 100644 --- a/testing/test_package_docs/fake/justSetter.html +++ b/testing/test_package_docs/fake/justSetter.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/mapWithDynamicKeys.html b/testing/test_package_docs/fake/mapWithDynamicKeys.html index ac42fee1b8..54c3c4085d 100644 --- a/testing/test_package_docs/fake/mapWithDynamicKeys.html +++ b/testing/test_package_docs/fake/mapWithDynamicKeys.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/meaningOfLife.html b/testing/test_package_docs/fake/meaningOfLife.html index c113825b58..eead3fc2a3 100644 --- a/testing/test_package_docs/fake/meaningOfLife.html +++ b/testing/test_package_docs/fake/meaningOfLife.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/myCoolTypedef.html b/testing/test_package_docs/fake/myCoolTypedef.html index 8f37467072..9a30b5a2c0 100644 --- a/testing/test_package_docs/fake/myCoolTypedef.html +++ b/testing/test_package_docs/fake/myCoolTypedef.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/myGenericFunction.html b/testing/test_package_docs/fake/myGenericFunction.html index e9b0db8992..06fbcb0623 100644 --- a/testing/test_package_docs/fake/myGenericFunction.html +++ b/testing/test_package_docs/fake/myGenericFunction.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html b/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html index 336b3ffe14..b7aab84a86 100644 --- a/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html +++ b/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/paintImage1.html b/testing/test_package_docs/fake/paintImage1.html index e70ff8de2a..f3c310ab7a 100644 --- a/testing/test_package_docs/fake/paintImage1.html +++ b/testing/test_package_docs/fake/paintImage1.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/paintImage2.html b/testing/test_package_docs/fake/paintImage2.html index cbe5eb467a..ce3f9de096 100644 --- a/testing/test_package_docs/fake/paintImage2.html +++ b/testing/test_package_docs/fake/paintImage2.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/paramFromAnotherLib.html b/testing/test_package_docs/fake/paramFromAnotherLib.html index 1da8c7dfde..9f7c2dcb57 100644 --- a/testing/test_package_docs/fake/paramFromAnotherLib.html +++ b/testing/test_package_docs/fake/paramFromAnotherLib.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/paramOfFutureOrNull.html b/testing/test_package_docs/fake/paramOfFutureOrNull.html new file mode 100644 index 0000000000..78e652aa54 --- /dev/null +++ b/testing/test_package_docs/fake/paramOfFutureOrNull.html @@ -0,0 +1,181 @@ + + + + + + + + paramOfFutureOrNull function - fake library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    paramOfFutureOrNull
    + +
    + +
    + + + +
    +

    paramOfFutureOrNull function

    + +
    + void + paramOfFutureOrNull +(FutureOr<Null> future) +
    +
    +

    Has a parameter explicitly typed FutureOr<Null>.

    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/required-constant.html b/testing/test_package_docs/fake/required-constant.html index 938827075e..c69f1d31ff 100644 --- a/testing/test_package_docs/fake/required-constant.html +++ b/testing/test_package_docs/fake/required-constant.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/setAndGet.html b/testing/test_package_docs/fake/setAndGet.html index 213093ee93..2d7edda5c0 100644 --- a/testing/test_package_docs/fake/setAndGet.html +++ b/testing/test_package_docs/fake/setAndGet.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/short.html b/testing/test_package_docs/fake/short.html index 8d62b236ed..481c10851b 100644 --- a/testing/test_package_docs/fake/short.html +++ b/testing/test_package_docs/fake/short.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/simpleProperty.html b/testing/test_package_docs/fake/simpleProperty.html index 8feda5ac4e..ab8984314b 100644 --- a/testing/test_package_docs/fake/simpleProperty.html +++ b/testing/test_package_docs/fake/simpleProperty.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/soIntense.html b/testing/test_package_docs/fake/soIntense.html index 9acb32cf56..8dd79e296d 100644 --- a/testing/test_package_docs/fake/soIntense.html +++ b/testing/test_package_docs/fake/soIntense.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html b/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html index f63fce7bab..055e371dec 100644 --- a/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html +++ b/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/thisIsAlsoAsync.html b/testing/test_package_docs/fake/thisIsAlsoAsync.html index 91aa1ba0c7..bde1a543f7 100644 --- a/testing/test_package_docs/fake/thisIsAlsoAsync.html +++ b/testing/test_package_docs/fake/thisIsAlsoAsync.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/thisIsAsync.html b/testing/test_package_docs/fake/thisIsAsync.html index fd7f22e0f2..9ebaf21901 100644 --- a/testing/test_package_docs/fake/thisIsAsync.html +++ b/testing/test_package_docs/fake/thisIsAsync.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/thisIsFutureOr.html b/testing/test_package_docs/fake/thisIsFutureOr.html new file mode 100644 index 0000000000..c87af59112 --- /dev/null +++ b/testing/test_package_docs/fake/thisIsFutureOr.html @@ -0,0 +1,181 @@ + + + + + + + + thisIsFutureOr function - fake library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    thisIsFutureOr
    + +
    + +
    + + + +
    +

    thisIsFutureOr function

    + +
    + FutureOr + thisIsFutureOr +() +
    +
    +

    Explicitly return a FutureOr.

    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/thisIsFutureOrNull.html b/testing/test_package_docs/fake/thisIsFutureOrNull.html new file mode 100644 index 0000000000..cc9aea15aa --- /dev/null +++ b/testing/test_package_docs/fake/thisIsFutureOrNull.html @@ -0,0 +1,181 @@ + + + + + + + + thisIsFutureOrNull function - fake library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    thisIsFutureOrNull
    + +
    + +
    + + + +
    +

    thisIsFutureOrNull function

    + +
    + FutureOr<Null> + thisIsFutureOrNull +() +
    +
    +

    Explicitly return a FutureOr<Null>.

    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/thisIsFutureOrT.html b/testing/test_package_docs/fake/thisIsFutureOrT.html new file mode 100644 index 0000000000..6ade3b2633 --- /dev/null +++ b/testing/test_package_docs/fake/thisIsFutureOrT.html @@ -0,0 +1,181 @@ + + + + + + + + thisIsFutureOrT function - fake library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    thisIsFutureOrT
    + +
    + +
    + + + +
    +

    thisIsFutureOrT<T> function

    + +
    + FutureOr<T> + thisIsFutureOrT +<T>() +
    +
    +

    Explicitly return a FutureOr<T>.

    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/topLevelFunction.html b/testing/test_package_docs/fake/topLevelFunction.html index 1c1640064b..bf2f9276d6 100644 --- a/testing/test_package_docs/fake/topLevelFunction.html +++ b/testing/test_package_docs/fake/topLevelFunction.html @@ -112,11 +112,16 @@
    fake library
  • paintImage1
  • paintImage2
  • paramFromAnotherLib
  • +
  • paramOfFutureOrNull
  • short
  • soIntense
  • thisIsAlsoAsync
  • thisIsAsync
  • +
  • thisIsFutureOr
  • +
  • thisIsFutureOrNull
  • +
  • thisIsFutureOrT
  • topLevelFunction
  • +
  • typeParamOfFutureOr
  • Enums
  • Color
  • diff --git a/testing/test_package_docs/fake/typeParamOfFutureOr.html b/testing/test_package_docs/fake/typeParamOfFutureOr.html new file mode 100644 index 0000000000..4f2474dde2 --- /dev/null +++ b/testing/test_package_docs/fake/typeParamOfFutureOr.html @@ -0,0 +1,181 @@ + + + + + + + + typeParamOfFutureOr function - fake library - Dart API + + + + + + + + + + + + +
    + +
    + + +
    typeParamOfFutureOr
    + +
    + +
    + + + +
    +

    typeParamOfFutureOr<T extends FutureOr<List>> function

    + +
    + void + typeParamOfFutureOr +<T extends FutureOr<List>>() +
    +
    +

    Has a type parameter bound to FutureOr<List>.

    +
    + + + +
    + + + +
    + +
    + + test_package 0.0.1 + + +
    + + + + + + + + + + + diff --git a/testing/test_package_docs/index.json b/testing/test_package_docs/index.json index a0ccbe20d6..1a9455a6dd 100644 --- a/testing/test_package_docs/index.json +++ b/testing/test_package_docs/index.json @@ -7807,6 +7807,17 @@ "type": "library" } }, + { + "name": "paramOfFutureOrNull", + "qualifiedName": "fake.paramOfFutureOrNull", + "href": "fake/paramOfFutureOrNull.html", + "type": "function", + "overriddenDepth": 0, + "enclosedBy": { + "name": "fake", + "type": "library" + } + }, { "name": "required", "qualifiedName": "fake.required", @@ -7895,6 +7906,39 @@ "type": "library" } }, + { + "name": "thisIsFutureOr", + "qualifiedName": "fake.thisIsFutureOr", + "href": "fake/thisIsFutureOr.html", + "type": "function", + "overriddenDepth": 0, + "enclosedBy": { + "name": "fake", + "type": "library" + } + }, + { + "name": "thisIsFutureOrNull", + "qualifiedName": "fake.thisIsFutureOrNull", + "href": "fake/thisIsFutureOrNull.html", + "type": "function", + "overriddenDepth": 0, + "enclosedBy": { + "name": "fake", + "type": "library" + } + }, + { + "name": "thisIsFutureOrT", + "qualifiedName": "fake.thisIsFutureOrT", + "href": "fake/thisIsFutureOrT.html", + "type": "function", + "overriddenDepth": 0, + "enclosedBy": { + "name": "fake", + "type": "library" + } + }, { "name": "topLevelFunction", "qualifiedName": "fake.topLevelFunction", @@ -7906,6 +7950,17 @@ "type": "library" } }, + { + "name": "typeParamOfFutureOr", + "qualifiedName": "fake.typeParamOfFutureOr", + "href": "fake/typeParamOfFutureOr.html", + "type": "function", + "overriddenDepth": 0, + "enclosedBy": { + "name": "fake", + "type": "library" + } + }, { "name": "is_deprecated", "qualifiedName": "is_deprecated",