| 109 | _alpha = v |
| 110 | } |
| 111 | |
| 112 | |
| 113 | fun launchSeq(frames: Int, name: String? = null, forceEnd: Boolean = false, s: suspend SequenceScope<Any>.() -> Unit) { |
| 114 | var rn = name ?: "anon_${_launch_uniq++}" |
| 115 | var ss = sequence(s).iterator() |
| 116 | var frame = 0 |
nothing calls this directly
no test coverage detected