allow variable declaration to use callExpressions

This commit is contained in:
Kurt Hutten IrevDev
2022-11-20 08:18:45 +11:00
parent c7be6e592c
commit 0d92dd4a3c
2 changed files with 37 additions and 1 deletions

View File

@ -325,6 +325,10 @@ function makeVariableDeclarators(
const binExp = makeBinaryExpression(tokens, contentsStartToken.index);
init = binExp.expression;
lastIndex = binExp.lastIndex;
} else if (nextAfterInit.token?.type === "brace" && nextAfterInit.token.value === "(") {
const callExInfo = makeCallExpression(tokens, contentsStartToken.index);
init = callExInfo.expression
lastIndex = callExInfo.lastIndex
} else {
init = makeLiteral(tokens, contentsStartToken.index);
}
@ -585,6 +589,7 @@ function makeBody(
if (token.type === "whitespace") {
return makeBody(tokens, tokenIndex + 1, previousBody);
}
const nextToken = nextMeaningfulToken(tokens, tokenIndex);
if (
token.type === "word" &&
(token.value === "const" || token.value === "fn")
@ -601,7 +606,7 @@ function makeBody(
const nextThing = nextMeaningfulToken(tokens, lastIndex);
return makeBody(tokens, nextThing.index, [...previousBody, statement]);
}
if (token.type === "word" && token.value === "log") {
if (token.type === "word" && nextToken.token.type === "brace" && nextToken.token.value === '(') {
const { expression, lastIndex } = makeExpressionStatement(
tokens,
tokenIndex