(variable, value)
| 85 | } |
| 86 | |
| 87 | setGroup(variable, value) { |
| 88 | let group = this.variableToGroup[variable.name] = value; |
| 89 | return group; |
| 90 | } |
| 91 | |
| 92 | getGroup(variable, orValue?) { |
| 93 | let group = this.variableToGroup[variable.name]; |
no outgoing calls
no test coverage detected