()
| 206 | } |
| 207 | |
| 208 | isAnnotation() { |
| 209 | if (this.isInline()) { |
| 210 | return true |
| 211 | } |
| 212 | if (typeof this.mapOpts.annotation !== 'undefined') { |
| 213 | return this.mapOpts.annotation |
| 214 | } |
| 215 | if (this.previous().length) { |
| 216 | return this.previous().some(i => i.annotation) |
| 217 | } |
| 218 | return true |
| 219 | } |
| 220 | |
| 221 | isInline() { |
| 222 | if (typeof this.mapOpts.inline !== 'undefined') { |
no test coverage detected