Add descriptions.

Change in skip_withe_spaces to handle newline %N and carriage Return %R
This commit is contained in:
jvelilla
2008-08-29 10:49:24 +00:00
parent fc7c2d151f
commit 1359a1ceae
3 changed files with 11 additions and 11 deletions

View File

@@ -1,9 +1,9 @@
indexing indexing
description: "Parse serialized JSON data" description: "Parse serialized JSON data"
author: "" author: "jvelilla"
date: "$Date$" date: "2008/08/24"
revision: "$Revision$" revision: "Revision 0.1"
class class

View File

@@ -1,9 +1,9 @@
indexing indexing
description: "Objects that ..." description: "Objects that ..."
author: "" author: "jvelilla"
date: "$Date$" date: "2008/08/24"
revision: "$Revision$" revision: "0.1"
class class
@@ -74,7 +74,7 @@ feature -- Commands
-- Remove withe spaces -- Remove withe spaces
do do
from from
until actual /= ' ' or not has_next until (actual /= ' ' and actual /= '%N' and actual /= '%R') or not has_next
loop loop
next next
end end

View File

@@ -1,8 +1,8 @@
indexing indexing
description: "Objects that ..." description: ""
author: "" author: "jvelilla"
date: "$Date$" date: "2008/08/24"
revision: "$Revision$" revision: "0.1"
class class
JSON_TOKENS JSON_TOKENS