(node)
| 76 | } |
| 77 | |
| 78 | provide(node) { |
| 79 | if(join.isVariable(node)) { |
| 80 | if(this.nonProviding && !this.myRegisters[node.id]) { |
| 81 | return; |
| 82 | } |
| 83 | this.unprovided[node.id] = false; |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | setGroup(variable, value) { |
| 88 | let group = this.variableToGroup[variable.name] = value; |
no outgoing calls
no test coverage detected