Interface InterpreterResult
-
- All Known Implementing Classes:
BasicInterpreterResult,InterpreterResult.OkResult
public interface InterpreterResultThe InterpreterResult captures the status of an interpreter execution. If the execution occured as expected, the result should not report any issues.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classInterpreterResult.OkResult
-
Field Summary
Fields Modifier and Type Field Description static InterpreterResultOK
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Iterable<InterpretationIssue>getIssues()booleanhasNoIssues()
-
-
-
Field Detail
-
OK
static final InterpreterResult OK
-
-
Method Detail
-
hasNoIssues
boolean hasNoIssues()
-
getIssues
Iterable<InterpretationIssue> getIssues()
-
-