Operators fixed (<<< removed, >>>= added)

This commit is contained in:
Einars Lielmanis 2007-11-30 07:56:13 +00:00
parent 2a9fb98a69
commit ec5fa99e83

View File

@ -438,7 +438,7 @@ function get_next_token(&$pos)
if (!$whitespace) $whitespace = make_array("\n\r\t ");
if (!$wordchar) $wordchar = make_array('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_$');
if (!$punct) $punct = explode(' ', '+ - * / % & ++ -- = += -= *= /= %= == === != !== > < >= <= >> << >>> <<< >>= <<= && &= | || ! !! , : ? ^ ^= |=');
if (!$punct) $punct = explode(' ', '+ - * / % & ++ -- = += -= *= /= %= == === != !== > < >= <= >> << >>> >>>= >>= <<= && &= | || ! !! , : ? ^ ^= |=');
$n_newlines = 0;
do {