Skip to content

Commit

Permalink
export-ns: eval order/once
Browse files Browse the repository at this point in the history
  • Loading branch information
Valerie R Young committed Apr 18, 2018
1 parent b2e0e9d commit ec88bf0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
3 changes: 2 additions & 1 deletion test/language/module-code/eval-rqstd-once.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ import dflt1 from './eval-rqstd-once_FIXTURE.js';
export {} from './eval-rqstd-once_FIXTURE.js';
import dflt2, {} from './eval-rqstd-once_FIXTURE.js';
export * from './eval-rqstd-once_FIXTURE.js';
import dflt3, * as ns from './eval-rqstd-once_FIXTURE.js';
export * as ns2 from './eval-rqstd-once_FIXTURE.js';
import dflt3, * as ns3 from './eval-rqstd-once_FIXTURE.js';
export default null;

var global = fnGlobalObject();
Expand Down
4 changes: 4 additions & 0 deletions test/language/module-code/eval-rqstd-order-9_FIXTURE.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// Copyright (C) 2018 Valerie Young. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

Function('return this;')().test262 += '9';
4 changes: 3 additions & 1 deletion test/language/module-code/eval-rqstd-order.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,6 @@ import dflt2, {} from './eval-rqstd-order-6_FIXTURE.js';

export * from './eval-rqstd-order-7_FIXTURE.js';

import dflt3, * as ns from './eval-rqstd-order-8_FIXTURE.js';
import dflt3, * as ns2 from './eval-rqstd-order-8_FIXTURE.js';

export * as ns3 from './eval-rqstd-order-9_FIXTURE.js';

0 comments on commit ec88bf0

Please sign in to comment.