mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
BREAKING CHANGE: compiler will throw on binding to non-existing properties. Till now it was possible to have a binding to a non-existing property, ex.: `<div [foo]="exp">`. From now on this is compilation error - any property binding needs to have at least one associated property: eaither on an HTML element or on any directive associated with a given element (directives' properites need to be declared using the `properties` field in the `@Directive` / `@Component` annotation). Closes #2598 |
||
|---|---|---|
| .. | ||
| compile_control.ts | ||
| compile_element.ts | ||
| compile_pipeline.ts | ||
| compile_step.ts | ||
| compile_step_factory.ts | ||
| compiler.ts | ||
| directive_parser.ts | ||
| property_binding_parser.ts | ||
| selector.ts | ||
| template_loader.ts | ||
| text_interpolation_parser.ts | ||
| view_splitter.ts | ||