Remove externs/vbarray.js
This commit is contained in:
committed by
Tim Schaub
parent
b1d59366dc
commit
288392c8a7
3
build.py
3
build.py
@@ -315,8 +315,7 @@ def examples_star_json(name, match):
|
||||
"externs/jquery-1.9.js",
|
||||
"externs/proj4js.js",
|
||||
"externs/tilejson.js",
|
||||
"externs/topojson.js",
|
||||
"externs/vbarray.js"
|
||||
"externs/topojson.js"
|
||||
],
|
||||
"define": [
|
||||
"goog.array.ASSUME_NATIVE_FUNCTIONS=true",
|
||||
|
||||
@@ -20,8 +20,7 @@
|
||||
"externs/jquery-1.9.js",
|
||||
"externs/proj4js.js",
|
||||
"externs/tilejson.js",
|
||||
"externs/topojson.js",
|
||||
"externs/vbarray.js"
|
||||
"externs/topojson.js"
|
||||
],
|
||||
"define": [
|
||||
"goog.array.ASSUME_NATIVE_FUNCTIONS=true",
|
||||
|
||||
@@ -10,8 +10,7 @@
|
||||
"externs/olx.js",
|
||||
"externs/proj4js.js",
|
||||
"externs/tilejson.js",
|
||||
"externs/topojson.js",
|
||||
"externs/vbarray.js"
|
||||
"externs/topojson.js"
|
||||
],
|
||||
"define": [
|
||||
"goog.array.ASSUME_NATIVE_FUNCTIONS=true",
|
||||
|
||||
@@ -164,8 +164,7 @@ The minimum config file looks like this:
|
||||
"node_modules/openlayers/externs/geojson.js",
|
||||
"node_modules/openlayers/externs/proj4js.js",
|
||||
"node_modules/openlayers/externs/tilejson.js",
|
||||
"node_modules/openlayers/externs/topojson.js",
|
||||
"node_modules/openlayers/externs/vbarray.js"
|
||||
"node_modules/openlayers/externs/topojson.js"
|
||||
],
|
||||
"define": [
|
||||
"goog.array.ASSUME_NATIVE_FUNCTIONS=true",
|
||||
@@ -221,8 +220,7 @@ Here is a version of `config.json` with more compilation checks enabled:
|
||||
"node_modules/openlayers/externs/geojson.js",
|
||||
"node_modules/openlayers/externs/proj4js.js",
|
||||
"node_modules/openlayers/externs/tilejson.js",
|
||||
"node_modules/openlayers/externs/topojson.js",
|
||||
"node_modules/openlayers/externs/vbarray.js"
|
||||
"node_modules/openlayers/externs/topojson.js"
|
||||
],
|
||||
"define": [
|
||||
"goog.array.ASSUME_NATIVE_FUNCTIONS=true",
|
||||
|
||||
@@ -57,8 +57,7 @@ Creating a custom build requires writing a build configuration file. The format
|
||||
"externs/olx.js",
|
||||
"externs/proj4js.js",
|
||||
"externs/tilejson.js",
|
||||
"externs/topojson.js",
|
||||
"externs/vbarray.js"
|
||||
"externs/topojson.js"
|
||||
],
|
||||
"define": [
|
||||
"goog.array.ASSUME_NATIVE_FUNCTIONS=true",
|
||||
|
||||
@@ -1,46 +0,0 @@
|
||||
/**
|
||||
* @externs
|
||||
* @see http://msdn.microsoft.com/en-us/library/y39d47w8(v=vs.94).aspx
|
||||
*/
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* FIXME check argument type
|
||||
* @constructor
|
||||
* @param {VBArray|string} safeArray
|
||||
*/
|
||||
var VBArray = function(safeArray) {};
|
||||
|
||||
|
||||
/**
|
||||
* @return {number}
|
||||
*/
|
||||
VBArray.prototype.dimensions = function() {};
|
||||
|
||||
|
||||
/**
|
||||
* @param {...number} var_args
|
||||
* @return {*}
|
||||
*/
|
||||
VBArray.prototype.getItem = function(var_args) {};
|
||||
|
||||
|
||||
/**
|
||||
* @param {number=} opt_dimension
|
||||
* @return {*}
|
||||
*/
|
||||
VBArray.prototype.lbound = function(opt_dimension) {};
|
||||
|
||||
|
||||
/**
|
||||
* @return {Array.<number>}
|
||||
*/
|
||||
VBArray.prototype.toArray = function() {};
|
||||
|
||||
|
||||
/**
|
||||
* @param {number=} opt_dimension
|
||||
* @return {*}
|
||||
*/
|
||||
VBArray.prototype.ubound = function(opt_dimension) {};
|
||||
@@ -53,8 +53,7 @@ Below is a complete `build.json` configuration file that would generate a 'full'
|
||||
"externs/olx.js",
|
||||
"externs/proj4js.js",
|
||||
"externs/tilejson.js",
|
||||
"externs/topojson.js",
|
||||
"externs/vbarray.js"
|
||||
"externs/topojson.js"
|
||||
],
|
||||
"define": [
|
||||
"goog.dom.ASSUME_STANDARDS_MODE=true",
|
||||
|
||||
Reference in New Issue
Block a user