()
| 5416 | } |
| 5417 | |
| 5418 | toString() { |
| 5419 | if (this.components.length) { |
| 5420 | return '$' + this.components.map(formatPropertyAccess).join(''); |
| 5421 | } else { |
| 5422 | return ''; |
| 5423 | } |
| 5424 | } |
| 5425 | |
| 5426 | add(component) { |
| 5427 | return new ObjectPath(this.components.concat([component])); |
no outgoing calls
no test coverage detected