public static class RecallBinding extends Binding {
public void doCell(Fixture fixture, Parse cell) throws Exception {
String symbolName = cell.text();
if (!Fixture.hasSymbol(symbolName))
fixture.exception(cell, new FitFailureException("No such symbol: " + symbolName));
else {
String value = (String) Fixture.getSymbol(symbolName);
if (adapter.field != null) {
adapter.set(adapter.parse(value));
cell.addToBody(Fixture.gray(" = " + value));