Add deserializer

This commit is contained in:
Ilmir Usmanov
2014-07-23 22:55:45 +04:00
parent b923468720
commit ed4e2a20e4
7 changed files with 198 additions and 10 deletions
@@ -0,0 +1,36 @@
/* Copyright 2014 Samsung Electronics Co., Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "deserializer.h"
TODO (Implement)
const char *
deserializer_get_string_by_id (uint8_t id)
{
JERRY_UNIMPLEMENTED_REF_UNUSED_VARS (id);
}
int
deserializer_get_num_by_id (uint8_t id)
{
JERRY_UNIMPLEMENTED_REF_UNUSED_VARS (id);
}
const void *
deserializer_get_bytecode (void)
{
JERRY_UNIMPLEMENTED ();
}