summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/prototype/flags/coercion-multiline.js
blob: 976c94aa135850ecb281ad27a12989ae65538a6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Copyright (C) 2017 Aleksey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-get-regexp.prototype.flags
description: Boolean coercion of the multiline property
info: |
  get RegExp.prototype.flags

  ...
  8. Let multiline be ToBoolean(? Get(R, "multiline")).
  ...
features: [Symbol]
---*/

var get = Object.getOwnPropertyDescriptor(RegExp.prototype, "flags").get;

var r = {};

r.multiline = undefined;
assert.sameValue(get.call(r), "", "multiline: undefined");

r.multiline = null;
assert.sameValue(get.call(r), "", "multiline: null");

r.multiline = NaN;
assert.sameValue(get.call(r), "", "multiline: NaN");

r.multiline = "";
assert.sameValue(get.call(r), "", "multiline: the empty string");

r.multiline = "string";
assert.sameValue(get.call(r), "m", "multiline: string");

r.multiline = 86;
assert.sameValue(get.call(r), "m", "multiline: 86");

r.multiline = Symbol();
assert.sameValue(get.call(r), "m", "multiline: Symbol()");

r.multiline = [];
assert.sameValue(get.call(r), "m", "multiline: []");

r.multiline = {};
assert.sameValue(get.call(r), "m", "multiline: {}");

reportCompare(0, 0);