(stream, scope)
| 147148 | return scope.addStream(entry1).id; |
| 147149 | } |
| 147150 | function nestedStream(stream, scope) { |
| 147151 | const id = parseStream(stream.stream, scope), entry2 = streamParameters({ |
| 147152 | stream: id |
| 147153 | }, stream, scope); |
| 147154 | return scope.addStream(entry2).id; |
| 147155 | } |
| 147156 | function eventStream(stream, scope) { |
| 147157 | let id; |
| 147158 | if (stream.type === Timer) { |
nothing calls this directly
no test coverage detected