summaryrefslogtreecommitdiff
path: root/lib/json/pure/parser.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/json/pure/parser.rb')
-rw-r--r--lib/json/pure/parser.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/json/pure/parser.rb b/lib/json/pure/parser.rb
index 1c8f59f..2bf93f0 100644
--- a/lib/json/pure/parser.rb
+++ b/lib/json/pure/parser.rb
@@ -242,8 +242,10 @@ module JSON
@max_nesting.nonzero? && @current_nesting > @max_nesting
result = @array_class.new
delim = false
- until eos?
+ loop do
case
+ when eos?
+ raise ParserError, "unexpected end of string while parsing array"
when !UNPARSED.equal?(value = parse_value)
delim = false
result << value
@@ -274,8 +276,10 @@ module JSON
@max_nesting.nonzero? && @current_nesting > @max_nesting
result = @object_class.new
delim = false
- until eos?
+ loop do
case
+ when eos?
+ raise ParserError, "unexpected end of string while parsing object"
when !UNPARSED.equal?(string = parse_string)
skip(IGNORE)
unless scan(PAIR_DELIMITER)