|
29 | 29 | #define ECMA_BUILTINS_INTERNAL
|
30 | 30 | #include "ecma-builtins-internal.h"
|
31 | 31 |
|
| 32 | +/** |
| 33 | + * List of built-in routine identifiers. |
| 34 | + */ |
| 35 | +enum |
| 36 | +{ |
| 37 | + ECMA_ARRAYBUFFER_ROUTINE_START = 0, |
| 38 | + ECMA_ARRAYBUFFER_OBJECT_IS_VIEW, |
| 39 | + ECMA_ARRAYBUFFER_SPECIES_GET, |
| 40 | +}; |
| 41 | + |
32 | 42 | #define BUILTIN_INC_HEADER_NAME "ecma-builtin-arraybuffer.inc.h"
|
33 | 43 | #define BUILTIN_UNDERSCORED_ID arraybuffer
|
34 | 44 | #include "ecma-builtin-internal-routines-template.inc.h"
|
@@ -94,16 +104,36 @@ ecma_builtin_arraybuffer_dispatch_construct (const ecma_value_t *arguments_list_
|
94 | 104 | } /* ecma_builtin_arraybuffer_dispatch_construct */
|
95 | 105 |
|
96 | 106 | /**
|
97 |
| - * 24.1.3.3 get ArrayBuffer [ @@species ] accessor |
| 107 | + * Dispatcher of the built-in's routines |
98 | 108 | *
|
99 |
| - * @return ecma_value |
100 |
| - * returned value must be freed with ecma_free_value |
| 109 | + * @return ecma value |
| 110 | + * Returned value must be freed with ecma_free_value. |
101 | 111 | */
|
102 | 112 | ecma_value_t
|
103 |
| -ecma_builtin_arraybuffer_species_get (ecma_value_t this_value) /**< This Value */ |
| 113 | +ecma_builtin_arraybuffer_dispatch_routine (uint8_t builtin_routine_id, /**< built-in wide routine identifier */ |
| 114 | + ecma_value_t this_arg, /**< 'this' argument value */ |
| 115 | + const ecma_value_t arguments_list_p[], /**< list of arguments |
| 116 | + * passed to routine */ |
| 117 | + uint32_t arguments_number) /**< length of arguments' list */ |
104 | 118 | {
|
105 |
| - return ecma_copy_value (this_value); |
106 |
| -} /* ecma_builtin_arraybuffer_species_get */ |
| 119 | + JERRY_UNUSED (arguments_number); |
| 120 | + |
| 121 | + switch (builtin_routine_id) |
| 122 | + { |
| 123 | + case ECMA_ARRAYBUFFER_OBJECT_IS_VIEW: |
| 124 | + { |
| 125 | + return ecma_builtin_arraybuffer_object_is_view (this_arg, arguments_list_p[0]); |
| 126 | + } |
| 127 | + case ECMA_ARRAYBUFFER_SPECIES_GET: |
| 128 | + { |
| 129 | + return ecma_copy_value (this_arg); |
| 130 | + } |
| 131 | + default: |
| 132 | + { |
| 133 | + JERRY_UNREACHABLE (); |
| 134 | + } |
| 135 | + } |
| 136 | +} /* ecma_builtin_arraybuffer_dispatch_routine */ |
107 | 137 |
|
108 | 138 | /**
|
109 | 139 | * @}
|
|
0 commit comments