diff --git a/CHANGELOG.md b/CHANGELOG.md index c133f88..abe743e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,27 @@ Changelog ========= -### 1.4.4 +### 1.4.7 (2013-09-19) - Bug fixes - Tests++ -### 1.4.3 +### 1.4.6 (2013-09-19) + +- Bug fixes +- Tests++ + +### 1.4.5 (2013-09-15) + +- Bug fixes +- Tests++ + +### 1.4.4 (2013-09-13) + +- Bug fixes +- Tests++ + +### 1.4.3 (2013-09-10) - Bug fixes diff --git a/src/Fenom/Tokenizer.php b/src/Fenom/Tokenizer.php index 9e97240..f1d8731 100644 --- a/src/Fenom/Tokenizer.php +++ b/src/Fenom/Tokenizer.php @@ -91,7 +91,7 @@ class Tokenizer * @see http://docs.php.net/manual/en/tokens.php * @var array groups of tokens */ - private static $_macros = array( + public static $macros = array( self::MACRO_STRING => array( \T_ABSTRACT => 1, \T_ARRAY => 1, \T_AS => 1, \T_BREAK => 1, \T_BREAK => 1, \T_CASE => 1, \T_CATCH => 1, \T_CLASS => 1, \T_CLASS_C => 1, \T_CLONE => 1, \T_CONST => 1, \T_CONTINUE => 1, @@ -255,7 +255,7 @@ class Tokenizer } } else { - if (isset(self::$_macros[$expect][$token])) { + if (isset(self::$macros[$expect][$token])) { return true; } }