-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf: replace the use of
opt
with the more efficient cond
.
In some places in the parser the `opt` function could be replaced by `cond` which is more efficient.
- Loading branch information
Showing
2 changed files
with
38 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,16 +47,14 @@ [email protected] | |
[email protected] ":" | ||
[email protected] "\n" | ||
[email protected] "\t " | ||
PATTERN_DEF@91..106 | ||
PATTERN_DEF@91..99 | ||
[email protected] "$a" | ||
[email protected] " " | ||
[email protected] "=" | ||
[email protected] " " | ||
[email protected] "\"a\"" | ||
[email protected] " " | ||
[email protected] | ||
[email protected] | ||
[email protected] "base64" | ||
[email protected] " " | ||
[email protected] "base64" | ||
[email protected] "(" | ||
[email protected] ")" | ||
[email protected] "\n" | ||
|