Files
EWF/json_test/test_json_reader.e
2008-05-24 15:04:36 +00:00

42 lines
537 B
Plaintext

indexing
description: "Objects that ..."
author: ""
date: "$Date$"
revision: "$Revision$"
class
EXAMPLE_JSON_READER
create
make
feature -- Access
make is
--
do
test_create_reader
end
test_create_reader is
--
local
reader:JSON_READER
condition:BOOLEAN
do
create reader.make("{%"key%":%"value%"}")
from
condition:=false
until condition
loop
if reader.has_next then
print (reader.read)
reader.next
else
condition:=true
end
end
end
end