16 lines
393 B
JavaScript
16 lines
393 B
JavaScript
goog.provide('ol');
|
|
|
|
|
|
/**
|
|
* ol.inherits is an alias to the goog.inherits function. It is exported
|
|
* for use in non-compiled application code. See ol.exports.
|
|
*
|
|
* FIXME: We use a new line to fake the linter. Without the new line the
|
|
* linter complains with:
|
|
*
|
|
* "Missing newline between constructor and goog.inherits"
|
|
* @todo stability experimental
|
|
*/
|
|
ol.inherits =
|
|
goog.inherits;
|