| 1856 | // Node that contains list of expressions |
| 1857 | |
| 1858 | NodeExpressionList::NodeExpressionList(TypeInfo *returnType) |
| 1859 | { |
| 1860 | typeInfo = returnType; |
| 1861 | tail = first = TakeLastNode(); |
| 1862 | |
| 1863 | nodeType = typeNodeExpressionList; |
| 1864 | } |
| 1865 | NodeExpressionList::~NodeExpressionList() |
| 1866 | { |
| 1867 | } |
nothing calls this directly
no test coverage detected