@@ -11,6 +11,7 @@ module.exports = {
1111 simpleObj : function ( ) { a } ,
1212 promiseObj : function ( $scope , $timeout ) { b } ,
1313 translations : "translations" ,
14+ objMethod ( a ) { a }
1415 } ,
1516 params : {
1617 simple : function ( $scope ) { } ,
@@ -33,6 +34,11 @@ module.exports = {
3334 templateProvider : function ( $scope ) { } ,
3435 controller : function ( $scope ) { } ,
3536 } ,
37+ viewc : {
38+ dontAlterMe ( arg ) { } ,
39+ templateProvider ( $scope ) { } ,
40+ controller ( $scope ) { }
41+ } ,
3642 dontAlterMe : null ,
3743 } ,
3844 controller : function ( $scope , simpleObj , promiseObj , translations ) { c } ,
@@ -54,6 +60,7 @@ module.exports = {
5460 simpleObj : function ( ) { a } ,
5561 promiseObj : [ "$scope" , "$timeout" , function ( $scope , $timeout ) { b } ] ,
5662 translations : "translations" ,
63+ objMethod : [ "a" , function ( a ) { a } ]
5764 } ,
5865 params : {
5966 simple : [ "$scope" , function ( $scope ) { } ] ,
@@ -76,6 +83,11 @@ module.exports = {
7683 templateProvider : [ "$scope" , function ( $scope ) { } ] ,
7784 controller : [ "$scope" , function ( $scope ) { } ] ,
7885 } ,
86+ viewc : {
87+ dontAlterMe ( arg ) { } ,
88+ templateProvider : [ "$scope" , function ( $scope ) { } ] ,
89+ controller : [ "$scope" , function ( $scope ) { } ]
90+ } ,
7991 dontAlterMe : null ,
8092 } ,
8193 controller : [ "$scope" , "simpleObj" , "promiseObj" , "translations" , function ( $scope , simpleObj , promiseObj , translations ) { c } ] ,
@@ -233,4 +245,4 @@ module.exports = {
233245 }
234246 }
235247 ]
236- }
248+ }
0 commit comments