You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 20, 2022. It is now read-only.
If we use namespace.property.anotherProperty inside a program, do we need to provide externs for namespace.property.anotherProperty, or does namespace.property suffice?
The text was updated successfully, but these errors were encountered:
Probably easier to run on the command line: closure-compiler --compilation_level ADVANCED [--externs externs.js,] --js file.js[,] [--js_output_file output.js]
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Looking at the externs contained in https://github.com/google/closure-compiler/tree/master/contrib/externs, it seems like only the top-level namespace and the prototypes are defined. Is it actually necessary to recurse into everything?
e.g.
If we use
namespace.property.anotherProperty
inside a program, do we need to provide externs fornamespace.property.anotherProperty
, or doesnamespace.property
suffice?The text was updated successfully, but these errors were encountered: