MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / getBoolean

Method getBoolean

ij/src/main/java/ij/macro/Interpreter.java:1143–1149  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1141 }
1142
1143 final boolean getBoolean() {
1144 getLeftParen();
1145 double value = getLogicalExpression();
1146 checkBoolean(value);
1147 getRightParen();
1148 return value==0.0?false:true;
1149 }
1150
1151 final double getLogicalExpression() {
1152 double v1 = getBooleanExpression();

Callers 3

doWhileMethod · 0.95
doDoMethod · 0.95
doIfMethod · 0.95

Calls 4

getLeftParenMethod · 0.95
getLogicalExpressionMethod · 0.95
checkBooleanMethod · 0.95
getRightParenMethod · 0.95

Tested by

no test coverage detected