main
Last change
on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 4 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
1003 bytes
|
Rev | Line | |
---|
[79a0317] | 1 | 'use strict';
|
---|
| 2 | var DESCRIPTORS = require('../internals/descriptors');
|
---|
| 3 | var MISSED_STICKY = require('../internals/regexp-sticky-helpers').MISSED_STICKY;
|
---|
| 4 | var classof = require('../internals/classof-raw');
|
---|
| 5 | var defineBuiltInAccessor = require('../internals/define-built-in-accessor');
|
---|
| 6 | var getInternalState = require('../internals/internal-state').get;
|
---|
| 7 |
|
---|
| 8 | var RegExpPrototype = RegExp.prototype;
|
---|
| 9 | var $TypeError = TypeError;
|
---|
| 10 |
|
---|
| 11 | // `RegExp.prototype.sticky` getter
|
---|
| 12 | // https://tc39.es/ecma262/#sec-get-regexp.prototype.sticky
|
---|
| 13 | if (DESCRIPTORS && MISSED_STICKY) {
|
---|
| 14 | defineBuiltInAccessor(RegExpPrototype, 'sticky', {
|
---|
| 15 | configurable: true,
|
---|
| 16 | get: function sticky() {
|
---|
| 17 | if (this === RegExpPrototype) return;
|
---|
| 18 | // We can't use InternalStateModule.getterFor because
|
---|
| 19 | // we don't add metadata for regexps created by a literal.
|
---|
| 20 | if (classof(this) === 'RegExp') {
|
---|
| 21 | return !!getInternalState(this).sticky;
|
---|
| 22 | }
|
---|
| 23 | throw new $TypeError('Incompatible receiver, RegExp required');
|
---|
| 24 | }
|
---|
| 25 | });
|
---|
| 26 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.