Arranging JERRY_UNIMPLEMENTED macro usages and adding comments to each invocation of the macro.

This commit is contained in:
Ruben Ayrapetyan
2014-10-27 19:48:03 +03:00
parent cd8ab6594b
commit fc751b0f15
24 changed files with 152 additions and 118 deletions
+1 -1
View File
@@ -393,7 +393,7 @@ ecma_gc_mark (ecma_object_t *object_p, /**< start object */
case ECMA_INTERNAL_PROPERTY_NUMBER_INDEXED_ARRAY_VALUES: /* a collection of ecma-values */
case ECMA_INTERNAL_PROPERTY_STRING_INDEXED_ARRAY_VALUES: /* a collection of ecma-values */
{
JERRY_UNIMPLEMENTED();
JERRY_UNIMPLEMENTED("Indexed array storage is not implemented yet.");
}
case ECMA_INTERNAL_PROPERTY_PROTOTYPE: /* the property's value is located in ecma_object_t
+2 -1
View File
@@ -306,7 +306,8 @@ ecma_copy_or_ref_ecma_string (ecma_string_t *string_desc_p) /**< string descript
}
else
{
JERRY_UNIMPLEMENTED ();
JERRY_UNIMPLEMENTED ("Unimplemented copy operation for strings, "
"stored in heap chunks or number, or concatenated strings.");
}
}