Faculty Bsp. wird nicht geparst #228

Open
opened 2018-06-16 13:00:13 +00:00 by pl · 0 comments
Owner

branch bytecode2
commit 04d3ac84e7

import java.lang.Integer;

class Faculty {

m () {

var fact = (Integer x) -> {
if (x == 1) {
return x;
}
else {
return x * fact.apply(x-1);
}
};
return fact;
}
}

Soweit ich es richtig analysiert habe terminiert die Methode com
pilationunit nicht.

branch bytecode2 commit 04d3ac84e76f6b1d0fad0ecc4b3f7e44cf72f9b3 import java.lang.Integer; class Faculty { m () { var fact = (Integer x) -> { if (x == 1) { return x; } else { return x * fact.apply(x-1); } }; return fact; } } Soweit ich es richtig analysiert habe terminiert die Methode com pilationunit nicht.
Sign in to join this conversation.
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: JavaTX/JavaCompilerCore#228
No description provided.