Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PLUGIN_ERROR on assignment to camel-case variable #244

Closed
mpaluchowski opened this issue Mar 6, 2017 · 0 comments
Closed

PLUGIN_ERROR on assignment to camel-case variable #244

mpaluchowski opened this issue Mar 6, 2017 · 0 comments

Comments

@mpaluchowski
Copy link
Contributor

The following code:

component {
  public void function foo() {
    var aA = 1;
  }
}

produces a PLUGIN_ERROR on the line var aA = 1; because of the camel-case variable name. Changing the same code to:

component {
  public void function foo() {
    var aa = 1;
  }
}

shows no issues.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant