[Parse Class] -> Function with body

This commit is contained in:
jeffcheasey88 2023-07-10 13:53:36 +02:00
parent 98dd1416a8
commit 1bc2ee52ea

View file

@ -175,7 +175,7 @@ public class JavaParser extends Parser<JavaFile> {
StateTree<JavaElement> function_q17 = new StateTree<>(); StateTree<JavaElement> function_q17 = new StateTree<>();
StateTree<JavaElement> function_q18 = function_q17.then(LAMBDA_40); StateTree<JavaElement> function_q18 = function_q17.then(LAMBDA_40);
StateTree<JavaElement> function_q19 = function_q18.then(LAMBDA_41); StateTree<JavaElement> function_q19 = function_q18.then(LAMBDA_41);
function_q19.end(END_FUNC); function_q19.end((func, validator) -> func);
StateTree<JavaElement> function_q22 = function_q18.then(new RedirectStateTree<>(operation_q0,(bag) -> "?")); StateTree<JavaElement> function_q22 = function_q18.then(new RedirectStateTree<>(operation_q0,(bag) -> "?"));
function_q22.then(function_q19); function_q22.then(function_q19);
StateTree<JavaElement> function_q21 = function_q22; StateTree<JavaElement> function_q21 = function_q22;