Details
Assignee
Michael OffnerMichael OffnerReporter
Dan Switzer, IIDan Switzer, IILabels
New 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
Affects versions
Priority
New
Details
Details
Assignee
Michael Offner
Michael OffnerReporter
Dan Switzer, II
Dan Switzer, IILabels
New 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
Affects versions
Priority
Created 7 August 2020 at 14:58
Updated 28 August 2020 at 13:11
The javadoc style comments are not working the same way they are in ACF10+. Take the following component:
component accessors="true" { /** * Here is a doc style hint comment. * @default "[default]" */ property name="from" type="string"; public any function from( required any from ){ variables.from = arguments.from; return this; } }
In ACF, invoking a new instance of the above component, you will get
[default]
when you callx.getFrom()
. However, in Lucee 5.3.6.61 it's returning a reference to thefrom
public method.I've attached a zip that shows the behavior.