mirror of https://github.com/tc39/test262.git
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]
|
||||
---*/
|
||||
|
||||
import * as ns from './define-own-property.js';
|
||||
import * as ns from './set.js';
|
||||
export var local1 = null;
|
||||
var local2 = null;
|
||||
export { local2 as renamed };
|
||||
export { local1 as indirect } from './define-own-property.js';
|
||||
export { local1 as indirect } from './set.js';
|
||||
var sym = Symbol('test262');
|
||||
|
||||
assert.sameValue(Reflect.set(ns, 'local1'), false, 'Reflect.set: local1');
|
||||
|
|
Loading…
Reference in New Issue