assertNoUnexpectedAlerts();
compile("<gxp:param name='foo' type='String'>",
"<b expr:class='\"foo\"'>html comment</b>",
"</gxp:param>");
assertAlert(new RequiresStaticContentError(pos(2,1), "<gxp:param>"));
assertNoUnexpectedAlerts();
compile("<gxp:param name='foo' type='String'>",
"<gxp:eval expr='1' />",
"</gxp:param>");
assertAlert(new RequiresStaticContentError(pos(2,1), "<gxp:param>"));
assertNoUnexpectedAlerts();
}