ctx.block.tokenizerMode = Tokenizer.Mode.STYLE_VALUE;
parseStyleValue(ctx, name);
ctx.block.tokenizerMode = old;
}
private void parseStyleValue(Context ctx, Other name) throws IOException {
StyleDefinition sdef = new StyleDefinition(ctx.block.owner, name.getValue(), name.getLine());
for (Token token; (token = next(ctx)) != null;) {
if (token instanceof Other) {
new ConstantValue(sdef, ((Other)token).getValue(), token.getLine());
} else if (token instanceof Symbol) {
final char symbol = ((Symbol)token).getValue();