Add a test for getter doc inheritance when overridden by variable. (#1781)

* Implement new-style mixin support

* Regenerate package documentation, dropping stable

* Fix problem where we created Fields without accessors

* Use published analyzer in override

* Disable try_publish and make grind more tolerant of preexisting overrides to make travis green

* Test for #1779

* Review comments

* dartfmt
diff --git a/test/model_test.dart b/test/model_test.dart
index c9fc445..1122d00 100644
--- a/test/model_test.dart
+++ b/test/model_test.dart
@@ -1201,6 +1201,12 @@
       expect(localMethod.documentationAsHtml, contains('<code>bar</code>'));
     });
 
+    test('doc comment inherited from getter', () {
+      Field getterWithDocs = subForDocComments.instanceProperties
+          .firstWhere((m) => m.name == 'getterWithDocs');
+      expect(getterWithDocs.documentationAsHtml, contains('Some really great topics.'));
+    });
+
     test(
         'a property with no explicit getters and setters does not duplicate docs',
         () {
diff --git a/testing/test_package/lib/fake.dart b/testing/test_package/lib/fake.dart
index 9b8bb4f..9afbbc5 100644
--- a/testing/test_package/lib/fake.dart
+++ b/testing/test_package/lib/fake.dart
@@ -839,6 +839,9 @@
 
   void anotherMethod() {}
 
+  /// Some really great topics.
+  bool get getterWithDocs => true;
+
   String operator [](String key) => "${key}'s value";
 }
 
@@ -847,6 +850,9 @@
 class SubForDocComments extends BaseForDocComments {
   /// Reference to [foo] and [bar]
   void localMethod(String foo, bar) {}
+
+  @override
+  final bool getterWithDocs = false;
 }
 
 typedef void VoidCallback();
diff --git a/testing/test_package_docs/fake/BaseForDocComments-class.html b/testing/test_package_docs/fake/BaseForDocComments-class.html
index 41a4d42..a5d7f0b 100644
--- a/testing/test_package_docs/fake/BaseForDocComments-class.html
+++ b/testing/test_package_docs/fake/BaseForDocComments-class.html
@@ -203,10 +203,18 @@
       </dl>
     </section>
 
-    <section class="summary offset-anchor inherited" id="instance-properties">
+    <section class="summary offset-anchor" id="instance-properties">
       <h2>Properties</h2>
 
       <dl class="properties">
+        <dt id="getterWithDocs" class="property">
+          <span class="name"><a href="fake/BaseForDocComments/getterWithDocs.html">getterWithDocs</a></span>
+          <span class="signature">&#8594; bool</span> 
+        </dt>
+        <dd>
+          Some really great topics.
+          <div class="features">read-only</div>
+</dd>
         <dt id="hashCode" class="property inherited">
           <span class="name"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></span>
           <span class="signature">&#8594; int</span> 
@@ -302,9 +310,10 @@
       <li class="section-title"><a href="fake/BaseForDocComments-class.html#constructors">Constructors</a></li>
       <li><a href="fake/BaseForDocComments/BaseForDocComments.html">BaseForDocComments</a></li>
     
-      <li class="section-title inherited">
+      <li class="section-title">
         <a href="fake/BaseForDocComments-class.html#instance-properties">Properties</a>
       </li>
+      <li><a href="fake/BaseForDocComments/getterWithDocs.html">getterWithDocs</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
     
diff --git a/testing/test_package_docs/fake/BaseForDocComments/BaseForDocComments.html b/testing/test_package_docs/fake/BaseForDocComments/BaseForDocComments.html
index 1eed7c9..9e88d0d 100644
--- a/testing/test_package_docs/fake/BaseForDocComments/BaseForDocComments.html
+++ b/testing/test_package_docs/fake/BaseForDocComments/BaseForDocComments.html
@@ -42,9 +42,10 @@
       <li class="section-title"><a href="fake/BaseForDocComments-class.html#constructors">Constructors</a></li>
       <li><a href="fake/BaseForDocComments/BaseForDocComments.html">BaseForDocComments</a></li>
     
-      <li class="section-title inherited">
+      <li class="section-title">
         <a href="fake/BaseForDocComments-class.html#instance-properties">Properties</a>
       </li>
+      <li><a href="fake/BaseForDocComments/getterWithDocs.html">getterWithDocs</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
     
diff --git a/testing/test_package_docs/fake/BaseForDocComments/anotherMethod.html b/testing/test_package_docs/fake/BaseForDocComments/anotherMethod.html
index 627f089..4c826a3 100644
--- a/testing/test_package_docs/fake/BaseForDocComments/anotherMethod.html
+++ b/testing/test_package_docs/fake/BaseForDocComments/anotherMethod.html
@@ -42,9 +42,10 @@
       <li class="section-title"><a href="fake/BaseForDocComments-class.html#constructors">Constructors</a></li>
       <li><a href="fake/BaseForDocComments/BaseForDocComments.html">BaseForDocComments</a></li>
     
-      <li class="section-title inherited">
+      <li class="section-title">
         <a href="fake/BaseForDocComments-class.html#instance-properties">Properties</a>
       </li>
+      <li><a href="fake/BaseForDocComments/getterWithDocs.html">getterWithDocs</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
     
diff --git a/testing/test_package_docs/fake/BaseForDocComments/doAwesomeStuff.html b/testing/test_package_docs/fake/BaseForDocComments/doAwesomeStuff.html
index 35c1672..2532a58 100644
--- a/testing/test_package_docs/fake/BaseForDocComments/doAwesomeStuff.html
+++ b/testing/test_package_docs/fake/BaseForDocComments/doAwesomeStuff.html
@@ -42,9 +42,10 @@
       <li class="section-title"><a href="fake/BaseForDocComments-class.html#constructors">Constructors</a></li>
       <li><a href="fake/BaseForDocComments/BaseForDocComments.html">BaseForDocComments</a></li>
     
-      <li class="section-title inherited">
+      <li class="section-title">
         <a href="fake/BaseForDocComments-class.html#instance-properties">Properties</a>
       </li>
+      <li><a href="fake/BaseForDocComments/getterWithDocs.html">getterWithDocs</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
     
diff --git a/testing/test_package_docs/fake/BaseForDocComments/getterWithDocs.html b/testing/test_package_docs/fake/BaseForDocComments/getterWithDocs.html
new file mode 100644
index 0000000..bacca00
--- /dev/null
+++ b/testing/test_package_docs/fake/BaseForDocComments/getterWithDocs.html
@@ -0,0 +1,108 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+  <meta charset="utf-8">
+  <meta http-equiv="X-UA-Compatible" content="IE=edge">
+  <meta name="viewport" content="width=device-width, initial-scale=1">
+  <meta name="description" content="API docs for the getterWithDocs property from the BaseForDocComments class, for the Dart programming language.">
+  <title>getterWithDocs property - BaseForDocComments class - fake library - Dart API</title>
+  <!-- required because all the links are pseudo-absolute -->
+  <base href="../..">
+
+  <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
+  <link rel="stylesheet" href="static-assets/github.css">
+  <link rel="stylesheet" href="static-assets/styles.css">
+  <link rel="icon" href="static-assets/favicon.png">
+
+</head>
+
+<body>
+
+<div id="overlay-under-drawer"></div>
+
+<header id="title">
+  <button id="sidenav-left-toggle" type="button">&nbsp;</button>
+  <ol class="breadcrumbs gt-separated dark hidden-xs">
+    <li><a href="index.html">test_package</a></li>
+    <li><a href="fake/fake-library.html">fake</a></li>
+    <li><a href="fake/BaseForDocComments-class.html">BaseForDocComments</a></li>
+    <li class="self-crumb">getterWithDocs property</li>
+  </ol>
+  <div class="self-name">getterWithDocs</div>
+  <form class="search navbar-right" role="search">
+    <input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
+  </form>
+</header>
+
+<main>
+
+  <div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
+    <h5>BaseForDocComments class</h5>
+    <ol>
+      <li class="section-title"><a href="fake/BaseForDocComments-class.html#constructors">Constructors</a></li>
+      <li><a href="fake/BaseForDocComments/BaseForDocComments.html">BaseForDocComments</a></li>
+    
+      <li class="section-title">
+        <a href="fake/BaseForDocComments-class.html#instance-properties">Properties</a>
+      </li>
+      <li><a href="fake/BaseForDocComments/getterWithDocs.html">getterWithDocs</a></li>
+      <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
+      <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
+    
+      <li class="section-title"><a href="fake/BaseForDocComments-class.html#instance-methods">Methods</a></li>
+      <li><a href="fake/BaseForDocComments/anotherMethod.html">anotherMethod</a></li>
+      <li><a href="fake/BaseForDocComments/doAwesomeStuff.html">doAwesomeStuff</a></li>
+      <li class="inherited"><a href="fake/BaseForDocComments/noSuchMethod.html">noSuchMethod</a></li>
+      <li class="inherited"><a href="fake/BaseForDocComments/toString.html">toString</a></li>
+    
+      <li class="section-title"><a href="fake/BaseForDocComments-class.html#operators">Operators</a></li>
+      <li><a href="fake/BaseForDocComments/operator_get.html">operator []</a></li>
+      <li class="inherited"><a href="fake/BaseForDocComments/operator_equals.html">operator ==</a></li>
+    
+    
+    
+    </ol>
+  </div><!--/.sidebar-offcanvas-->
+
+  <div class="col-xs-12 col-sm-9 col-md-8 main-content">
+    <h1>getterWithDocs property</h1>
+
+
+        <section id="getter">
+        
+        <section class="multi-line-signature">
+          <span class="returntype">bool</span>
+          <span class="name ">getterWithDocs</span>
+  
+</section>
+        
+        <section class="desc markdown">
+  <p>Some really great topics.</p>
+</section>
+
+</section>
+        
+  </div> <!-- /.main-content -->
+
+  <div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
+  </div><!--/.sidebar-offcanvas-->
+
+</main>
+
+<footer>
+  <span class="no-break">
+    test_package 0.0.1
+  </span>
+
+</footer>
+
+<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
+<script src="static-assets/typeahead.bundle.min.js"></script>
+<script src="static-assets/highlight.pack.js"></script>
+<script src="static-assets/URI.js"></script>
+<script src="static-assets/script.js"></script>
+
+
+</body>
+
+</html>
diff --git a/testing/test_package_docs/fake/BaseForDocComments/hashCode.html b/testing/test_package_docs/fake/BaseForDocComments/hashCode.html
index 523f8a5..b777c67 100644
--- a/testing/test_package_docs/fake/BaseForDocComments/hashCode.html
+++ b/testing/test_package_docs/fake/BaseForDocComments/hashCode.html
@@ -42,9 +42,10 @@
       <li class="section-title"><a href="fake/BaseForDocComments-class.html#constructors">Constructors</a></li>
       <li><a href="fake/BaseForDocComments/BaseForDocComments.html">BaseForDocComments</a></li>
     
-      <li class="section-title inherited">
+      <li class="section-title">
         <a href="fake/BaseForDocComments-class.html#instance-properties">Properties</a>
       </li>
+      <li><a href="fake/BaseForDocComments/getterWithDocs.html">getterWithDocs</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
     
diff --git a/testing/test_package_docs/fake/BaseForDocComments/noSuchMethod.html b/testing/test_package_docs/fake/BaseForDocComments/noSuchMethod.html
index f013070..d32ba1e 100644
--- a/testing/test_package_docs/fake/BaseForDocComments/noSuchMethod.html
+++ b/testing/test_package_docs/fake/BaseForDocComments/noSuchMethod.html
@@ -42,9 +42,10 @@
       <li class="section-title"><a href="fake/BaseForDocComments-class.html#constructors">Constructors</a></li>
       <li><a href="fake/BaseForDocComments/BaseForDocComments.html">BaseForDocComments</a></li>
     
-      <li class="section-title inherited">
+      <li class="section-title">
         <a href="fake/BaseForDocComments-class.html#instance-properties">Properties</a>
       </li>
+      <li><a href="fake/BaseForDocComments/getterWithDocs.html">getterWithDocs</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
     
diff --git a/testing/test_package_docs/fake/BaseForDocComments/operator_equals.html b/testing/test_package_docs/fake/BaseForDocComments/operator_equals.html
index 667a0fa..39f6043 100644
--- a/testing/test_package_docs/fake/BaseForDocComments/operator_equals.html
+++ b/testing/test_package_docs/fake/BaseForDocComments/operator_equals.html
@@ -42,9 +42,10 @@
       <li class="section-title"><a href="fake/BaseForDocComments-class.html#constructors">Constructors</a></li>
       <li><a href="fake/BaseForDocComments/BaseForDocComments.html">BaseForDocComments</a></li>
     
-      <li class="section-title inherited">
+      <li class="section-title">
         <a href="fake/BaseForDocComments-class.html#instance-properties">Properties</a>
       </li>
+      <li><a href="fake/BaseForDocComments/getterWithDocs.html">getterWithDocs</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
     
diff --git a/testing/test_package_docs/fake/BaseForDocComments/operator_get.html b/testing/test_package_docs/fake/BaseForDocComments/operator_get.html
index a0ebd93..f26b3f7 100644
--- a/testing/test_package_docs/fake/BaseForDocComments/operator_get.html
+++ b/testing/test_package_docs/fake/BaseForDocComments/operator_get.html
@@ -42,9 +42,10 @@
       <li class="section-title"><a href="fake/BaseForDocComments-class.html#constructors">Constructors</a></li>
       <li><a href="fake/BaseForDocComments/BaseForDocComments.html">BaseForDocComments</a></li>
     
-      <li class="section-title inherited">
+      <li class="section-title">
         <a href="fake/BaseForDocComments-class.html#instance-properties">Properties</a>
       </li>
+      <li><a href="fake/BaseForDocComments/getterWithDocs.html">getterWithDocs</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
     
diff --git a/testing/test_package_docs/fake/BaseForDocComments/runtimeType.html b/testing/test_package_docs/fake/BaseForDocComments/runtimeType.html
index 296e060..0bedbf4 100644
--- a/testing/test_package_docs/fake/BaseForDocComments/runtimeType.html
+++ b/testing/test_package_docs/fake/BaseForDocComments/runtimeType.html
@@ -42,9 +42,10 @@
       <li class="section-title"><a href="fake/BaseForDocComments-class.html#constructors">Constructors</a></li>
       <li><a href="fake/BaseForDocComments/BaseForDocComments.html">BaseForDocComments</a></li>
     
-      <li class="section-title inherited">
+      <li class="section-title">
         <a href="fake/BaseForDocComments-class.html#instance-properties">Properties</a>
       </li>
+      <li><a href="fake/BaseForDocComments/getterWithDocs.html">getterWithDocs</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
     
diff --git a/testing/test_package_docs/fake/BaseForDocComments/toString.html b/testing/test_package_docs/fake/BaseForDocComments/toString.html
index a46a399..0e905d7 100644
--- a/testing/test_package_docs/fake/BaseForDocComments/toString.html
+++ b/testing/test_package_docs/fake/BaseForDocComments/toString.html
@@ -42,9 +42,10 @@
       <li class="section-title"><a href="fake/BaseForDocComments-class.html#constructors">Constructors</a></li>
       <li><a href="fake/BaseForDocComments/BaseForDocComments.html">BaseForDocComments</a></li>
     
-      <li class="section-title inherited">
+      <li class="section-title">
         <a href="fake/BaseForDocComments-class.html#instance-properties">Properties</a>
       </li>
+      <li><a href="fake/BaseForDocComments/getterWithDocs.html">getterWithDocs</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
     
diff --git a/testing/test_package_docs/fake/SubForDocComments-class.html b/testing/test_package_docs/fake/SubForDocComments-class.html
index 9292731..9c1dd6c 100644
--- a/testing/test_package_docs/fake/SubForDocComments-class.html
+++ b/testing/test_package_docs/fake/SubForDocComments-class.html
@@ -203,10 +203,18 @@
       </dl>
     </section>
 
-    <section class="summary offset-anchor inherited" id="instance-properties">
+    <section class="summary offset-anchor" id="instance-properties">
       <h2>Properties</h2>
 
       <dl class="properties">
+        <dt id="getterWithDocs" class="property">
+          <span class="name"><a href="fake/SubForDocComments/getterWithDocs.html">getterWithDocs</a></span>
+          <span class="signature">&#8594; bool</span> 
+        </dt>
+        <dd>
+          Some really great topics.
+          <div class="features">final</div>
+</dd>
         <dt id="hashCode" class="property inherited">
           <span class="name"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></span>
           <span class="signature">&#8594; int</span> 
@@ -311,9 +319,10 @@
       <li class="section-title"><a href="fake/SubForDocComments-class.html#constructors">Constructors</a></li>
       <li><a href="fake/SubForDocComments/SubForDocComments.html">SubForDocComments</a></li>
     
-      <li class="section-title inherited">
+      <li class="section-title">
         <a href="fake/SubForDocComments-class.html#instance-properties">Properties</a>
       </li>
+      <li><a href="fake/SubForDocComments/getterWithDocs.html">getterWithDocs</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
     
diff --git a/testing/test_package_docs/fake/SubForDocComments/SubForDocComments.html b/testing/test_package_docs/fake/SubForDocComments/SubForDocComments.html
index c01f9b5..e15cdb4 100644
--- a/testing/test_package_docs/fake/SubForDocComments/SubForDocComments.html
+++ b/testing/test_package_docs/fake/SubForDocComments/SubForDocComments.html
@@ -42,9 +42,10 @@
       <li class="section-title"><a href="fake/SubForDocComments-class.html#constructors">Constructors</a></li>
       <li><a href="fake/SubForDocComments/SubForDocComments.html">SubForDocComments</a></li>
     
-      <li class="section-title inherited">
+      <li class="section-title">
         <a href="fake/SubForDocComments-class.html#instance-properties">Properties</a>
       </li>
+      <li><a href="fake/SubForDocComments/getterWithDocs.html">getterWithDocs</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
     
diff --git a/testing/test_package_docs/fake/SubForDocComments/getterWithDocs.html b/testing/test_package_docs/fake/SubForDocComments/getterWithDocs.html
new file mode 100644
index 0000000..94a63aa
--- /dev/null
+++ b/testing/test_package_docs/fake/SubForDocComments/getterWithDocs.html
@@ -0,0 +1,104 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+  <meta charset="utf-8">
+  <meta http-equiv="X-UA-Compatible" content="IE=edge">
+  <meta name="viewport" content="width=device-width, initial-scale=1">
+  <meta name="description" content="API docs for the getterWithDocs property from the SubForDocComments class, for the Dart programming language.">
+  <title>getterWithDocs property - SubForDocComments class - fake library - Dart API</title>
+  <!-- required because all the links are pseudo-absolute -->
+  <base href="../..">
+
+  <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
+  <link rel="stylesheet" href="static-assets/github.css">
+  <link rel="stylesheet" href="static-assets/styles.css">
+  <link rel="icon" href="static-assets/favicon.png">
+
+</head>
+
+<body>
+
+<div id="overlay-under-drawer"></div>
+
+<header id="title">
+  <button id="sidenav-left-toggle" type="button">&nbsp;</button>
+  <ol class="breadcrumbs gt-separated dark hidden-xs">
+    <li><a href="index.html">test_package</a></li>
+    <li><a href="fake/fake-library.html">fake</a></li>
+    <li><a href="fake/SubForDocComments-class.html">SubForDocComments</a></li>
+    <li class="self-crumb">getterWithDocs property</li>
+  </ol>
+  <div class="self-name">getterWithDocs</div>
+  <form class="search navbar-right" role="search">
+    <input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
+  </form>
+</header>
+
+<main>
+
+  <div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
+    <h5>SubForDocComments class</h5>
+    <ol>
+      <li class="section-title"><a href="fake/SubForDocComments-class.html#constructors">Constructors</a></li>
+      <li><a href="fake/SubForDocComments/SubForDocComments.html">SubForDocComments</a></li>
+    
+      <li class="section-title">
+        <a href="fake/SubForDocComments-class.html#instance-properties">Properties</a>
+      </li>
+      <li><a href="fake/SubForDocComments/getterWithDocs.html">getterWithDocs</a></li>
+      <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
+      <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
+    
+      <li class="section-title"><a href="fake/SubForDocComments-class.html#instance-methods">Methods</a></li>
+      <li><a href="fake/SubForDocComments/localMethod.html">localMethod</a></li>
+      <li class="inherited"><a href="fake/BaseForDocComments/anotherMethod.html">anotherMethod</a></li>
+      <li class="inherited"><a href="fake/BaseForDocComments/doAwesomeStuff.html">doAwesomeStuff</a></li>
+      <li class="inherited"><a href="fake/BaseForDocComments/noSuchMethod.html">noSuchMethod</a></li>
+      <li class="inherited"><a href="fake/BaseForDocComments/toString.html">toString</a></li>
+    
+      <li class="section-title inherited"><a href="fake/SubForDocComments-class.html#operators">Operators</a></li>
+      <li class="inherited"><a href="fake/BaseForDocComments/operator_equals.html">operator ==</a></li>
+      <li class="inherited"><a href="fake/BaseForDocComments/operator_get.html">operator []</a></li>
+    
+    
+    
+    </ol>
+  </div><!--/.sidebar-offcanvas-->
+
+  <div class="col-xs-12 col-sm-9 col-md-8 main-content">
+    <h1>getterWithDocs property</h1>
+
+        <section class="multi-line-signature">
+          <span class="returntype">bool</span>
+          <span class="name ">getterWithDocs</span>
+          <div class="features">final</div>
+        </section>
+        <section class="desc markdown">
+          <p>Some really great topics.</p>
+        </section>
+                
+
+  </div> <!-- /.main-content -->
+
+  <div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
+  </div><!--/.sidebar-offcanvas-->
+
+</main>
+
+<footer>
+  <span class="no-break">
+    test_package 0.0.1
+  </span>
+
+</footer>
+
+<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
+<script src="static-assets/typeahead.bundle.min.js"></script>
+<script src="static-assets/highlight.pack.js"></script>
+<script src="static-assets/URI.js"></script>
+<script src="static-assets/script.js"></script>
+
+
+</body>
+
+</html>
diff --git a/testing/test_package_docs/fake/SubForDocComments/localMethod.html b/testing/test_package_docs/fake/SubForDocComments/localMethod.html
index f682cac..33012e4 100644
--- a/testing/test_package_docs/fake/SubForDocComments/localMethod.html
+++ b/testing/test_package_docs/fake/SubForDocComments/localMethod.html
@@ -42,9 +42,10 @@
       <li class="section-title"><a href="fake/SubForDocComments-class.html#constructors">Constructors</a></li>
       <li><a href="fake/SubForDocComments/SubForDocComments.html">SubForDocComments</a></li>
     
-      <li class="section-title inherited">
+      <li class="section-title">
         <a href="fake/SubForDocComments-class.html#instance-properties">Properties</a>
       </li>
+      <li><a href="fake/SubForDocComments/getterWithDocs.html">getterWithDocs</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
     
diff --git a/testing/test_package_docs/index.json b/testing/test_package_docs/index.json
index 4eef96b..03ff01a 100644
--- a/testing/test_package_docs/index.json
+++ b/testing/test_package_docs/index.json
@@ -4529,6 +4529,17 @@
   }
  },
  {
+  "name": "getterWithDocs",
+  "qualifiedName": "fake.BaseForDocComments.getterWithDocs",
+  "href": "fake/BaseForDocComments/getterWithDocs.html",
+  "type": "property",
+  "overriddenDepth": 0,
+  "enclosedBy": {
+   "name": "BaseForDocComments",
+   "type": "class"
+  }
+ },
+ {
   "name": "hashCode",
   "qualifiedName": "fake.BaseForDocComments.hashCode",
   "href": "fake/BaseForDocComments/hashCode.html",
@@ -8665,6 +8676,17 @@
   }
  },
  {
+  "name": "getterWithDocs",
+  "qualifiedName": "fake.SubForDocComments.getterWithDocs",
+  "href": "fake/SubForDocComments/getterWithDocs.html",
+  "type": "property",
+  "overriddenDepth": 0,
+  "enclosedBy": {
+   "name": "SubForDocComments",
+   "type": "class"
+  }
+ },
+ {
   "name": "localMethod",
   "qualifiedName": "fake.SubForDocComments.localMethod",
   "href": "fake/SubForDocComments/localMethod.html",
diff --git a/testing/test_package_docs_dev/fake/BaseForDocComments-class.html b/testing/test_package_docs_dev/fake/BaseForDocComments-class.html
index 41a4d42..a5d7f0b 100644
--- a/testing/test_package_docs_dev/fake/BaseForDocComments-class.html
+++ b/testing/test_package_docs_dev/fake/BaseForDocComments-class.html
@@ -203,10 +203,18 @@
       </dl>
     </section>
 
-    <section class="summary offset-anchor inherited" id="instance-properties">
+    <section class="summary offset-anchor" id="instance-properties">
       <h2>Properties</h2>
 
       <dl class="properties">
+        <dt id="getterWithDocs" class="property">
+          <span class="name"><a href="fake/BaseForDocComments/getterWithDocs.html">getterWithDocs</a></span>
+          <span class="signature">&#8594; bool</span> 
+        </dt>
+        <dd>
+          Some really great topics.
+          <div class="features">read-only</div>
+</dd>
         <dt id="hashCode" class="property inherited">
           <span class="name"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></span>
           <span class="signature">&#8594; int</span> 
@@ -302,9 +310,10 @@
       <li class="section-title"><a href="fake/BaseForDocComments-class.html#constructors">Constructors</a></li>
       <li><a href="fake/BaseForDocComments/BaseForDocComments.html">BaseForDocComments</a></li>
     
-      <li class="section-title inherited">
+      <li class="section-title">
         <a href="fake/BaseForDocComments-class.html#instance-properties">Properties</a>
       </li>
+      <li><a href="fake/BaseForDocComments/getterWithDocs.html">getterWithDocs</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
     
diff --git a/testing/test_package_docs_dev/fake/BaseForDocComments/BaseForDocComments.html b/testing/test_package_docs_dev/fake/BaseForDocComments/BaseForDocComments.html
index 1eed7c9..9e88d0d 100644
--- a/testing/test_package_docs_dev/fake/BaseForDocComments/BaseForDocComments.html
+++ b/testing/test_package_docs_dev/fake/BaseForDocComments/BaseForDocComments.html
@@ -42,9 +42,10 @@
       <li class="section-title"><a href="fake/BaseForDocComments-class.html#constructors">Constructors</a></li>
       <li><a href="fake/BaseForDocComments/BaseForDocComments.html">BaseForDocComments</a></li>
     
-      <li class="section-title inherited">
+      <li class="section-title">
         <a href="fake/BaseForDocComments-class.html#instance-properties">Properties</a>
       </li>
+      <li><a href="fake/BaseForDocComments/getterWithDocs.html">getterWithDocs</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
     
diff --git a/testing/test_package_docs_dev/fake/BaseForDocComments/anotherMethod.html b/testing/test_package_docs_dev/fake/BaseForDocComments/anotherMethod.html
index 627f089..4c826a3 100644
--- a/testing/test_package_docs_dev/fake/BaseForDocComments/anotherMethod.html
+++ b/testing/test_package_docs_dev/fake/BaseForDocComments/anotherMethod.html
@@ -42,9 +42,10 @@
       <li class="section-title"><a href="fake/BaseForDocComments-class.html#constructors">Constructors</a></li>
       <li><a href="fake/BaseForDocComments/BaseForDocComments.html">BaseForDocComments</a></li>
     
-      <li class="section-title inherited">
+      <li class="section-title">
         <a href="fake/BaseForDocComments-class.html#instance-properties">Properties</a>
       </li>
+      <li><a href="fake/BaseForDocComments/getterWithDocs.html">getterWithDocs</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
     
diff --git a/testing/test_package_docs_dev/fake/BaseForDocComments/doAwesomeStuff.html b/testing/test_package_docs_dev/fake/BaseForDocComments/doAwesomeStuff.html
index 35c1672..2532a58 100644
--- a/testing/test_package_docs_dev/fake/BaseForDocComments/doAwesomeStuff.html
+++ b/testing/test_package_docs_dev/fake/BaseForDocComments/doAwesomeStuff.html
@@ -42,9 +42,10 @@
       <li class="section-title"><a href="fake/BaseForDocComments-class.html#constructors">Constructors</a></li>
       <li><a href="fake/BaseForDocComments/BaseForDocComments.html">BaseForDocComments</a></li>
     
-      <li class="section-title inherited">
+      <li class="section-title">
         <a href="fake/BaseForDocComments-class.html#instance-properties">Properties</a>
       </li>
+      <li><a href="fake/BaseForDocComments/getterWithDocs.html">getterWithDocs</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
     
diff --git a/testing/test_package_docs_dev/fake/BaseForDocComments/getterWithDocs.html b/testing/test_package_docs_dev/fake/BaseForDocComments/getterWithDocs.html
new file mode 100644
index 0000000..bacca00
--- /dev/null
+++ b/testing/test_package_docs_dev/fake/BaseForDocComments/getterWithDocs.html
@@ -0,0 +1,108 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+  <meta charset="utf-8">
+  <meta http-equiv="X-UA-Compatible" content="IE=edge">
+  <meta name="viewport" content="width=device-width, initial-scale=1">
+  <meta name="description" content="API docs for the getterWithDocs property from the BaseForDocComments class, for the Dart programming language.">
+  <title>getterWithDocs property - BaseForDocComments class - fake library - Dart API</title>
+  <!-- required because all the links are pseudo-absolute -->
+  <base href="../..">
+
+  <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
+  <link rel="stylesheet" href="static-assets/github.css">
+  <link rel="stylesheet" href="static-assets/styles.css">
+  <link rel="icon" href="static-assets/favicon.png">
+
+</head>
+
+<body>
+
+<div id="overlay-under-drawer"></div>
+
+<header id="title">
+  <button id="sidenav-left-toggle" type="button">&nbsp;</button>
+  <ol class="breadcrumbs gt-separated dark hidden-xs">
+    <li><a href="index.html">test_package</a></li>
+    <li><a href="fake/fake-library.html">fake</a></li>
+    <li><a href="fake/BaseForDocComments-class.html">BaseForDocComments</a></li>
+    <li class="self-crumb">getterWithDocs property</li>
+  </ol>
+  <div class="self-name">getterWithDocs</div>
+  <form class="search navbar-right" role="search">
+    <input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
+  </form>
+</header>
+
+<main>
+
+  <div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
+    <h5>BaseForDocComments class</h5>
+    <ol>
+      <li class="section-title"><a href="fake/BaseForDocComments-class.html#constructors">Constructors</a></li>
+      <li><a href="fake/BaseForDocComments/BaseForDocComments.html">BaseForDocComments</a></li>
+    
+      <li class="section-title">
+        <a href="fake/BaseForDocComments-class.html#instance-properties">Properties</a>
+      </li>
+      <li><a href="fake/BaseForDocComments/getterWithDocs.html">getterWithDocs</a></li>
+      <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
+      <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
+    
+      <li class="section-title"><a href="fake/BaseForDocComments-class.html#instance-methods">Methods</a></li>
+      <li><a href="fake/BaseForDocComments/anotherMethod.html">anotherMethod</a></li>
+      <li><a href="fake/BaseForDocComments/doAwesomeStuff.html">doAwesomeStuff</a></li>
+      <li class="inherited"><a href="fake/BaseForDocComments/noSuchMethod.html">noSuchMethod</a></li>
+      <li class="inherited"><a href="fake/BaseForDocComments/toString.html">toString</a></li>
+    
+      <li class="section-title"><a href="fake/BaseForDocComments-class.html#operators">Operators</a></li>
+      <li><a href="fake/BaseForDocComments/operator_get.html">operator []</a></li>
+      <li class="inherited"><a href="fake/BaseForDocComments/operator_equals.html">operator ==</a></li>
+    
+    
+    
+    </ol>
+  </div><!--/.sidebar-offcanvas-->
+
+  <div class="col-xs-12 col-sm-9 col-md-8 main-content">
+    <h1>getterWithDocs property</h1>
+
+
+        <section id="getter">
+        
+        <section class="multi-line-signature">
+          <span class="returntype">bool</span>
+          <span class="name ">getterWithDocs</span>
+  
+</section>
+        
+        <section class="desc markdown">
+  <p>Some really great topics.</p>
+</section>
+
+</section>
+        
+  </div> <!-- /.main-content -->
+
+  <div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
+  </div><!--/.sidebar-offcanvas-->
+
+</main>
+
+<footer>
+  <span class="no-break">
+    test_package 0.0.1
+  </span>
+
+</footer>
+
+<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
+<script src="static-assets/typeahead.bundle.min.js"></script>
+<script src="static-assets/highlight.pack.js"></script>
+<script src="static-assets/URI.js"></script>
+<script src="static-assets/script.js"></script>
+
+
+</body>
+
+</html>
diff --git a/testing/test_package_docs_dev/fake/BaseForDocComments/hashCode.html b/testing/test_package_docs_dev/fake/BaseForDocComments/hashCode.html
index 523f8a5..b777c67 100644
--- a/testing/test_package_docs_dev/fake/BaseForDocComments/hashCode.html
+++ b/testing/test_package_docs_dev/fake/BaseForDocComments/hashCode.html
@@ -42,9 +42,10 @@
       <li class="section-title"><a href="fake/BaseForDocComments-class.html#constructors">Constructors</a></li>
       <li><a href="fake/BaseForDocComments/BaseForDocComments.html">BaseForDocComments</a></li>
     
-      <li class="section-title inherited">
+      <li class="section-title">
         <a href="fake/BaseForDocComments-class.html#instance-properties">Properties</a>
       </li>
+      <li><a href="fake/BaseForDocComments/getterWithDocs.html">getterWithDocs</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
     
diff --git a/testing/test_package_docs_dev/fake/BaseForDocComments/noSuchMethod.html b/testing/test_package_docs_dev/fake/BaseForDocComments/noSuchMethod.html
index f013070..d32ba1e 100644
--- a/testing/test_package_docs_dev/fake/BaseForDocComments/noSuchMethod.html
+++ b/testing/test_package_docs_dev/fake/BaseForDocComments/noSuchMethod.html
@@ -42,9 +42,10 @@
       <li class="section-title"><a href="fake/BaseForDocComments-class.html#constructors">Constructors</a></li>
       <li><a href="fake/BaseForDocComments/BaseForDocComments.html">BaseForDocComments</a></li>
     
-      <li class="section-title inherited">
+      <li class="section-title">
         <a href="fake/BaseForDocComments-class.html#instance-properties">Properties</a>
       </li>
+      <li><a href="fake/BaseForDocComments/getterWithDocs.html">getterWithDocs</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
     
diff --git a/testing/test_package_docs_dev/fake/BaseForDocComments/operator_equals.html b/testing/test_package_docs_dev/fake/BaseForDocComments/operator_equals.html
index 667a0fa..39f6043 100644
--- a/testing/test_package_docs_dev/fake/BaseForDocComments/operator_equals.html
+++ b/testing/test_package_docs_dev/fake/BaseForDocComments/operator_equals.html
@@ -42,9 +42,10 @@
       <li class="section-title"><a href="fake/BaseForDocComments-class.html#constructors">Constructors</a></li>
       <li><a href="fake/BaseForDocComments/BaseForDocComments.html">BaseForDocComments</a></li>
     
-      <li class="section-title inherited">
+      <li class="section-title">
         <a href="fake/BaseForDocComments-class.html#instance-properties">Properties</a>
       </li>
+      <li><a href="fake/BaseForDocComments/getterWithDocs.html">getterWithDocs</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
     
diff --git a/testing/test_package_docs_dev/fake/BaseForDocComments/operator_get.html b/testing/test_package_docs_dev/fake/BaseForDocComments/operator_get.html
index a0ebd93..f26b3f7 100644
--- a/testing/test_package_docs_dev/fake/BaseForDocComments/operator_get.html
+++ b/testing/test_package_docs_dev/fake/BaseForDocComments/operator_get.html
@@ -42,9 +42,10 @@
       <li class="section-title"><a href="fake/BaseForDocComments-class.html#constructors">Constructors</a></li>
       <li><a href="fake/BaseForDocComments/BaseForDocComments.html">BaseForDocComments</a></li>
     
-      <li class="section-title inherited">
+      <li class="section-title">
         <a href="fake/BaseForDocComments-class.html#instance-properties">Properties</a>
       </li>
+      <li><a href="fake/BaseForDocComments/getterWithDocs.html">getterWithDocs</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
     
diff --git a/testing/test_package_docs_dev/fake/BaseForDocComments/runtimeType.html b/testing/test_package_docs_dev/fake/BaseForDocComments/runtimeType.html
index 296e060..0bedbf4 100644
--- a/testing/test_package_docs_dev/fake/BaseForDocComments/runtimeType.html
+++ b/testing/test_package_docs_dev/fake/BaseForDocComments/runtimeType.html
@@ -42,9 +42,10 @@
       <li class="section-title"><a href="fake/BaseForDocComments-class.html#constructors">Constructors</a></li>
       <li><a href="fake/BaseForDocComments/BaseForDocComments.html">BaseForDocComments</a></li>
     
-      <li class="section-title inherited">
+      <li class="section-title">
         <a href="fake/BaseForDocComments-class.html#instance-properties">Properties</a>
       </li>
+      <li><a href="fake/BaseForDocComments/getterWithDocs.html">getterWithDocs</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
     
diff --git a/testing/test_package_docs_dev/fake/BaseForDocComments/toString.html b/testing/test_package_docs_dev/fake/BaseForDocComments/toString.html
index a46a399..0e905d7 100644
--- a/testing/test_package_docs_dev/fake/BaseForDocComments/toString.html
+++ b/testing/test_package_docs_dev/fake/BaseForDocComments/toString.html
@@ -42,9 +42,10 @@
       <li class="section-title"><a href="fake/BaseForDocComments-class.html#constructors">Constructors</a></li>
       <li><a href="fake/BaseForDocComments/BaseForDocComments.html">BaseForDocComments</a></li>
     
-      <li class="section-title inherited">
+      <li class="section-title">
         <a href="fake/BaseForDocComments-class.html#instance-properties">Properties</a>
       </li>
+      <li><a href="fake/BaseForDocComments/getterWithDocs.html">getterWithDocs</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
     
diff --git a/testing/test_package_docs_dev/fake/SubForDocComments-class.html b/testing/test_package_docs_dev/fake/SubForDocComments-class.html
index 9292731..9c1dd6c 100644
--- a/testing/test_package_docs_dev/fake/SubForDocComments-class.html
+++ b/testing/test_package_docs_dev/fake/SubForDocComments-class.html
@@ -203,10 +203,18 @@
       </dl>
     </section>
 
-    <section class="summary offset-anchor inherited" id="instance-properties">
+    <section class="summary offset-anchor" id="instance-properties">
       <h2>Properties</h2>
 
       <dl class="properties">
+        <dt id="getterWithDocs" class="property">
+          <span class="name"><a href="fake/SubForDocComments/getterWithDocs.html">getterWithDocs</a></span>
+          <span class="signature">&#8594; bool</span> 
+        </dt>
+        <dd>
+          Some really great topics.
+          <div class="features">final</div>
+</dd>
         <dt id="hashCode" class="property inherited">
           <span class="name"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></span>
           <span class="signature">&#8594; int</span> 
@@ -311,9 +319,10 @@
       <li class="section-title"><a href="fake/SubForDocComments-class.html#constructors">Constructors</a></li>
       <li><a href="fake/SubForDocComments/SubForDocComments.html">SubForDocComments</a></li>
     
-      <li class="section-title inherited">
+      <li class="section-title">
         <a href="fake/SubForDocComments-class.html#instance-properties">Properties</a>
       </li>
+      <li><a href="fake/SubForDocComments/getterWithDocs.html">getterWithDocs</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
     
diff --git a/testing/test_package_docs_dev/fake/SubForDocComments/SubForDocComments.html b/testing/test_package_docs_dev/fake/SubForDocComments/SubForDocComments.html
index c01f9b5..e15cdb4 100644
--- a/testing/test_package_docs_dev/fake/SubForDocComments/SubForDocComments.html
+++ b/testing/test_package_docs_dev/fake/SubForDocComments/SubForDocComments.html
@@ -42,9 +42,10 @@
       <li class="section-title"><a href="fake/SubForDocComments-class.html#constructors">Constructors</a></li>
       <li><a href="fake/SubForDocComments/SubForDocComments.html">SubForDocComments</a></li>
     
-      <li class="section-title inherited">
+      <li class="section-title">
         <a href="fake/SubForDocComments-class.html#instance-properties">Properties</a>
       </li>
+      <li><a href="fake/SubForDocComments/getterWithDocs.html">getterWithDocs</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
     
diff --git a/testing/test_package_docs_dev/fake/SubForDocComments/getterWithDocs.html b/testing/test_package_docs_dev/fake/SubForDocComments/getterWithDocs.html
new file mode 100644
index 0000000..94a63aa
--- /dev/null
+++ b/testing/test_package_docs_dev/fake/SubForDocComments/getterWithDocs.html
@@ -0,0 +1,104 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+  <meta charset="utf-8">
+  <meta http-equiv="X-UA-Compatible" content="IE=edge">
+  <meta name="viewport" content="width=device-width, initial-scale=1">
+  <meta name="description" content="API docs for the getterWithDocs property from the SubForDocComments class, for the Dart programming language.">
+  <title>getterWithDocs property - SubForDocComments class - fake library - Dart API</title>
+  <!-- required because all the links are pseudo-absolute -->
+  <base href="../..">
+
+  <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
+  <link rel="stylesheet" href="static-assets/github.css">
+  <link rel="stylesheet" href="static-assets/styles.css">
+  <link rel="icon" href="static-assets/favicon.png">
+
+</head>
+
+<body>
+
+<div id="overlay-under-drawer"></div>
+
+<header id="title">
+  <button id="sidenav-left-toggle" type="button">&nbsp;</button>
+  <ol class="breadcrumbs gt-separated dark hidden-xs">
+    <li><a href="index.html">test_package</a></li>
+    <li><a href="fake/fake-library.html">fake</a></li>
+    <li><a href="fake/SubForDocComments-class.html">SubForDocComments</a></li>
+    <li class="self-crumb">getterWithDocs property</li>
+  </ol>
+  <div class="self-name">getterWithDocs</div>
+  <form class="search navbar-right" role="search">
+    <input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
+  </form>
+</header>
+
+<main>
+
+  <div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
+    <h5>SubForDocComments class</h5>
+    <ol>
+      <li class="section-title"><a href="fake/SubForDocComments-class.html#constructors">Constructors</a></li>
+      <li><a href="fake/SubForDocComments/SubForDocComments.html">SubForDocComments</a></li>
+    
+      <li class="section-title">
+        <a href="fake/SubForDocComments-class.html#instance-properties">Properties</a>
+      </li>
+      <li><a href="fake/SubForDocComments/getterWithDocs.html">getterWithDocs</a></li>
+      <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
+      <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
+    
+      <li class="section-title"><a href="fake/SubForDocComments-class.html#instance-methods">Methods</a></li>
+      <li><a href="fake/SubForDocComments/localMethod.html">localMethod</a></li>
+      <li class="inherited"><a href="fake/BaseForDocComments/anotherMethod.html">anotherMethod</a></li>
+      <li class="inherited"><a href="fake/BaseForDocComments/doAwesomeStuff.html">doAwesomeStuff</a></li>
+      <li class="inherited"><a href="fake/BaseForDocComments/noSuchMethod.html">noSuchMethod</a></li>
+      <li class="inherited"><a href="fake/BaseForDocComments/toString.html">toString</a></li>
+    
+      <li class="section-title inherited"><a href="fake/SubForDocComments-class.html#operators">Operators</a></li>
+      <li class="inherited"><a href="fake/BaseForDocComments/operator_equals.html">operator ==</a></li>
+      <li class="inherited"><a href="fake/BaseForDocComments/operator_get.html">operator []</a></li>
+    
+    
+    
+    </ol>
+  </div><!--/.sidebar-offcanvas-->
+
+  <div class="col-xs-12 col-sm-9 col-md-8 main-content">
+    <h1>getterWithDocs property</h1>
+
+        <section class="multi-line-signature">
+          <span class="returntype">bool</span>
+          <span class="name ">getterWithDocs</span>
+          <div class="features">final</div>
+        </section>
+        <section class="desc markdown">
+          <p>Some really great topics.</p>
+        </section>
+                
+
+  </div> <!-- /.main-content -->
+
+  <div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
+  </div><!--/.sidebar-offcanvas-->
+
+</main>
+
+<footer>
+  <span class="no-break">
+    test_package 0.0.1
+  </span>
+
+</footer>
+
+<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
+<script src="static-assets/typeahead.bundle.min.js"></script>
+<script src="static-assets/highlight.pack.js"></script>
+<script src="static-assets/URI.js"></script>
+<script src="static-assets/script.js"></script>
+
+
+</body>
+
+</html>
diff --git a/testing/test_package_docs_dev/fake/SubForDocComments/localMethod.html b/testing/test_package_docs_dev/fake/SubForDocComments/localMethod.html
index f682cac..33012e4 100644
--- a/testing/test_package_docs_dev/fake/SubForDocComments/localMethod.html
+++ b/testing/test_package_docs_dev/fake/SubForDocComments/localMethod.html
@@ -42,9 +42,10 @@
       <li class="section-title"><a href="fake/SubForDocComments-class.html#constructors">Constructors</a></li>
       <li><a href="fake/SubForDocComments/SubForDocComments.html">SubForDocComments</a></li>
     
-      <li class="section-title inherited">
+      <li class="section-title">
         <a href="fake/SubForDocComments-class.html#instance-properties">Properties</a>
       </li>
+      <li><a href="fake/SubForDocComments/getterWithDocs.html">getterWithDocs</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/hashCode.html">hashCode</a></li>
       <li class="inherited"><a href="fake/BaseForDocComments/runtimeType.html">runtimeType</a></li>
     
diff --git a/testing/test_package_docs_dev/index.json b/testing/test_package_docs_dev/index.json
index e6ec585..9669d87 100644
--- a/testing/test_package_docs_dev/index.json
+++ b/testing/test_package_docs_dev/index.json
@@ -4540,6 +4540,17 @@
   }
  },
  {
+  "name": "getterWithDocs",
+  "qualifiedName": "fake.BaseForDocComments.getterWithDocs",
+  "href": "fake/BaseForDocComments/getterWithDocs.html",
+  "type": "property",
+  "overriddenDepth": 0,
+  "enclosedBy": {
+   "name": "BaseForDocComments",
+   "type": "class"
+  }
+ },
+ {
   "name": "hashCode",
   "qualifiedName": "fake.BaseForDocComments.hashCode",
   "href": "fake/BaseForDocComments/hashCode.html",
@@ -8676,6 +8687,17 @@
   }
  },
  {
+  "name": "getterWithDocs",
+  "qualifiedName": "fake.SubForDocComments.getterWithDocs",
+  "href": "fake/SubForDocComments/getterWithDocs.html",
+  "type": "property",
+  "overriddenDepth": 0,
+  "enclosedBy": {
+   "name": "SubForDocComments",
+   "type": "class"
+  }
+ },
+ {
   "name": "localMethod",
   "qualifiedName": "fake.SubForDocComments.localMethod",
   "href": "fake/SubForDocComments/localMethod.html",