FuncNode
| 179 | // FuncNode |
| 180 | // |
| 181 | FuncNode::FuncNode(NodeType type, Func1 func, NodePtr sub) : |
| 182 | ValueNode(type), m_func(func), m_sub(std::move(sub)) |
| 183 | {} |
| 184 | |
| 185 | Utils::StatusWithReason FuncNode::prepare(PointLayoutPtr l) |
| 186 | { |
nothing calls this directly
no outgoing calls
no test coverage detected