mirror of
https://github.com/jamiebuilds/the-super-tiny-compiler.git
synced 2024-10-27 20:34:08 +00:00
updated LETTERS regex
This commit is contained in:
parent
55692eb77d
commit
4efa9f8522
@ -446,7 +446,7 @@ function tokenizer(input) {
|
|||||||
// ^^^
|
// ^^^
|
||||||
// Name token
|
// Name token
|
||||||
//
|
//
|
||||||
var LETTERS = /[a-zA-Z]/;
|
var LETTERS = /[a-z]i/;
|
||||||
if (LETTERS.test(char)) {
|
if (LETTERS.test(char)) {
|
||||||
var value = '';
|
var value = '';
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user