diff options
author | Alon Zakai <azakai@google.com> | 2022-07-14 17:10:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-15 00:10:15 +0000 |
commit | 2b31aeb98a0fc8a5a505b3998d44990ed14e8c38 (patch) | |
tree | b7e28f6ad6e3f77222e724afdb6d8668054410ea /scripts | |
parent | c0151e99996a7b51d3d135fd5018c69e146b5c02 (diff) | |
download | binaryen-2b31aeb98a0fc8a5a505b3998d44990ed14e8c38.tar.gz binaryen-2b31aeb98a0fc8a5a505b3998d44990ed14e8c38.tar.bz2 binaryen-2b31aeb98a0fc8a5a505b3998d44990ed14e8c38.zip |
[Strings] stringview_*.slice (#4805)
Unfortunately one slice is the same as python [start:end], using 2 params,
and the other slice is one param, [CURR:CURR+num] (where CURR is implied
by the current state in the iter). So we can't use a single class here. Perhaps
a different name would be good, like slice vs substring (like JS does), but
I picked names to match the current spec.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/gen-s-parser.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/gen-s-parser.py b/scripts/gen-s-parser.py index 8d0fd460f..796732bbf 100755 --- a/scripts/gen-s-parser.py +++ b/scripts/gen-s-parser.py @@ -632,6 +632,9 @@ instructions = [ ("stringview_iter.next", "makeStringIterNext(s)"), ("stringview_iter.advance", "makeStringIterMove(s, StringIterMoveAdvance)"), ("stringview_iter.rewind", "makeStringIterMove(s, StringIterMoveRewind)"), + ("stringview_wtf8.slice", "makeStringSliceWTF(s, StringSliceWTF8)"), + ("stringview_wtf16.slice", "makeStringSliceWTF(s, StringSliceWTF16)"), + ("stringview_iter.slice", "makeStringSliceIter(s)"), ] |