This commit is contained in:
artegoser 2023-12-26 17:24:30 +00:00
parent 1112a271c5
commit 8f681c847d
4 changed files with 6 additions and 6 deletions

View file

@ -330,8 +330,8 @@ false
<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>
<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>Function 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><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> <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

View file

@ -177,8 +177,8 @@
<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>
<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>Function 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><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> <code>/</code> <code>%</code></td><td>Left to Right</td><td>term</td><td></td></tr>