summaryrefslogtreecommitdiffstats
path: root/js/src/frontend/FullParseHandler.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/FullParseHandler.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/FullParseHandler.h')
-rw-r--r--js/src/frontend/FullParseHandler.h15
1 files changed, 12 insertions, 3 deletions
diff --git a/js/src/frontend/FullParseHandler.h b/js/src/frontend/FullParseHandler.h
index da068e5af..b619cf24c 100644
--- a/js/src/frontend/FullParseHandler.h
+++ b/js/src/frontend/FullParseHandler.h
@@ -670,9 +670,18 @@ class FullParseHandler
pn->setDirectRHSAnonFunction(true);
}
- ParseNode* newFunctionDefinition() {
- return new_<CodeNode>(PNK_FUNCTION, pos());
+ ParseNode* newFunctionStatement() {
+ return new_<CodeNode>(PNK_FUNCTION, JSOP_NOP, pos());
}
+
+ ParseNode* newFunctionExpression() {
+ return new_<CodeNode>(PNK_FUNCTION, JSOP_LAMBDA, pos());
+ }
+
+ ParseNode* newArrowFunction() {
+ return new_<CodeNode>(PNK_FUNCTION, JSOP_LAMBDA_ARROW, pos());
+ }
+
bool setComprehensionLambdaBody(ParseNode* pn, ParseNode* body) {
MOZ_ASSERT(body->isKind(PNK_STATEMENTLIST));
ParseNode* paramsBody = newList(PNK_PARAMSBODY, body);
@@ -699,7 +708,7 @@ class FullParseHandler
}
ParseNode* newModule() {
- return new_<CodeNode>(PNK_MODULE, pos());
+ return new_<CodeNode>(PNK_MODULE, JSOP_NOP, pos());
}
ParseNode* newLexicalScope(LexicalScope::Data* bindings, ParseNode* body) {