Reimplementation of jerry_api_is_funciton and jerry_api_is_constructor

This commit is contained in:
Ilyong Cho
2015-04-06 11:25:40 +09:00
committed by Ruben Ayrapetyan
parent 8e4bcca568
commit 72d8c38d77
5 changed files with 16 additions and 15 deletions
+1 -1
View File
@@ -83,7 +83,7 @@ typedef void (*mem_try_give_memory_back_callback_t) (mem_try_give_memory_back_se
extern void mem_init (void);
extern void mem_finalize (bool is_show_mem_stats);
extern uintptr_t mem_compress_pointer (void *pointer);
extern uintptr_t mem_compress_pointer (const void *pointer);
extern void* mem_decompress_pointer (uintptr_t compressed_pointer);
extern void mem_register_a_try_give_memory_back_callback (mem_try_give_memory_back_callback_t callback);