1
0
mirror of synced 2025-01-31 04:21:44 +03:00

[2.0] Finished reorganization of grammar rules in DQL parser source code. Renamed some private methods.

This commit is contained in:
guilhermeblanco 2009-07-22 03:46:05 +00:00
parent 1299e83853
commit 58a157863e
2 changed files with 851 additions and 845 deletions

File diff suppressed because it is too large Load Diff

View File

@ -48,7 +48,7 @@ class LanguageRecognitionTest extends \Doctrine\Tests\OrmTestCase
$parser = new \Doctrine\ORM\Query\Parser($query);
// We do NOT test SQL construction here. That only unnecessarily slows down the tests!
$parser->setSqlTreeWalker(new \Doctrine\Tests\Mocks\MockTreeWalker);
$parser->setTreeWalker(new \Doctrine\Tests\Mocks\MockTreeWalker);
return $parser->parse();
}