Code Duplication    Length = 8-8 lines in 2 locations

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

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

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

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