Lines Matching defs:symbol
41 #include "ecma-symbol-object.h"
879 * Check if the specified value is symbol.
881 * @return true - if the specified value is symbol,
1767 * Create symbol from an api value
1773 * @return value of the created symbol, if success
3397 * Call the SymbolDescriptiveString ecma builtin operation on the symbol value.
3402 * @return string value containing the symbol's descriptive string - if success
3406 jerry_get_symbol_descriptive_string (const jerry_value_t symbol) /**< symbol value */
3411 if (!ecma_is_value_symbol (symbol))
3417 return ecma_get_symbol_descriptive_string (symbol);
3419 JERRY_UNUSED (symbol);