-
Notifications
You must be signed in to change notification settings - Fork 47
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
Highlighting instance methods #136
Comments
Is this for doing some parts of init in user events? |
Yup. |
Another potential use case: declare_vars = function() {
foo = 0;
};
declare_vars();
bar = foo; // "foo" doesn't get highlighted |
If |
Mm, interesting. I was talking about |
"Allow non-top level assignments" checkbox in linter preferences is a workaround in the current versions, although I would still like to support this more properly. |
foo = function(){}
highlightsfoo
only when it is defined in the Create event in an object. Would be nice if it would support other events as well!The text was updated successfully, but these errors were encountered: