| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
enum Mode { LATIN1 = 1, UC16 = 2 };Suggestion: add asserts that the values match char byte sizes.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
PTAL again due to additional, unrequested change that made sense to me based on your comment.
enum Mode { LATIN1 = 1, UC16 = 2 };Suggestion: add asserts that the values match char byte sizes.
I also moved `char_size()` out of the specific sub-classes to `RegExpMacroAssembler` now and added the asserts there.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
enum Mode { LATIN1 = 1, UC16 = 2 };Patrick ThierSuggestion: add asserts that the values match char byte sizes.
I also moved `char_size()` out of the specific sub-classes to `RegExpMacroAssembler` now and added the asserts there.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
[regexp] Move mode to RegExpMacroAssembler
... instead of having it in each sub-class individually.
Previously it was only used in sub-classes of
NativeRegExpMacroAssembler, but we also want to use it in the
Bytecode-Generator.
Drive-by: Also move char_size() from individual sub-classes to
RegExpMacroAssembler.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |