google-closure-compiler 20161024.3.0 → 20170409.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +327 -0
- package/compiler.jar +0 -0
- package/contrib/externs/angular-1.3-resource.js +6 -0
- package/contrib/externs/angular-1.3.js +4 -3
- package/contrib/externs/angular-1.4-resource.js +6 -0
- package/contrib/externs/angular-1.4.js +2 -2
- package/contrib/externs/angular-1.5-q_templated.js +19 -1
- package/contrib/externs/angular-1.5-resource.js +6 -0
- package/contrib/externs/angular-1.5.js +44 -9
- package/contrib/externs/angular-1.6-http-promise_templated.js +61 -0
- package/contrib/externs/angular-1.6-mocks.js +267 -0
- package/contrib/externs/angular-1.6-q_templated.js +194 -0
- package/contrib/externs/angular-1.6-resource.js +332 -0
- package/contrib/externs/{w3c_css.js → angular-1.6-test.js} +8 -6
- package/contrib/externs/angular-1.6.js +2646 -0
- package/contrib/externs/angular-cache-4.6.js +316 -0
- package/contrib/externs/angular-material-1.1.js +92 -33
- package/contrib/externs/angular-material.js +36 -5
- package/contrib/externs/chai-3.5.js +101 -2
- package/contrib/externs/chrome_extensions.js +267 -95
- package/contrib/externs/jasmine-2.0.js +23 -3
- package/contrib/externs/jquery-1.4.4.js +1 -1
- package/contrib/externs/jquery-1.5.js +1 -1
- package/contrib/externs/jquery-1.6.js +1 -1
- package/contrib/externs/jquery-3.0.js +2037 -0
- package/contrib/externs/jquery-3.1.js +2045 -0
- package/contrib/externs/maps/google_maps_api_v3.js +306 -263
- package/contrib/externs/maps/google_maps_api_v3_27.js +6732 -0
- package/contrib/externs/maps/google_maps_api_v3_28.js +6637 -0
- package/contrib/externs/maps/google_maps_api_v3_exp.js +41 -106
- package/contrib/externs/mocha-2.5.js +65 -14
- package/contrib/externs/polymer-1.0.js +43 -5
- package/contrib/externs/safari.js +58 -0
- package/contrib/externs/sinon-1.17.js +719 -10
- package/contrib/externs/sinon-chai-2.7.js +78 -0
- package/contrib/externs/w3c_eventsource.js +6 -17
- package/contrib/externs/web_component_tester-4.2.js +6 -0
- package/contrib/nodejs/crypto.js +6 -6
- package/lib/gulp/index.js +2 -2
- package/lib/node/closure-compiler.js +3 -1
- package/package.json +8 -9
- package/contrib/externs/jquery-1.3.2.externs.js +0 -714
- package/contrib/externs/w3c_gamepad.js +0 -91
- package/contrib/externs/w3c_midi.js +0 -293
- package/contrib/externs/w3c_pointer_events.js +0 -105
|
@@ -35,6 +35,12 @@ var jasmine = {};
|
|
|
35
35
|
jasmine.addMatchers = function(matchers) {};
|
|
36
36
|
|
|
37
37
|
|
|
38
|
+
/**
|
|
39
|
+
* @param {function(?, ?): (boolean|undefined)} tester
|
|
40
|
+
*/
|
|
41
|
+
jasmine.addCustomEqualityTester = function(tester) {};
|
|
42
|
+
|
|
43
|
+
|
|
38
44
|
/**
|
|
39
45
|
* @return {!jasmine.Clock}
|
|
40
46
|
*/
|
|
@@ -425,21 +431,35 @@ function fdescribe(description, handler) {}
|
|
|
425
431
|
*/
|
|
426
432
|
function expect(expectedValue) {}
|
|
427
433
|
|
|
434
|
+
/** @typedef {function()} */
|
|
435
|
+
var DoneFunc;
|
|
436
|
+
|
|
437
|
+
/** @type {DoneFunc} */
|
|
438
|
+
var doneFuncInst_;
|
|
439
|
+
/** @type {function(?=)} */
|
|
440
|
+
doneFuncInst_.fail;
|
|
428
441
|
|
|
429
442
|
/**
|
|
430
443
|
* @param {string} description
|
|
431
|
-
* @param {function(this:jasmine.Spec,
|
|
444
|
+
* @param {function(this:jasmine.Spec, DoneFunc)} handler
|
|
432
445
|
*/
|
|
433
446
|
function it(description, handler) {}
|
|
434
447
|
|
|
435
448
|
|
|
436
449
|
/**
|
|
437
450
|
* @param {string} description
|
|
438
|
-
* @param {function(this:jasmine.Spec,
|
|
451
|
+
* @param {function(this:jasmine.Spec, DoneFunc)} handler
|
|
439
452
|
*/
|
|
440
453
|
function fit(description, handler) {}
|
|
441
454
|
|
|
442
455
|
|
|
456
|
+
/**
|
|
457
|
+
* @param {string} description
|
|
458
|
+
* @param {function(this:jasmine.Spec, function())} handler
|
|
459
|
+
*/
|
|
460
|
+
function pending(description, handler) {}
|
|
461
|
+
|
|
462
|
+
|
|
443
463
|
/**
|
|
444
464
|
* @param {Object} spiedOnObject
|
|
445
465
|
* @param {string} methodName
|
|
@@ -458,7 +478,7 @@ function xdescribe(description, handler) {}
|
|
|
458
478
|
|
|
459
479
|
/**
|
|
460
480
|
* @param {string} description
|
|
461
|
-
* @param {function(this:jasmine.Spec,
|
|
481
|
+
* @param {function(this:jasmine.Spec, DoneFunc)} handler
|
|
462
482
|
*/
|
|
463
483
|
function xit(description, handler) {}
|
|
464
484
|
|
|
@@ -546,7 +546,7 @@ jQueryObject.prototype.click = function(arg1, handler) {};
|
|
|
546
546
|
/**
|
|
547
547
|
* @param {boolean=} withDataAndEvents
|
|
548
548
|
* @return {jQueryObject}
|
|
549
|
-
* @suppress {checkTypes} http://
|
|
549
|
+
* @suppress {checkTypes} http://blickly.github.io/closure-compiler-issues/#583
|
|
550
550
|
*/
|
|
551
551
|
jQueryObject.prototype.clone = function(withDataAndEvents) {};
|
|
552
552
|
|
|
@@ -289,7 +289,7 @@ jQuery.prototype.click = function(arg1, handler) {};
|
|
|
289
289
|
* @param {boolean=} withDataAndEvents
|
|
290
290
|
* @param {boolean=} deepWithDataAndEvents
|
|
291
291
|
* @return {jQuery}
|
|
292
|
-
* @suppress {checkTypes} http://
|
|
292
|
+
* @suppress {checkTypes} http://blickly.github.io/closure-compiler-issues/#583
|
|
293
293
|
*/
|
|
294
294
|
jQuery.prototype.clone = function(withDataAndEvents, deepWithDataAndEvents) {};
|
|
295
295
|
|
|
@@ -289,7 +289,7 @@ jQuery.prototype.click = function(arg1, handler) {};
|
|
|
289
289
|
* @param {boolean=} withDataAndEvents
|
|
290
290
|
* @param {boolean=} deepWithDataAndEvents
|
|
291
291
|
* @return {jQuery}
|
|
292
|
-
* @suppress {checkTypes} http://
|
|
292
|
+
* @suppress {checkTypes} http://blickly.github.io/closure-compiler-issues/#583
|
|
293
293
|
*/
|
|
294
294
|
jQuery.prototype.clone = function(withDataAndEvents, deepWithDataAndEvents) {};
|
|
295
295
|
|