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
|
||||
|
||||
description: "Parse serialized JSON data"
|
||||
author: ""
|
||||
date: "$Date$"
|
||||
revision: "$Revision$"
|
||||
author: "jvelilla"
|
||||
date: "2008/08/24"
|
||||
revision: "Revision 0.1"
|
||||
|
||||
class
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user