* type is not re-checked in the BURM.
*/
public PairOfInstructionLists reduceProperty(ICSSNode site)
{
assert site instanceof ICSSProperty : "Expected ICSSProperty node but got " + site.getClass().getName();
final ICSSProperty propertyNode = (ICSSProperty)site;
final String name = propertyNode.getName();
final ICSSPropertyValue value = propertyNode.getValue();
final InstructionList inst = new InstructionList();
final InstructionList valueInstructions = getInstructionListForPropertyValue(value);
if (!valueInstructions.isEmpty())
{