| 1931 | } |
| 1932 | |
| 1933 | void fxBitOrExpression(txParser* parser) |
| 1934 | { |
| 1935 | fxBitXorExpression(parser); |
| 1936 | while (parser->states[0].token == XS_TOKEN_BIT_OR) { |
| 1937 | txInteger aLine = parser->states[0].line; |
| 1938 | fxGetNextToken(parser); |
| 1939 | fxBitXorExpression(parser); |
| 1940 | fxCheckArrowFunction(parser, 2); |
| 1941 | fxPushNodeStruct(parser, 2, XS_TOKEN_BIT_OR, aLine); |
| 1942 | } |
| 1943 | } |
| 1944 | |
| 1945 | void fxBitXorExpression(txParser* parser) |
| 1946 | { |
no test coverage detected