extension in PH7, but standard in P#
This commit is contained in:
parent
0ad681ccf6
commit
25264bd774
2
parse.c
2
parse.c
@ -246,7 +246,7 @@ static const ph7_expr_op aOpTable[] = {
|
|||||||
/* Precedence 22,left-associative */
|
/* Precedence 22,left-associative */
|
||||||
{ {"or",sizeof("or")-1}, EXPR_OP_LOR, 22, EXPR_OP_ASSOC_LEFT, PH7_OP_LOR},
|
{ {"or",sizeof("or")-1}, EXPR_OP_LOR, 22, EXPR_OP_ASSOC_LEFT, PH7_OP_LOR},
|
||||||
/* Precedence 23,left-associative [Lowest operator] */
|
/* Precedence 23,left-associative [Lowest operator] */
|
||||||
{ {",",sizeof(char)}, EXPR_OP_COMMA,23, EXPR_OP_ASSOC_LEFT, 0}, /* IMP-0139-COMMA: Symisc eXtension */
|
{ {",",sizeof(char)}, EXPR_OP_COMMA,23, EXPR_OP_ASSOC_LEFT, 0},
|
||||||
};
|
};
|
||||||
/* Function call operator need special handling */
|
/* Function call operator need special handling */
|
||||||
static const ph7_expr_op sFCallOp = {{"(",sizeof(char)}, EXPR_OP_FUNC_CALL, 2, EXPR_OP_ASSOC_LEFT , PH7_OP_CALL};
|
static const ph7_expr_op sFCallOp = {{"(",sizeof(char)}, EXPR_OP_FUNC_CALL, 2, EXPR_OP_ASSOC_LEFT , PH7_OP_CALL};
|
||||||
|
Loading…
Reference in New Issue
Block a user