Skip to content

Commit

Permalink
Run build, generates TS nodes
Browse files Browse the repository at this point in the history
Summary: These nodes were added to the ESTree.def file but were not generated on the JS side.

Reviewed By: SamChou19815

Differential Revision: D49378933

fbshipit-source-id: 001e889d8441f4e69a2bede4c20b5edd865594c5
  • Loading branch information
pieterv authored and facebook-github-bot committed Sep 18, 2023
1 parent 6d04fa1 commit b602876
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1546,6 +1546,18 @@ function deserializeTSSymbolKeyword() {
function deserializeTSVoidKeyword() {
return {type: 'TSVoidKeyword', loc: this.addEmptyLoc()};
}
function deserializeTSUndefinedKeyword() {
return {type: 'TSUndefinedKeyword', loc: this.addEmptyLoc()};
}
function deserializeTSUnknownKeyword() {
return {type: 'TSUnknownKeyword', loc: this.addEmptyLoc()};
}
function deserializeTSNeverKeyword() {
return {type: 'TSNeverKeyword', loc: this.addEmptyLoc()};
}
function deserializeTSBigIntKeyword() {
return {type: 'TSBigIntKeyword', loc: this.addEmptyLoc()};
}
function deserializeTSThisType() {
return {type: 'TSThisType', loc: this.addEmptyLoc()};
}
Expand Down Expand Up @@ -2088,6 +2100,10 @@ module.exports = [
deserializeTSStringKeyword,
deserializeTSSymbolKeyword,
deserializeTSVoidKeyword,
deserializeTSUndefinedKeyword,
deserializeTSUnknownKeyword,
deserializeTSNeverKeyword,
deserializeTSBigIntKeyword,
deserializeTSThisType,
deserializeTSLiteralType,
deserializeTSIndexedAccessType,
Expand Down

0 comments on commit b602876

Please sign in to comment.