(node, id)
| 4208 | } |
| 4209 | |
| 4210 | function get(node, id) { |
| 4211 | var schedule = node.__transition; |
| 4212 | if (!schedule || !(schedule = schedule[id])) throw new Error("transition not found"); |
| 4213 | return schedule; |
| 4214 | } |
| 4215 | |
| 4216 | function create(node, id, self) { |
| 4217 | var schedules = node.__transition, |
no outgoing calls
no test coverage detected