()
| 68 | |
| 69 | // readonly property name |
| 70 | get name () { |
| 71 | if (this.index) { |
| 72 | return (this.index.isObjectProperty()) |
| 73 | ? this.index.getObjectProperty() |
| 74 | : '' |
| 75 | } else { |
| 76 | return this.object.name || '' |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | static name = name |
| 81 | get type () { return name } |
nothing calls this directly
no test coverage detected