()
| 92 | |
| 93 | // readonly property name |
| 94 | get name () { |
| 95 | if (this.index) { |
| 96 | return (this.index.isObjectProperty()) |
| 97 | ? this.index.getObjectProperty() |
| 98 | : '' |
| 99 | } else { |
| 100 | return this.object.name || '' |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | get type () { return name } |
| 105 | get isAssignmentNode () { return true } |
nothing calls this directly
no test coverage detected