()
| 219 | } |
| 220 | |
| 221 | isInline() { |
| 222 | if (typeof this.mapOpts.inline !== 'undefined') { |
| 223 | return this.mapOpts.inline |
| 224 | } |
| 225 | |
| 226 | let annotation = this.mapOpts.annotation |
| 227 | if (typeof annotation !== 'undefined' && annotation !== true) { |
| 228 | return false |
| 229 | } |
| 230 | |
| 231 | if (this.previous().length) { |
| 232 | return this.previous().some(i => i.inline) |
| 233 | } |
| 234 | return true |
| 235 | } |
| 236 | |
| 237 | isMap() { |
| 238 | if (typeof this.opts.map !== 'undefined') { |
no test coverage detected