Code Duplication    Length = 8-12 lines in 2 locations

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

@@ 2726-2737 (lines=12) @@
2723
				$this->seek($s);
2724
			}
2725
2726
			if ($this->literal("@function") &&
2727
				$this->keyword($fnName) &&
2728
				$this->argumentDef($args) &&
2729
				$this->literal("{"))
2730
			{
2731
				$func = $this->pushSpecialBlock("function");
2732
				$func->name = $fnName;
2733
				$func->args = $args;
2734
				return true;
2735
			} else {
2736
				$this->seek($s);
2737
			}
2738
2739
			if ($this->literal("@return") && $this->valueList($retVal) && $this->end()) {
2740
				$this->append(array("return", $retVal), $s);
@@ 2790-2797 (lines=8) @@
2787
				$this->seek($s);
2788
			}
2789
2790
			if ($this->literal("@if") && $this->valueList($cond) && $this->literal("{")) {
2791
				$if = $this->pushSpecialBlock("if");
2792
				$if->cond = $cond;
2793
				$if->cases = array();
2794
				return true;
2795
			} else {
2796
				$this->seek($s);
2797
			}
2798
2799
			if (($this->literal("@debug") || $this->literal("@warn")) &&
2800
				$this->valueList($value) &&