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
I'm not sure if this is main branch of gwtquery. Today I updating my projects from GWT 2.5.1 to 2.6.1 and gwtquery 1.2.0 to 1.4.3 I have encountered following issue while packaging:
[ERROR] error optimizing:JSC_VAR_ARGUMENTS_SHADOWED_ERROR. Shadowing "arguments" is not allowed at com/google/gwt/query/client/Function.java line 120 : 0
Googling similar issues tells me that this should be easily fixed by renaming "arguments" to "params" or something similar in this class;
Hi!
I'm not sure if this is main branch of gwtquery. Today I updating my projects from GWT 2.5.1 to 2.6.1 and gwtquery 1.2.0 to 1.4.3 I have encountered following issue while packaging:
[ERROR] error optimizing:JSC_VAR_ARGUMENTS_SHADOWED_ERROR. Shadowing "arguments" is not allowed at com/google/gwt/query/client/Function.java line 120 : 0
Googling similar issues tells me that this should be easily fixed by renaming "arguments" to "params" or something similar in this class;
gwtquery/gwtquery-core/src/main/java/com/google/gwt/query/client/Function.java
Line 120 in 5c5aa47
I could do a PR but I'm not sure if this is the only class affected by this issue.
Compiling with closureCompiler=off succeeded.
The text was updated successfully, but these errors were encountered: