Skip to content

Commit aaf5221

Browse files
committedApr 30, 2014
Fix StringScanner#[] to return nil for missing match.
This was causing a bug running our stringscanner implmentation in javascript as `undefined` was slipping into the lexer/parser from this method.
1 parent 991301a commit aaf5221

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎stdlib/strscan.rb

+4
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ def [](idx)
5555
return nil;
5656
}
5757
58+
if (match[idx] == null) {
59+
return nil;
60+
}
61+
5862
return match[idx];
5963
}
6064
end

0 commit comments

Comments
 (0)
Please sign in to comment.