diff options
author | Heejin Ahn <aheejin@gmail.com> | 2019-07-14 15:25:16 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-14 15:25:16 -0700 |
commit | cdab4ef130626958790cb2601209f14d192fa10a (patch) | |
tree | 420e95f5effa60a9fd0742ffd4f45735e2975ed8 /src/js | |
parent | 8d13b5a9c59b5b215583568ddd117a626cc8f59f (diff) | |
download | binaryen-cdab4ef130626958790cb2601209f14d192fa10a.tar.gz binaryen-cdab4ef130626958790cb2601209f14d192fa10a.tar.bz2 binaryen-cdab4ef130626958790cb2601209f14d192fa10a.zip |
Rename except_ref type to exnref (#2224)
In WebAssembly/exception-handling#79 we agreed to rename `except_ref`
type to `exnref`.
Diffstat (limited to 'src/js')
-rw-r--r-- | src/js/binaryen.js-post.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/binaryen.js-post.js b/src/js/binaryen.js-post.js index d2703e425..1760f6359 100644 --- a/src/js/binaryen.js-post.js +++ b/src/js/binaryen.js-post.js @@ -37,7 +37,7 @@ Module['i64'] = Module['_BinaryenTypeInt64'](); Module['f32'] = Module['_BinaryenTypeFloat32'](); Module['f64'] = Module['_BinaryenTypeFloat64'](); Module['v128'] = Module['_BinaryenTypeVec128'](); -Module['except_ref'] = Module['_BinaryenTypeExceptRef'](); +Module['exnref'] = Module['_BinaryenTypeExnref'](); Module['unreachable'] = Module['_BinaryenTypeUnreachable'](); Module['auto'] = /* deprecated */ Module['undefined'] = Module['_BinaryenTypeAuto'](); |