Skip to content

Commit

Permalink
Remove unused const identRE
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewFluet committed Jul 23, 2024
1 parent e7067b4 commit c5ca6b7
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion grammar.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ const alphaNumericIdentSuffixRE = /[A-Za-z0-9_']*/.source;
const alphaAlphaNumericIdentRE = `[A-Za-z]${alphaNumericIdentSuffixRE}`;
const primeAlphaNumericIdentRE = `'${alphaNumericIdentSuffixRE}`;
const symbolicIdentRE = /[!%&$#+\-/:<=>?@\\~`^|*]+/.source;
// const identRE = `(?:${alphaAlphaNumericIdentRE})|(?:${primeAlphaNumericIdentRE})|(?:${symbolicIdentRE})`;

// ******************************************************** //
// "Separated By"
Expand Down

0 comments on commit c5ca6b7

Please sign in to comment.