| Index: ios/web/js_compile.gni
|
| diff --git a/ios/web/js_compile.gni b/ios/web/js_compile.gni
|
| index eff527412e4328b3d4dd2ceec9db41270220a1cd..320b9f2ccab344f65e3893e56fb3dc3e3b22ce29 100644
|
| --- a/ios/web/js_compile.gni
|
| +++ b/ios/web/js_compile.gni
|
| @@ -113,15 +113,13 @@ template("js_compile_checked") {
|
| "$target_gen_dir/{{source_file_part}}",
|
| ]
|
|
|
| - # TODO(crbug.com/487804): need to enable the following compilation checks
|
| - # once the corresponding errors have been fixed:
|
| - # --jscomp_error=checkTypes
|
| - # --jscomp_error=checkVars
|
| - # --jscomp_error=missingProperties
|
| - # --jscomp_error=undefinedVars
|
| args = [
|
| "--compilation_level",
|
| "SIMPLE_OPTIMIZATIONS",
|
| + "--jscomp_error=checkTypes",
|
| + "--jscomp_error=checkVars",
|
| + "--jscomp_error=missingProperties",
|
| + "--jscomp_error=undefinedVars",
|
| "--jscomp_error=accessControls",
|
| "--jscomp_error=ambiguousFunctionDecl",
|
| "--jscomp_error=constantProperty",
|
|
|