final StreamParser parser,
final Block parent
)
throws CompilerException
{
final CompSet command = new CompSet();
try
{
String token = parser.next( "=", false, false, false );
command.setName( token );
command.setExpression( compiler.parseExpression( ";" ) );
parent.add( command );
}
catch( ParserException e )
{
throw new CompilerException( e );