Code Duplication    Length = 6-6 lines in 2 locations

projects/plugins/jetpack/modules/custom-css/custom-css/preprocessors/scss.inc.php 2 locations

@@ 3212-3217 (lines=6) @@
3209
	protected function value(&$out) {
3210
		$s = $this->seek();
3211
3212
		if ($this->literal("not", false) && $this->whitespace() && $this->value($inner)) {
3213
			$out = array("unary", "not", $inner, $this->inParens);
3214
			return true;
3215
		} else {
3216
			$this->seek($s);
3217
		}
3218
3219
		if ($this->literal("+") && $this->value($inner)) {
3220
			$out = array("unary", "+", $inner, $this->inParens);
@@ 3219-3224 (lines=6) @@
3216
			$this->seek($s);
3217
		}
3218
3219
		if ($this->literal("+") && $this->value($inner)) {
3220
			$out = array("unary", "+", $inner, $this->inParens);
3221
			return true;
3222
		} else {
3223
			$this->seek($s);
3224
		}
3225
3226
		// negation
3227
		if ($this->literal("-", false) &&