Skip to content

Commit

Permalink
Deploying to docs from @ 8e9959c 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
mkorbel1 committed Sep 22, 2023
1 parent 13fd127 commit 8653c3c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
8 changes: 7 additions & 1 deletion rohd/Module/inputs.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,11 @@ <h1><span class="kind-property">inputs</span> property

<section class="multi-line-signature">

<div>
<ol class="annotation-list">
<li>@<a href="https://pub.dev/documentation/meta/1.10.0/meta/protected-constant.html">protected</a></li>
</ol>
</div>
<span class="returntype"><a href="https://api.dart.dev/stable/3.1.2/dart-core/Map-class.html">Map</a><span class="signature">&lt;<wbr><span class="type-parameter"><a href="https://api.dart.dev/stable/3.1.2/dart-core/String-class.html">String</a></span>, <span class="type-parameter"><a href="../../rohd/Logic-class.html">Logic</a></span>&gt;</span></span>
<span class="name ">inputs</span>

Expand All @@ -81,7 +86,8 @@ <h1><span class="kind-property">inputs</span> property

<section class="summary source-code" id="source">
<h2><span>Implementation</span></h2>
<pre class="language-dart"><code class="language-dart">Map&lt;String, Logic&gt; get inputs =&gt; UnmodifiableMapView&lt;String, Logic&gt;(_inputs);</code></pre>
<pre class="language-dart"><code class="language-dart">@protected
Map&lt;String, Logic&gt; get inputs =&gt; UnmodifiableMapView&lt;String, Logic&gt;(_inputs);</code></pre>
</section>

</section>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,16 @@ <h2><span>Implementation</span></h2>

&#47;&#47;non-custom needs more details
final connections = &lt;String&gt;[];

&#47;&#47; ignore: invalid_use_of_protected_member
module.inputs.forEach((signalName, logic) {
connections.add(&#39;.$signalName(${inputs[signalName]})&#39;);
});

module.outputs.forEach((signalName, logic) {
connections.add(&#39;.$signalName(${outputs[signalName]})&#39;);
});

final connectionsStr = connections.join(&#39;,&#39;);
var parameterString = &#39;&#39;;
if (parameters != null) {
Expand Down

0 comments on commit 8653c3c

Please sign in to comment.