I'm using IntelliJ to do some Javascript development. We're using TinyMCE on our site and it has some dynamically generated methods (its Events).
IntelliJ is complaining that it can't resolve the variable... not surprisingly, since the Events are generated dynamically.
I know that I can suppress the inspection of that line, but is there a better way? Ideally, I'd like to be able to tell IntelliJ about these variables... perhaps via JSDoc? Or is there another way?
EDIT
Essentially, this is for properties that are created at runtime and are not determinable by IntelliJ statically.
A basic example would be this code:
var Foo = {
addMethod: function() {
this.newMethod = function() {
console.log("This method is dynamically generated");
}
}
}
var foo = new Foo();
foo.addMethod();
foo.newMethod();
IntelliJ can infer that addMethod is a method, but it cannot infer that newMethod is a valid method.
Is there something I can do to teach IntelliJ that newMethod is legitimate?