mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-04 07:09:41 +00:00
LibRegex: Use match_ordinary_characters() in ECMA262Parser::parse_atom()
Otherwise we would only match TokenType::Char, making all of these invalid: - /foo,bar/ - /foo\/bar/ - /foo=bar/ - /foo-bar/ - /foo:bar/ Fixes #4243.
This commit is contained in:
parent
1279d2256c
commit
eea7cabdbc
Notes:
sideshowbarker
2024-07-19 01:10:57 +09:00
Author: https://github.com/linusg
Commit: eea7cabdbc
Pull-request: https://github.com/SerenityOS/serenity/pull/4245
Issue: https://github.com/SerenityOS/serenity/issues/4243
Reviewed-by: https://github.com/alimpfard ✅
3 changed files with 16 additions and 15 deletions
|
@ -90,6 +90,7 @@ protected:
|
|||
|
||||
ALWAYS_INLINE bool match(TokenType type) const;
|
||||
ALWAYS_INLINE bool match(char ch) const;
|
||||
ALWAYS_INLINE bool match_ordinary_characters();
|
||||
ALWAYS_INLINE Token consume();
|
||||
ALWAYS_INLINE Token consume(TokenType type, Error error);
|
||||
ALWAYS_INLINE bool consume(const String&);
|
||||
|
@ -145,7 +146,6 @@ public:
|
|||
|
||||
private:
|
||||
ALWAYS_INLINE bool match_repetition_symbol();
|
||||
ALWAYS_INLINE bool match_ordinary_characters();
|
||||
|
||||
bool parse_internal(ByteCode&, size_t&) override;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue