Fix incorrect typing of ReturnStatement.expression
This commit is contained in:
parent
6063b5f591
commit
12559e93a2
1 changed files with 1 additions and 1 deletions
|
@ -1128,7 +1128,7 @@ export class ReturnStatement extends SyntaxBase {
|
|||
|
||||
public constructor(
|
||||
public returnKeyword: ReturnKeyword,
|
||||
public expression: Expression
|
||||
public expression: Expression | null
|
||||
) {
|
||||
super();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue