Skip to content

Commit

Permalink
Implement nqp::iseq_i
Browse files Browse the repository at this point in the history
  • Loading branch information
pmurias committed Aug 21, 2014
1 parent 09b7d19 commit a241203
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/vm/js/QAST/Compiler.nqp
Expand Up @@ -230,6 +230,7 @@ class QAST::OperationsJS {
add_infix_op('iseq_n', $T_NUM, '==', $T_NUM, $T_BOOL);
add_infix_op('isne_n', $T_NUM, '!=', $T_NUM, $T_BOOL);

add_infix_op('iseq_i', $T_INT, '==', $T_INT, $T_BOOL);
add_infix_op('iseq_s', $T_STR, '==', $T_STR, $T_BOOL);
add_infix_op('isne_s', $T_STR, '!=', $T_STR, $T_BOOL);

Expand Down

0 comments on commit a241203

Please sign in to comment.