feat(Angular.js): add externs file for Closure Compiler

This adds an (incomplete) externs file for use with the Closure Compiler. Users
can pass this as -extern to the compiler pass to get type checking and protect
their AngularJS use against property renaming in advanced compilation mode.
This commit is contained in:
Martin Probst
2013-10-30 14:56:55 -07:00
parent 43d49013d1
commit 3ccec13aa7
2 changed files with 1733 additions and 0 deletions

14
closure/README.md Normal file
View File

@@ -0,0 +1,14 @@
This file contains externs for use with the Closure compiler (aka JSCompiler).
Passing these files to the --externs parameter of a compiler pass allows using
type annotations for AngularJS objects. For example, Angular's $scope objects
can be annotated as:
/** @type {angular.Scope} */ var scope = $scope;
This allows JSCompiler to type check accesses to scope, give warnings about
missing methods or incorrect arguments, and also prevents renaming of property
accesses with advanced compilation.
The externs are incomplete and maintained on an as-needed basis, but strive to
be correct. Externs for individual modules should be added in separate files.
See https://developers.google.com/closure/compiler/

1719
closure/angular.js vendored Normal file

File diff suppressed because it is too large Load Diff