}
switch ($char) {
case ';':
+ if ($inparenthesis) {
+ $buffer .= $char;
+ // continue 1: The switch processing chars
+ // continue 2: The switch processing the state
+ // continue 3: The for loop
+ continue 3;
+ }
$currentrule->add_style($buffer);
$buffer = '';
$inquotes = false;
$this->rawrules++;
$buffer = '';
$inquotes = false;
+ $inparenthesis = false;
+ // continue 1: The switch processing chars
+ // continue 2: The switch processing the state
+ // continue 3: The for loop
+ continue 3;
+ case '(':
+ $inparenthesis = true;
+ $buffer .= $char;
+ // continue 1: The switch processing chars
+ // continue 2: The switch processing the state
+ // continue 3: The for loop
+ continue 3;
+ case ')':
+ $inparenthesis = false;
+ $buffer .= $char;
// continue 1: The switch processing chars
// continue 2: The switch processing the state
// continue 3: The for loop