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.
Files changed (45) hide show
  1. package/README.md +327 -0
  2. package/compiler.jar +0 -0
  3. package/contrib/externs/angular-1.3-resource.js +6 -0
  4. package/contrib/externs/angular-1.3.js +4 -3
  5. package/contrib/externs/angular-1.4-resource.js +6 -0
  6. package/contrib/externs/angular-1.4.js +2 -2
  7. package/contrib/externs/angular-1.5-q_templated.js +19 -1
  8. package/contrib/externs/angular-1.5-resource.js +6 -0
  9. package/contrib/externs/angular-1.5.js +44 -9
  10. package/contrib/externs/angular-1.6-http-promise_templated.js +61 -0
  11. package/contrib/externs/angular-1.6-mocks.js +267 -0
  12. package/contrib/externs/angular-1.6-q_templated.js +194 -0
  13. package/contrib/externs/angular-1.6-resource.js +332 -0
  14. package/contrib/externs/{w3c_css.js → angular-1.6-test.js} +8 -6
  15. package/contrib/externs/angular-1.6.js +2646 -0
  16. package/contrib/externs/angular-cache-4.6.js +316 -0
  17. package/contrib/externs/angular-material-1.1.js +92 -33
  18. package/contrib/externs/angular-material.js +36 -5
  19. package/contrib/externs/chai-3.5.js +101 -2
  20. package/contrib/externs/chrome_extensions.js +267 -95
  21. package/contrib/externs/jasmine-2.0.js +23 -3
  22. package/contrib/externs/jquery-1.4.4.js +1 -1
  23. package/contrib/externs/jquery-1.5.js +1 -1
  24. package/contrib/externs/jquery-1.6.js +1 -1
  25. package/contrib/externs/jquery-3.0.js +2037 -0
  26. package/contrib/externs/jquery-3.1.js +2045 -0
  27. package/contrib/externs/maps/google_maps_api_v3.js +306 -263
  28. package/contrib/externs/maps/google_maps_api_v3_27.js +6732 -0
  29. package/contrib/externs/maps/google_maps_api_v3_28.js +6637 -0
  30. package/contrib/externs/maps/google_maps_api_v3_exp.js +41 -106
  31. package/contrib/externs/mocha-2.5.js +65 -14
  32. package/contrib/externs/polymer-1.0.js +43 -5
  33. package/contrib/externs/safari.js +58 -0
  34. package/contrib/externs/sinon-1.17.js +719 -10
  35. package/contrib/externs/sinon-chai-2.7.js +78 -0
  36. package/contrib/externs/w3c_eventsource.js +6 -17
  37. package/contrib/externs/web_component_tester-4.2.js +6 -0
  38. package/contrib/nodejs/crypto.js +6 -6
  39. package/lib/gulp/index.js +2 -2
  40. package/lib/node/closure-compiler.js +3 -1
  41. package/package.json +8 -9
  42. package/contrib/externs/jquery-1.3.2.externs.js +0 -714
  43. package/contrib/externs/w3c_gamepad.js +0 -91
  44. package/contrib/externs/w3c_midi.js +0 -293
  45. 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, function())} handler
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, function())} handler
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, function()=)} handler
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://code.google.com/p/closure-compiler/issues/detail?id=583
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://code.google.com/p/closure-compiler/issues/detail?id=583
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://code.google.com/p/closure-compiler/issues/detail?id=583
292
+ * @suppress {checkTypes} http://blickly.github.io/closure-compiler-issues/#583
293
293
  */
294
294
  jQuery.prototype.clone = function(withDataAndEvents, deepWithDataAndEvents) {};
295
295