Skip to content

Commit

Permalink
add some more missing res declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
tjenkinson committed Jan 31, 2022
1 parent 72a8616 commit 7a83c1f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -1417,6 +1417,7 @@
// \ b

if (match('\\')) {
var res;
if (res = parseClassCharacterEscapedHelper()) {
return res;
} else {
Expand Down Expand Up @@ -1445,6 +1446,7 @@
// \ ClassHalfOfDouble
// \ b

var res;
if (match('b')) {
return createEscaped('singleEscape', 0x0008, '\\b');
} else if (match('B')) {
Expand Down

0 comments on commit 7a83c1f

Please sign in to comment.