From c923521a61205dd2358201e311b009886e095381 Mon Sep 17 00:00:00 2001 From: Thomas Lively Date: Wed, 3 Jan 2024 13:36:27 -0800 Subject: Drop support for type annotations on array.len (#6197) These type annotations were removed during the development of the GC proposal, but we maintained support for parsing them to ease the transition. Now that GC is shipped, remove support for the non-standard annotation and update our tests accordingly. --- test/spec/array.wast | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/spec') diff --git a/test/spec/array.wast b/test/spec/array.wast index 6e7b8cddb..d9b75e287 100644 --- a/test/spec/array.wast +++ b/test/spec/array.wast @@ -83,7 +83,7 @@ ) (func $len (param $v (ref $vec)) (result i32) - (array.len $vec (local.get $v)) + (array.len (local.get $v)) ) (func (export "len") (result i32) (call $len (array.new_default $vec (i32.const 3))) -- cgit v1.2.3