()
| 5281 | } |
| 5282 | |
| 5283 | toString() { |
| 5284 | if (this.components.length) { |
| 5285 | return '$' + this.components.map(formatPropertyAccess).join(''); |
| 5286 | } else { |
| 5287 | return ''; |
| 5288 | } |
| 5289 | } |
| 5290 | |
| 5291 | add(component) { |
| 5292 | return new ObjectPath(this.components.concat([component])); |
no outgoing calls
no test coverage detected