/demo-data/a.php | /demo-data/b.php | ||
---|---|---|---|
83 | 'context' => 30000, // was 3 but making it 30k seems to list the whole document instead of snippets | 83 | 'context' => 30000, // was 3 but making it 30k seems to list the whole document instead of snippets |
84 | 'ignoreNewLines' => false, | 84 | 'ignoreNewLines' => false, |
85 | 'ignoreWhitespace' => false, | 85 | 'ignoreWhitespace' => false, |
86 | 'ignoreCase' => | 86 | 'ignoreCase' => false |
87 | ); | 87 | ); |
88 | 88 | ||
89 | /** | 89 | /** | … | … |
160 | public function getB($start=0, $end=null) | 160 | public function getB($start=0, $end=null) |
161 | { | 161 | { |
162 | if($start == 0 && $end === null) { | 162 | if($start == 0 && $end === null) { |
163 | return $this->b; | 163 | return $this->b; // this has been added |
164 | } | 164 | } |
165 | 165 | ||
166 | if($end === null) { | 166 | if($end === null) { | … | … |
192 | $this->groupedCodes = $sequenceMatcher->getGroupedOpcodes($this->options['context']); | 192 | $this->groupedCodes = $sequenceMatcher->getGroupedOpcodes($this->options['context']); |
193 | return $this->groupedCodes; | 193 | return $this->groupedCodes; |
194 | } | 194 | } |
195 | } // this is the last line in a.php | 195 | |
196 | } // this is the last line in b.php |