eJson initial import

This commit is contained in:
jvelilla
2008-05-24 14:23:27 +00:00
commit 308fa7f2e7
13 changed files with 854 additions and 0 deletions

27
json/json_null.e Normal file
View File

@@ -0,0 +1,27 @@
indexing
description: "JSON Null Values"
author: "Javier Velilla"
date: "$Date$"
revision: "$Revision$"
class
JSON_NULL
inherit
JSON_VALUE
feature --Access
to_json:STRING is
--
do
Result:=null_value
end
hash_code:INTEGER is
--
do
Result:= null_value.hash_code
end
feature -- Implementation
null_value:STRING is "null"
end