branch: externals/phps-mode commit e2f2c86e188e794e408d58f43cf40a26804bd3dc Author: Christian Johansson <christ...@cvj.se> Commit: Christian Johansson <christ...@cvj.se>
Improved class properties bookkeeping test --- test/phps-mode-test-ast.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/phps-mode-test-ast.el b/test/phps-mode-test-ast.el index 43e9099371..76c8e92bee 100644 --- a/test/phps-mode-test-ast.el +++ b/test/phps-mode-test-ast.el @@ -244,7 +244,7 @@ '((" id $items" ((36 42))) ((36 42) 1) (" id $item" ((80 85))) ((97 102) 1) ((80 85) 1) ((70 76) 1) (" id $value" ((161 167))) (" id $key" ((153 157))) ((187 193) 1) ((179 183) 1) ((161 167) 1) ((153 157) 1) ((143 149) 1) (" id $i" ((230 232))) ((274 276) 1) ((258 260) 1) ((249 255) 1) ((238 240) 1) ((230 232) 1) (" id $a" ((312 314))) ((332 334) 1) ((312 314) 1) (" id $b" ((373 375))) ((393 395) 1) ((373 375) 1) (" id $c" ((457 459))) ((457 459) 1))) (phps-mode-test-ast--should-bookkeep - "<?php\n\n// Class properties\n\nclass myParent {}\n\nclass myClass extends myParent {\n private $var1 = 123;\n protected static $var2;\n public $var3;\n var $var4;\n function __construct() {\n if ($this) {\n echo 'Hit';\n }\n if ($this->var1) {\n echo 'Hit';\n }\n if (self::$var1) {\n echo 'Miss';\n }\n if (self::$var2) {\n echo 'Hit';\n }\n if ($this->var3) {\n [...] + "<?php\n\n// Class properties\n\nclass myParent {}\n\nclass myClass extends myParent {\n private $var1 = 123;\n protected static $var2;\n public $var3;\n var $var4;\n function __construct() {\n if ($this) {\n echo 'Hit';\n }\n if ($this->var1) {\n echo 'Hit';\n }\n if (self::$var1) {\n echo 'Miss';\n }\n if (self::$var2) {\n echo 'Hit';\n }\n if (static::$var2) {\n [...] "Bookkeeping of class properties" '((" class myClass id $var1" 1) ((93 98) 1) (" class myClass static id $var2" 1) ((127 132) 1) (" class myClass id $var3" 1) ((145 150) 1) (" class myClass id $var4" 1) ((160 165) 1) (" class myClass function __construct id $this" 1) ((208 213) 1) ((263 268) 1) ((270 274) 1) ((330 335) 0) ((392 397) 1) ((447 452) 1) ((454 458) 1) ((508 513) 1) ((515 519) 1) ((569 574) 1) ((576 580) 0) ((688 693) 0)))