summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/module-code/namespace/internals/is-extensible.js
blob: 6e1d024d7c9248d32753b021f7f44c60172cff47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// |reftest| module
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-module-namespace-exotic-objects-isextensible
description: The [[IsExtensible]] internal method returns `false`
flags: [module]
---*/

import * as ns from './is-extensible.js';

assert.sameValue(Object.isExtensible(ns), false);

reportCompare(0, 0);