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
A var that is first used in assignment in the local scope, and then later unscoped flags a MISSING_VAR message. It should flag an issue with mixed scope declarations instead (new).
Example:
local.foo = 123;
foo = 123;
The text was updated successfully, but these errors were encountered:
A var that is first used in assignment in the local scope, and then later unscoped flags a MISSING_VAR message. It should flag an issue with mixed scope declarations instead (new).
Example:
The text was updated successfully, but these errors were encountered: