Index: src/builtins/builtins.h |
diff --git a/src/builtins/builtins.h b/src/builtins/builtins.h |
index 1a963165967e3c45777b75249cc4824b16787171..f779d719c823665346693cb77bea47d699fc3ac9 100644 |
--- a/src/builtins/builtins.h |
+++ b/src/builtins/builtins.h |
@@ -546,6 +546,11 @@ namespace internal { |
CPP(StringPrototypeTrimRight) \ |
/* ES6 section 21.1.3.28 String.prototype.valueOf () */ \ |
TFJ(StringPrototypeValueOf, 1) \ |
+ /* ES6 #sec-string.prototype-@@iterator */ \ |
+ CPP(StringCreateIterator) \ |
Benedikt Meurer
2016/09/15 17:34:33
For consistency, please rename this to StringProto
|
+ \ |
+ /* StringIterator */ \ |
+ CPP(StringIteratorNext) \ |
Benedikt Meurer
2016/09/15 17:34:33
And this to StringIteratorPrototypeNext
|
\ |
/* Symbol */ \ |
CPP(SymbolConstructor) \ |