angular-cn/modules
vsavkin 42231f5719 feat(change_detection): allow all legal programs in the dev mode
BEFORE:

The following would throw in the dev mode because `f` would return a new array when called by checkNoChanges.

@Component({
  template: `
    {{f()}}
  `
})
class A {
  f() { return [1]; }
}

AFTER:

The checkNoChanges function compares only primitives types for equality, and deeply compares iterables. Other objects cannot cause checkNoChanges to throw. This means that the dev mode would never fail given a legal program, but may allow some illegal programs.
2016-01-26 21:01:19 -08:00
..
angular1_router feat(router): support links with just auxiliary routes 2015-12-16 19:50:19 +00:00
angular2 feat(change_detection): allow all legal programs in the dev mode 2016-01-26 21:01:19 -08:00
angular2_material docs: fix some typos in comments and strings 2015-12-17 22:57:43 +00:00
benchmarks fix(web_workers): support @AngularEntrypoint in web workers 2016-01-13 17:55:01 +00:00
benchmarks_external fix(web_workers): support @AngularEntrypoint in web workers 2016-01-13 17:55:01 +00:00
benchpress fix(benchpress): fix flake 2016-01-04 19:25:32 +00:00
payload_tests/hello_world/ts chore: track size of a "Hello world" app built with SystemJS 2016-01-26 02:54:03 +00:00
playground fix(ddc): router, compiler, web worker fixes for DDC 2016-01-27 02:30:20 +00:00