@@ 113-120 (lines=8) @@ | ||
110 | $this->interpretSourceAsScope($assignTo); |
|
111 | } |
|
112 | ||
113 | final protected function visitAddRange(O\MethodCallExpression $expression) |
|
114 | { |
|
115 | $this->interpretation->interpretAddRange( |
|
116 | $this->getId('add-range'), |
|
117 | $this->interpretSource($this->getId('add-range-source'), $this->getArgumentAt(0, $expression)) |
|
118 | ); |
|
119 | $this->interpretSourceAsScope($expression); |
|
120 | } |
|
121 | ||
122 | final protected function visitRemove(O\MethodCallExpression $expression) |
|
123 | { |
|
@@ 131-138 (lines=8) @@ | ||
128 | $this->interpretSourceAsScope($expression); |
|
129 | } |
|
130 | ||
131 | final protected function visitRemoveRange(O\MethodCallExpression $expression) |
|
132 | { |
|
133 | $this->interpretation->interpretRemoveRange( |
|
134 | $this->getId('remove-range'), |
|
135 | $this->interpretSource($this->getId('remove-range-source'), $this->getArgumentAt(0, $expression)) |
|
136 | ); |
|
137 | $this->interpretSourceAsScope($expression); |
|
138 | } |
|
139 | ||
140 | final protected function visitRemoveWhere(O\MethodCallExpression $expression) |
|
141 | { |