Index: third_party/closure_compiler/compile.py |
diff --git a/third_party/closure_compiler/compile.py b/third_party/closure_compiler/compile.py |
index 091a8470e3da888fb6a69cfda341c9422e9ea65d..204ed918251e736fe437132bd87b7f161dd5c644 100755 |
--- a/third_party/closure_compiler/compile.py |
+++ b/third_party/closure_compiler/compile.py |
@@ -47,14 +47,15 @@ class Checker(object): |
"visibility", |
] |
- # Extra @jsDocAnnotations used when compiling polymer code. |
- _POLYMER_EXTRA_ANNOTATIONS = [ |
+ # Extra @jsDocAnnotations used when compiling Chrome JS. |
+ _EXTRA_ANNOTATIONS = [ |
Dan Beam
2015/05/12 23:09:20
nit: _EXTRA_JSDOC_ANNOTATIONS, remove comment
Jeremy Klein
2015/05/12 23:39:24
Reverting this file's changes.
|
"attribute", |
"status", |
"element", |
"homepage", |
"submodule", |
"group", |
+ "suppressReceiverCheck", |
Tyler Breisacher (Chromium)
2015/05/12 21:39:51
This seems to come from the devtools code. I reall
Jeremy Klein
2015/05/12 23:39:24
Done.
|
] |
_COMMON_CLOSURE_ARGS = [ |
@@ -67,7 +68,7 @@ class Checker(object): |
] + [ |
"--jscomp_error=%s" % err for err in _COMMON_JSCOMP_ERRORS |
] + [ |
- "--extra_annotation_name=%s" % a for a in _POLYMER_EXTRA_ANNOTATIONS |
+ "--extra_annotation_name=%s" % a for a in _EXTRA_ANNOTATIONS |
] |
# These are the extra flags used when compiling in strict mode. |