mirror of
https://github.com/SymboScript/Book.git
synced 2024-11-06 05:43:58 +03:00
deploy: 7e0d3b0640
This commit is contained in:
parent
1112a271c5
commit
8f681c847d
4 changed files with 6 additions and 6 deletions
|
@ -330,8 +330,8 @@ false
|
||||||
<h2 id="expressionss"><a class="header" href="#expressionss">Expressionss</a></h2>
|
<h2 id="expressionss"><a class="header" href="#expressionss">Expressionss</a></h2>
|
||||||
<h3 id="operator-priority"><a class="header" href="#operator-priority">Operator priority</a></h3>
|
<h3 id="operator-priority"><a class="header" href="#operator-priority">Operator priority</a></h3>
|
||||||
<div class="table-wrapper"><table><thead><tr><th>Operator/Expression</th><th>Associativity</th><th>Parser fn name</th><th>Impl</th></tr></thead><tbody>
|
<div class="table-wrapper"><table><thead><tr><th>Operator/Expression</th><th>Associativity</th><th>Parser fn name</th><th>Impl</th></tr></thead><tbody>
|
||||||
<tr><td>Method calls</td><td>Left to Right</td><td>call</td><td>❌</td></tr>
|
<tr><td>Method calls, Members</td><td>Left to Right</td><td>call</td><td>✅</td></tr>
|
||||||
<tr><td>Function calls</td><td>Left to Right</td><td>call</td><td>❌</td></tr>
|
<tr><td>Function calls</td><td>Left to Right</td><td>call</td><td>✅</td></tr>
|
||||||
<tr><td><code>!</code> <code>++</code> <code>--</code> <code>()</code> <code>~</code></td><td>Left to Right</td><td>factor</td><td>✅</td></tr>
|
<tr><td><code>!</code> <code>++</code> <code>--</code> <code>()</code> <code>~</code></td><td>Left to Right</td><td>factor</td><td>✅</td></tr>
|
||||||
<tr><td><code>^</code></td><td>Left to Left</td><td>power</td><td>✅</td></tr>
|
<tr><td><code>^</code></td><td>Left to Left</td><td>power</td><td>✅</td></tr>
|
||||||
<tr><td><code>*</code> <code>/</code> <code>%</code></td><td>Left to Right</td><td>term</td><td>✅</td></tr>
|
<tr><td><code>*</code> <code>/</code> <code>%</code></td><td>Left to Right</td><td>term</td><td>✅</td></tr>
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -177,8 +177,8 @@
|
||||||
<h2 id="expressionss"><a class="header" href="#expressionss">Expressionss</a></h2>
|
<h2 id="expressionss"><a class="header" href="#expressionss">Expressionss</a></h2>
|
||||||
<h3 id="operator-priority"><a class="header" href="#operator-priority">Operator priority</a></h3>
|
<h3 id="operator-priority"><a class="header" href="#operator-priority">Operator priority</a></h3>
|
||||||
<div class="table-wrapper"><table><thead><tr><th>Operator/Expression</th><th>Associativity</th><th>Parser fn name</th><th>Impl</th></tr></thead><tbody>
|
<div class="table-wrapper"><table><thead><tr><th>Operator/Expression</th><th>Associativity</th><th>Parser fn name</th><th>Impl</th></tr></thead><tbody>
|
||||||
<tr><td>Method calls</td><td>Left to Right</td><td>call</td><td>❌</td></tr>
|
<tr><td>Method calls, Members</td><td>Left to Right</td><td>call</td><td>✅</td></tr>
|
||||||
<tr><td>Function calls</td><td>Left to Right</td><td>call</td><td>❌</td></tr>
|
<tr><td>Function calls</td><td>Left to Right</td><td>call</td><td>✅</td></tr>
|
||||||
<tr><td><code>!</code> <code>++</code> <code>--</code> <code>()</code> <code>~</code></td><td>Left to Right</td><td>factor</td><td>✅</td></tr>
|
<tr><td><code>!</code> <code>++</code> <code>--</code> <code>()</code> <code>~</code></td><td>Left to Right</td><td>factor</td><td>✅</td></tr>
|
||||||
<tr><td><code>^</code></td><td>Left to Left</td><td>power</td><td>✅</td></tr>
|
<tr><td><code>^</code></td><td>Left to Left</td><td>power</td><td>✅</td></tr>
|
||||||
<tr><td><code>*</code> <code>/</code> <code>%</code></td><td>Left to Right</td><td>term</td><td>✅</td></tr>
|
<tr><td><code>*</code> <code>/</code> <code>%</code></td><td>Left to Right</td><td>term</td><td>✅</td></tr>
|
||||||
|
|
Loading…
Reference in a new issue