We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56f3429 commit a00cb1dCopy full SHA for a00cb1d
modules/angular2/src/core/compiler/compiler.js
@@ -200,11 +200,11 @@ export class Compiler {
200
componentId: stringify(component),
201
absUrl: templateAbsUrl,
202
template: view.template,
203
- directives: ListWrapper.map(directives, this._buildRenderDirective)
+ directives: ListWrapper.map(directives, Compiler.buildRenderDirective)
204
});
205
}
206
207
- _buildRenderDirective(directiveBinding) {
+ static buildRenderDirective(directiveBinding) {
208
var ann = directiveBinding.annotation;
209
var renderType;
210
var compileChildren = true;
0 commit comments