summaryrefslogtreecommitdiff
path: root/Zend/zend-parser.y
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix some warningsSascha Schumann1999-12-051-2/+2
|
* - Break the zend->PHP dependency introduced by the .php extension for use(),Zeev Suraski1999-12-041-2/+2
| | | | | | | by providing an API - Enable Stig's patch for use() extensions (it wasn't refered to by the parser) - Fix a memory leak in that code
* - Add use support (behaves like require, but will not use the same file twice)Andi Gutmans1999-11-301-3/+12
| | | | | | | - Add import support (behaves like include, but requires parentheses; will not use the same file twice; Currently, it is not yet properly implemented, and only behaves like include)
* - Preliminary submit of Thie's patch. Will fix the rest on WindowsAndi Gutmans1999-10-191-1/+2
| | | | | as this was added on UNIX with patch. Changed IS_SAME -> IS_IDENTICAL
* - For Andrei. Implement references in array() initializationsAndi Gutmans1999-10-011-6/+9
|
* - Fix SEND_VAR problem after fetch'ing a variable and not knowing the fetch typeAndi Gutmans1999-09-291-18/+18
|
* - Next part of locking fix.Andi Gutmans1999-09-201-13/+13
| | | | | | $var = expr; and $var += expr; first create code for expr and later on for the fetch_w of $var.
* - Make sure expr_list and echo_list are either empty or comma seperatedAndi Gutmans1999-08-191-3/+6
| | | | | expressions
* - Fixed a leak when doing inheritance. The parent class name wasn't being freed.Andi Gutmans1999-07-291-4/+4
| | | | | | | - Fixed a stack leak. Functions that had late argument binding were set up as INIT_FCALL_BY_NAME but were using DO_FCALL and not the corresponding DO_FCALL_BY_NAME.
* - Fix the new operator incompatibility.Andi Gutmans1999-07-261-1/+1
| | | | | | | - I commented PHP_FUNCTION(strtotime) in datetime.c because it stopped win32 from compiling. This needs to be fixed!!! - Check out libzend to compile the tree now.
* Thoroughly fix the SWITCH problem. No RETURN handling yet.Zeev Suraski1999-07-241-4/+4
|
* Fix bug #1812Zeev Suraski1999-07-231-4/+4
|
* 0.91 updateZeev Suraski1999-07-191-2/+2
|
* License updateZeev Suraski1999-07-161-4/+7
|
* Step 4:Zeev Suraski1999-07-091-10/+10
| | | | | Move to a 7-bit counter (not fully implemented yet)
* Step 2:Zeev Suraski1999-07-091-8/+8
| | | | | Rename is_ref to EA
* Make require accept any parameterZeev Suraski1999-06-301-2/+1
|
* We can't quite go with expr there (shift/reduce conflict), go with scalar.Zeev Suraski1999-06-121-1/+1
|
* require() improvement as per Andi's suggestionZeev Suraski1999-06-121-2/+2
|
* * Use to_string() instead of __print()Zeev Suraski1999-06-111-1/+2
| | | | | * Support boolean casts ((bool) and (boolean))
* - Fix the static array() initializingAndi Gutmans1999-06-091-2/+2
|
* T_BAD_CHARACTER is actually a string.Zeev Suraski1999-06-031-1/+1
|
* Fix a bugZeev Suraski1999-05-291-1/+1
|
* I'm on a roll. Fix a nasty yet stupid AiCount bugZeev Suraski1999-05-221-1/+1
|
* * Add struct name to all typedef's so that they can be debugged with MSVCZeev Suraski1999-05-221-1/+1
| | | | | | | | | | * Fix an AiCount bug - list(...) = $var was using $var multiple times, and thus causing AiCount to be decreased multiple times even though it was increased only once for $var. Mark all FETCH_DIM's so that they won't decrease AiCount, and only decrease AiCount on the last FETCH_DIM. * Fix a stupid bug - forgot to pass CLS_C to some compiler function. For some reason MSVC doesn't report these :I
* * Fix all hash checks that checked Bucket.arKey for NULL, when it was changedZeev Suraski1999-05-151-19/+41
| | | | | | | | | | | to char[1], these checks should have been changed to Bucket.nKeyLength==0 * Support runtime declaration of functions. I ended up changing the grammar to catch top level functions vs. nested functions. The reason is simple - if we don't have functions properly declared at compile-time, function calls cannot be resolved at compile time, and have to be resolved at runtime, which ends up being much much slower (without the optimizer, that is). It's no biggy though, the grammar change isn't that bad.
* - Missed one placeAndi Gutmans1999-04-301-1/+1
|
* - First try at fixing $a->foo[] syntax.Andi Gutmans1999-04-301-1/+1
|
* Fix Boris's problem (in my never ending struggle to show I never mean what I sayZeev Suraski1999-04-301-0/+2
| | | | | when I say something's not gonna happen :)
* Cleanups, remove old ts codeZeev Suraski1999-04-241-15/+15
|
* Make token names uniform, they all begin with T_ now.Zeev Suraski1999-04-221-198/+195
|
* Thread safety patch. We're still not quite there but it compiles again, andZeev Suraski1999-04-211-7/+7
| | | | | more logic has been implemented.
* Support =unset as argumentsAndi Gutmans1999-04-191-0/+2
|
* - Fix various memory leaks.Andi Gutmans1999-04-131-2/+2
|
* This patch is a go. Not fully optimized yet, but working properly.Zeev Suraski1999-04-121-15/+15
| | | | | Prepatch tagged as BEFORE_STACK_PATCH.
* - I guess print $GLOBALS and print "$GLOBALS" should yield the same resultAndi Gutmans1999-04-091-1/+1
| | | | | | | | so I returned the one in encaps_var. - Made INITAL_OP_ARRAY_SIZE smaller (64? can't remeber). I don't think the erealloc()'s during compile time are such a biggy, we might make it even smaller. We can have a configure time option as to it's size.
* - Support $GLOBALS in cvar's. Now list(..) = each($GLOBALS) will work.Andi Gutmans1999-04-091-2/+2
| | | | | | - Remove support of $GLOBALS in enacapsed strings. print "$GLOBALS" isn't supposed to work in any case.
* "Our favourite mistake"Zeev Suraski1999-04-081-2/+2
|
* $GLOBALS supportZeev Suraski1999-04-081-4/+4
|
* Zend LibraryAndi Gutmans1999-04-071-0/+632