summaryrefslogtreecommitdiffstats
path: root/js/src/frontend/ParseNode.h
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/frontend/ParseNode.h
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/frontend/ParseNode.h')
-rw-r--r--js/src/frontend/ParseNode.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/js/src/frontend/ParseNode.h b/js/src/frontend/ParseNode.h
index c58dab431..c3523afe4 100644
--- a/js/src/frontend/ParseNode.h
+++ b/js/src/frontend/ParseNode.h
@@ -926,10 +926,14 @@ struct ListNode : public ParseNode
struct CodeNode : public ParseNode
{
- CodeNode(ParseNodeKind kind, const TokenPos& pos)
- : ParseNode(kind, JSOP_NOP, PN_CODE, pos)
+ CodeNode(ParseNodeKind kind, JSOp op, const TokenPos& pos)
+ : ParseNode(kind, op, PN_CODE, pos)
{
MOZ_ASSERT(kind == PNK_FUNCTION || kind == PNK_MODULE);
+ MOZ_ASSERT_IF(kind == PNK_MODULE, op == JSOP_NOP);
+ MOZ_ASSERT(op == JSOP_NOP || // statement, module
+ op == JSOP_LAMBDA_ARROW || // arrow function
+ op == JSOP_LAMBDA); // expression, method, comprehension, accessor, &c.
MOZ_ASSERT(!pn_body);
MOZ_ASSERT(!pn_objbox);
}