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

Function fxAndExpression

xs/sources/xsSyntaxical.c:1921–1931  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1919}
1920
1921void fxAndExpression(txParser* parser)
1922{
1923 fxBitOrExpression(parser);
1924 while (parser->states[0].token == XS_TOKEN_AND) {
1925 txInteger aLine = parser->states[0].line;
1926 fxGetNextToken(parser);
1927 fxBitOrExpression(parser);
1928 fxCheckArrowFunction(parser, 2);
1929 fxPushNodeStruct(parser, 2, XS_TOKEN_AND, aLine);
1930 }
1931}
1932
1933void fxBitOrExpression(txParser* parser)
1934{

Callers 1

fxOrExpressionFunction · 0.85

Calls 4

fxBitOrExpressionFunction · 0.85
fxGetNextTokenFunction · 0.85
fxCheckArrowFunctionFunction · 0.85
fxPushNodeStructFunction · 0.85

Tested by

no test coverage detected