- java.lang.Object
-
- swim.structure.InterpreterSettings
-
-
Field Summary
Fields Modifier and Type Field Description static int
MAX_SCOPE_DEPTH
protected int
maxScopeDepth
-
Constructor Summary
Constructors Constructor Description InterpreterSettings(int maxScopeDepth)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
canEqual(Object other)
protected InterpreterSettings
copy(int maxScopeDepth)
<T> Output<T>
debug(Output<T> output)
Writes a developer readable, debug-formatted string representation of this object tooutput
.boolean
equals(Object other)
int
hashCode()
int
maxScopeDepth()
InterpreterSettings
maxScopeDepth(int maxScopeDepth)
static InterpreterSettings
standard()
String
toString()
-
-
-
Method Detail
-
maxScopeDepth
public final int maxScopeDepth()
-
maxScopeDepth
public InterpreterSettings maxScopeDepth(int maxScopeDepth)
-
copy
protected InterpreterSettings copy(int maxScopeDepth)
-
canEqual
protected boolean canEqual(Object other)
-
debug
public <T> Output<T> debug(Output<T> output)
Description copied from interface:Debug
Writes a developer readable, debug-formatted string representation of this object tooutput
.
-
standard
public static InterpreterSettings standard()
-
-