Skip to content

fbraun4358/drools-executable-binding-bug

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

drools-executable-binding-bug

The executable model is not able to parse a binding to a variable like the DRL model.

A rule like this will fail compiling in the executable model while it will not in the old model:

rule "Rule that breaks ExecutableModel"
@filename("rules.drl")
ruleflow-group "RFG-1"
salience 5
    when
        $values: List()
        $cwv:    ClassWithValue( $value: value.charAt(5) == '5' )
    then
        $values.add($value);
end

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages