MCPcopy Create free account
hub / github.com/Moddable-OpenSource/moddable / fxBitXorExpression

Function fxBitXorExpression

xs/sources/xsSyntaxical.c:1945–1955  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1943}
1944
1945void fxBitXorExpression(txParser* parser)
1946{
1947 fxBitAndExpression(parser);
1948 while (parser->states[0].token == XS_TOKEN_BIT_XOR) {
1949 txInteger aLine = parser->states[0].line;
1950 fxGetNextToken(parser);
1951 fxBitAndExpression(parser);
1952 fxCheckArrowFunction(parser, 2);
1953 fxPushNodeStruct(parser, 2, XS_TOKEN_BIT_XOR, aLine);
1954 }
1955}
1956
1957void fxBitAndExpression(txParser* parser)
1958{

Callers 1

fxBitOrExpressionFunction · 0.85

Calls 4

fxBitAndExpressionFunction · 0.85
fxGetNextTokenFunction · 0.85
fxCheckArrowFunctionFunction · 0.85
fxPushNodeStructFunction · 0.85

Tested by

no test coverage detected