String name = token.getName();
BlockImpl block = new BlockImpl(token.getLocation(),
String.format("Parmeter %s of %s", name, element.getCompleteId()));
Binding binding = new LiteralBinding("block parameter " + name, block, token.getLocation());
// TODO: Check that the t:parameter doesn't appear outside of an embedded component.
element.bindParameter(name, binding);