Implementation of Number built-in object and partial implementation of Number.prototype built-in object.

Fixing [[Prototype]] and [[Class]] properties of Array and String built-in objects.
This commit is contained in:
Ruben Ayrapetyan
2014-10-16 13:23:33 +04:00
parent e25f1297ff
commit c231893b28
8 changed files with 781 additions and 9 deletions
-4
View File
@@ -102,10 +102,6 @@ extern int __fprintf (_FILE *, const char *, ...);
extern void jrt_set_mem_limits (size_t data_size, size_t stack_size);
#define DBL_MANT_DIG (52)
#define DBL_DIG (10)
#define DBL_MIN_EXP (-324)
#define DBL_MAX_EXP (308)
#define HUGE_VAL (1e37f)
#endif /* JERRY_LIBC_H */