File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ var CoreObject = require('core-object');
22
33var FileInfoCollection = CoreObject . extend ( {
44 init : function ( ) {
5+ this . _super . init && this . _super . init . apply ( this , arguments ) ;
6+
57 this . _fileInfos = [ ] ;
68 this . _bucketCounts = { } ;
79 this . _renderableInvocations = { } ;
Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ var FileInfo = CoreObject.extend({
1010 type : 'FileInfo' ,
1111
1212 init : function ( _options ) {
13+ this . _super . init && this . _super . init . apply ( this , arguments ) ;
14+
1315 var options = _options || { } ;
1416 this . options = options ;
1517 this . projectRoot = options . projectRoot ;
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ var Table = require('cli-table2');
55
66var Logger = CoreObject . extend ( {
77 init : function ( ) {
8+ this . _super . init && this . _super . init . apply ( this , arguments ) ;
9+
810 this . _movedFiles = { } ;
911 this . _renamedRenderables = [ ] ;
1012 } ,
You can’t perform that action at this time.
0 commit comments