Code Duplication    Length = 8-8 lines in 2 locations

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

@@ 2463-2470 (lines=8) @@
2460
		}
2461
2462
		// setting a variable
2463
		if ($this->variable($var) && $this->assign() &&
2464
			$this->propertyValue($value) && $this->end())
2465
		{
2466
			$this->append(array('assign', $var, $value), $s);
2467
			return true;
2468
		} else {
2469
			$this->seek($s);
2470
		}
2471
2472
		if ($this->import($importValue)) {
2473
			$this->append($importValue, $s);

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

@@ 2799-2806 (lines=8) @@
2796
				$this->seek($s);
2797
			}
2798
2799
			if (($this->literal("@debug") || $this->literal("@warn")) &&
2800
				$this->valueList($value) &&
2801
				$this->end()) {
2802
				$this->append(array("debug", $value, $s), $s);
2803
				return true;
2804
			} else {
2805
				$this->seek($s);
2806
			}
2807
2808
			if ($this->literal("@content") && $this->end()) {
2809
				$this->append(array("mixin_content"), $s);