summaryrefslogtreecommitdiffstats
path: root/js/src/wasm/AsmJS.cpp
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@wolfbeast.com>2019-04-06 06:22:55 +0200
committerwolfbeast <mcwerewolf@wolfbeast.com>2019-04-06 06:22:55 +0200
commit7333618581b018ca73c3482e2d5547765f6c3a1d (patch)
tree7c93bd9860e45c2c4c43310909a58d27703c21ae /js/src/wasm/AsmJS.cpp
parent96899aa847ab7495e3b7baaa413cf50a5eaaffff (diff)
downloadUXP-7333618581b018ca73c3482e2d5547765f6c3a1d.tar
UXP-7333618581b018ca73c3482e2d5547765f6c3a1d.tar.gz
UXP-7333618581b018ca73c3482e2d5547765f6c3a1d.tar.lz
UXP-7333618581b018ca73c3482e2d5547765f6c3a1d.tar.xz
UXP-7333618581b018ca73c3482e2d5547765f6c3a1d.zip
Move the Parser::checkFunctionDefinition call into its callers.
Diffstat (limited to 'js/src/wasm/AsmJS.cpp')
-rw-r--r--js/src/wasm/AsmJS.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/wasm/AsmJS.cpp b/js/src/wasm/AsmJS.cpp
index 2b6690363..a318d67a9 100644
--- a/js/src/wasm/AsmJS.cpp
+++ b/js/src/wasm/AsmJS.cpp
@@ -7064,7 +7064,7 @@ ParseFunction(ModuleValidator& m, ParseNode** fnOut, unsigned* line)
if (!name)
return false;
- ParseNode* fn = m.parser().handler.newFunctionDefinition();
+ ParseNode* fn = m.parser().handler.newFunctionStatement();
if (!fn)
return false;