blob: 95f532ae40b3e770b01fa5ef3f8b12f42bf3a7b3 [file] [log] [blame]
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 21.2.5.15
description: >
`unicode` property descriptor
info: |
RegExp.prototype.unicode is an accessor property whose set accessor
function is undefined.
---*/
var desc = Object.getOwnPropertyDescriptor(RegExp.prototype, 'unicode');
assert.sameValue(desc.set, undefined);
assert.sameValue(typeof desc.get, 'function');