summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authordcode <dcode@dcode.io>2023-02-01 21:05:56 +0100
committerGitHub <noreply@github.com>2023-02-01 12:05:56 -0800
commit7ce4b093b8586637482e7561ba351e8d5babceb5 (patch)
tree74d8f9ed389bebce4fd867aeed70f79aca85cb53 /CHANGELOG.md
parentd7cb5b38c514ecee7df5641242093a05d30926b2 (diff)
downloadbinaryen-7ce4b093b8586637482e7561ba351e8d5babceb5.tar.gz
binaryen-7ce4b093b8586637482e7561ba351e8d5babceb5.tar.bz2
binaryen-7ce4b093b8586637482e7561ba351e8d5babceb5.zip
[C API] Add experimental StringNew and StringEq variants (#5471)
Adds APIs for string.from_code_point, string.new_utf8_try, string.new_utf8_array_try (#5459) and string.compare (#5453).
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 655f2aa8c..ff494961f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -32,6 +32,12 @@ Current Trunk
and JS APIs and `RefIs` has been replaced with `RefIsNull`.
- Types `Data` and `Dataref` have been replaced with types `Struct` and
`Structref` in the C and JS APIs.
+* `BinaryenStringNew` now takes an additional last argument, `try_`, indicating
+ whether the instruction is one of `string.new_utf8_try` respectively
+ `string.new_utf8_array_try`.
+* `BinaryenStringEq` now takes an additional second argument, `op`, that is
+ either `BinaryenStringEqEqual()` if the instruction is `string.eq` or
+ `BinaryenStringEqCompare()` if the instruction is `string.compare`.
v111
----