| 212 | } |
| 213 | |
| 214 | void Union::findUsedStreams(StreamList& streams, bool expandAll) const |
| 215 | { |
| 216 | RecordStream::findUsedStreams(streams); |
| 217 | |
| 218 | if (expandAll) |
| 219 | { |
| 220 | for (FB_SIZE_T i = 0; i < m_args.getCount(); i++) |
| 221 | m_args[i]->findUsedStreams(streams, true); |
| 222 | } |
| 223 | } |
| 224 | |
| 225 | bool Union::isDependent(const StreamList& streams) const |
| 226 | { |
no test coverage detected