diff --git a/analysis_options.yaml b/analysis_options.yaml index 3e03d2bf10..04590e8184 100644 --- a/analysis_options.yaml +++ b/analysis_options.yaml @@ -2,6 +2,7 @@ analyzer: strong-mode: true language: enableGenericMethods: true + enableSuperMixins: true exclude: - 'doc/**' - 'lib/templates/*.html' diff --git a/lib/src/model.dart b/lib/src/model.dart index 489207f0e0..b1cb37511d 100644 --- a/lib/src/model.dart +++ b/lib/src/model.dart @@ -4967,8 +4967,9 @@ class PackageBuilder { AnalysisContext get context { if (_context == null) { // TODO(jcollins-g): fix this so it actually obeys analyzer options files. - var options = new AnalysisOptionsImpl()..enableAssertInitializer = true; - + var options = new AnalysisOptionsImpl(); + options.enableAssertInitializer = true; + options.enableSuperMixins = true; AnalysisEngine.instance.processRequiredPlugins(); _context = AnalysisEngine.instance.createAnalysisContext() diff --git a/testing/test_package/lib/fake.dart b/testing/test_package/lib/fake.dart index fea53e3161..521307c1fc 100644 --- a/testing/test_package/lib/fake.dart +++ b/testing/test_package/lib/fake.dart @@ -173,6 +173,18 @@ abstract class Interface {} /// Yet another interface that can be implemented. abstract class AnotherInterface {} +class NotAMixin { + String get superString => "A string that's clearly important"; +} + +class AMixinCallingSuper extends NotAMixin { + @override + String get superString => "${super.superString} but not as important as this"; +} + +/// Verify super-mixins don't break Dartdoc. +class AClassUsingASuperMixin extends AnotherInterface with AMixinCallingSuper {} + /// A super class, with many powers. Link to [Apple] from another library. @deprecated class SuperAwesomeClass { diff --git a/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html b/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html new file mode 100644 index 0000000000..2237521625 --- /dev/null +++ b/testing/test_package_docs/fake/AClassUsingASuperMixin-class.html @@ -0,0 +1,284 @@ + + + + + + + + AClassUsingASuperMixin class - fake library - Dart API + + + + + + + + + + + + +
+ +
+ + +
AClassUsingASuperMixin
+ +
+ +
+ + + +
+ +
+

Verify super-mixins don't break Dartdoc.

+
+ +
+
+
Inheritance
+
+ + +
Mixes-in
+
+ + +
+
+ +
+

Constructors

+ +
+
+ AClassUsingASuperMixin() +
+
+ +
+
+
+ +
+

Properties

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

Methods

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

Operators

+
+
+ operator ==(other) + → bool + +
+
+ +
inherited
+
+
+
+ + + + +
+ + + +
+ + + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/AClassUsingASuperMixin/AClassUsingASuperMixin.html b/testing/test_package_docs/fake/AClassUsingASuperMixin/AClassUsingASuperMixin.html new file mode 100644 index 0000000000..03ab259f66 --- /dev/null +++ b/testing/test_package_docs/fake/AClassUsingASuperMixin/AClassUsingASuperMixin.html @@ -0,0 +1,97 @@ + + + + + + + + AClassUsingASuperMixin constructor - AClassUsingASuperMixin class - fake library - Dart API + + + + + + + + + + + + +
+ +
+ + +
AClassUsingASuperMixin
+ +
+ +
+ + + +
+
+ + AClassUsingASuperMixin() +
+ + + + +
+ + + +
+ + + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/AMixinCallingSuper-class.html b/testing/test_package_docs/fake/AMixinCallingSuper-class.html new file mode 100644 index 0000000000..3eec57a1ce --- /dev/null +++ b/testing/test_package_docs/fake/AMixinCallingSuper-class.html @@ -0,0 +1,281 @@ + + + + + + + + AMixinCallingSuper class - fake library - Dart API + + + + + + + + + + + + +
+ +
+ + +
AMixinCallingSuper
+ +
+ +
+ + + +
+ + +
+
+
Inheritance
+
    +
  • Object
  • +
  • NotAMixin
  • +
  • AMixinCallingSuper
  • +
+ + + +
Implemented by
+
+ +
+
+ +
+

Constructors

+ +
+
+ AMixinCallingSuper() +
+
+ +
+
+
+ +
+

Properties

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

Methods

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

Operators

+
+
+ operator ==(other) + → bool + +
+
+ +
inherited
+
+
+
+ + + + +
+ + + +
+ + + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/AMixinCallingSuper/AMixinCallingSuper.html b/testing/test_package_docs/fake/AMixinCallingSuper/AMixinCallingSuper.html new file mode 100644 index 0000000000..8cc5725633 --- /dev/null +++ b/testing/test_package_docs/fake/AMixinCallingSuper/AMixinCallingSuper.html @@ -0,0 +1,97 @@ + + + + + + + + AMixinCallingSuper constructor - AMixinCallingSuper class - fake library - Dart API + + + + + + + + + + + + +
+ +
+ + +
AMixinCallingSuper
+ +
+ +
+ + + +
+
+ + AMixinCallingSuper() +
+ + + + +
+ + + +
+ + + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/AMixinCallingSuper/superString.html b/testing/test_package_docs/fake/AMixinCallingSuper/superString.html new file mode 100644 index 0000000000..4e8dec28f5 --- /dev/null +++ b/testing/test_package_docs/fake/AMixinCallingSuper/superString.html @@ -0,0 +1,100 @@ + + + + + + + + superString property - AMixinCallingSuper class - fake library - Dart API + + + + + + + + + + + + +
+ +
+ + +
superString
+ +
+ +
+ + + +
+ +
+ +
+ String + superString +
+ + +
+ +
+ + + +
+ + + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/Annotation-class.html b/testing/test_package_docs/fake/Annotation-class.html index cd90515fc4..924d828894 100644 --- a/testing/test_package_docs/fake/Annotation-class.html +++ b/testing/test_package_docs/fake/Annotation-class.html @@ -39,6 +39,8 @@
library fake
  1. Classes
  2. +
  3. AClassUsingASuperMixin
  4. +
  5. AMixinCallingSuper
  6. Annotation
  7. AnotherInterface
  8. BaseForDocComments
  9. @@ -57,6 +59,7 @@
    library fake
  10. Interface
  11. LongFirstLine
  12. MixMeIn
  13. +
  14. NotAMixin
  15. OperatorReferenceClass
  16. OtherGenericsThing
  17. SpecialList
  18. diff --git a/testing/test_package_docs/fake/AnotherInterface-class.html b/testing/test_package_docs/fake/AnotherInterface-class.html index 8f16c9b87c..a934a9acbe 100644 --- a/testing/test_package_docs/fake/AnotherInterface-class.html +++ b/testing/test_package_docs/fake/AnotherInterface-class.html @@ -39,6 +39,8 @@
    library fake
    1. Classes
    2. +
    3. AClassUsingASuperMixin
    4. +
    5. AMixinCallingSuper
    6. Annotation
    7. AnotherInterface
    8. BaseForDocComments
    9. @@ -57,6 +59,7 @@
      library fake
    10. Interface
    11. LongFirstLine
    12. MixMeIn
    13. +
    14. NotAMixin
    15. OperatorReferenceClass
    16. OtherGenericsThing
    17. SpecialList
    18. @@ -135,6 +138,7 @@
      library fake
      Implemented by
      diff --git a/testing/test_package_docs/fake/BaseForDocComments-class.html b/testing/test_package_docs/fake/BaseForDocComments-class.html index 2df4534ea5..95638c0738 100644 --- a/testing/test_package_docs/fake/BaseForDocComments-class.html +++ b/testing/test_package_docs/fake/BaseForDocComments-class.html @@ -39,6 +39,8 @@
      library fake
      1. Classes
      2. +
      3. AClassUsingASuperMixin
      4. +
      5. AMixinCallingSuper
      6. Annotation
      7. AnotherInterface
      8. BaseForDocComments
      9. @@ -57,6 +59,7 @@
        library fake
      10. Interface
      11. LongFirstLine
      12. MixMeIn
      13. +
      14. NotAMixin
      15. OperatorReferenceClass
      16. OtherGenericsThing
      17. SpecialList
      18. diff --git a/testing/test_package_docs/fake/BaseThingy-class.html b/testing/test_package_docs/fake/BaseThingy-class.html index f78f7a263f..34de4523f4 100644 --- a/testing/test_package_docs/fake/BaseThingy-class.html +++ b/testing/test_package_docs/fake/BaseThingy-class.html @@ -39,6 +39,8 @@
        library fake
        1. Classes
        2. +
        3. AClassUsingASuperMixin
        4. +
        5. AMixinCallingSuper
        6. Annotation
        7. AnotherInterface
        8. BaseForDocComments
        9. @@ -57,6 +59,7 @@
          library fake
        10. Interface
        11. LongFirstLine
        12. MixMeIn
        13. +
        14. NotAMixin
        15. OperatorReferenceClass
        16. OtherGenericsThing
        17. SpecialList
        18. diff --git a/testing/test_package_docs/fake/BaseThingy2-class.html b/testing/test_package_docs/fake/BaseThingy2-class.html index 55fe2e86f8..c91f98f039 100644 --- a/testing/test_package_docs/fake/BaseThingy2-class.html +++ b/testing/test_package_docs/fake/BaseThingy2-class.html @@ -39,6 +39,8 @@
          library fake
          1. Classes
          2. +
          3. AClassUsingASuperMixin
          4. +
          5. AMixinCallingSuper
          6. Annotation
          7. AnotherInterface
          8. BaseForDocComments
          9. @@ -57,6 +59,7 @@
            library fake
          10. Interface
          11. LongFirstLine
          12. MixMeIn
          13. +
          14. NotAMixin
          15. OperatorReferenceClass
          16. OtherGenericsThing
          17. SpecialList
          18. diff --git a/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html b/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html index 239a999acb..629696d84b 100644 --- a/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html +++ b/testing/test_package_docs/fake/CUSTOM_CLASS-constant.html @@ -39,6 +39,8 @@
            library fake
            1. Classes
            2. +
            3. AClassUsingASuperMixin
            4. +
            5. AMixinCallingSuper
            6. Annotation
            7. AnotherInterface
            8. BaseForDocComments
            9. @@ -57,6 +59,7 @@
              library fake
            10. Interface
            11. LongFirstLine
            12. MixMeIn
            13. +
            14. NotAMixin
            15. OperatorReferenceClass
            16. OtherGenericsThing
            17. SpecialList
            18. diff --git a/testing/test_package_docs/fake/Callback2.html b/testing/test_package_docs/fake/Callback2.html index a0ec9003a9..f8aeeec96f 100644 --- a/testing/test_package_docs/fake/Callback2.html +++ b/testing/test_package_docs/fake/Callback2.html @@ -39,6 +39,8 @@
              library fake
              1. Classes
              2. +
              3. AClassUsingASuperMixin
              4. +
              5. AMixinCallingSuper
              6. Annotation
              7. AnotherInterface
              8. BaseForDocComments
              9. @@ -57,6 +59,7 @@
                library fake
              10. Interface
              11. LongFirstLine
              12. MixMeIn
              13. +
              14. NotAMixin
              15. OperatorReferenceClass
              16. OtherGenericsThing
              17. SpecialList
              18. diff --git a/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html b/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html index 048f82d565..39da106f9f 100644 --- a/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html +++ b/testing/test_package_docs/fake/ClassWithUnusualProperties-class.html @@ -39,6 +39,8 @@
                library fake
                1. Classes
                2. +
                3. AClassUsingASuperMixin
                4. +
                5. AMixinCallingSuper
                6. Annotation
                7. AnotherInterface
                8. BaseForDocComments
                9. @@ -57,6 +59,7 @@
                  library fake
                10. Interface
                11. LongFirstLine
                12. MixMeIn
                13. +
                14. NotAMixin
                15. OperatorReferenceClass
                16. OtherGenericsThing
                17. SpecialList
                18. diff --git a/testing/test_package_docs/fake/Color-class.html b/testing/test_package_docs/fake/Color-class.html index 989083bd30..abe842aa54 100644 --- a/testing/test_package_docs/fake/Color-class.html +++ b/testing/test_package_docs/fake/Color-class.html @@ -39,6 +39,8 @@
                  library fake
                  1. Classes
                  2. +
                  3. AClassUsingASuperMixin
                  4. +
                  5. AMixinCallingSuper
                  6. Annotation
                  7. AnotherInterface
                  8. BaseForDocComments
                  9. @@ -57,6 +59,7 @@
                    library fake
                  10. Interface
                  11. LongFirstLine
                  12. MixMeIn
                  13. +
                  14. NotAMixin
                  15. OperatorReferenceClass
                  16. OtherGenericsThing
                  17. SpecialList
                  18. diff --git a/testing/test_package_docs/fake/ConstantClass-class.html b/testing/test_package_docs/fake/ConstantClass-class.html index 15efb525f7..5db18e3712 100644 --- a/testing/test_package_docs/fake/ConstantClass-class.html +++ b/testing/test_package_docs/fake/ConstantClass-class.html @@ -39,6 +39,8 @@
                    library fake
                    1. Classes
                    2. +
                    3. AClassUsingASuperMixin
                    4. +
                    5. AMixinCallingSuper
                    6. Annotation
                    7. AnotherInterface
                    8. BaseForDocComments
                    9. @@ -57,6 +59,7 @@
                      library fake
                    10. Interface
                    11. LongFirstLine
                    12. MixMeIn
                    13. +
                    14. NotAMixin
                    15. OperatorReferenceClass
                    16. OtherGenericsThing
                    17. SpecialList
                    18. diff --git a/testing/test_package_docs/fake/Cool-class.html b/testing/test_package_docs/fake/Cool-class.html index f33d681673..44031461d4 100644 --- a/testing/test_package_docs/fake/Cool-class.html +++ b/testing/test_package_docs/fake/Cool-class.html @@ -39,6 +39,8 @@
                      library fake
                      1. Classes
                      2. +
                      3. AClassUsingASuperMixin
                      4. +
                      5. AMixinCallingSuper
                      6. Annotation
                      7. AnotherInterface
                      8. BaseForDocComments
                      9. @@ -57,6 +59,7 @@
                        library fake
                      10. Interface
                      11. LongFirstLine
                      12. MixMeIn
                      13. +
                      14. NotAMixin
                      15. OperatorReferenceClass
                      16. OtherGenericsThing
                      17. SpecialList
                      18. diff --git a/testing/test_package_docs/fake/DOWN-constant.html b/testing/test_package_docs/fake/DOWN-constant.html index a4a226e280..9a882595cb 100644 --- a/testing/test_package_docs/fake/DOWN-constant.html +++ b/testing/test_package_docs/fake/DOWN-constant.html @@ -39,6 +39,8 @@
                        library fake
                        1. Classes
                        2. +
                        3. AClassUsingASuperMixin
                        4. +
                        5. AMixinCallingSuper
                        6. Annotation
                        7. AnotherInterface
                        8. BaseForDocComments
                        9. @@ -57,6 +59,7 @@
                          library fake
                        10. Interface
                        11. LongFirstLine
                        12. MixMeIn
                        13. +
                        14. NotAMixin
                        15. OperatorReferenceClass
                        16. OtherGenericsThing
                        17. SpecialList
                        18. diff --git a/testing/test_package_docs/fake/Doh-class.html b/testing/test_package_docs/fake/Doh-class.html index 7ff5b899d2..b8f526ab3d 100644 --- a/testing/test_package_docs/fake/Doh-class.html +++ b/testing/test_package_docs/fake/Doh-class.html @@ -39,6 +39,8 @@
                          library fake
                          1. Classes
                          2. +
                          3. AClassUsingASuperMixin
                          4. +
                          5. AMixinCallingSuper
                          6. Annotation
                          7. AnotherInterface
                          8. BaseForDocComments
                          9. @@ -57,6 +59,7 @@
                            library fake
                          10. Interface
                          11. LongFirstLine
                          12. MixMeIn
                          13. +
                          14. NotAMixin
                          15. OperatorReferenceClass
                          16. OtherGenericsThing
                          17. SpecialList
                          18. diff --git a/testing/test_package_docs/fake/ExtraSpecialList-class.html b/testing/test_package_docs/fake/ExtraSpecialList-class.html index eb4730312a..6e5bf0c8d9 100644 --- a/testing/test_package_docs/fake/ExtraSpecialList-class.html +++ b/testing/test_package_docs/fake/ExtraSpecialList-class.html @@ -39,6 +39,8 @@
                            library fake
                            1. Classes
                            2. +
                            3. AClassUsingASuperMixin
                            4. +
                            5. AMixinCallingSuper
                            6. Annotation
                            7. AnotherInterface
                            8. BaseForDocComments
                            9. @@ -57,6 +59,7 @@
                              library fake
                            10. Interface
                            11. LongFirstLine
                            12. MixMeIn
                            13. +
                            14. NotAMixin
                            15. OperatorReferenceClass
                            16. OtherGenericsThing
                            17. SpecialList
                            18. diff --git a/testing/test_package_docs/fake/FakeProcesses.html b/testing/test_package_docs/fake/FakeProcesses.html index 933af8cd18..95646ab26b 100644 --- a/testing/test_package_docs/fake/FakeProcesses.html +++ b/testing/test_package_docs/fake/FakeProcesses.html @@ -39,6 +39,8 @@
                              library fake
                              1. Classes
                              2. +
                              3. AClassUsingASuperMixin
                              4. +
                              5. AMixinCallingSuper
                              6. Annotation
                              7. AnotherInterface
                              8. BaseForDocComments
                              9. @@ -57,6 +59,7 @@
                                library fake
                              10. Interface
                              11. LongFirstLine
                              12. MixMeIn
                              13. +
                              14. NotAMixin
                              15. OperatorReferenceClass
                              16. OtherGenericsThing
                              17. SpecialList
                              18. diff --git a/testing/test_package_docs/fake/Foo2-class.html b/testing/test_package_docs/fake/Foo2-class.html index f20f2cd302..7c55c95ace 100644 --- a/testing/test_package_docs/fake/Foo2-class.html +++ b/testing/test_package_docs/fake/Foo2-class.html @@ -39,6 +39,8 @@
                                library fake
                                1. Classes
                                2. +
                                3. AClassUsingASuperMixin
                                4. +
                                5. AMixinCallingSuper
                                6. Annotation
                                7. AnotherInterface
                                8. BaseForDocComments
                                9. @@ -57,6 +59,7 @@
                                  library fake
                                10. Interface
                                11. LongFirstLine
                                12. MixMeIn
                                13. +
                                14. NotAMixin
                                15. OperatorReferenceClass
                                16. OtherGenericsThing
                                17. SpecialList
                                18. diff --git a/testing/test_package_docs/fake/GenericTypedef.html b/testing/test_package_docs/fake/GenericTypedef.html index 305a17c13e..bc8f4d1b60 100644 --- a/testing/test_package_docs/fake/GenericTypedef.html +++ b/testing/test_package_docs/fake/GenericTypedef.html @@ -39,6 +39,8 @@
                                  library fake
                                  1. Classes
                                  2. +
                                  3. AClassUsingASuperMixin
                                  4. +
                                  5. AMixinCallingSuper
                                  6. Annotation
                                  7. AnotherInterface
                                  8. BaseForDocComments
                                  9. @@ -57,6 +59,7 @@
                                    library fake
                                  10. Interface
                                  11. LongFirstLine
                                  12. MixMeIn
                                  13. +
                                  14. NotAMixin
                                  15. OperatorReferenceClass
                                  16. OtherGenericsThing
                                  17. SpecialList
                                  18. diff --git a/testing/test_package_docs/fake/HasGenericWithExtends-class.html b/testing/test_package_docs/fake/HasGenericWithExtends-class.html index 2e9435cd65..198d58ac3d 100644 --- a/testing/test_package_docs/fake/HasGenericWithExtends-class.html +++ b/testing/test_package_docs/fake/HasGenericWithExtends-class.html @@ -39,6 +39,8 @@
                                    library fake
                                    1. Classes
                                    2. +
                                    3. AClassUsingASuperMixin
                                    4. +
                                    5. AMixinCallingSuper
                                    6. Annotation
                                    7. AnotherInterface
                                    8. BaseForDocComments
                                    9. @@ -57,6 +59,7 @@
                                      library fake
                                    10. Interface
                                    11. LongFirstLine
                                    12. MixMeIn
                                    13. +
                                    14. NotAMixin
                                    15. OperatorReferenceClass
                                    16. OtherGenericsThing
                                    17. SpecialList
                                    18. diff --git a/testing/test_package_docs/fake/HasGenerics-class.html b/testing/test_package_docs/fake/HasGenerics-class.html index cae0b2c033..08e5885f1e 100644 --- a/testing/test_package_docs/fake/HasGenerics-class.html +++ b/testing/test_package_docs/fake/HasGenerics-class.html @@ -39,6 +39,8 @@
                                      library fake
                                      1. Classes
                                      2. +
                                      3. AClassUsingASuperMixin
                                      4. +
                                      5. AMixinCallingSuper
                                      6. Annotation
                                      7. AnotherInterface
                                      8. BaseForDocComments
                                      9. @@ -57,6 +59,7 @@
                                        library fake
                                      10. Interface
                                      11. LongFirstLine
                                      12. MixMeIn
                                      13. +
                                      14. NotAMixin
                                      15. OperatorReferenceClass
                                      16. OtherGenericsThing
                                      17. SpecialList
                                      18. diff --git a/testing/test_package_docs/fake/ImplementingThingy-class.html b/testing/test_package_docs/fake/ImplementingThingy-class.html index 5a26f98108..7db8d39d1f 100644 --- a/testing/test_package_docs/fake/ImplementingThingy-class.html +++ b/testing/test_package_docs/fake/ImplementingThingy-class.html @@ -39,6 +39,8 @@
                                        library fake
                                        1. Classes
                                        2. +
                                        3. AClassUsingASuperMixin
                                        4. +
                                        5. AMixinCallingSuper
                                        6. Annotation
                                        7. AnotherInterface
                                        8. BaseForDocComments
                                        9. @@ -57,6 +59,7 @@
                                          library fake
                                        10. Interface
                                        11. LongFirstLine
                                        12. MixMeIn
                                        13. +
                                        14. NotAMixin
                                        15. OperatorReferenceClass
                                        16. OtherGenericsThing
                                        17. SpecialList
                                        18. diff --git a/testing/test_package_docs/fake/ImplementingThingy2-class.html b/testing/test_package_docs/fake/ImplementingThingy2-class.html index 5ac2614d3f..921862b74a 100644 --- a/testing/test_package_docs/fake/ImplementingThingy2-class.html +++ b/testing/test_package_docs/fake/ImplementingThingy2-class.html @@ -39,6 +39,8 @@
                                          library fake
                                          1. Classes
                                          2. +
                                          3. AClassUsingASuperMixin
                                          4. +
                                          5. AMixinCallingSuper
                                          6. Annotation
                                          7. AnotherInterface
                                          8. BaseForDocComments
                                          9. @@ -57,6 +59,7 @@
                                            library fake
                                          10. Interface
                                          11. LongFirstLine
                                          12. MixMeIn
                                          13. +
                                          14. NotAMixin
                                          15. OperatorReferenceClass
                                          16. OtherGenericsThing
                                          17. SpecialList
                                          18. diff --git a/testing/test_package_docs/fake/ImplicitProperties-class.html b/testing/test_package_docs/fake/ImplicitProperties-class.html index 56f2bbf121..f37534a799 100644 --- a/testing/test_package_docs/fake/ImplicitProperties-class.html +++ b/testing/test_package_docs/fake/ImplicitProperties-class.html @@ -39,6 +39,8 @@
                                            library fake
                                            1. Classes
                                            2. +
                                            3. AClassUsingASuperMixin
                                            4. +
                                            5. AMixinCallingSuper
                                            6. Annotation
                                            7. AnotherInterface
                                            8. BaseForDocComments
                                            9. @@ -57,6 +59,7 @@
                                              library fake
                                            10. Interface
                                            11. LongFirstLine
                                            12. MixMeIn
                                            13. +
                                            14. NotAMixin
                                            15. OperatorReferenceClass
                                            16. OtherGenericsThing
                                            17. SpecialList
                                            18. diff --git a/testing/test_package_docs/fake/Interface-class.html b/testing/test_package_docs/fake/Interface-class.html index f08feaac1e..30578c2049 100644 --- a/testing/test_package_docs/fake/Interface-class.html +++ b/testing/test_package_docs/fake/Interface-class.html @@ -39,6 +39,8 @@
                                              library fake
                                              1. Classes
                                              2. +
                                              3. AClassUsingASuperMixin
                                              4. +
                                              5. AMixinCallingSuper
                                              6. Annotation
                                              7. AnotherInterface
                                              8. BaseForDocComments
                                              9. @@ -57,6 +59,7 @@
                                                library fake
                                              10. Interface
                                              11. LongFirstLine
                                              12. MixMeIn
                                              13. +
                                              14. NotAMixin
                                              15. OperatorReferenceClass
                                              16. OtherGenericsThing
                                              17. SpecialList
                                              18. diff --git a/testing/test_package_docs/fake/LongFirstLine-class.html b/testing/test_package_docs/fake/LongFirstLine-class.html index e39a3f26f8..9ac125cd94 100644 --- a/testing/test_package_docs/fake/LongFirstLine-class.html +++ b/testing/test_package_docs/fake/LongFirstLine-class.html @@ -39,6 +39,8 @@
                                                library fake
                                                1. Classes
                                                2. +
                                                3. AClassUsingASuperMixin
                                                4. +
                                                5. AMixinCallingSuper
                                                6. Annotation
                                                7. AnotherInterface
                                                8. BaseForDocComments
                                                9. @@ -57,6 +59,7 @@
                                                  library fake
                                                10. Interface
                                                11. LongFirstLine
                                                12. MixMeIn
                                                13. +
                                                14. NotAMixin
                                                15. OperatorReferenceClass
                                                16. OtherGenericsThing
                                                17. SpecialList
                                                18. diff --git a/testing/test_package_docs/fake/LotsAndLotsOfParameters.html b/testing/test_package_docs/fake/LotsAndLotsOfParameters.html index b21dadee8e..66db5fe301 100644 --- a/testing/test_package_docs/fake/LotsAndLotsOfParameters.html +++ b/testing/test_package_docs/fake/LotsAndLotsOfParameters.html @@ -39,6 +39,8 @@
                                                  library fake
                                                  1. Classes
                                                  2. +
                                                  3. AClassUsingASuperMixin
                                                  4. +
                                                  5. AMixinCallingSuper
                                                  6. Annotation
                                                  7. AnotherInterface
                                                  8. BaseForDocComments
                                                  9. @@ -57,6 +59,7 @@
                                                    library fake
                                                  10. Interface
                                                  11. LongFirstLine
                                                  12. MixMeIn
                                                  13. +
                                                  14. NotAMixin
                                                  15. OperatorReferenceClass
                                                  16. OtherGenericsThing
                                                  17. SpecialList
                                                  18. diff --git a/testing/test_package_docs/fake/MixMeIn-class.html b/testing/test_package_docs/fake/MixMeIn-class.html index a60172e33e..a3f397d8bc 100644 --- a/testing/test_package_docs/fake/MixMeIn-class.html +++ b/testing/test_package_docs/fake/MixMeIn-class.html @@ -39,6 +39,8 @@
                                                    library fake
                                                    1. Classes
                                                    2. +
                                                    3. AClassUsingASuperMixin
                                                    4. +
                                                    5. AMixinCallingSuper
                                                    6. Annotation
                                                    7. AnotherInterface
                                                    8. BaseForDocComments
                                                    9. @@ -57,6 +59,7 @@
                                                      library fake
                                                    10. Interface
                                                    11. LongFirstLine
                                                    12. MixMeIn
                                                    13. +
                                                    14. NotAMixin
                                                    15. OperatorReferenceClass
                                                    16. OtherGenericsThing
                                                    17. SpecialList
                                                    18. diff --git a/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html b/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html index 4258efeb15..99e6bc1eab 100644 --- a/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html +++ b/testing/test_package_docs/fake/NAME_SINGLEUNDERSCORE-constant.html @@ -39,6 +39,8 @@
                                                      library fake
                                                      1. Classes
                                                      2. +
                                                      3. AClassUsingASuperMixin
                                                      4. +
                                                      5. AMixinCallingSuper
                                                      6. Annotation
                                                      7. AnotherInterface
                                                      8. BaseForDocComments
                                                      9. @@ -57,6 +59,7 @@
                                                        library fake
                                                      10. Interface
                                                      11. LongFirstLine
                                                      12. MixMeIn
                                                      13. +
                                                      14. NotAMixin
                                                      15. OperatorReferenceClass
                                                      16. OtherGenericsThing
                                                      17. SpecialList
                                                      18. 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 be616e133b..d7d1eb2efd 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 @@ -39,6 +39,8 @@
                                                        library fake
                                                        1. Classes
                                                        2. +
                                                        3. AClassUsingASuperMixin
                                                        4. +
                                                        5. AMixinCallingSuper
                                                        6. Annotation
                                                        7. AnotherInterface
                                                        8. BaseForDocComments
                                                        9. @@ -57,6 +59,7 @@
                                                          library fake
                                                        10. Interface
                                                        11. LongFirstLine
                                                        12. MixMeIn
                                                        13. +
                                                        14. NotAMixin
                                                        15. OperatorReferenceClass
                                                        16. OtherGenericsThing
                                                        17. SpecialList
                                                        18. diff --git a/testing/test_package_docs/fake/NewGenericTypedef.html b/testing/test_package_docs/fake/NewGenericTypedef.html index f502a15891..669b2e0fb2 100644 --- a/testing/test_package_docs/fake/NewGenericTypedef.html +++ b/testing/test_package_docs/fake/NewGenericTypedef.html @@ -39,6 +39,8 @@
                                                          library fake
                                                          1. Classes
                                                          2. +
                                                          3. AClassUsingASuperMixin
                                                          4. +
                                                          5. AMixinCallingSuper
                                                          6. Annotation
                                                          7. AnotherInterface
                                                          8. BaseForDocComments
                                                          9. @@ -57,6 +59,7 @@
                                                            library fake
                                                          10. Interface
                                                          11. LongFirstLine
                                                          12. MixMeIn
                                                          13. +
                                                          14. NotAMixin
                                                          15. OperatorReferenceClass
                                                          16. OtherGenericsThing
                                                          17. SpecialList
                                                          18. diff --git a/testing/test_package_docs/fake/NotAMixin-class.html b/testing/test_package_docs/fake/NotAMixin-class.html new file mode 100644 index 0000000000..929654e5e6 --- /dev/null +++ b/testing/test_package_docs/fake/NotAMixin-class.html @@ -0,0 +1,275 @@ + + + + + + + + NotAMixin class - fake library - Dart API + + + + + + + + + + + + +
                                                            + +
                                                            + + +
                                                            NotAMixin
                                                            + +
                                                            + +
                                                            + + + +
                                                            + + +
                                                            +
                                                            + + + +
                                                            Implemented by
                                                            +
                                                            + +
                                                            +
                                                            + +
                                                            +

                                                            Constructors

                                                            + +
                                                            +
                                                            + NotAMixin() +
                                                            +
                                                            + +
                                                            +
                                                            +
                                                            + +
                                                            +

                                                            Properties

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

                                                            Methods

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

                                                            Operators

                                                            +
                                                            +
                                                            + operator ==(other) + → bool + +
                                                            +
                                                            + +
                                                            inherited
                                                            +
                                                            +
                                                            +
                                                            + + + + +
                                                            + + + +
                                                            + +
                                                            + + test_package 0.0.1 + + +
                                                            + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/NotAMixin/NotAMixin.html b/testing/test_package_docs/fake/NotAMixin/NotAMixin.html new file mode 100644 index 0000000000..37d131343e --- /dev/null +++ b/testing/test_package_docs/fake/NotAMixin/NotAMixin.html @@ -0,0 +1,97 @@ + + + + + + + + NotAMixin constructor - NotAMixin class - fake library - Dart API + + + + + + + + + + + + +
                                                            + +
                                                            + + +
                                                            NotAMixin
                                                            + +
                                                            + +
                                                            + + + +
                                                            +
                                                            + + NotAMixin() +
                                                            + + + + +
                                                            + + + +
                                                            + +
                                                            + + test_package 0.0.1 + + +
                                                            + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/NotAMixin/hashCode.html b/testing/test_package_docs/fake/NotAMixin/hashCode.html new file mode 100644 index 0000000000..b1342275d4 --- /dev/null +++ b/testing/test_package_docs/fake/NotAMixin/hashCode.html @@ -0,0 +1,100 @@ + + + + + + + + hashCode property - NotAMixin class - fake library - Dart API + + + + + + + + + + + + +
                                                            + +
                                                            + + +
                                                            hashCode
                                                            + +
                                                            + +
                                                            + + + +
                                                            + +
                                                            + +
                                                            + int + hashCode
                                                            inherited
                                                            +
                                                            + + +
                                                            + +
                                                            + + + +
                                                            + +
                                                            + + test_package 0.0.1 + + +
                                                            + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/NotAMixin/noSuchMethod.html b/testing/test_package_docs/fake/NotAMixin/noSuchMethod.html new file mode 100644 index 0000000000..a8c5dacf02 --- /dev/null +++ b/testing/test_package_docs/fake/NotAMixin/noSuchMethod.html @@ -0,0 +1,96 @@ + + + + + + + + noSuchMethod method - NotAMixin class - fake library - Dart API + + + + + + + + + + + + +
                                                            + +
                                                            + + +
                                                            noSuchMethod
                                                            + +
                                                            + +
                                                            + + + +
                                                            +
                                                            + dynamic + noSuchMethod(Invocation invocation) +
                                                            + + + +
                                                            + + + +
                                                            + +
                                                            + + test_package 0.0.1 + + +
                                                            + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/NotAMixin/operator_equals.html b/testing/test_package_docs/fake/NotAMixin/operator_equals.html new file mode 100644 index 0000000000..f4cec47c4f --- /dev/null +++ b/testing/test_package_docs/fake/NotAMixin/operator_equals.html @@ -0,0 +1,96 @@ + + + + + + + + operator == method - NotAMixin class - fake library - Dart API + + + + + + + + + + + + +
                                                            + +
                                                            + + +
                                                            operator ==
                                                            + +
                                                            + +
                                                            + + + +
                                                            +
                                                            + bool + operator ==(other) +
                                                            + + + +
                                                            + + + +
                                                            + +
                                                            + + test_package 0.0.1 + + +
                                                            + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/NotAMixin/runtimeType.html b/testing/test_package_docs/fake/NotAMixin/runtimeType.html new file mode 100644 index 0000000000..da13851626 --- /dev/null +++ b/testing/test_package_docs/fake/NotAMixin/runtimeType.html @@ -0,0 +1,100 @@ + + + + + + + + runtimeType property - NotAMixin class - fake library - Dart API + + + + + + + + + + + + +
                                                            + +
                                                            + + +
                                                            runtimeType
                                                            + +
                                                            + +
                                                            + + + +
                                                            + +
                                                            + +
                                                            + Type + runtimeType
                                                            inherited
                                                            +
                                                            + + +
                                                            + +
                                                            + + + +
                                                            + +
                                                            + + test_package 0.0.1 + + +
                                                            + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/NotAMixin/superString.html b/testing/test_package_docs/fake/NotAMixin/superString.html new file mode 100644 index 0000000000..dbfd9479e3 --- /dev/null +++ b/testing/test_package_docs/fake/NotAMixin/superString.html @@ -0,0 +1,100 @@ + + + + + + + + superString property - NotAMixin class - fake library - Dart API + + + + + + + + + + + + +
                                                            + +
                                                            + + +
                                                            superString
                                                            + +
                                                            + +
                                                            + + + +
                                                            + +
                                                            + +
                                                            + String + superString +
                                                            + + +
                                                            + +
                                                            + + + +
                                                            + +
                                                            + + test_package 0.0.1 + + +
                                                            + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/NotAMixin/toString.html b/testing/test_package_docs/fake/NotAMixin/toString.html new file mode 100644 index 0000000000..5e89b38b15 --- /dev/null +++ b/testing/test_package_docs/fake/NotAMixin/toString.html @@ -0,0 +1,96 @@ + + + + + + + + toString method - NotAMixin class - fake library - Dart API + + + + + + + + + + + + +
                                                            + +
                                                            + + +
                                                            toString
                                                            + +
                                                            + +
                                                            + + + +
                                                            +
                                                            + String + toString() +
                                                            + + + +
                                                            + + + +
                                                            + +
                                                            + + test_package 0.0.1 + + +
                                                            + + + + + + + + + + + diff --git a/testing/test_package_docs/fake/Oops-class.html b/testing/test_package_docs/fake/Oops-class.html index 36f2c6a80a..887938c27e 100644 --- a/testing/test_package_docs/fake/Oops-class.html +++ b/testing/test_package_docs/fake/Oops-class.html @@ -39,6 +39,8 @@
                                                            library fake
                                                            1. Classes
                                                            2. +
                                                            3. AClassUsingASuperMixin
                                                            4. +
                                                            5. AMixinCallingSuper
                                                            6. Annotation
                                                            7. AnotherInterface
                                                            8. BaseForDocComments
                                                            9. @@ -57,6 +59,7 @@
                                                              library fake
                                                            10. Interface
                                                            11. LongFirstLine
                                                            12. MixMeIn
                                                            13. +
                                                            14. NotAMixin
                                                            15. OperatorReferenceClass
                                                            16. OtherGenericsThing
                                                            17. SpecialList
                                                            18. diff --git a/testing/test_package_docs/fake/OperatorReferenceClass-class.html b/testing/test_package_docs/fake/OperatorReferenceClass-class.html index b5cd7ba7b7..aa292e5b5b 100644 --- a/testing/test_package_docs/fake/OperatorReferenceClass-class.html +++ b/testing/test_package_docs/fake/OperatorReferenceClass-class.html @@ -39,6 +39,8 @@
                                                              library fake
                                                              1. Classes
                                                              2. +
                                                              3. AClassUsingASuperMixin
                                                              4. +
                                                              5. AMixinCallingSuper
                                                              6. Annotation
                                                              7. AnotherInterface
                                                              8. BaseForDocComments
                                                              9. @@ -57,6 +59,7 @@
                                                                library fake
                                                              10. Interface
                                                              11. LongFirstLine
                                                              12. MixMeIn
                                                              13. +
                                                              14. NotAMixin
                                                              15. OperatorReferenceClass
                                                              16. OtherGenericsThing
                                                              17. SpecialList
                                                              18. diff --git a/testing/test_package_docs/fake/OtherGenericsThing-class.html b/testing/test_package_docs/fake/OtherGenericsThing-class.html index e9abca9eb2..87d23c8a29 100644 --- a/testing/test_package_docs/fake/OtherGenericsThing-class.html +++ b/testing/test_package_docs/fake/OtherGenericsThing-class.html @@ -39,6 +39,8 @@
                                                                library fake
                                                                1. Classes
                                                                2. +
                                                                3. AClassUsingASuperMixin
                                                                4. +
                                                                5. AMixinCallingSuper
                                                                6. Annotation
                                                                7. AnotherInterface
                                                                8. BaseForDocComments
                                                                9. @@ -57,6 +59,7 @@
                                                                  library fake
                                                                10. Interface
                                                                11. LongFirstLine
                                                                12. MixMeIn
                                                                13. +
                                                                14. NotAMixin
                                                                15. OperatorReferenceClass
                                                                16. OtherGenericsThing
                                                                17. SpecialList
                                                                18. diff --git a/testing/test_package_docs/fake/PI-constant.html b/testing/test_package_docs/fake/PI-constant.html index 7e84d68ff5..65ab36f301 100644 --- a/testing/test_package_docs/fake/PI-constant.html +++ b/testing/test_package_docs/fake/PI-constant.html @@ -39,6 +39,8 @@
                                                                  library fake
                                                                  1. Classes
                                                                  2. +
                                                                  3. AClassUsingASuperMixin
                                                                  4. +
                                                                  5. AMixinCallingSuper
                                                                  6. Annotation
                                                                  7. AnotherInterface
                                                                  8. BaseForDocComments
                                                                  9. @@ -57,6 +59,7 @@
                                                                    library fake
                                                                  10. Interface
                                                                  11. LongFirstLine
                                                                  12. MixMeIn
                                                                  13. +
                                                                  14. NotAMixin
                                                                  15. OperatorReferenceClass
                                                                  16. OtherGenericsThing
                                                                  17. SpecialList
                                                                  18. diff --git a/testing/test_package_docs/fake/SpecialList-class.html b/testing/test_package_docs/fake/SpecialList-class.html index 0e5f80fe51..e38934d9f0 100644 --- a/testing/test_package_docs/fake/SpecialList-class.html +++ b/testing/test_package_docs/fake/SpecialList-class.html @@ -39,6 +39,8 @@
                                                                    library fake
                                                                    1. Classes
                                                                    2. +
                                                                    3. AClassUsingASuperMixin
                                                                    4. +
                                                                    5. AMixinCallingSuper
                                                                    6. Annotation
                                                                    7. AnotherInterface
                                                                    8. BaseForDocComments
                                                                    9. @@ -57,6 +59,7 @@
                                                                      library fake
                                                                    10. Interface
                                                                    11. LongFirstLine
                                                                    12. MixMeIn
                                                                    13. +
                                                                    14. NotAMixin
                                                                    15. OperatorReferenceClass
                                                                    16. OtherGenericsThing
                                                                    17. SpecialList
                                                                    18. diff --git a/testing/test_package_docs/fake/SubForDocComments-class.html b/testing/test_package_docs/fake/SubForDocComments-class.html index 5187277d65..be648cf212 100644 --- a/testing/test_package_docs/fake/SubForDocComments-class.html +++ b/testing/test_package_docs/fake/SubForDocComments-class.html @@ -39,6 +39,8 @@
                                                                      library fake
                                                                      1. Classes
                                                                      2. +
                                                                      3. AClassUsingASuperMixin
                                                                      4. +
                                                                      5. AMixinCallingSuper
                                                                      6. Annotation
                                                                      7. AnotherInterface
                                                                      8. BaseForDocComments
                                                                      9. @@ -57,6 +59,7 @@
                                                                        library fake
                                                                      10. Interface
                                                                      11. LongFirstLine
                                                                      12. MixMeIn
                                                                      13. +
                                                                      14. NotAMixin
                                                                      15. OperatorReferenceClass
                                                                      16. OtherGenericsThing
                                                                      17. SpecialList
                                                                      18. diff --git a/testing/test_package_docs/fake/SuperAwesomeClass-class.html b/testing/test_package_docs/fake/SuperAwesomeClass-class.html index a51581267a..2fef872613 100644 --- a/testing/test_package_docs/fake/SuperAwesomeClass-class.html +++ b/testing/test_package_docs/fake/SuperAwesomeClass-class.html @@ -39,6 +39,8 @@
                                                                        library fake
                                                                        1. Classes
                                                                        2. +
                                                                        3. AClassUsingASuperMixin
                                                                        4. +
                                                                        5. AMixinCallingSuper
                                                                        6. Annotation
                                                                        7. AnotherInterface
                                                                        8. BaseForDocComments
                                                                        9. @@ -57,6 +59,7 @@
                                                                          library fake
                                                                        10. Interface
                                                                        11. LongFirstLine
                                                                        12. MixMeIn
                                                                        13. +
                                                                        14. NotAMixin
                                                                        15. OperatorReferenceClass
                                                                        16. OtherGenericsThing
                                                                        17. SpecialList
                                                                        18. diff --git a/testing/test_package_docs/fake/UP-constant.html b/testing/test_package_docs/fake/UP-constant.html index e012cfcadd..4f2fef8cfb 100644 --- a/testing/test_package_docs/fake/UP-constant.html +++ b/testing/test_package_docs/fake/UP-constant.html @@ -39,6 +39,8 @@
                                                                          library fake
                                                                          1. Classes
                                                                          2. +
                                                                          3. AClassUsingASuperMixin
                                                                          4. +
                                                                          5. AMixinCallingSuper
                                                                          6. Annotation
                                                                          7. AnotherInterface
                                                                          8. BaseForDocComments
                                                                          9. @@ -57,6 +59,7 @@
                                                                            library fake
                                                                          10. Interface
                                                                          11. LongFirstLine
                                                                          12. MixMeIn
                                                                          13. +
                                                                          14. NotAMixin
                                                                          15. OperatorReferenceClass
                                                                          16. OtherGenericsThing
                                                                          17. SpecialList
                                                                          18. diff --git a/testing/test_package_docs/fake/VoidCallback.html b/testing/test_package_docs/fake/VoidCallback.html index aeaafea8ff..bdf07e43f9 100644 --- a/testing/test_package_docs/fake/VoidCallback.html +++ b/testing/test_package_docs/fake/VoidCallback.html @@ -39,6 +39,8 @@
                                                                            library fake
                                                                            1. Classes
                                                                            2. +
                                                                            3. AClassUsingASuperMixin
                                                                            4. +
                                                                            5. AMixinCallingSuper
                                                                            6. Annotation
                                                                            7. AnotherInterface
                                                                            8. BaseForDocComments
                                                                            9. @@ -57,6 +59,7 @@
                                                                              library fake
                                                                            10. Interface
                                                                            11. LongFirstLine
                                                                            12. MixMeIn
                                                                            13. +
                                                                            14. NotAMixin
                                                                            15. OperatorReferenceClass
                                                                            16. OtherGenericsThing
                                                                            17. SpecialList
                                                                            18. diff --git a/testing/test_package_docs/fake/WithGetterAndSetter-class.html b/testing/test_package_docs/fake/WithGetterAndSetter-class.html index 7ebaf8a00d..39f9a79c8a 100644 --- a/testing/test_package_docs/fake/WithGetterAndSetter-class.html +++ b/testing/test_package_docs/fake/WithGetterAndSetter-class.html @@ -39,6 +39,8 @@
                                                                              library fake
                                                                              1. Classes
                                                                              2. +
                                                                              3. AClassUsingASuperMixin
                                                                              4. +
                                                                              5. AMixinCallingSuper
                                                                              6. Annotation
                                                                              7. AnotherInterface
                                                                              8. BaseForDocComments
                                                                              9. @@ -57,6 +59,7 @@
                                                                                library fake
                                                                              10. Interface
                                                                              11. LongFirstLine
                                                                              12. MixMeIn
                                                                              13. +
                                                                              14. NotAMixin
                                                                              15. OperatorReferenceClass
                                                                              16. OtherGenericsThing
                                                                              17. SpecialList
                                                                              18. diff --git a/testing/test_package_docs/fake/ZERO-constant.html b/testing/test_package_docs/fake/ZERO-constant.html index 48e9b33d5e..91aee599ec 100644 --- a/testing/test_package_docs/fake/ZERO-constant.html +++ b/testing/test_package_docs/fake/ZERO-constant.html @@ -39,6 +39,8 @@
                                                                                library fake
                                                                                1. Classes
                                                                                2. +
                                                                                3. AClassUsingASuperMixin
                                                                                4. +
                                                                                5. AMixinCallingSuper
                                                                                6. Annotation
                                                                                7. AnotherInterface
                                                                                8. BaseForDocComments
                                                                                9. @@ -57,6 +59,7 @@
                                                                                  library fake
                                                                                10. Interface
                                                                                11. LongFirstLine
                                                                                12. MixMeIn
                                                                                13. +
                                                                                14. NotAMixin
                                                                                15. OperatorReferenceClass
                                                                                16. OtherGenericsThing
                                                                                17. SpecialList
                                                                                18. diff --git a/testing/test_package_docs/fake/addCallback.html b/testing/test_package_docs/fake/addCallback.html index f92d2cfed8..302d11d648 100644 --- a/testing/test_package_docs/fake/addCallback.html +++ b/testing/test_package_docs/fake/addCallback.html @@ -39,6 +39,8 @@
                                                                                  library fake
                                                                                  1. Classes
                                                                                  2. +
                                                                                  3. AClassUsingASuperMixin
                                                                                  4. +
                                                                                  5. AMixinCallingSuper
                                                                                  6. Annotation
                                                                                  7. AnotherInterface
                                                                                  8. BaseForDocComments
                                                                                  9. @@ -57,6 +59,7 @@
                                                                                    library fake
                                                                                  10. Interface
                                                                                  11. LongFirstLine
                                                                                  12. MixMeIn
                                                                                  13. +
                                                                                  14. NotAMixin
                                                                                  15. OperatorReferenceClass
                                                                                  16. OtherGenericsThing
                                                                                  17. SpecialList
                                                                                  18. diff --git a/testing/test_package_docs/fake/addCallback2.html b/testing/test_package_docs/fake/addCallback2.html index 83b1edb9b0..a8b49546d5 100644 --- a/testing/test_package_docs/fake/addCallback2.html +++ b/testing/test_package_docs/fake/addCallback2.html @@ -39,6 +39,8 @@
                                                                                    library fake
                                                                                    1. Classes
                                                                                    2. +
                                                                                    3. AClassUsingASuperMixin
                                                                                    4. +
                                                                                    5. AMixinCallingSuper
                                                                                    6. Annotation
                                                                                    7. AnotherInterface
                                                                                    8. BaseForDocComments
                                                                                    9. @@ -57,6 +59,7 @@
                                                                                      library fake
                                                                                    10. Interface
                                                                                    11. LongFirstLine
                                                                                    12. MixMeIn
                                                                                    13. +
                                                                                    14. NotAMixin
                                                                                    15. OperatorReferenceClass
                                                                                    16. OtherGenericsThing
                                                                                    17. SpecialList
                                                                                    18. diff --git a/testing/test_package_docs/fake/dynamicGetter.html b/testing/test_package_docs/fake/dynamicGetter.html index 05fb0e1c80..4e253978b0 100644 --- a/testing/test_package_docs/fake/dynamicGetter.html +++ b/testing/test_package_docs/fake/dynamicGetter.html @@ -39,6 +39,8 @@
                                                                                      library fake
                                                                                      1. Classes
                                                                                      2. +
                                                                                      3. AClassUsingASuperMixin
                                                                                      4. +
                                                                                      5. AMixinCallingSuper
                                                                                      6. Annotation
                                                                                      7. AnotherInterface
                                                                                      8. BaseForDocComments
                                                                                      9. @@ -57,6 +59,7 @@
                                                                                        library fake
                                                                                      10. Interface
                                                                                      11. LongFirstLine
                                                                                      12. MixMeIn
                                                                                      13. +
                                                                                      14. NotAMixin
                                                                                      15. OperatorReferenceClass
                                                                                      16. OtherGenericsThing
                                                                                      17. SpecialList
                                                                                      18. diff --git a/testing/test_package_docs/fake/fake-library.html b/testing/test_package_docs/fake/fake-library.html index 84c470478f..45e9fdf057 100644 --- a/testing/test_package_docs/fake/fake-library.html +++ b/testing/test_package_docs/fake/fake-library.html @@ -82,6 +82,18 @@
                                                                                        I am an h5

                                                                                        Classes

                                                                                        +
                                                                                        + AClassUsingASuperMixin +
                                                                                        +
                                                                                        + Verify super-mixins don't break Dartdoc. +
                                                                                        +
                                                                                        + AMixinCallingSuper +
                                                                                        +
                                                                                        + +
                                                                                        Annotation
                                                                                        @@ -191,6 +203,12 @@

                                                                                        Classes

                                                                                        Perfect for mix-ins. +
                                                                                        +
                                                                                        + NotAMixin +
                                                                                        +
                                                                                        +
                                                                                        OperatorReferenceClass @@ -683,6 +701,8 @@

                                                                                        Exceptions / Errors

                                                                                        library fake
                                                                                        1. Classes
                                                                                        2. +
                                                                                        3. AClassUsingASuperMixin
                                                                                        4. +
                                                                                        5. AMixinCallingSuper
                                                                                        6. Annotation
                                                                                        7. AnotherInterface
                                                                                        8. BaseForDocComments
                                                                                        9. @@ -701,6 +721,7 @@
                                                                                          library fake
                                                                                        10. Interface
                                                                                        11. LongFirstLine
                                                                                        12. MixMeIn
                                                                                        13. +
                                                                                        14. NotAMixin
                                                                                        15. OperatorReferenceClass
                                                                                        16. OtherGenericsThing
                                                                                        17. SpecialList
                                                                                        18. diff --git a/testing/test_package_docs/fake/functionWithFunctionParameters.html b/testing/test_package_docs/fake/functionWithFunctionParameters.html index 465c6f6367..937863908e 100644 --- a/testing/test_package_docs/fake/functionWithFunctionParameters.html +++ b/testing/test_package_docs/fake/functionWithFunctionParameters.html @@ -39,6 +39,8 @@
                                                                                          library fake
                                                                                          1. Classes
                                                                                          2. +
                                                                                          3. AClassUsingASuperMixin
                                                                                          4. +
                                                                                          5. AMixinCallingSuper
                                                                                          6. Annotation
                                                                                          7. AnotherInterface
                                                                                          8. BaseForDocComments
                                                                                          9. @@ -57,6 +59,7 @@
                                                                                            library fake
                                                                                          10. Interface
                                                                                          11. LongFirstLine
                                                                                          12. MixMeIn
                                                                                          13. +
                                                                                          14. NotAMixin
                                                                                          15. OperatorReferenceClass
                                                                                          16. OtherGenericsThing
                                                                                          17. SpecialList
                                                                                          18. diff --git a/testing/test_package_docs/fake/getterSetterNodocGetter.html b/testing/test_package_docs/fake/getterSetterNodocGetter.html index 4921ac0870..a5809e09c3 100644 --- a/testing/test_package_docs/fake/getterSetterNodocGetter.html +++ b/testing/test_package_docs/fake/getterSetterNodocGetter.html @@ -39,6 +39,8 @@
                                                                                            library fake
                                                                                            1. Classes
                                                                                            2. +
                                                                                            3. AClassUsingASuperMixin
                                                                                            4. +
                                                                                            5. AMixinCallingSuper
                                                                                            6. Annotation
                                                                                            7. AnotherInterface
                                                                                            8. BaseForDocComments
                                                                                            9. @@ -57,6 +59,7 @@
                                                                                              library fake
                                                                                            10. Interface
                                                                                            11. LongFirstLine
                                                                                            12. MixMeIn
                                                                                            13. +
                                                                                            14. NotAMixin
                                                                                            15. OperatorReferenceClass
                                                                                            16. OtherGenericsThing
                                                                                            17. SpecialList
                                                                                            18. diff --git a/testing/test_package_docs/fake/getterSetterNodocSetter.html b/testing/test_package_docs/fake/getterSetterNodocSetter.html index 87b31dc31e..b21b62638c 100644 --- a/testing/test_package_docs/fake/getterSetterNodocSetter.html +++ b/testing/test_package_docs/fake/getterSetterNodocSetter.html @@ -39,6 +39,8 @@
                                                                                              library fake
                                                                                              1. Classes
                                                                                              2. +
                                                                                              3. AClassUsingASuperMixin
                                                                                              4. +
                                                                                              5. AMixinCallingSuper
                                                                                              6. Annotation
                                                                                              7. AnotherInterface
                                                                                              8. BaseForDocComments
                                                                                              9. @@ -57,6 +59,7 @@
                                                                                                library fake
                                                                                              10. Interface
                                                                                              11. LongFirstLine
                                                                                              12. MixMeIn
                                                                                              13. +
                                                                                              14. NotAMixin
                                                                                              15. OperatorReferenceClass
                                                                                              16. OtherGenericsThing
                                                                                              17. SpecialList
                                                                                              18. diff --git a/testing/test_package_docs/fake/greatAnnotation-constant.html b/testing/test_package_docs/fake/greatAnnotation-constant.html index ec2f505cd7..b1a8c4d64b 100644 --- a/testing/test_package_docs/fake/greatAnnotation-constant.html +++ b/testing/test_package_docs/fake/greatAnnotation-constant.html @@ -39,6 +39,8 @@
                                                                                                library fake
                                                                                                1. Classes
                                                                                                2. +
                                                                                                3. AClassUsingASuperMixin
                                                                                                4. +
                                                                                                5. AMixinCallingSuper
                                                                                                6. Annotation
                                                                                                7. AnotherInterface
                                                                                                8. BaseForDocComments
                                                                                                9. @@ -57,6 +59,7 @@
                                                                                                  library fake
                                                                                                10. Interface
                                                                                                11. LongFirstLine
                                                                                                12. MixMeIn
                                                                                                13. +
                                                                                                14. NotAMixin
                                                                                                15. OperatorReferenceClass
                                                                                                16. OtherGenericsThing
                                                                                                17. SpecialList
                                                                                                18. diff --git a/testing/test_package_docs/fake/greatestAnnotation-constant.html b/testing/test_package_docs/fake/greatestAnnotation-constant.html index 14325ef37b..4480a79643 100644 --- a/testing/test_package_docs/fake/greatestAnnotation-constant.html +++ b/testing/test_package_docs/fake/greatestAnnotation-constant.html @@ -39,6 +39,8 @@
                                                                                                  library fake
                                                                                                  1. Classes
                                                                                                  2. +
                                                                                                  3. AClassUsingASuperMixin
                                                                                                  4. +
                                                                                                  5. AMixinCallingSuper
                                                                                                  6. Annotation
                                                                                                  7. AnotherInterface
                                                                                                  8. BaseForDocComments
                                                                                                  9. @@ -57,6 +59,7 @@
                                                                                                    library fake
                                                                                                  10. Interface
                                                                                                  11. LongFirstLine
                                                                                                  12. MixMeIn
                                                                                                  13. +
                                                                                                  14. NotAMixin
                                                                                                  15. OperatorReferenceClass
                                                                                                  16. OtherGenericsThing
                                                                                                  17. SpecialList
                                                                                                  18. diff --git a/testing/test_package_docs/fake/incorrectDocReference-constant.html b/testing/test_package_docs/fake/incorrectDocReference-constant.html index 69055d0ff9..936bcd18d1 100644 --- a/testing/test_package_docs/fake/incorrectDocReference-constant.html +++ b/testing/test_package_docs/fake/incorrectDocReference-constant.html @@ -39,6 +39,8 @@
                                                                                                    library fake
                                                                                                    1. Classes
                                                                                                    2. +
                                                                                                    3. AClassUsingASuperMixin
                                                                                                    4. +
                                                                                                    5. AMixinCallingSuper
                                                                                                    6. Annotation
                                                                                                    7. AnotherInterface
                                                                                                    8. BaseForDocComments
                                                                                                    9. @@ -57,6 +59,7 @@
                                                                                                      library fake
                                                                                                    10. Interface
                                                                                                    11. LongFirstLine
                                                                                                    12. MixMeIn
                                                                                                    13. +
                                                                                                    14. NotAMixin
                                                                                                    15. OperatorReferenceClass
                                                                                                    16. OtherGenericsThing
                                                                                                    17. SpecialList
                                                                                                    18. diff --git a/testing/test_package_docs/fake/justGetter.html b/testing/test_package_docs/fake/justGetter.html index fc74afd0df..0e7c2c23eb 100644 --- a/testing/test_package_docs/fake/justGetter.html +++ b/testing/test_package_docs/fake/justGetter.html @@ -39,6 +39,8 @@
                                                                                                      library fake
                                                                                                      1. Classes
                                                                                                      2. +
                                                                                                      3. AClassUsingASuperMixin
                                                                                                      4. +
                                                                                                      5. AMixinCallingSuper
                                                                                                      6. Annotation
                                                                                                      7. AnotherInterface
                                                                                                      8. BaseForDocComments
                                                                                                      9. @@ -57,6 +59,7 @@
                                                                                                        library fake
                                                                                                      10. Interface
                                                                                                      11. LongFirstLine
                                                                                                      12. MixMeIn
                                                                                                      13. +
                                                                                                      14. NotAMixin
                                                                                                      15. OperatorReferenceClass
                                                                                                      16. OtherGenericsThing
                                                                                                      17. SpecialList
                                                                                                      18. diff --git a/testing/test_package_docs/fake/justSetter.html b/testing/test_package_docs/fake/justSetter.html index 56ac01c913..5e63703031 100644 --- a/testing/test_package_docs/fake/justSetter.html +++ b/testing/test_package_docs/fake/justSetter.html @@ -39,6 +39,8 @@
                                                                                                        library fake
                                                                                                        1. Classes
                                                                                                        2. +
                                                                                                        3. AClassUsingASuperMixin
                                                                                                        4. +
                                                                                                        5. AMixinCallingSuper
                                                                                                        6. Annotation
                                                                                                        7. AnotherInterface
                                                                                                        8. BaseForDocComments
                                                                                                        9. @@ -57,6 +59,7 @@
                                                                                                          library fake
                                                                                                        10. Interface
                                                                                                        11. LongFirstLine
                                                                                                        12. MixMeIn
                                                                                                        13. +
                                                                                                        14. NotAMixin
                                                                                                        15. OperatorReferenceClass
                                                                                                        16. OtherGenericsThing
                                                                                                        17. SpecialList
                                                                                                        18. diff --git a/testing/test_package_docs/fake/mapWithDynamicKeys.html b/testing/test_package_docs/fake/mapWithDynamicKeys.html index 1b252662ab..c38c5254ab 100644 --- a/testing/test_package_docs/fake/mapWithDynamicKeys.html +++ b/testing/test_package_docs/fake/mapWithDynamicKeys.html @@ -39,6 +39,8 @@
                                                                                                          library fake
                                                                                                          1. Classes
                                                                                                          2. +
                                                                                                          3. AClassUsingASuperMixin
                                                                                                          4. +
                                                                                                          5. AMixinCallingSuper
                                                                                                          6. Annotation
                                                                                                          7. AnotherInterface
                                                                                                          8. BaseForDocComments
                                                                                                          9. @@ -57,6 +59,7 @@
                                                                                                            library fake
                                                                                                          10. Interface
                                                                                                          11. LongFirstLine
                                                                                                          12. MixMeIn
                                                                                                          13. +
                                                                                                          14. NotAMixin
                                                                                                          15. OperatorReferenceClass
                                                                                                          16. OtherGenericsThing
                                                                                                          17. SpecialList
                                                                                                          18. diff --git a/testing/test_package_docs/fake/meaningOfLife.html b/testing/test_package_docs/fake/meaningOfLife.html index e0a340086f..666651005b 100644 --- a/testing/test_package_docs/fake/meaningOfLife.html +++ b/testing/test_package_docs/fake/meaningOfLife.html @@ -39,6 +39,8 @@
                                                                                                            library fake
                                                                                                            1. Classes
                                                                                                            2. +
                                                                                                            3. AClassUsingASuperMixin
                                                                                                            4. +
                                                                                                            5. AMixinCallingSuper
                                                                                                            6. Annotation
                                                                                                            7. AnotherInterface
                                                                                                            8. BaseForDocComments
                                                                                                            9. @@ -57,6 +59,7 @@
                                                                                                              library fake
                                                                                                            10. Interface
                                                                                                            11. LongFirstLine
                                                                                                            12. MixMeIn
                                                                                                            13. +
                                                                                                            14. NotAMixin
                                                                                                            15. OperatorReferenceClass
                                                                                                            16. OtherGenericsThing
                                                                                                            17. SpecialList
                                                                                                            18. diff --git a/testing/test_package_docs/fake/myCoolTypedef.html b/testing/test_package_docs/fake/myCoolTypedef.html index 94c18a776c..a9509a0be5 100644 --- a/testing/test_package_docs/fake/myCoolTypedef.html +++ b/testing/test_package_docs/fake/myCoolTypedef.html @@ -39,6 +39,8 @@
                                                                                                              library fake
                                                                                                              1. Classes
                                                                                                              2. +
                                                                                                              3. AClassUsingASuperMixin
                                                                                                              4. +
                                                                                                              5. AMixinCallingSuper
                                                                                                              6. Annotation
                                                                                                              7. AnotherInterface
                                                                                                              8. BaseForDocComments
                                                                                                              9. @@ -57,6 +59,7 @@
                                                                                                                library fake
                                                                                                              10. Interface
                                                                                                              11. LongFirstLine
                                                                                                              12. MixMeIn
                                                                                                              13. +
                                                                                                              14. NotAMixin
                                                                                                              15. OperatorReferenceClass
                                                                                                              16. OtherGenericsThing
                                                                                                              17. SpecialList
                                                                                                              18. diff --git a/testing/test_package_docs/fake/myGenericFunction.html b/testing/test_package_docs/fake/myGenericFunction.html index 42199526ea..d2d9eb10d1 100644 --- a/testing/test_package_docs/fake/myGenericFunction.html +++ b/testing/test_package_docs/fake/myGenericFunction.html @@ -39,6 +39,8 @@
                                                                                                                library fake
                                                                                                                1. Classes
                                                                                                                2. +
                                                                                                                3. AClassUsingASuperMixin
                                                                                                                4. +
                                                                                                                5. AMixinCallingSuper
                                                                                                                6. Annotation
                                                                                                                7. AnotherInterface
                                                                                                                8. BaseForDocComments
                                                                                                                9. @@ -57,6 +59,7 @@
                                                                                                                  library fake
                                                                                                                10. Interface
                                                                                                                11. LongFirstLine
                                                                                                                12. MixMeIn
                                                                                                                13. +
                                                                                                                14. NotAMixin
                                                                                                                15. OperatorReferenceClass
                                                                                                                16. OtherGenericsThing
                                                                                                                17. SpecialList
                                                                                                                18. diff --git a/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html b/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html index b5314d7eca..ba8f0e2c3a 100644 --- a/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html +++ b/testing/test_package_docs/fake/onlyPositionalWithNoDefaultNoType.html @@ -39,6 +39,8 @@
                                                                                                                  library fake
                                                                                                                  1. Classes
                                                                                                                  2. +
                                                                                                                  3. AClassUsingASuperMixin
                                                                                                                  4. +
                                                                                                                  5. AMixinCallingSuper
                                                                                                                  6. Annotation
                                                                                                                  7. AnotherInterface
                                                                                                                  8. BaseForDocComments
                                                                                                                  9. @@ -57,6 +59,7 @@
                                                                                                                    library fake
                                                                                                                  10. Interface
                                                                                                                  11. LongFirstLine
                                                                                                                  12. MixMeIn
                                                                                                                  13. +
                                                                                                                  14. NotAMixin
                                                                                                                  15. OperatorReferenceClass
                                                                                                                  16. OtherGenericsThing
                                                                                                                  17. SpecialList
                                                                                                                  18. diff --git a/testing/test_package_docs/fake/paintImage1.html b/testing/test_package_docs/fake/paintImage1.html index e7f0fb2a65..0dd6bf8bdb 100644 --- a/testing/test_package_docs/fake/paintImage1.html +++ b/testing/test_package_docs/fake/paintImage1.html @@ -39,6 +39,8 @@
                                                                                                                    library fake
                                                                                                                    1. Classes
                                                                                                                    2. +
                                                                                                                    3. AClassUsingASuperMixin
                                                                                                                    4. +
                                                                                                                    5. AMixinCallingSuper
                                                                                                                    6. Annotation
                                                                                                                    7. AnotherInterface
                                                                                                                    8. BaseForDocComments
                                                                                                                    9. @@ -57,6 +59,7 @@
                                                                                                                      library fake
                                                                                                                    10. Interface
                                                                                                                    11. LongFirstLine
                                                                                                                    12. MixMeIn
                                                                                                                    13. +
                                                                                                                    14. NotAMixin
                                                                                                                    15. OperatorReferenceClass
                                                                                                                    16. OtherGenericsThing
                                                                                                                    17. SpecialList
                                                                                                                    18. diff --git a/testing/test_package_docs/fake/paintImage2.html b/testing/test_package_docs/fake/paintImage2.html index 489c1c58f9..67d0f33090 100644 --- a/testing/test_package_docs/fake/paintImage2.html +++ b/testing/test_package_docs/fake/paintImage2.html @@ -39,6 +39,8 @@
                                                                                                                      library fake
                                                                                                                      1. Classes
                                                                                                                      2. +
                                                                                                                      3. AClassUsingASuperMixin
                                                                                                                      4. +
                                                                                                                      5. AMixinCallingSuper
                                                                                                                      6. Annotation
                                                                                                                      7. AnotherInterface
                                                                                                                      8. BaseForDocComments
                                                                                                                      9. @@ -57,6 +59,7 @@
                                                                                                                        library fake
                                                                                                                      10. Interface
                                                                                                                      11. LongFirstLine
                                                                                                                      12. MixMeIn
                                                                                                                      13. +
                                                                                                                      14. NotAMixin
                                                                                                                      15. OperatorReferenceClass
                                                                                                                      16. OtherGenericsThing
                                                                                                                      17. SpecialList
                                                                                                                      18. diff --git a/testing/test_package_docs/fake/paramFromAnotherLib.html b/testing/test_package_docs/fake/paramFromAnotherLib.html index 3b6fa363c1..0287a3f73c 100644 --- a/testing/test_package_docs/fake/paramFromAnotherLib.html +++ b/testing/test_package_docs/fake/paramFromAnotherLib.html @@ -39,6 +39,8 @@
                                                                                                                        library fake
                                                                                                                        1. Classes
                                                                                                                        2. +
                                                                                                                        3. AClassUsingASuperMixin
                                                                                                                        4. +
                                                                                                                        5. AMixinCallingSuper
                                                                                                                        6. Annotation
                                                                                                                        7. AnotherInterface
                                                                                                                        8. BaseForDocComments
                                                                                                                        9. @@ -57,6 +59,7 @@
                                                                                                                          library fake
                                                                                                                        10. Interface
                                                                                                                        11. LongFirstLine
                                                                                                                        12. MixMeIn
                                                                                                                        13. +
                                                                                                                        14. NotAMixin
                                                                                                                        15. OperatorReferenceClass
                                                                                                                        16. OtherGenericsThing
                                                                                                                        17. SpecialList
                                                                                                                        18. diff --git a/testing/test_package_docs/fake/required-constant.html b/testing/test_package_docs/fake/required-constant.html index 930fc2eccf..25e8a7711a 100644 --- a/testing/test_package_docs/fake/required-constant.html +++ b/testing/test_package_docs/fake/required-constant.html @@ -39,6 +39,8 @@
                                                                                                                          library fake
                                                                                                                          1. Classes
                                                                                                                          2. +
                                                                                                                          3. AClassUsingASuperMixin
                                                                                                                          4. +
                                                                                                                          5. AMixinCallingSuper
                                                                                                                          6. Annotation
                                                                                                                          7. AnotherInterface
                                                                                                                          8. BaseForDocComments
                                                                                                                          9. @@ -57,6 +59,7 @@
                                                                                                                            library fake
                                                                                                                          10. Interface
                                                                                                                          11. LongFirstLine
                                                                                                                          12. MixMeIn
                                                                                                                          13. +
                                                                                                                          14. NotAMixin
                                                                                                                          15. OperatorReferenceClass
                                                                                                                          16. OtherGenericsThing
                                                                                                                          17. SpecialList
                                                                                                                          18. diff --git a/testing/test_package_docs/fake/setAndGet.html b/testing/test_package_docs/fake/setAndGet.html index 261fabeeac..f6d644eeb1 100644 --- a/testing/test_package_docs/fake/setAndGet.html +++ b/testing/test_package_docs/fake/setAndGet.html @@ -39,6 +39,8 @@
                                                                                                                            library fake
                                                                                                                            1. Classes
                                                                                                                            2. +
                                                                                                                            3. AClassUsingASuperMixin
                                                                                                                            4. +
                                                                                                                            5. AMixinCallingSuper
                                                                                                                            6. Annotation
                                                                                                                            7. AnotherInterface
                                                                                                                            8. BaseForDocComments
                                                                                                                            9. @@ -57,6 +59,7 @@
                                                                                                                              library fake
                                                                                                                            10. Interface
                                                                                                                            11. LongFirstLine
                                                                                                                            12. MixMeIn
                                                                                                                            13. +
                                                                                                                            14. NotAMixin
                                                                                                                            15. OperatorReferenceClass
                                                                                                                            16. OtherGenericsThing
                                                                                                                            17. SpecialList
                                                                                                                            18. diff --git a/testing/test_package_docs/fake/short.html b/testing/test_package_docs/fake/short.html index e153538c12..0222e76f70 100644 --- a/testing/test_package_docs/fake/short.html +++ b/testing/test_package_docs/fake/short.html @@ -39,6 +39,8 @@
                                                                                                                              library fake
                                                                                                                              1. Classes
                                                                                                                              2. +
                                                                                                                              3. AClassUsingASuperMixin
                                                                                                                              4. +
                                                                                                                              5. AMixinCallingSuper
                                                                                                                              6. Annotation
                                                                                                                              7. AnotherInterface
                                                                                                                              8. BaseForDocComments
                                                                                                                              9. @@ -57,6 +59,7 @@
                                                                                                                                library fake
                                                                                                                              10. Interface
                                                                                                                              11. LongFirstLine
                                                                                                                              12. MixMeIn
                                                                                                                              13. +
                                                                                                                              14. NotAMixin
                                                                                                                              15. OperatorReferenceClass
                                                                                                                              16. OtherGenericsThing
                                                                                                                              17. SpecialList
                                                                                                                              18. diff --git a/testing/test_package_docs/fake/simpleProperty.html b/testing/test_package_docs/fake/simpleProperty.html index 1036ebcd0c..d6ca7ba1c0 100644 --- a/testing/test_package_docs/fake/simpleProperty.html +++ b/testing/test_package_docs/fake/simpleProperty.html @@ -39,6 +39,8 @@
                                                                                                                                library fake
                                                                                                                                1. Classes
                                                                                                                                2. +
                                                                                                                                3. AClassUsingASuperMixin
                                                                                                                                4. +
                                                                                                                                5. AMixinCallingSuper
                                                                                                                                6. Annotation
                                                                                                                                7. AnotherInterface
                                                                                                                                8. BaseForDocComments
                                                                                                                                9. @@ -57,6 +59,7 @@
                                                                                                                                  library fake
                                                                                                                                10. Interface
                                                                                                                                11. LongFirstLine
                                                                                                                                12. MixMeIn
                                                                                                                                13. +
                                                                                                                                14. NotAMixin
                                                                                                                                15. OperatorReferenceClass
                                                                                                                                16. OtherGenericsThing
                                                                                                                                17. SpecialList
                                                                                                                                18. diff --git a/testing/test_package_docs/fake/soIntense.html b/testing/test_package_docs/fake/soIntense.html index 7fedba43fe..06679f3343 100644 --- a/testing/test_package_docs/fake/soIntense.html +++ b/testing/test_package_docs/fake/soIntense.html @@ -39,6 +39,8 @@
                                                                                                                                  library fake
                                                                                                                                  1. Classes
                                                                                                                                  2. +
                                                                                                                                  3. AClassUsingASuperMixin
                                                                                                                                  4. +
                                                                                                                                  5. AMixinCallingSuper
                                                                                                                                  6. Annotation
                                                                                                                                  7. AnotherInterface
                                                                                                                                  8. BaseForDocComments
                                                                                                                                  9. @@ -57,6 +59,7 @@
                                                                                                                                    library fake
                                                                                                                                  10. Interface
                                                                                                                                  11. LongFirstLine
                                                                                                                                  12. MixMeIn
                                                                                                                                  13. +
                                                                                                                                  14. NotAMixin
                                                                                                                                  15. OperatorReferenceClass
                                                                                                                                  16. OtherGenericsThing
                                                                                                                                  17. SpecialList
                                                                                                                                  18. diff --git a/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html b/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html index ce30c1a60b..16ea9ce107 100644 --- a/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html +++ b/testing/test_package_docs/fake/testingCodeSyntaxInOneLiners-constant.html @@ -39,6 +39,8 @@
                                                                                                                                    library fake
                                                                                                                                    1. Classes
                                                                                                                                    2. +
                                                                                                                                    3. AClassUsingASuperMixin
                                                                                                                                    4. +
                                                                                                                                    5. AMixinCallingSuper
                                                                                                                                    6. Annotation
                                                                                                                                    7. AnotherInterface
                                                                                                                                    8. BaseForDocComments
                                                                                                                                    9. @@ -57,6 +59,7 @@
                                                                                                                                      library fake
                                                                                                                                    10. Interface
                                                                                                                                    11. LongFirstLine
                                                                                                                                    12. MixMeIn
                                                                                                                                    13. +
                                                                                                                                    14. NotAMixin
                                                                                                                                    15. OperatorReferenceClass
                                                                                                                                    16. OtherGenericsThing
                                                                                                                                    17. SpecialList
                                                                                                                                    18. diff --git a/testing/test_package_docs/fake/thisIsAlsoAsync.html b/testing/test_package_docs/fake/thisIsAlsoAsync.html index 8cbe81b31a..e8700a4854 100644 --- a/testing/test_package_docs/fake/thisIsAlsoAsync.html +++ b/testing/test_package_docs/fake/thisIsAlsoAsync.html @@ -39,6 +39,8 @@
                                                                                                                                      library fake
                                                                                                                                      1. Classes
                                                                                                                                      2. +
                                                                                                                                      3. AClassUsingASuperMixin
                                                                                                                                      4. +
                                                                                                                                      5. AMixinCallingSuper
                                                                                                                                      6. Annotation
                                                                                                                                      7. AnotherInterface
                                                                                                                                      8. BaseForDocComments
                                                                                                                                      9. @@ -57,6 +59,7 @@
                                                                                                                                        library fake
                                                                                                                                      10. Interface
                                                                                                                                      11. LongFirstLine
                                                                                                                                      12. MixMeIn
                                                                                                                                      13. +
                                                                                                                                      14. NotAMixin
                                                                                                                                      15. OperatorReferenceClass
                                                                                                                                      16. OtherGenericsThing
                                                                                                                                      17. SpecialList
                                                                                                                                      18. diff --git a/testing/test_package_docs/fake/thisIsAsync.html b/testing/test_package_docs/fake/thisIsAsync.html index 4d6451b180..7cd2414433 100644 --- a/testing/test_package_docs/fake/thisIsAsync.html +++ b/testing/test_package_docs/fake/thisIsAsync.html @@ -39,6 +39,8 @@
                                                                                                                                        library fake
                                                                                                                                        1. Classes
                                                                                                                                        2. +
                                                                                                                                        3. AClassUsingASuperMixin
                                                                                                                                        4. +
                                                                                                                                        5. AMixinCallingSuper
                                                                                                                                        6. Annotation
                                                                                                                                        7. AnotherInterface
                                                                                                                                        8. BaseForDocComments
                                                                                                                                        9. @@ -57,6 +59,7 @@
                                                                                                                                          library fake
                                                                                                                                        10. Interface
                                                                                                                                        11. LongFirstLine
                                                                                                                                        12. MixMeIn
                                                                                                                                        13. +
                                                                                                                                        14. NotAMixin
                                                                                                                                        15. OperatorReferenceClass
                                                                                                                                        16. OtherGenericsThing
                                                                                                                                        17. SpecialList
                                                                                                                                        18. diff --git a/testing/test_package_docs/fake/topLevelFunction.html b/testing/test_package_docs/fake/topLevelFunction.html index d0d71f89c9..a2c2e71740 100644 --- a/testing/test_package_docs/fake/topLevelFunction.html +++ b/testing/test_package_docs/fake/topLevelFunction.html @@ -39,6 +39,8 @@
                                                                                                                                          library fake
                                                                                                                                          1. Classes
                                                                                                                                          2. +
                                                                                                                                          3. AClassUsingASuperMixin
                                                                                                                                          4. +
                                                                                                                                          5. AMixinCallingSuper
                                                                                                                                          6. Annotation
                                                                                                                                          7. AnotherInterface
                                                                                                                                          8. BaseForDocComments
                                                                                                                                          9. @@ -57,6 +59,7 @@
                                                                                                                                            library fake
                                                                                                                                          10. Interface
                                                                                                                                          11. LongFirstLine
                                                                                                                                          12. MixMeIn
                                                                                                                                          13. +
                                                                                                                                          14. NotAMixin
                                                                                                                                          15. OperatorReferenceClass
                                                                                                                                          16. OtherGenericsThing
                                                                                                                                          17. SpecialList
                                                                                                                                          18. diff --git a/testing/test_package_docs/index.json b/testing/test_package_docs/index.json index 542215f96d..b7d684b86b 100644 --- a/testing/test_package_docs/index.json +++ b/testing/test_package_docs/index.json @@ -3572,6 +3572,61 @@ "type": "library", "overriddenDepth": 0 }, + { + "name": "AClassUsingASuperMixin", + "qualifiedName": "fake.AClassUsingASuperMixin", + "href": "fake/AClassUsingASuperMixin-class.html", + "type": "class", + "overriddenDepth": 0, + "enclosedBy": { + "name": "fake", + "type": "library" + } + }, + { + "name": "AClassUsingASuperMixin", + "qualifiedName": "fake.AClassUsingASuperMixin", + "href": "fake/AClassUsingASuperMixin/AClassUsingASuperMixin.html", + "type": "constructor", + "overriddenDepth": 0, + "enclosedBy": { + "name": "AClassUsingASuperMixin", + "type": "class" + } + }, + { + "name": "AMixinCallingSuper", + "qualifiedName": "fake.AMixinCallingSuper", + "href": "fake/AMixinCallingSuper-class.html", + "type": "class", + "overriddenDepth": 0, + "enclosedBy": { + "name": "fake", + "type": "library" + } + }, + { + "name": "AMixinCallingSuper", + "qualifiedName": "fake.AMixinCallingSuper", + "href": "fake/AMixinCallingSuper/AMixinCallingSuper.html", + "type": "constructor", + "overriddenDepth": 0, + "enclosedBy": { + "name": "AMixinCallingSuper", + "type": "class" + } + }, + { + "name": "superString", + "qualifiedName": "fake.AMixinCallingSuper.superString", + "href": "fake/AMixinCallingSuper/superString.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "AMixinCallingSuper", + "type": "class" + } + }, { "name": "Annotation", "qualifiedName": "fake.Annotation", @@ -5442,6 +5497,94 @@ "type": "library" } }, + { + "name": "NotAMixin", + "qualifiedName": "fake.NotAMixin", + "href": "fake/NotAMixin-class.html", + "type": "class", + "overriddenDepth": 0, + "enclosedBy": { + "name": "fake", + "type": "library" + } + }, + { + "name": "NotAMixin", + "qualifiedName": "fake.NotAMixin", + "href": "fake/NotAMixin/NotAMixin.html", + "type": "constructor", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NotAMixin", + "type": "class" + } + }, + { + "name": "operator ==", + "qualifiedName": "fake.NotAMixin.==", + "href": "fake/NotAMixin/operator_equals.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NotAMixin", + "type": "class" + } + }, + { + "name": "hashCode", + "qualifiedName": "fake.NotAMixin.hashCode", + "href": "fake/NotAMixin/hashCode.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NotAMixin", + "type": "class" + } + }, + { + "name": "noSuchMethod", + "qualifiedName": "fake.NotAMixin.noSuchMethod", + "href": "fake/NotAMixin/noSuchMethod.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NotAMixin", + "type": "class" + } + }, + { + "name": "runtimeType", + "qualifiedName": "fake.NotAMixin.runtimeType", + "href": "fake/NotAMixin/runtimeType.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NotAMixin", + "type": "class" + } + }, + { + "name": "superString", + "qualifiedName": "fake.NotAMixin.superString", + "href": "fake/NotAMixin/superString.html", + "type": "property", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NotAMixin", + "type": "class" + } + }, + { + "name": "toString", + "qualifiedName": "fake.NotAMixin.toString", + "href": "fake/NotAMixin/toString.html", + "type": "method", + "overriddenDepth": 0, + "enclosedBy": { + "name": "NotAMixin", + "type": "class" + } + }, { "name": "Oops", "qualifiedName": "fake.Oops",