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

Function fxEqualExpression

xs/sources/xsSyntaxical.c:1969–1980  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1967}
1968
1969void fxEqualExpression(txParser* parser)
1970{
1971 fxRelationalExpression(parser);
1972 while (gxTokenFlags[parser->states[0].token] & XS_TOKEN_EQUAL_EXPRESSION) {
1973 txToken aToken = parser->states[0].token;
1974 txInteger aLine = parser->states[0].line;
1975 fxGetNextToken(parser);
1976 fxRelationalExpression(parser);
1977 fxCheckArrowFunction(parser, 2);
1978 fxPushNodeStruct(parser, 2, aToken, aLine);
1979 }
1980}
1981
1982void fxRelationalExpression(txParser* parser)
1983{

Callers 1

fxBitAndExpressionFunction · 0.85

Calls 4

fxRelationalExpressionFunction · 0.85
fxGetNextTokenFunction · 0.85
fxCheckArrowFunctionFunction · 0.85
fxPushNodeStructFunction · 0.85

Tested by

no test coverage detected