return;
// can't have an initial value on an embed variable
if (variable.getAssignedValueNode() != null)
{
addProblem(new EmbedInitialValueProblem(variable));
return;
}
// This type checking was ported from the old compiler in EmbedEvaluator.evaluate(Context, MetaDataNode)
// Under normal circumstances type checking should be done on ITypeDefinition NOT string compares.