Details
Assignee
UnassignedUnassignedReporter
Michael OffnerMichael OffnerNew Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Priority
Minor
Details
Details
Assignee
Unassigned
UnassignedReporter
Michael Offner
Michael OffnerNew Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Priority
Created 14 April 2015 at 07:48
Updated 5 May 2023 at 09:40
Lucee should support this code
component { static test=1; // executed when the class is loaded } ``` that works the same way as ``` #!javascript component { static {test=1;} // executed when the class is loaded } ``` but not the same way as the following ``` #!javascript component { static.test=1; // executed when the instance is loaded }
With that we should raise the question, if this is more confusing for the average developer than helpful.