mirror of
https://github.com/github/codeql.git
synced 2026-03-12 10:36:46 +01:00
5 lines
134 B
JavaScript
5 lines
134 B
JavaScript
angular.module('myModule', [])
|
|
.controller('MyController', function(a) { // BAD: dependency 'a' does not exist
|
|
// ...
|
|
});
|