Skip to content

Commit 8f4c08a

Browse files
author
Federico Fissore
committed
Added missing conditionals in keywords.txt. Fixes #966
1 parent 28e8eb4 commit 8f4c08a

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

build/shared/lib/keywords.txt

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,8 @@ export KEYWORD3 RESERVED_WORD
222222
= assign
223223
& BitwiseAnd
224224
| BitwiseAnd
225+
^ BitwiseAnd
226+
~ BitwiseXorNot
225227
,
226228
// Comments
227229
?:
@@ -230,14 +232,14 @@ export KEYWORD3 RESERVED_WORD
230232
/ Arithmetic
231233
/* Comments
232234
. dot
233-
==
234-
< greaterthan
235-
<= greaterthanorequalto
235+
== If
236+
< If
237+
<= If
236238
++ Increment
237-
!= inequality
239+
!= If
238240
<< Bitshift
239-
< lessthan
240-
<= lessthanorequalto
241+
> If
242+
>= If
241243
&& Boolean
242244
! Boolean
243245
|| Boolean

0 commit comments

Comments
 (0)