| Index: src/interpreter/interpreter-intrinsics.h | 
| diff --git a/src/interpreter/interpreter-intrinsics.h b/src/interpreter/interpreter-intrinsics.h | 
| index 563c312f485024c055d98034f14490393af0346e..502a2f7b38cc4d8711f3c6fed3ea8d5a70ebbdc2 100644 | 
| --- a/src/interpreter/interpreter-intrinsics.h | 
| +++ b/src/interpreter/interpreter-intrinsics.h | 
| @@ -23,21 +23,22 @@ namespace interpreter { | 
|  | 
| // List of supported intrisics, with upper case name, lower case name and | 
| // expected number of arguments (-1 denoting argument count is variable). | 
| -#define INTRINSICS_LIST(V)                                \ | 
| -  V(Call, call, -1)                                       \ | 
| -  V(ClassOf, class_of, 1)                                 \ | 
| -  V(CreateIterResultObject, create_iter_result_object, 2) \ | 
| -  V(HasProperty, has_property, 2)                         \ | 
| -  V(IsArray, is_array, 1)                                 \ | 
| -  V(IsJSProxy, is_js_proxy, 1)                            \ | 
| -  V(IsJSReceiver, is_js_receiver, 1)                      \ | 
| -  V(IsSmi, is_smi, 1)                                     \ | 
| -  V(IsTypedArray, is_typed_array, 1)                      \ | 
| -  V(SubString, sub_string, 3)                             \ | 
| -  V(ToString, to_string, 1)                               \ | 
| -  V(ToLength, to_length, 1)                               \ | 
| -  V(ToInteger, to_integer, 1)                             \ | 
| -  V(ToNumber, to_number, 1)                               \ | 
| +#define INTRINSICS_LIST(V)                                           \ | 
| +  V(Call, call, -1)                                                  \ | 
| +  V(ClassOf, class_of, 1)                                            \ | 
| +  V(CreateIterResultObject, create_iter_result_object, 2)            \ | 
| +  V(CreateAsyncFromSyncIterator, create_async_from_sync_iterator, 1) \ | 
| +  V(HasProperty, has_property, 2)                                    \ | 
| +  V(IsArray, is_array, 1)                                            \ | 
| +  V(IsJSProxy, is_js_proxy, 1)                                       \ | 
| +  V(IsJSReceiver, is_js_receiver, 1)                                 \ | 
| +  V(IsSmi, is_smi, 1)                                                \ | 
| +  V(IsTypedArray, is_typed_array, 1)                                 \ | 
| +  V(SubString, sub_string, 3)                                        \ | 
| +  V(ToString, to_string, 1)                                          \ | 
| +  V(ToLength, to_length, 1)                                          \ | 
| +  V(ToInteger, to_integer, 1)                                        \ | 
| +  V(ToNumber, to_number, 1)                                          \ | 
| V(ToObject, to_object, 1) | 
|  | 
| class IntrinsicsHelper { | 
|  |