Skip to content

Commit

Permalink
chore: Rebuild specs
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit0 committed Jan 31, 2021
1 parent a1d709b commit 7afa42e
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 6 deletions.
4 changes: 4 additions & 0 deletions src/lib/output/helpers/if-cond.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ export function ifCond(
return v1 == v2 ? options.fn(this) : options.inverse(this);
case "===":
return v1 === v2 ? options.fn(this) : options.inverse(this);
case "!=":
return v1 != v2 ? options.fn(this) : options.inverse(this);
case "!==":
return v1 !== v2 ? options.fn(this) : options.inverse(this);
case "<":
return v1 < v2 ? options.fn(this) : options.inverse(this);
case "<=":
Expand Down
6 changes: 4 additions & 2 deletions src/test/renderer/specs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ <h1>Example</h1>
<h2>Installation</h2>
</a>
<p>Example install</p>
<pre><code class="language-text">$ npm install examples --save-dev</code></pre>
<pre><code class="language-text">$ npm install examples --save-dev
</code></pre>
<p>Example executable: <code>examples</code>.</p>
<a href="#usage" id="usage" style="color: inherit; text-decoration: none;">
<h2>Usage</h2>
Expand All @@ -77,7 +78,8 @@ <h2>Usage</h2>
<h3>Shell</h3>
</a>
<p>Example usage.</p>
<pre><code class="language-text">$ examples --out path/to/documentation/ path/to/example/project/</code></pre>
<pre><code class="language-text">$ examples --out path/to/documentation/ path/to/example/project/
</code></pre>
<a href="#arguments" id="arguments" style="color: inherit; text-decoration: none;">
<h3>Arguments</h3>
</a>
Expand Down
7 changes: 5 additions & 2 deletions src/test/renderer/specs/modules/mod.html
Original file line number Diff line number Diff line change
Expand Up @@ -104,13 +104,16 @@ <h3><span class="tsd-flag ts-flagConst">Const</span> gh1475</h3>
<h4>Type declaration</h4>
<ul class="tsd-parameters">
<li class="tsd-parameter">
<h5>both<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></h5>
<h5><span class="tsd-signature-symbol">get </span>both<span class="tsd-signature-symbol">(): </span><span class="tsd-signature-type">string</span></h5>
</li>
<li class="tsd-parameter">
<h5><span class="tsd-signature-symbol">set </span>both<span class="tsd-signature-symbol">(</span>x<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">): </span><span class="tsd-signature-type">void</span></h5>
</li>
<li class="tsd-parameter">
<h5><span class="tsd-signature-symbol">get </span>get<wbr>It<span class="tsd-signature-symbol">(): </span><span class="tsd-signature-type">number</span></h5>
</li>
<li class="tsd-parameter">
<h5><span class="tsd-signature-symbol">set </span>set<wbr>It<span class="tsd-signature-symbol">(</span>n<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span></h5>
<h5><span class="tsd-signature-symbol">set </span>set<wbr>It<span class="tsd-signature-symbol">(</span>n<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">): </span><span class="tsd-signature-type">void</span></h5>
</li>
</ul>
</div>
Expand Down
7 changes: 5 additions & 2 deletions src/test/renderer/specs/modules/mod2.html
Original file line number Diff line number Diff line change
Expand Up @@ -104,13 +104,16 @@ <h3><span class="tsd-flag ts-flagConst">Const</span> gh1475</h3>
<h4>Type declaration</h4>
<ul class="tsd-parameters">
<li class="tsd-parameter">
<h5>both<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></h5>
<h5><span class="tsd-signature-symbol">get </span>both<span class="tsd-signature-symbol">(): </span><span class="tsd-signature-type">string</span></h5>
</li>
<li class="tsd-parameter">
<h5><span class="tsd-signature-symbol">set </span>both<span class="tsd-signature-symbol">(</span>x<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">): </span><span class="tsd-signature-type">void</span></h5>
</li>
<li class="tsd-parameter">
<h5><span class="tsd-signature-symbol">get </span>get<wbr>It<span class="tsd-signature-symbol">(): </span><span class="tsd-signature-type">number</span></h5>
</li>
<li class="tsd-parameter">
<h5><span class="tsd-signature-symbol">set </span>set<wbr>It<span class="tsd-signature-symbol">(</span>n<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span></h5>
<h5><span class="tsd-signature-symbol">set </span>set<wbr>It<span class="tsd-signature-symbol">(</span>n<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">): </span><span class="tsd-signature-type">void</span></h5>
</li>
</ul>
</div>
Expand Down

0 comments on commit 7afa42e

Please sign in to comment.