|  | 
| 6 | 6 |  ASTWithSource, AST, AstTransformer, AccessMember, LiteralArray, ImplicitReceiver | 
| 7 | 7 | } from 'angular2/change_detection'; | 
| 8 | 8 | 
 | 
| 9 |  | -import {RenderProtoView} from './proto_view'; | 
|  | 9 | +import {DomProtoView} from './proto_view'; | 
| 10 | 10 | import {ElementBinder, Event} from './element_binder'; | 
| 11 | 11 | import {setterFactory} from './property_setter_factory'; | 
| 12 | 12 | 
 | 
| @@ -43,7 +43,7 @@ export class ProtoViewBuilder { | 
| 43 | 43 | 
 | 
| 44 | 44 |  bindVariable(name, value) { | 
| 45 | 45 |  // Store the variable map from value to variable, reflecting how it will be used later by | 
| 46 |  | - // RenderView. When a local is set to the view, a lookup for the variable name will take place keyed | 
|  | 46 | + // DomView. When a local is set to the view, a lookup for the variable name will take place keyed | 
| 47 | 47 |  // by the "value", or exported identifier. For example, ng-repeat sets a view local of "index". | 
| 48 | 48 |  // When this occurs, a lookup keyed by "index" must occur to find if there is a var referencing | 
| 49 | 49 |  // it. | 
| @@ -102,7 +102,7 @@ export class ProtoViewBuilder { | 
| 102 | 102 |  })); | 
| 103 | 103 |  }); | 
| 104 | 104 |  return new api.ProtoViewDto({ | 
| 105 |  | - render: new directDomRenderer.DirectDomProtoViewRef(new RenderProtoView({ | 
|  | 105 | + render: new directDomRenderer.DirectDomProtoViewRef(new DomProtoView({ | 
| 106 | 106 |  element: this.rootElement, | 
| 107 | 107 |  elementBinders: renderElementBinders, | 
| 108 | 108 |  imperativeRendererId: this.imperativeRendererId | 
| @@ -192,7 +192,7 @@ export class ElementBinderBuilder { | 
| 192 | 192 |  this.nestedProtoView.bindVariable(name, value); | 
| 193 | 193 |  } else { | 
| 194 | 194 |  // Store the variable map from value to variable, reflecting how it will be used later by | 
| 195 |  | - // RenderView. When a local is set to the view, a lookup for the variable name will take place keyed | 
|  | 195 | + // DomView. When a local is set to the view, a lookup for the variable name will take place keyed | 
| 196 | 196 |  // by the "value", or exported identifier. For example, ng-repeat sets a view local of "index". | 
| 197 | 197 |  // When this occurs, a lookup keyed by "index" must occur to find if there is a var referencing | 
| 198 | 198 |  // it. | 
|  | 
0 commit comments