File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed
modules/angular2/src/render/dom/view Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,6 @@ export class ElementBinderBuilder {
149149 nestedProtoView : ProtoViewBuilder = null ;
150150 propertyBindings : Map < string , ASTWithSource > = new Map ( ) ;
151151 variableBindings : Map < string , string > = new Map ( ) ;
152- propertyBindingsToDirectives : Set < string > = new Set ( ) ;
153152 eventBindings : List < api . EventBinding > = [ ] ;
154153 eventBuilder : EventBuilder = new EventBuilder ( ) ;
155154 textBindings : Map < Node , ASTWithSource > = new Map ( ) ;
@@ -191,12 +190,6 @@ export class ElementBinderBuilder {
191190 this . propertyBindings . set ( name , expression ) ;
192191 }
193192
194- bindPropertyToDirective ( name : string ) {
195- // we are filling in a set of property names that are bound to a property
196- // of at least one directive. This allows us to report "dangling" bindings.
197- this . propertyBindingsToDirectives . add ( name ) ;
198- }
199-
200193 bindVariable ( name : string , value : string ) {
201194 // When current is a view root, the variable bindings are set to the *nested* proto view.
202195 // The root view conceptually signifies a new "block scope" (the nested view), to which
You can’t perform that action at this time.
0 commit comments