Graphite: Add @ to the lexer (#92546)

Add @ to the lexer
This commit is contained in:
Andrew Hackmann 2024-08-28 09:12:23 -05:00 committed by GitHub
parent e0a0942203
commit f8af6f4eea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -81,6 +81,7 @@ for (let i = 0; i < 128; i++) {
i === 37 || // %
i === 35 || // #
i === 61 || // =
i === 64 || // @
(i >= 97 && i <= 122); // a-z
}