(id, propName, value)
| 210 | } |
| 211 | |
| 212 | addProperty(id, propName, value) { |
| 213 | const mapping = this.getMapping(id); |
| 214 | mapping.properties[propName] = value; |
| 215 | return this; |
| 216 | } |
| 217 | |
| 218 | removeProperty(id, propName) { |
| 219 | const mapping = this.getMapping(id); |
no test coverage detected