Add missing goog.provide
The new version of the closure-compiler (version 20150729) wants that all the classes tagged with `@constructor` to be provided (with `goog.provide`).
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
goog.provide('ol.webgl.Fragment');
|
||||
goog.provide('ol.webgl.Shader');
|
||||
goog.provide('ol.webgl.Vertex');
|
||||
goog.provide('ol.webgl.shader');
|
||||
|
||||
goog.require('goog.functions');
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
// This file is automatically generated, do not edit
|
||||
goog.provide('{{namespace}}');
|
||||
goog.provide('{{namespace}}.Locations');
|
||||
goog.provide('{{className}}Fragment');
|
||||
goog.provide('{{className}}Vertex');
|
||||
|
||||
goog.require('ol.webgl.shader');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user