Style fix: return value comments (#1668)

JerryScript-DCO-1.0-Signed-off-by: Levente Orban orbanl@inf.u-szeged.hu
This commit is contained in:
Levente Orban
2017-03-21 10:24:54 +01:00
committed by László Langó
parent e66bb5591d
commit 4420401cf5
20 changed files with 90 additions and 90 deletions
+2 -2
View File
@@ -132,8 +132,8 @@ vm_decode_branch_offset (uint8_t *branch_offset_p, /**< start offset of byte cod
/**
* Find a finally up to the end position.
*
* @return true if 'finally' found,
* false otherwise
* @return true - if 'finally' found,
* false - otherwise
*/
bool
vm_stack_find_finally (vm_frame_ctx_t *frame_ctx_p, /**< frame context */
+4 -4
View File
@@ -332,8 +332,8 @@ vm_construct_literal_object (vm_frame_ctx_t *frame_ctx_p, /**< frame context */
/**
* Get implicit this value
*
* @return true, if the implicit 'this' value is updated,
* false - otherwise.
* @return true - if the implicit 'this' value is updated,
* false - otherwise
*/
static inline bool __attr_always_inline___
vm_get_implicit_this_value (ecma_value_t *this_value_p) /**< [in,out] this value */
@@ -2757,7 +2757,7 @@ vm_run (const ecma_compiled_code_t *bytecode_header_p, /**< byte-code data heade
* Check whether currently executed code is strict mode code
*
* @return true - current code is executed in strict mode,
* false - otherwise.
* false - otherwise
*/
bool
vm_is_strict_mode (void)
@@ -2777,7 +2777,7 @@ vm_is_strict_mode (void)
*
* @return true - currently performed call is performed through 'eval' identifier,
* without 'this' argument,
* false - otherwise.
* false - otherwise
*/
inline bool __attr_always_inline___
vm_is_direct_eval_form_call (void)