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
If a variable is declared as a component property and then assigned a value to, I would expect CFLint not to raise the issue of MISSING_VAR, which it currently does. Ie. for this code:
component {
property name="foo" type="string";
public void function bar() {
foo = "baz";
}
}
I'd expect no var-related issues.
The text was updated successfully, but these errors were encountered:
If a variable is declared as a component property and then assigned a value to, I would expect CFLint not to raise the issue of
MISSING_VAR
, which it currently does. Ie. for this code:I'd expect no
var
-related issues.The text was updated successfully, but these errors were encountered: