@angular/core 5.2.2 → 5.2.3

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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v5.2.2
2
+ * @license Angular v5.2.3
3
3
  * (c) 2010-2018 Google, Inc. https://angular.io/
4
4
  * License: MIT
5
5
  */
package/esm5/core.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v5.2.2
2
+ * @license Angular v5.2.3
3
3
  * (c) 2010-2018 Google, Inc. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -716,7 +716,7 @@ var Version = /** @class */ (function () {
716
716
  /**
717
717
  * \@stable
718
718
  */
719
- var VERSION = new Version('5.2.2');
719
+ var VERSION = new Version('5.2.3');
720
720
 
721
721
  /**
722
722
  * @fileoverview added by tsickle
@@ -9899,7 +9899,7 @@ function checkAndUpdateBinding(view, def, bindingIdx, value) {
9899
9899
  function checkBindingNoChanges(view, def, bindingIdx, value) {
9900
9900
  var /** @type {?} */ oldValue = view.oldValues[def.bindingIndex + bindingIdx];
9901
9901
  if ((view.state & 1 /* BeforeFirstCheck */) || !devModeEqual(oldValue, value)) {
9902
- var /** @type {?} */ bindingName = def.bindings[def.bindingIndex].name;
9902
+ var /** @type {?} */ bindingName = def.bindings[bindingIdx].name;
9903
9903
  throw expressionChangedAfterItHasBeenCheckedError(Services.createDebugContext(view, def.nodeIndex), bindingName + ": " + oldValue, bindingName + ": " + value, (view.state & 1 /* BeforeFirstCheck */) !== 0);
9904
9904
  }
9905
9905
  }