Deploying to gh-pages from @ crystal-ameba/ameba@734bb2a7f1 🚀

This commit is contained in:
Sija 2024-01-10 08:13:51 +00:00
parent 97f4d31b25
commit 22ed5b06ff
146 changed files with 951 additions and 867 deletions

View file

@ -926,7 +926,7 @@ This is where the local variables belong to.</p>
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L6" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L6" target="_blank">
ameba/ast/scope.cr
</a>
@ -1050,16 +1050,16 @@ This is where the local variables belong to.</p>
</li>
<li class="entry-summary">
<a href="#class_def%3F-instance-method" class="signature"><strong>#class_def?</strong></a>
<a href="#class_def%3F%28%2A%2Ccheck_outer_scopes%3Dfalse%29-instance-method" class="signature"><strong>#class_def?</strong>(*, check_outer_scopes = <span class="n">false</span>)</a>
<div class="summary"><p>Returns <code>true</code> if current scope is a class, <code>false</code> otherwise.</p></div>
<div class="summary"><p>Returns <code>true</code> if current scope is a class def, <code>false</code> otherwise.</p></div>
</li>
<li class="entry-summary">
<a href="#def%3F-instance-method" class="signature"><strong>#def?</strong></a>
<a href="#def%3F%28%2A%2Ccheck_outer_scopes%3Dfalse%29-instance-method" class="signature"><strong>#def?</strong>(*, check_outer_scopes = <span class="n">false</span>)</a>
<div class="summary"><p>Returns <code>true</code> if current scope is a def, <code>false</code> otherwise.</p></div>
<div class="summary"><p>Returns <code>true</code> if current scope is a def, <code>false</code> otherwise.</p></div>
</li>
@ -1073,6 +1073,13 @@ This is where the local variables belong to.</p>
</li>
<li class="entry-summary">
<a href="#enum_def%3F%28%2A%2Ccheck_outer_scopes%3Dfalse%29-instance-method" class="signature"><strong>#enum_def?</strong>(*, check_outer_scopes = <span class="n">false</span>)</a>
<div class="summary"><p>Returns <code>true</code> if current scope is a enum def, <code>false</code> otherwise.</p></div>
</li>
<li class="entry-summary">
<a href="#eql%3F%28node%29-instance-method" class="signature"><strong>#eql?</strong>(node)</a>
@ -1087,6 +1094,13 @@ This is where the local variables belong to.</p>
</li>
<li class="entry-summary">
<a href="#fun_def%3F%28%2A%2Ccheck_outer_scopes%3Dfalse%29-instance-method" class="signature"><strong>#fun_def?</strong>(*, check_outer_scopes = <span class="n">false</span>)</a>
<div class="summary"><p>Returns <code>true</code> if current scope is a fun def, <code>false</code> otherwise.</p></div>
</li>
<li class="entry-summary">
<a href="#hash%28hasher%29-instance-method" class="signature"><strong>#hash</strong>(hasher)</a>
@ -1115,6 +1129,13 @@ This is where the local variables belong to.</p>
</li>
<li class="entry-summary">
<a href="#lib_def%3F%28%2A%2Ccheck_outer_scopes%3Dfalse%29-instance-method" class="signature"><strong>#lib_def?</strong>(*, check_outer_scopes = <span class="n">false</span>)</a>
<div class="summary"><p>Returns <code>true</code> if current scope is a lib def, <code>false</code> otherwise.</p></div>
</li>
<li class="entry-summary">
<a href="#location%28%2Aargs%2C%2A%2Aoptions%29-instance-method" class="signature"><strong>#location</strong>(*args, **options)</a>
@ -1126,9 +1147,9 @@ This is where the local variables belong to.</p>
</li>
<li class="entry-summary">
<a href="#module_def%3F-instance-method" class="signature"><strong>#module_def?</strong></a>
<a href="#module_def%3F%28%2A%2Ccheck_outer_scopes%3Dfalse%29-instance-method" class="signature"><strong>#module_def?</strong>(*, check_outer_scopes = <span class="n">false</span>)</a>
<div class="summary"><p>Returns <code>true</code> if current scope is a module, <code>false</code> otherwise.</p></div>
<div class="summary"><p>Returns <code>true</code> if current scope is a module def, <code>false</code> otherwise.</p></div>
</li>
@ -1294,7 +1315,7 @@ This is where the local variables belong to.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L47" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L47" target="_blank">View source</a>]
</div>
</div>
@ -1356,7 +1377,7 @@ scope.add_argument(arg_node)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L67" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L67" target="_blank">View source</a>]
</div>
</div>
@ -1379,7 +1400,7 @@ scope.add_ivariable(ivar_node)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L78" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L78" target="_blank">View source</a>]
</div>
</div>
@ -1402,7 +1423,7 @@ scope.add_type_dec_variable(node)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L88" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L88" target="_blank">View source</a>]
</div>
</div>
@ -1425,7 +1446,7 @@ scope.add_variable(var_node)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L57" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L57" target="_blank">View source</a>]
</div>
</div>
@ -1446,7 +1467,7 @@ scope.add_variable(var_node)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L204" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L199" target="_blank">View source</a>]
</div>
</div>
@ -1467,7 +1488,7 @@ scope.add_variable(var_node)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L20" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L20" target="_blank">View source</a>]
</div>
</div>
@ -1490,7 +1511,7 @@ scope.assign_variable(var_name, assign_node)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L109" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L109" target="_blank">View source</a>]
</div>
</div>
@ -1511,7 +1532,7 @@ scope.assign_variable(var_name, assign_node)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L140" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L140" target="_blank">View source</a>]
</div>
</div>
@ -1532,7 +1553,7 @@ scope.assign_variable(var_name, assign_node)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L146" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L146" target="_blank">View source</a>]
</div>
</div>
@ -1554,49 +1575,49 @@ scope.assign_variable(var_name, assign_node)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L115" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L115" target="_blank">View source</a>]
</div>
</div>
<div class="entry-detail" id="class_def?-instance-method">
<div class="entry-detail" id="class_def?(*,check_outer_scopes=false)-instance-method">
<div class="signature">
def <strong>class_def?</strong>
def <strong>class_def?</strong>(*, check_outer_scopes = <span class="n">false</span>)
<a class="method-permalink" href="#class_def%3F-instance-method">#</a>
<a class="method-permalink" href="#class_def%3F%28%2A%2Ccheck_outer_scopes%3Dfalse%29-instance-method">#</a>
</div>
<div class="doc">
<p>Returns <code>true</code> if current scope is a class, <code>false</code> otherwise.</p>
<p>Returns <code>true</code> if current scope is a class def, <code>false</code> otherwise.</p>
</div>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L189" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L183" target="_blank">View source</a>]
</div>
</div>
<div class="entry-detail" id="def?-instance-method">
<div class="entry-detail" id="def?(*,check_outer_scopes=false)-instance-method">
<div class="signature">
def <strong>def?</strong>
def <strong>def?</strong>(*, check_outer_scopes = <span class="n">false</span>)
<a class="method-permalink" href="#def%3F-instance-method">#</a>
<a class="method-permalink" href="#def%3F%28%2A%2Ccheck_outer_scopes%3Dfalse%29-instance-method">#</a>
</div>
<div class="doc">
<p>Returns <code>true</code> if current scope is a def, <code>false</code> otherwise.</p>
<p>Returns <code>true</code> if current scope is a def, <code>false</code> otherwise.</p>
</div>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L184" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L183" target="_blank">View source</a>]
</div>
</div>
@ -1612,7 +1633,7 @@ scope.assign_variable(var_name, assign_node)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L37" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L37" target="_blank">View source</a>]
</div>
</div>
@ -1628,7 +1649,28 @@ scope.assign_variable(var_name, assign_node)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L37" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L37" target="_blank">View source</a>]
</div>
</div>
<div class="entry-detail" id="enum_def?(*,check_outer_scopes=false)-instance-method">
<div class="signature">
def <strong>enum_def?</strong>(*, check_outer_scopes = <span class="n">false</span>)
<a class="method-permalink" href="#enum_def%3F%28%2A%2Ccheck_outer_scopes%3Dfalse%29-instance-method">#</a>
</div>
<div class="doc">
<p>Returns <code>true</code> if current scope is a enum def, <code>false</code> otherwise.</p>
</div>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L183" target="_blank">View source</a>]
</div>
</div>
@ -1650,7 +1692,7 @@ the same Crystal node as <code>@node</code>.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L223" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L218" target="_blank">View source</a>]
</div>
</div>
@ -1673,7 +1715,28 @@ scope.find_variable(<span class="s">&quot;foo&quot;</span>)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L98" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L98" target="_blank">View source</a>]
</div>
</div>
<div class="entry-detail" id="fun_def?(*,check_outer_scopes=false)-instance-method">
<div class="signature">
def <strong>fun_def?</strong>(*, check_outer_scopes = <span class="n">false</span>)
<a class="method-permalink" href="#fun_def%3F%28%2A%2Ccheck_outer_scopes%3Dfalse%29-instance-method">#</a>
</div>
<div class="doc">
<p>Returns <code>true</code> if current scope is a fun def, <code>false</code> otherwise.</p>
</div>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L183" target="_blank">View source</a>]
</div>
</div>
@ -1717,7 +1780,7 @@ scope.find_variable(<span class="s">&quot;foo&quot;</span>)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L132" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L132" target="_blank">View source</a>]
</div>
</div>
@ -1738,7 +1801,7 @@ scope.find_variable(<span class="s">&quot;foo&quot;</span>)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L32" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L32" target="_blank">View source</a>]
</div>
</div>
@ -1759,7 +1822,28 @@ scope.find_variable(<span class="s">&quot;foo&quot;</span>)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L23" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L23" target="_blank">View source</a>]
</div>
</div>
<div class="entry-detail" id="lib_def?(*,check_outer_scopes=false)-instance-method">
<div class="signature">
def <strong>lib_def?</strong>(*, check_outer_scopes = <span class="n">false</span>)
<a class="method-permalink" href="#lib_def%3F%28%2A%2Ccheck_outer_scopes%3Dfalse%29-instance-method">#</a>
</div>
<div class="doc">
<p>Returns <code>true</code> if current scope is a lib def, <code>false</code> otherwise.</p>
</div>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L183" target="_blank">View source</a>]
</div>
</div>
@ -1775,7 +1859,7 @@ scope.find_variable(<span class="s">&quot;foo&quot;</span>)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L37" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L37" target="_blank">View source</a>]
</div>
</div>
@ -1791,28 +1875,28 @@ scope.find_variable(<span class="s">&quot;foo&quot;</span>)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L37" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L37" target="_blank">View source</a>]
</div>
</div>
<div class="entry-detail" id="module_def?-instance-method">
<div class="entry-detail" id="module_def?(*,check_outer_scopes=false)-instance-method">
<div class="signature">
def <strong>module_def?</strong>
def <strong>module_def?</strong>(*, check_outer_scopes = <span class="n">false</span>)
<a class="method-permalink" href="#module_def%3F-instance-method">#</a>
<a class="method-permalink" href="#module_def%3F%28%2A%2Ccheck_outer_scopes%3Dfalse%29-instance-method">#</a>
</div>
<div class="doc">
<p>Returns <code>true</code> if current scope is a module, <code>false</code> otherwise.</p>
<p>Returns <code>true</code> if current scope is a module def, <code>false</code> otherwise.</p>
</div>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L194" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L183" target="_blank">View source</a>]
</div>
</div>
@ -1833,7 +1917,7 @@ scope.find_variable(<span class="s">&quot;foo&quot;</span>)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L35" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L35" target="_blank">View source</a>]
</div>
</div>
@ -1854,7 +1938,7 @@ scope.find_variable(<span class="s">&quot;foo&quot;</span>)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L29" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L29" target="_blank">View source</a>]
</div>
</div>
@ -1875,7 +1959,7 @@ scope.find_variable(<span class="s">&quot;foo&quot;</span>)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L17" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L17" target="_blank">View source</a>]
</div>
</div>
@ -1897,7 +1981,7 @@ scope.find_variable(<span class="s">&quot;foo&quot;</span>)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L165" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L165" target="_blank">View source</a>]
</div>
</div>
@ -1921,7 +2005,7 @@ scope.find_variable(<span class="s">&quot;foo&quot;</span>)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L127" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L127" target="_blank">View source</a>]
</div>
</div>
@ -1937,7 +2021,7 @@ scope.find_variable(<span class="s">&quot;foo&quot;</span>)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L37" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L37" target="_blank">View source</a>]
</div>
</div>
@ -1953,7 +2037,7 @@ scope.find_variable(<span class="s">&quot;foo&quot;</span>)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L37" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L37" target="_blank">View source</a>]
</div>
</div>
@ -1974,7 +2058,7 @@ scope.find_variable(<span class="s">&quot;foo&quot;</span>)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L199" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L194" target="_blank">View source</a>]
</div>
</div>
@ -1995,7 +2079,7 @@ scope.find_variable(<span class="s">&quot;foo&quot;</span>)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L26" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L26" target="_blank">View source</a>]
</div>
</div>
@ -2017,7 +2101,7 @@ type definition, for example a class.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L153" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L153" target="_blank">View source</a>]
</div>
</div>
@ -2038,7 +2122,7 @@ type definition, for example a class.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L14" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L14" target="_blank">View source</a>]
</div>
</div>
@ -2059,7 +2143,7 @@ type definition, for example a class.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L179" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L179" target="_blank">View source</a>]
</div>
</div>
@ -2080,7 +2164,7 @@ type definition, for example a class.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L11" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L11" target="_blank">View source</a>]
</div>
</div>
@ -2101,7 +2185,7 @@ type definition, for example a class.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L8" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L8" target="_blank">View source</a>]
</div>
</div>
@ -2123,7 +2207,7 @@ type definition, for example a class.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/b6bd74e/src/ameba/ast/scope.cr#L174" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/734bb2a/src/ameba/ast/scope.cr#L174" target="_blank">View source</a>]
</div>
</div>