summaryrefslogtreecommitdiff
path: root/test/typecheck
diff options
context:
space:
mode:
authorBen Smith <binjimin@gmail.com>2018-05-27 00:21:38 -0700
committerGitHub <noreply@github.com>2018-05-27 00:21:38 -0700
commit409d61ef5d485ae2ce783968f290050840e87a22 (patch)
treec9c80327c6a4483dcd36c8152a28aab34310511e /test/typecheck
parent7a6308ac5d7e73f174aef9252bcb9f0644f4dac8 (diff)
downloadwabt-409d61ef5d485ae2ce783968f290050840e87a22.tar.gz
wabt-409d61ef5d485ae2ce783968f290050840e87a22.tar.bz2
wabt-409d61ef5d485ae2ce783968f290050840e87a22.zip
Update spec tests; rename {grow,current}_memory (#849)
`grow_memory` -> `memory.grow` `current_memory` -> `memory.size` This could have been a smaller change, but I took the opportunity to rename the Token types, Expr types, and callback functions too. Many of these are sorted alphabetically, so I resorted based on their new names.
Diffstat (limited to 'test/typecheck')
-rw-r--r--test/typecheck/bad-grow-memory-type-mismatch.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/typecheck/bad-grow-memory-type-mismatch.txt b/test/typecheck/bad-grow-memory-type-mismatch.txt
index ec333efa..289cedfd 100644
--- a/test/typecheck/bad-grow-memory-type-mismatch.txt
+++ b/test/typecheck/bad-grow-memory-type-mismatch.txt
@@ -7,7 +7,7 @@
grow_memory
drop))
(;; STDERR ;;;
-out/test/typecheck/bad-grow-memory-type-mismatch.txt:7:5: error: type mismatch in grow_memory, expected [i32] but got [f32]
+out/test/typecheck/bad-grow-memory-type-mismatch.txt:7:5: error: type mismatch in memory.grow, expected [i32] but got [f32]
grow_memory
^^^^^^^^^^^
;;; STDERR ;;)