angular-cn/tools/public_api_guard
Tobias Bosch db49d422f2 refactor(compiler): generate less code for bindings to DOM elements
Detailed changes:
- remove `UNINITIALIZED`, initialize change detection fields with `undefined`.
  * we use `view.numberOfChecks === 0` now everywhere
    as indicator whether we are in the first change detection cycle
    (previously we used this only in a couple of places).
  * we keep the initialization itself as change detection get slower without it.
- remove passing around `throwOnChange` in various generated calls,
  and store it on the view as property instead.
- change generated code for bindings to DOM elements as follows:
  Before:
  ```
  var currVal_10 = self.context.bgColor;
  if (jit_checkBinding15(self.throwOnChange,self._expr_10,currVal_10)) {
    self.renderer.setElementStyle(self._el_0,'backgroundColor',((self.viewUtils.sanitizer.sanitize(jit_21,currVal_10) == null)? null: self.viewUtils.sanitizer.sanitize(jit_21,currVal_10).toString()));
    self._expr_10 = currVal_10;
  }
  var currVal_11 = jit_inlineInterpolate16(1,' ',self.context.data.value,' ');
  if (jit_checkBinding15(self.throwOnChange,self._expr_11,currVal_11)) {
    self.renderer.setText(self._text_1,currVal_11);
    self._expr_11 = currVal_11;
  }
  ```,
  After:
  ```
  var currVal_10 = self.context.bgColor;
  jit_checkRenderStyle14(self,self._el_0,'backgroundColor',null,self._expr_10,self._expr_10=currVal_10,false,jit_21);
  var currVal_11 = jit_inlineInterpolate15(1,' ',self.context.data.value,' ');
  jit_checkRenderText16(self,self._text_1,self._expr_11,self._expr_11=currVal_11,false);
  ```

Performance impact:
- None seen (checked against internal latency lab)

Part of #13651
2017-01-03 13:05:05 -08:00
..
common feat(common): export NgLocaleLocalization (#13367) 2016-12-12 11:16:12 -08:00
compiler fix(packages): use ES modules for primary build (#11120) 2016-08-30 18:07:40 -07:00
core refactor(compiler): generate less code for bindings to DOM elements 2017-01-03 13:05:05 -08:00
forms fix(forms): introduce checkbox required validator 2016-12-14 08:44:24 -08:00
http feat(http): simplify URLSearchParams creation (#13338) 2016-12-09 15:38:29 -08:00
platform-browser feat(platform browser): introduce Meta service (#12322) 2016-12-08 18:44:28 -08:00
platform-browser-dynamic feat(build): record angular version in the dom (#13164) 2016-11-30 13:52:08 -08:00
platform-server feat(build): record angular version in the dom (#13164) 2016-11-30 13:52:08 -08:00
platform-webworker feat(build): record angular version in the dom (#13164) 2016-11-30 13:52:08 -08:00
platform-webworker-dynamic feat(build): record angular version in the dom (#13164) 2016-11-30 13:52:08 -08:00
router feat(router): add an extra argument to CanDeactivate interface (#13560) 2016-12-27 14:08:06 -08:00
upgrade feat(upgrade): enable Angular 1 unit testing of upgrade module 2016-12-14 13:02:27 -08:00