From e706f3477b3bc364cd06994e0a885c169d7c9143 Mon Sep 17 00:00:00 2001 From: Rob Wormald Date: Mon, 23 Mar 2015 23:30:53 -0700 Subject: [PATCH] Remove invalid super() call Unless I'm missing something? --- modules/angular2/src/change_detection/parser/ast.js | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/angular2/src/change_detection/parser/ast.js b/modules/angular2/src/change_detection/parser/ast.js index f66c51ba5c..96ffc12b54 100644 --- a/modules/angular2/src/change_detection/parser/ast.js +++ b/modules/angular2/src/change_detection/parser/ast.js @@ -418,7 +418,6 @@ export class TemplateBinding { name:string; expression:ASTWithSource; constructor(key:string, keyIsVar:boolean, name:string, expression:ASTWithSource) { - super(); this.key = key; this.keyIsVar = keyIsVar; // only either name or expression will be filled.