()
| 203 | |
| 204 | // FIXME:TS check whether put this method here |
| 205 | isAnimationEnabled(): boolean { |
| 206 | if (!env.node && this.option) { |
| 207 | if ((this.option as AnimationOptionMixin).animation != null) { |
| 208 | return !!(this.option as AnimationOptionMixin).animation; |
| 209 | } |
| 210 | else if (this.parentModel) { |
| 211 | return this.parentModel.isAnimationEnabled(); |
| 212 | } |
| 213 | } |
| 214 | } |
| 215 | |
| 216 | private _doGet(pathArr: readonly string[], parentModel?: Model<Dictionary<any>>) { |
| 217 | let obj = this.option; |
no outgoing calls
no test coverage detected