renamed "neqqexpr" to "neqq_expr"

This commit is contained in:
Erik Krogh Kristensen
2020-09-04 11:53:46 +02:00
parent c634f274ee
commit 17705100d4
3 changed files with 4 additions and 4 deletions

View File

@@ -262,7 +262,7 @@ case @expr.kind of
| 23 = @eq_expr
| 24 = @neq_expr
| 25 = @eqq_expr
| 26 = @neqqexpr
| 26 = @neqq_expr
| 27 = @ltexpr
| 28 = @leexpr
| 29 = @gtexpr
@@ -369,7 +369,7 @@ case @expr.kind of
@unaryexpr = @neg_expr | @plus_expr | @log_not_expr | @bit_not_expr | @typeof_expr | @void_expr | @delete_expr | @spreadelement;
@equality_test = @eq_expr | @neq_expr | @eqq_expr | @neqqexpr;
@equality_test = @eq_expr | @neq_expr | @eqq_expr | @neqq_expr;
@comparison = @equality_test | @ltexpr | @leexpr | @gtexpr | @geexpr;