Renaming ecma_* identifiers from 'camelCase' to 'underscore_naming'.
This commit is contained in:
@@ -23,17 +23,17 @@
|
||||
struct __int_data
|
||||
{
|
||||
int pos; /**< current opcode to execute */
|
||||
ecma_Object_t *this_binding_p; /**< this binding for current context */
|
||||
ecma_Object_t *lex_env_p; /**< current lexical environment */
|
||||
ecma_object_t *this_binding_p; /**< this binding for current context */
|
||||
ecma_object_t *lex_env_p; /**< current lexical environment */
|
||||
bool is_strict; /**< is current code execution mode strict? */
|
||||
};
|
||||
|
||||
void init_int (const OPCODE* program_p);
|
||||
bool run_int (void);
|
||||
ecma_CompletionValue_t run_int_from_pos (struct __int_data *);
|
||||
ecma_completion_value_t run_int_from_pos (struct __int_data *);
|
||||
|
||||
ssize_t try_get_string_by_idx( T_IDX idx, ecma_Char_t *buffer_p, ssize_t buffer_size);
|
||||
ecma_Number_t get_number_by_idx(T_IDX idx);
|
||||
ssize_t try_get_string_by_idx( T_IDX idx, ecma_char_t *buffer_p, ssize_t buffer_size);
|
||||
ecma_number_t get_number_by_idx(T_IDX idx);
|
||||
|
||||
#endif /* INTERPRETER_H */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user