Added missing conditionals in keywords.txt. Fixes #966

This commit is contained in:
Federico Fissore 2015-07-09 13:13:22 +02:00
parent 28e8eb41cc
commit 8f4c08af86
1 changed files with 8 additions and 6 deletions

View File

@ -222,6 +222,8 @@ export KEYWORD3 RESERVED_WORD
= assign
& BitwiseAnd
| BitwiseAnd
^ BitwiseAnd
~ BitwiseXorNot
,
// Comments
?:
@ -230,14 +232,14 @@ export KEYWORD3 RESERVED_WORD
/ Arithmetic
/* Comments
. dot
==
< greaterthan
<= greaterthanorequalto
== If
< If
<= If
++ Increment
!= inequality
!= If
<< Bitshift
< lessthan
<= lessthanorequalto
> If
>= If
&& Boolean
! Boolean
|| Boolean