branch: externals/phps-mode
commit 2bc31a0f8332e83749b78a5233bc12c78654ee93
Author: Christian Johansson <[email protected]>
Commit: Christian Johansson <[email protected]>
Added TODO items
---
test/phps-mode-test-ast.el | 2 ++
1 file changed, 2 insertions(+)
diff --git a/test/phps-mode-test-ast.el b/test/phps-mode-test-ast.el
index 9d1d02283f..a8715957e0 100644
--- a/test/phps-mode-test-ast.el
+++ b/test/phps-mode-test-ast.el
@@ -869,6 +869,8 @@
(phps-mode-test--hash-to-list phps-mode-ast-bookkeeping--index t)
'((" id $a" 1) ((8 10) 1) (" id $b" 1) ((13 15) 1) (" id $c" 1) ((18
20) 1) ((31 33) 1) ((51 53) 1) ((99 101) 1) ((119 121) 1) ((167 169) 1) ((187
189) 1))))))
+ ;; TODO Test variables inside static function and method
+
;; TODO Test this and make sure all variables hit
;; class myClass { private $test = 'abc'; public function test($d) { return
fn($d) => $this->test . $d; }} $a = new myClass(); echo $a->test('def')('ghi');