summaryrefslogtreecommitdiff
path: root/test/binaryen.js/expressions.js
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2023-09-13 10:13:33 -0500
committerGitHub <noreply@github.com>2023-09-13 15:13:33 +0000
commit3ca8c21b89c207ce5d872e9cb2d410a869522d38 (patch)
tree10757c566326c6894512508a71719ed3b4c594fd /test/binaryen.js/expressions.js
parentbd497d3def1e2c702e29521f097be26024a8253e (diff)
downloadbinaryen-3ca8c21b89c207ce5d872e9cb2d410a869522d38.tar.gz
binaryen-3ca8c21b89c207ce5d872e9cb2d410a869522d38.tar.bz2
binaryen-3ca8c21b89c207ce5d872e9cb2d410a869522d38.zip
Replace I31New with RefI31 everywhere (#5930)
Globally replace the source string "I31New" with "RefI31" in preparation for renaming the instruction from "i31.new" to "ref.i31", as implemented in the spec in https://github.com/WebAssembly/gc/pull/422. This would be NFC, except that it also changes the string in the external-facing C APIs. A follow-up PR will make the corresponding behavioral change.
Diffstat (limited to 'test/binaryen.js/expressions.js')
-rw-r--r--test/binaryen.js/expressions.js32
1 files changed, 16 insertions, 16 deletions
diff --git a/test/binaryen.js/expressions.js b/test/binaryen.js/expressions.js
index 13295a33d..83e005f0d 100644
--- a/test/binaryen.js/expressions.js
+++ b/test/binaryen.js/expressions.js
@@ -1771,26 +1771,26 @@ console.log("# TupleExtract");
module.dispose();
})();
-console.log("# I31New");
-(function testI31New() {
+console.log("# RefI31");
+(function testRefI31() {
const module = new binaryen.Module();
var value = module.local.get(1, binaryen.i32);
- const theI31New = binaryen.I31New(module.i31.new(value));
- assert(theI31New instanceof binaryen.I31New);
- assert(theI31New instanceof binaryen.Expression);
- assert(theI31New.value === value);
- // assert(theI31New.type === binaryen.?); // TODO: (ref i31)
-
- theI31New.value = value = module.local.get(2, binaryen.i32);
- assert(theI31New.value === value);
- theI31New.type = binaryen.f64;
- theI31New.finalize();
- // assert(theI31New.type === binaryen.?); // TODO: (ref i31)
-
- console.log(theI31New.toText());
+ const theRefI31 = binaryen.RefI31(module.i31.new(value));
+ assert(theRefI31 instanceof binaryen.RefI31);
+ assert(theRefI31 instanceof binaryen.Expression);
+ assert(theRefI31.value === value);
+ // assert(theRefI31.type === binaryen.?); // TODO: (ref i31)
+
+ theRefI31.value = value = module.local.get(2, binaryen.i32);
+ assert(theRefI31.value === value);
+ theRefI31.type = binaryen.f64;
+ theRefI31.finalize();
+ // assert(theRefI31.type === binaryen.?); // TODO: (ref i31)
+
+ console.log(theRefI31.toText());
assert(
- theI31New.toText()
+ theRefI31.toText()
==
"(i31.new\n (local.get $2)\n)\n"
);