Fix incorrect typing of ReturnStatement.expression

This commit is contained in:
Sam Vervaeck 2022-08-31 13:54:22 +02:00
parent 6063b5f591
commit 12559e93a2

View file

@ -1128,7 +1128,7 @@ export class ReturnStatement extends SyntaxBase {
public constructor( public constructor(
public returnKeyword: ReturnKeyword, public returnKeyword: ReturnKeyword,
public expression: Expression public expression: Expression | null
) { ) {
super(); super();
} }