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

Function fxPushBigIntNode

xs/sources/xsSyntaxical.c:564–573  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

562}
563
564void fxPushBigIntNode(txParser* parser, txBigInt* value, txInteger line)
565{
566 txBigIntNode* node = fxNewParserChunk(parser, sizeof(txBigIntNode));
567 node->description = &gxTokenDescriptions[XS_TOKEN_BIGINT];
568 node->path = parser->path;
569 node->line = line;
570 node->flags = 0;
571 node->value = *value;
572 fxPushNode(parser, (txNode*)node);
573}
574
575void fxPushIndexNode(txParser* parser, txIndex value, txInteger line)
576{

Callers 1

fxLiteralExpressionFunction · 0.85

Calls 2

fxNewParserChunkFunction · 0.85
fxPushNodeFunction · 0.85

Tested by

no test coverage detected