| // Copyright (C) 2015 the V8 project authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| Behavior when error thrown from `source` property of a RegExp-like object |
| 1. Let patternIsRegExp be IsRegExp(pattern). |
| 6. Else if patternIsRegExp is true, then |
| a. Let P be Get(pattern, "source"). |
| features: [Symbol, Symbol.match] |
| function CustomError() {} |
| Object.defineProperty(obj, 'source', { |
| Object.defineProperty(obj, 'flags', { |
| $ERROR('the `flags` property should not be referenced before `source`'); |
| obj[Symbol.match] = true; |
| assert.throws(CustomError, function() { |
| obj[Symbol.match] = 'string'; |
| assert.throws(CustomError, function() { |
| assert.throws(CustomError, function() { |
| obj[Symbol.match] = Symbol(); |
| assert.throws(CustomError, function() { |
| assert.throws(CustomError, function() { |