Fixed
Pinned fields
Click on the next to a field label to start pinning.
Details
Components
Assignee
Jim DeFabiaJim DeFabiaReporter
Gavin HallidayGavin HallidayPriority
MinorFix versions
Pull Request URL
Details
Details
Components
Assignee
Jim DeFabia
Jim DeFabiaReporter
Gavin Halliday
Gavin HallidayPriority
Fix versions
Pull Request URL
Created October 23, 2014 at 3:17 PM
Updated June 5, 2015 at 2:29 PM
Resolved June 5, 2015 at 2:29 PM
The new option -D<name>=<value> allows you to defined a value on the eclcc command line that can be accessed from the ECL.
The name is the fully qualified name of the attribute that is being defined. Value is the text of the attribute.
e.g.,
import ^ as repo;
output(repo.optionXX);
all in that bug
if you compile
eclcc "-DoptionXXX='hello'"
it will be equivalent to
output('hello');