diff --git a/modules/@angular/compiler/src/compile_metadata.ts b/modules/@angular/compiler/src/compile_metadata.ts index b30d2508fd..488413195a 100644 --- a/modules/@angular/compiler/src/compile_metadata.ts +++ b/modules/@angular/compiler/src/compile_metadata.ts @@ -441,8 +441,8 @@ export class CompileDirectiveMetadata implements CompileMetadataWithIdentifier { hostProperties[matches[1]] = value; } else if (isPresent(matches[2])) { hostListeners[matches[2]] = value; - } else if (isPresent(matches[3])) { - hostProperties[matches[3]] = value; + } else if (isPresent(matches[3])) { // DEPRECATED: remove this if statement post RC5 + hostProperties['@' + matches[3]] = value; } }); } diff --git a/modules/@angular/compiler/src/template_parser/template_parser.ts b/modules/@angular/compiler/src/template_parser/template_parser.ts index a197e9c09d..4077dbfdf3 100644 --- a/modules/@angular/compiler/src/template_parser/template_parser.ts +++ b/modules/@angular/compiler/src/template_parser/template_parser.ts @@ -540,7 +540,7 @@ class TemplateParseVisitor implements html.Visitor { } else if (isPresent(bindParts[7])) { // match: animate-name if (attrName[0] == '@' && isPresent(attrValue) && attrValue.length > 0) { this._reportError( - `Assigning animation triggers via @prop="exp" attributes with an expression is deprecated. Use [@prop]="exp" instead!`, + `Assigning animation triggers via @prop="exp" attributes with an expression is deprecated. Use property bindings (e.g. [@prop]="exp") instead!`, attr.sourceSpan, ParseErrorLevel.WARNING); } this._parseAnimation( @@ -809,9 +809,13 @@ class TemplateParseVisitor implements html.Visitor { boundPropertyName = partValue.substr(1); bindingType = PropertyBindingType.Animation; securityContext = SecurityContext.NONE; - this._reportError( - `Assigning animation triggers within host data as attributes such as "@prop": "exp" is deprecated. Use "[@prop]": "exp" instead!`, - sourceSpan, ParseErrorLevel.WARNING); + // DEPRECATED: remove this if statement post RC5 + if (boundPropertyName[0] == '@') { + this._reportError( + `Assigning animation triggers within host data as attributes such as "@prop": "exp" is deprecated. Use host bindings (e.g. "[@prop]": "exp") instead!`, + sourceSpan, ParseErrorLevel.WARNING); + boundPropertyName = boundPropertyName.substr(1); + } } else { boundPropertyName = this._schemaRegistry.getMappedPropName(partValue); securityContext = this._schemaRegistry.securityContext(elementName, boundPropertyName); diff --git a/modules/@angular/compiler/test/template_parser/template_parser_spec.ts b/modules/@angular/compiler/test/template_parser/template_parser_spec.ts index 30fd853f02..cb23d00b4c 100644 --- a/modules/@angular/compiler/test/template_parser/template_parser_spec.ts +++ b/modules/@angular/compiler/test/template_parser/template_parser_spec.ts @@ -291,6 +291,7 @@ Can't bind to 'invalidProp' since it isn't a known property of 'my-component'. ]); }); + // DEPRECATED: remove this spec post RC5 it('should parse bound properties via @ and not report them as attributes and also report a deprecation warning', () => { expect(humanizeTplAst(parse('