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

Function fxBitOrExpression

xs/sources/xsSyntaxical.c:1933–1943  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1931}
1932
1933void 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
1945void fxBitXorExpression(txParser* parser)
1946{

Callers 1

fxAndExpressionFunction · 0.85

Calls 4

fxBitXorExpressionFunction · 0.85
fxGetNextTokenFunction · 0.85
fxCheckArrowFunctionFunction · 0.85
fxPushNodeStructFunction · 0.85

Tested by

no test coverage detected