]
Luca Molteni resolved DROOLS-4140.
----------------------------------
Resolution: Done
This was fixed here
Parsing of modify statements is done using a parser grammar rather than using String
replace, so this kind of collision won't happen anymore.
Global's method names starting with word modify are truncated
-------------------------------------------------------------
Key: DROOLS-4140
URL:
https://issues.jboss.org/browse/DROOLS-4140
Project: Drools
Issue Type: Bug
Components: executable model
Affects Versions: 7.21.0.Final
Environment: FLOW_DSL, PATTERN_DSL
Reporter: Peter Martinovič
Assignee: Luca Molteni
Priority: Major
Attachments: DROOLS-4140-test.patch
If global's method name starts with modify, the first character of the method name is
lost during code generation.
Compilation then fails.
{code:java}
org.drools.model.Rule rule = D.rule("Rule 1").build(D.on(var_g).execute((g)
-> {
g.odifyIsTheFirstWordInTheMethodName();
}));
{code}
(It does not seem to happen with method names starting with keywords insert, delete.)