Implementing {pre,post}_{incr,decr} opcodes.

This commit is contained in:
Ruben Ayrapetyan
2014-07-25 18:07:18 +04:00
parent cfdef23303
commit ff2609eb88
2 changed files with 210 additions and 4 deletions
+10
View File
@@ -334,6 +334,16 @@ typedef uint8_t ecma_char_t;
*/
typedef float ecma_number_t;
/**
* Value '0' of ecma_number_t
*/
#define ECMA_NUMBER_ZERO ((ecma_number_t) 0)
/**
* Value '1' of ecma_number_t
*/
#define ECMA_NUMBER_ONE ((ecma_number_t) 1)
/**
* Description of arrays'/strings' length
*/