}
return (FeatureFunction)objects.pop();
}
protected void identifyFeatureFunction(Stack<Object> objects) throws MaltChainedException {
Function function = featureEngine.newFunction(objects.peek().toString(), registry);
if (function != null) {
objects.pop();
if (!objects.isEmpty()) {
identifyFeatureFunction(objects);
}