_From @ikandars on February 16, 2014 10:31_ I've got "Zephir\ParseException: Syntax error" when try to call a static method dynamically. <pre> echo self::{"name"}(); -----------^ </pre> ``` php namespace Test; class MyClass { public function __construct() { echo self::{"name"}(); } public static function name() { return "Jhon"; } } ``` I pulled the source from bc91853e3e8a0528481daaf26f1e04b0fab1ab33 commit id _Copied from original issue: phalcon/zephir#197_