mirror of
https://github.com/tc39/test262.git
synced 2025-07-25 15:04:43 +02:00
fix namespace set test (#2574)
This commit is contained in:
parent
27a41b6321
commit
13d057dffc
@ -9,11 +9,11 @@ flags: [module]
|
|||||||
features: [Reflect, Symbol, Symbol.toStringTag]
|
features: [Reflect, Symbol, Symbol.toStringTag]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
import * as ns from './define-own-property.js';
|
import * as ns from './set.js';
|
||||||
export var local1 = null;
|
export var local1 = null;
|
||||||
var local2 = null;
|
var local2 = null;
|
||||||
export { local2 as renamed };
|
export { local2 as renamed };
|
||||||
export { local1 as indirect } from './define-own-property.js';
|
export { local1 as indirect } from './set.js';
|
||||||
var sym = Symbol('test262');
|
var sym = Symbol('test262');
|
||||||
|
|
||||||
assert.sameValue(Reflect.set(ns, 'local1'), false, 'Reflect.set: local1');
|
assert.sameValue(Reflect.set(ns, 'local1'), false, 'Reflect.set: local1');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user