return true;
} else
if (isParseAttributes() && c == '$') {
str.consume();
if (str.isClosed()) {
add(new ConstantPart(compiler,"$"));
return false;
}
if (str.character() == '$') {
str.consume();
add(new ConstantPart(compiler,"$"));
return true;
}
ParsingPart pp = new ParameterPart(compiler);
add(pp);
pp.parse(str);