}
UnionToken unionToken = (UnionToken) token;
// The converted token has the same label as this one.
String label = unionToken.label();
Type newType = get(label);
Token newValue = newType.convert(unionToken.value());
return new UnionToken(label, newValue);
}