Decompiled Code For ISERR( NA() )
The expression
=ISERR( NA() )
is compiled to the following class(es):
package org.formulacompiler.gen; import org.formulacompiler.runtime.Computation; import org.formulacompiler.runtime.FormulaException; import org.formulacompiler.runtime.NotAvailableException; import org.formulacompiler.runtime.internal.Environment; import org.formulacompiler.runtime.internal.RuntimeDouble_v2; import org.formulacompiler.runtime.internal.Runtime_v2; import org.formulacompiler.tests.reference.base.Inputs; import org.formulacompiler.tests.reference.base.Outputs; final class $Root extends Outputs implements Computation { private final Inputs $inputs; final Environment $environment; $Root(Inputs inputs, Environment environment) { $environment = environment; $inputs = inputs; } final double get$0() { return get$1(); } public final boolean bool() { return RuntimeDouble_v2.booleanFromNum(get$0()); } final double get$1() { double d; try { Runtime_v2.fun_NA(); double d_0_; d = (Double.isInfinite(d_0_ = (double) -1) || Double.isNaN(d_0_) ? 1.0 : 0.0); } catch (FormulaException formulaexception) { d = 1.0; } catch (ArithmeticException arithmeticexception) { d = 1.0; } catch (NotAvailableException notavailableexception) { d = 0.0; } return d; } }