Add descriptions.
Change in skip_withe_spaces to handle newline %N and carriage Return %R
This commit is contained in:
@@ -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
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user