()
| 4243 | } |
| 4244 | |
| 4245 | clone() { |
| 4246 | var clone = Object.create(CartoCSS.Tree.Rule.prototype); |
| 4247 | clone.name = this.name; |
| 4248 | clone.value = this.value; |
| 4249 | clone.index = this.index; |
| 4250 | clone.instance = this.instance; |
| 4251 | clone.symbolizer = this.symbolizer; |
| 4252 | clone.filename = this.filename; |
| 4253 | clone.variable = this.variable; |
| 4254 | return clone; |
| 4255 | } |
| 4256 | |
| 4257 | updateID() { |
| 4258 | return this.id = this.zoom + '#' + this.instance + '#' + this.name; |
no test coverage detected