Lines Matching refs:previous
8 public $previous;
18 public function __construct($data, Node $parent, Node $previous = null)
21 if ($previous !== false) {
22 $this->previous = &$previous;
121 if ($this->previous !== null) {
122 $this->previous->increaseMark($type);
138 if ($this->previous !== null) {
139 $this->previous->increaseMark($markType);
145 if ($this === $this->previous) {
152 if ($this->previous === null) {
157 $earlierMarkScore = $this->previous->getStartingNodeMarkScore($markType);