Define a temporarily empty RulesDsl.makeRules method

When complete, this method will execute the DSL front-end, and return
the list of rules, if successful, otherwise report errors.
This commit is contained in:
Riccardo Azzolini 2018-11-20 19:27:04 +01:00
parent 26416dd8f8
commit fa2b9f20a8
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
package it.cavallium.warppi.math.rules.dsl;
import it.cavallium.warppi.math.rules.Rule;
import java.util.List;
public class RulesDsl {
public static List<Rule> makeRules(final String source) {
return null;
}
}