Skip to content

Commit

Permalink
Revert "Parser fix based on espruino/Espruino#2529"
Browse files Browse the repository at this point in the history
because of espruino/Espruino#2529 (comment)

This reverts commit 05918f8.
  • Loading branch information
gfwilliams committed Jul 10, 2024
1 parent 05918f8 commit f58798f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
"delete","do","else","enum","eval","export","extends","field","final","finally","for","function","goto",
"if","implements","import","in","instanceof","native","new","package","private","protected","public",
"return","static","switch","synchronized","throw","throws","transient","try","typeof","var","volatile","while","with"];
var allowedRegExChars = ['!','%','&','*','+','-','/','<','=','>','?','[','{','}','(',')',',',';',':']; // based on Espruino jslex.c (may not match spec 100%)
var allowedRegExChars = ['!','%','&','*','+','-','/','<','=','>','?','[','{','}','(',',',';',':']; // based on Espruino jslex.c (may not match spec 100%)
var ch;
var idx = 0;
var lineNumber = 1;
Expand Down

0 comments on commit f58798f

Please sign in to comment.