From c5ca6b787314cbee915feeed5d0d15d08bc937e0 Mon Sep 17 00:00:00 2001 From: Matthew Fluet Date: Tue, 23 Jul 2024 11:09:35 -0400 Subject: [PATCH] Remove unused `const identRE` --- grammar.js | 1 - 1 file changed, 1 deletion(-) diff --git a/grammar.js b/grammar.js index d660628..dbd41a4 100644 --- a/grammar.js +++ b/grammar.js @@ -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"