MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / ValueListNode

Method ValueListNode

src/dsql/Nodes.h:1261–1269  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1259{
1260public:
1261 ValueListNode(MemoryPool& pool, unsigned count)
1262 : TypedNode<ListExprNode, ExprNode::TYPE_VALUE_LIST>(pool),
1263 items(pool, INITIAL_CAPACITY)
1264 {
1265 items.resize(count);
1266
1267 for (unsigned i = 0; i < count; ++i)
1268 items[i] = NULL;
1269 }
1270
1271 ValueListNode(MemoryPool& pool, ValueExprNode* arg1)
1272 : TypedNode<ListExprNode, ExprNode::TYPE_VALUE_LIST>(pool),

Callers

nothing calls this directly

Calls 2

resizeMethod · 0.45
pushMethod · 0.45

Tested by

no test coverage detected