88899091929394959697
instructions.get(0) instanceof PushConstant); } public boolean matches(Object o) { if (o instanceof CompiledFunction) { CompiledFunction cf = (CompiledFunction) o; return cf.getScript() == this; } return false; }
717273747576777879
throws MalformedValueException { if (value.charAt(0) == '#') return new FrozenData(name, value, r, prefix); else if (value.charAt(0) == '{') return new CompiledFunction(name, value, r, prefix); else return createSimple(value); }