Code Duplication    Length = 4-6 lines in 2 locations

projects/plugins/jetpack/modules/custom-css/custom-css/preprocessors/lessc.inc.php 1 location

@@ 1715-1718 (lines=4) @@
1712
			case '%':
1713
				$out[] = $lval % $rval;
1714
				break;
1715
			case '/':
1716
				if ($rval == 0) $this->throwError("evaluate error: can't divide by zero");
1717
				$out[] = $lval / $rval;
1718
				break;
1719
			default:
1720
				$this->throwError('evaluate error: color op number failed on op '.$op);
1721
			}

projects/plugins/jetpack/modules/custom-css/custom-css/preprocessors/scss.inc.php 1 location

@@ 1080-1085 (lines=6) @@
1077
			case '%':
1078
				$out[] = $lval % $rval;
1079
				break;
1080
			case '/':
1081
				if ($rval == 0) {
1082
					$this->throwError("color: Can't divide by zero");
1083
				}
1084
				$out[] = $lval / $rval;
1085
				break;
1086
			case "==":
1087
				return $this->op_eq($left, $right);
1088
			case "!=":