Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for #12 -- Allowed memory size of 134217728 bytes exhausted. #34

Open
wants to merge 18 commits into
base: dev
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Try this too.
kaby76 committed Dec 23, 2022
commit b47d2a5b0e9d18164d1a08c7a01c2aab8971d5be
2 changes: 1 addition & 1 deletion src/Atn/OrderedATNConfigSet.php
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ public function equivalent(Hashable $left, Hashable $right): bool
if ($left === $right) {
return true;
}
if ($left == null || $right == null) return false;
if ($left === null || $right === null) return false;
return $left->equals($right);
}