Skip to content

Commit

Permalink
Remove V8IntrinsicIdentifier from JSON printer
Browse files Browse the repository at this point in the history
  • Loading branch information
RReverser committed Sep 25, 2019
1 parent e442950 commit 682ffd5
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/language-js/printer-estree-json.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,6 @@ function genericPrint(path, options, print) {
return JSON.stringify(node.value);
case "Identifier":
return JSON.stringify(node.name);
case "V8IntrinsicIdentifier":
return JSON.stringify(`%${node.name}`);
default:
/* istanbul ignore next */
throw new Error("unknown type: " + JSON.stringify(node.type));
Expand Down

0 comments on commit 682ffd5

Please sign in to comment.