| Index: src/harmony-regexp.js
 | 
| diff --git a/src/harmony-regexp.js b/src/harmony-regexp.js
 | 
| index 3689bec0768d8103dbf40baca66c6575dbe0b8cd..f8e721f8c8b1446b02d3e23f0f53bd6a4f534d9a 100644
 | 
| --- a/src/harmony-regexp.js
 | 
| +++ b/src/harmony-regexp.js
 | 
| @@ -16,7 +16,7 @@
 | 
|  // + https://bugs.ecmascript.org/show_bug.cgi?id=3423
 | 
|  function RegExpGetFlags() {
 | 
|    if (!IS_SPEC_OBJECT(this)) {
 | 
| -    throw MakeTypeError(kFlagsGetterNonObject, $toString(this));
 | 
| +    throw MakeTypeError(kFlagsGetterNonObject, %ToString(this));
 | 
|    }
 | 
|    var result = '';
 | 
|    if (this.global) result += 'g';
 | 
| 
 |