diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-01-23 13:26:23 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-01-23 13:26:23 -0800 |
commit | 64a88f368257ba8bce99f38b47ab5c167b937a84 (patch) | |
tree | f90be968311011eefc5d7a28d02d25d5396ecb65 /src/parseTools.js | |
parent | a3d02dd27af251b408941e9a9be60a110fc9daf8 (diff) |
detect nativized variable types properly in asm coercions
Diffstat (limited to 'src/parseTools.js')
-rw-r--r-- | src/parseTools.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/parseTools.js b/src/parseTools.js index 206557b5..0cd76bc4 100644 --- a/src/parseTools.js +++ b/src/parseTools.js @@ -2336,3 +2336,10 @@ function stripCorrections(param) { return param; } +function getImplementationType(varInfo) { + if (varInfo.impl == 'nativized') { + return removePointing(varInfo.type); + } + return varInfo.type; +} + |