40 lines
780 B
TypeScript
40 lines
780 B
TypeScript
'use strict';
|
|
|
|
declare const angular: any;
|
|
|
|
import babelTestMsg from './to-import';
|
|
console.log(babelTestMsg);
|
|
|
|
class someCtrl {
|
|
constructor($scope) {
|
|
this.doSomething();
|
|
}
|
|
doSomething() {
|
|
}
|
|
}
|
|
|
|
angular.module('test', [])
|
|
.controller('testCtrl', function($scope) {
|
|
})
|
|
.factory('testFactory', function($cacheFactory) {
|
|
return {};
|
|
})
|
|
.service('testNotAnnotated', function() {
|
|
return {};
|
|
})
|
|
.directive('testDirective', function ($timeout) {
|
|
return {
|
|
restrict: 'E',
|
|
controller: function($scope) {
|
|
},
|
|
};
|
|
})
|
|
.controller('someCtrl', someCtrl);
|
|
|
|
function toAnnotate($scope) {
|
|
'ngInject';
|
|
console.log('hi'); // should be function body, otherwise babel remove directive prologue
|
|
}
|
|
|
|
console.log('after annotated function');
|