@@ -163,23 +163,20 @@ export class RenderDirectiveMetadata {
163163 hostListeners : Map < string , string > ;
164164 hostProperties : Map < string , string > ;
165165 hostAttributes : Map < string , string > ;
166- hostActions : Map < string , string > ;
167166 // group 1: "property" from "[property]"
168167 // group 2: "event" from "(event)"
169- // group 3: "action" from "@action"
170- private static _hostRegExp = / ^ (?: (?: \[ ( [ ^ \] ] + ) \] ) | (?: \( ( [ ^ \) ] + ) \) ) | (?: @ ( .+ ) ) ) $ / g;
168+ private static _hostRegExp = / ^ (?: (?: \[ ( [ ^ \] ] + ) \] ) | (?: \( ( [ ^ \) ] + ) \) ) ) $ / g;
171169
172170 constructor ( { id, selector, compileChildren, events, hostListeners, hostProperties, hostAttributes,
173- hostActions , properties, readAttributes, type, callOnDestroy, callOnChange,
174- callOnCheck , callOnInit, callOnAllChangesDone, changeDetection, exportAs} : {
171+ properties, readAttributes, type, callOnDestroy, callOnChange, callOnCheck ,
172+ callOnInit, callOnAllChangesDone, changeDetection, exportAs} : {
175173 id ?: string ,
176174 selector ?: string ,
177175 compileChildren ?: boolean ,
178176 events ?: List < string > ,
179177 hostListeners ?: Map < string , string > ,
180178 hostProperties ?: Map < string , string > ,
181179 hostAttributes ?: Map < string , string > ,
182- hostActions ?: Map < string , string > ,
183180 properties ?: List < string > ,
184181 readAttributes ?: List < string > ,
185182 type ?: number ,
@@ -198,7 +195,6 @@ export class RenderDirectiveMetadata {
198195 this . hostListeners = hostListeners ;
199196 this . hostAttributes = hostAttributes ;
200197 this . hostProperties = hostProperties ;
201- this . hostActions = hostActions ;
202198 this . properties = properties ;
203199 this . readAttributes = readAttributes ;
204200 this . type = type ;
@@ -233,7 +229,6 @@ export class RenderDirectiveMetadata {
233229 let hostListeners = new Map ( ) ;
234230 let hostProperties = new Map ( ) ;
235231 let hostAttributes = new Map ( ) ;
236- let hostActions = new Map ( ) ;
237232
238233 if ( isPresent ( host ) ) {
239234 MapWrapper . forEach ( host , ( value : string , key : string ) => {
@@ -244,8 +239,6 @@ export class RenderDirectiveMetadata {
244239 hostProperties . set ( matches [ 1 ] , value ) ;
245240 } else if ( isPresent ( matches [ 2 ] ) ) {
246241 hostListeners . set ( matches [ 2 ] , value ) ;
247- } else if ( isPresent ( matches [ 3 ] ) ) {
248- hostActions . set ( matches [ 3 ] , value ) ;
249242 }
250243 } ) ;
251244 }
@@ -258,7 +251,6 @@ export class RenderDirectiveMetadata {
258251 hostListeners : hostListeners ,
259252 hostProperties : hostProperties ,
260253 hostAttributes : hostAttributes ,
261- hostActions : hostActions ,
262254 properties : properties ,
263255 readAttributes : readAttributes ,
264256 type : type ,
0 commit comments