Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion jerry-core/lit/lit-literal-storage.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ typedef enum
LIT_RECORD_TYPE_CHARSET = 1, /**< Charset record that holds characters. */
LIT_RECORD_TYPE_MAGIC_STR = 2, /**< Magic string record that holds a magic string id. */
LIT_RECORD_TYPE_MAGIC_STR_EX = 3, /**< External magic string record that holds an extrernal magic string id. */
LIT_RECORD_TYPE_NUMBER = 4 /**< Number record that holds a numeric value. */
LIT_RECORD_TYPE_NUMBER = 4, /**< Number record that holds a numeric value. */
LIT_RECORD_TYPE__FORCE_LARGE = INT32_MAX,
} lit_record_type_t;

/**
Expand Down
3 changes: 2 additions & 1 deletion jerry-core/lit/lit-magic-strings.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ typedef enum
#include "lit-magic-strings.inc.h"
#undef LIT_MAGIC_STRING_DEF

LIT_MAGIC_STRING__COUNT /**< number of magic strings */
LIT_MAGIC_STRING__COUNT, /**< number of magic strings */
LIT_MAGIC_STRING__FORCE_LARGE = INT32_MAX,
} lit_magic_string_id_t;

/**
Expand Down