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

Function fxBitAndExpression

xs/sources/xsSyntaxical.c:1957–1967  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1955}
1956
1957void fxBitAndExpression(txParser* parser)
1958{
1959 fxEqualExpression(parser);
1960 while (parser->states[0].token == XS_TOKEN_BIT_AND) {
1961 txInteger aLine = parser->states[0].line;
1962 fxGetNextToken(parser);
1963 fxEqualExpression(parser);
1964 fxCheckArrowFunction(parser, 2);
1965 fxPushNodeStruct(parser, 2, XS_TOKEN_BIT_AND, aLine);
1966 }
1967}
1968
1969void fxEqualExpression(txParser* parser)
1970{

Callers 1

fxBitXorExpressionFunction · 0.85

Calls 4

fxEqualExpressionFunction · 0.85
fxGetNextTokenFunction · 0.85
fxCheckArrowFunctionFunction · 0.85
fxPushNodeStructFunction · 0.85

Tested by

no test coverage detected