Skip to content

Commit

Permalink
Update Literal union type to include BigIntLiteral
Browse files Browse the repository at this point in the history
  • Loading branch information
kaicataldo committed Dec 6, 2019
1 parent b6a7dd7 commit 38fb650
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/babel-parser/src/types.js
Expand Up @@ -96,7 +96,8 @@ export type Literal =
| NullLiteral
| StringLiteral
| BooleanLiteral
| NumericLiteral;
| NumericLiteral
| BigIntLiteral;

export type RegExpLiteral = NodeBase & {
type: "RegExpLiteral",
Expand Down

0 comments on commit 38fb650

Please sign in to comment.