Transformed

This commit is contained in:
Tim Schaub
2017-12-11 16:29:33 -07:00
parent 1cdb6a66f0
commit 7f47883c48
737 changed files with 22216 additions and 21609 deletions

View File

@@ -1,6 +1,7 @@
goog.provide('ol.AssertionError');
goog.require('ol');
/**
* @module ol/AssertionError
*/
import _ol_ from './index.js';
/**
* Error object thrown when an assertion failed. This is an ECMA-262 Error,
@@ -11,9 +12,9 @@ goog.require('ol');
* @implements {oli.AssertionError}
* @param {number} code Error code.
*/
ol.AssertionError = function(code) {
var _ol_AssertionError_ = function(code) {
var path = ol.VERSION ? ol.VERSION.split('-')[0] : 'latest';
var path = _ol_.VERSION ? _ol_.VERSION.split('-')[0] : 'latest';
/**
* @type {string}
@@ -34,4 +35,6 @@ ol.AssertionError = function(code) {
this.name = 'AssertionError';
};
ol.inherits(ol.AssertionError, Error);
_ol_.inherits(_ol_AssertionError_, Error);
export default _ol_AssertionError_;