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
description: "Parse serialized JSON data"
author: ""
date: "$Date$"
revision: "$Revision$"
author: "jvelilla"
date: "2008/08/24"
revision: "Revision 0.1"
class

View File

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

View File

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