()
| 300 | } |
| 301 | |
| 302 | private _assertInitialized(): asserts this is {circle: google.maps.Circle} { |
| 303 | if (typeof ngDevMode === 'undefined' || ngDevMode) { |
| 304 | if (!this.circle) { |
| 305 | throw Error( |
| 306 | 'Cannot interact with a Google Map Circle before it has been ' + |
| 307 | 'initialized. Please wait for the Circle to load before trying to interact with it.', |
| 308 | ); |
| 309 | } |
| 310 | } |
| 311 | } |
| 312 | } |
no outgoing calls
no test coverage detected