Re: [PHP-DEV] [RFC] Replace the flex-based scanner with an re2c [1] based lexer

2008-03-02 Thread Stanislav Malyshev
I don't think this part is a concern since we have required re2c for quite a while now to build many critical parts of PHP. People who Ok, great then - only issue remaining is the multibyte support. -- Stanislav Malyshev, Zend Software Architect [EMAIL PROTECTED] http://www.zend.com/ (408)2

Re: [PHP-DEV] [RFC] Replace the flex-based scanner with an re2c [1] based lexer

2008-03-02 Thread Stanislav Malyshev
Hi! Were the stream support issues solved? We completely dropped multibyte support. The reason is that the way we were I wasn't asking about multibyte (that we discuss below), but about other streams - I think I mentioned it on IRC last time re2c parser was discussed. I remember re2c used

Re: [PHP-DEV] [RFC] Replace the flex-based scanner with an re2c [1] based lexer

2008-03-02 Thread Alan Knowles
https://re2c.svn.sourceforge.net/svnroot/re2c/trunk/re2c [6] http://php.net/~helly/php-re2c-20080302.diff.txt -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] [RFC] Replace the flex-based scanner with an re2c [1] based lexer

2008-03-02 Thread Marcus Boerger
Hello Rasmus, Monday, March 3, 2008, 12:25:52 AM, you wrote: > Stanislav Malyshev wrote: >> Hi! >> >>> be much easier, switching to re2c promises a much faster lexer. >>> Actually, >>> without any specific re2c optimizations we already get around a 20% >>> scanner >> >> I think 20% faster is ve

Re: [PHP-DEV] [RFC] Replace the flex-based scanner with an re2c [1] based lexer

2008-03-02 Thread Pierre Joye
Hi Stan, On Sun, Mar 2, 2008 at 11:47 PM, Stanislav Malyshev <[EMAIL PROTECTED]> wrote: > Hi! > > > > be much easier, switching to re2c promises a much faster lexer. Actually, > > without any specific re2c optimizations we already get around a 20% scanner > > I think 20% faster is very cool. >

Re: [PHP-DEV] [RFC] Replace the flex-based scanner with an re2c [1] based lexer

2008-03-02 Thread Marcus Boerger
Hello Stanislav, Sunday, March 2, 2008, 11:47:57 PM, you wrote: > Hi! >> be much easier, switching to re2c promises a much faster lexer. Actually, >> without any specific re2c optimizations we already get around a 20% scanner > I think 20% faster is very cool. > However, as I understand re2c is

Re: [PHP-DEV] [RFC] Replace the flex-based scanner with an re2c [1] based lexer

2008-03-02 Thread Rasmus Lerdorf
Stanislav Malyshev wrote: Hi! be much easier, switching to re2c promises a much faster lexer. Actually, without any specific re2c optimizations we already get around a 20% scanner I think 20% faster is very cool. However, as I understand re2c is not a standard tool found everywhere. So what

Re: [PHP-DEV] [RFC] Replace the flex-based scanner with an re2c [1] based lexer

2008-03-02 Thread Stanislav Malyshev
Hi! be much easier, switching to re2c promises a much faster lexer. Actually, without any specific re2c optimizations we already get around a 20% scanner I think 20% faster is very cool. However, as I understand re2c is not a standard tool found everywhere. So what happens if you wanted to us

[PHP-DEV] [RFC] Replace the flex-based scanner with an re2c [1] based lexer

2008-03-02 Thread Marcus Boerger
2c [4] http://trac.macvicar.net/php-re2c/ [5] https://re2c.svn.sourceforge.net/svnroot/re2c/trunk/re2c [6] http://php.net/~helly/php-re2c-20080302.diff.txt -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] 5.2.5 and static calls

2008-03-02 Thread Gregory Beaver
Marcus Boerger wrote: Hello Pierre, Saturday, March 1, 2008, 8:53:26 PM, you wrote: and yeas after several years of trying to communicate and never gotten anything back? I have told PREAR development a million times to fix code. Now not even PEAR code is wrong but it is copied into endless amou

[PHP-DEV] yet another test

2008-03-02 Thread Wez Furlong
feel free to delete all mail from me today -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] test 7

2008-03-02 Thread Wez Furlong
really sorry... qmail is nasty -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] test 5

2008-03-02 Thread Wez Furlong
maybe the last... -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] test 3

2008-03-02 Thread Wez Furlong
another test. ignore me! -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] test 2

2008-03-02 Thread Wez Furlong
please ignore -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Non-breaking Traits

2008-03-02 Thread Stefan Marr
Hi Joshua, seams to me the interest in traits decreases rapidly :( Joshua Thompson schrieb: trait A1 { private $a = 'A1'; private function printA() { echo $this->a; } public function callPrintA1() { $this->printA(); } } trait A2 { private $a = 'A2';