mirror of https://github.com/tc39/test262.git
fixup! Module semantics: declaration instantiation
Implement suggested modification to naming scheme.
This commit is contained in:
parent
4273ad1fa7
commit
84438a53d0
|
@ -43,5 +43,5 @@ assert.throws(ReferenceError, function() {
|
|||
typeof B;
|
||||
}, 'binding is created but not initialized');
|
||||
|
||||
import { B } from './instn-iee-bndng-cls_.js';
|
||||
import { B } from './instn-iee-bndng-cls_FIXTURE.js';
|
||||
export class A {}
|
||||
|
|
|
@ -43,5 +43,5 @@ assert.throws(ReferenceError, function() {
|
|||
typeof y;
|
||||
}, 'binding is created but not initialized');
|
||||
|
||||
import { y } from './instn-iee-bndng-const_.js';
|
||||
import { y } from './instn-iee-bndng-const_FIXTURE.js';
|
||||
export const x = null;
|
||||
|
|
|
@ -51,5 +51,5 @@ assert.throws(TypeError, function() {
|
|||
|
||||
assert.sameValue(f2(), 77, 'binding value is immutable');
|
||||
|
||||
import { f2 } from './instn-iee-bndng-fun_.js';
|
||||
import { f2 } from './instn-iee-bndng-fun_FIXTURE.js';
|
||||
export function f() { return 77; }
|
||||
|
|
|
@ -52,5 +52,5 @@ assert.throws(TypeError, function() {
|
|||
|
||||
assert.sameValue(g2().next().value, 455, 'binding value is immutable');
|
||||
|
||||
import { g2 } from './instn-iee-bndng-gen_.js';
|
||||
import { g2 } from './instn-iee-bndng-gen_FIXTURE.js';
|
||||
export function* g () { return 455; }
|
||||
|
|
|
@ -43,5 +43,5 @@ assert.throws(ReferenceError, function() {
|
|||
typeof y;
|
||||
}, 'binding is created but not initialized');
|
||||
|
||||
import { y } from './instn-iee-bndng-let_.js';
|
||||
import { y } from './instn-iee-bndng-let_FIXTURE.js';
|
||||
export let x;
|
||||
|
|
|
@ -51,5 +51,5 @@ assert.throws(TypeError, function() {
|
|||
|
||||
assert.sameValue(y, undefined, 'binding value is immutable');
|
||||
|
||||
import { y } from './instn-iee-bndng-var_.js';
|
||||
import { y } from './instn-iee-bndng-var_FIXTURE.js';
|
||||
export var x = 99;
|
||||
|
|
|
@ -34,4 +34,4 @@ negative: SyntaxError
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
export { x as y } from './instn-iee-err-ambiguous_.js';
|
||||
export { x as y } from './instn-iee-err-ambiguous_FIXTURE.js';
|
||||
|
|
|
@ -34,4 +34,4 @@ negative: SyntaxError
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
export { x } from './instn-iee-err-ambiguous_.js';
|
||||
export { x } from './instn-iee-err-ambiguous_FIXTURE.js';
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
export * from './instn-named-err-ambiguous-1_.js';
|
||||
export * from './instn-named-err-ambiguous-2_.js';
|
||||
export * from './instn-iee-err-ambiguous-1_FIXTURE.js';
|
||||
export * from './instn-iee-err-ambiguous-2_FIXTURE.js';
|
|
@ -23,4 +23,4 @@ negative: SyntaxError
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
export { x as y } from './instn-iee-err-circular_.js';
|
||||
export { x as y } from './instn-iee-err-circular_FIXTURE.js';
|
||||
|
|
|
@ -23,4 +23,4 @@ negative: SyntaxError
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
export { x } from './instn-iee-err-circular_.js';
|
||||
export { x } from './instn-iee-err-circular_FIXTURE.js';
|
||||
|
|
|
@ -22,4 +22,4 @@ negative: SyntaxError
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
export { default as x } from './instn-iee-err-dflt-thru-star-int_.js';
|
||||
export { default as x } from './instn-iee-err-dflt-thru-star-int_FIXTURE.js';
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
export * from './instn-iee-err-dflt-thru-star-dflt_FIXTURE.js';
|
|
@ -22,4 +22,4 @@ negative: SyntaxError
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
export { default } from './instn-iee-err-dflt-thru-star-int_.js';
|
||||
export { default } from './instn-iee-err-dflt-thru-star-int_FIXTURE.js';
|
||||
|
|
|
@ -22,4 +22,4 @@ negative: SyntaxError
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
export { x as y } from './instn-iee-err-not-found-empty_.js';
|
||||
export { x as y } from './instn-iee-err-not-found-empty_FIXTURE.js';
|
||||
|
|
|
@ -22,4 +22,4 @@ negative: SyntaxError
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
export { x } from './instn-iee-err-not-found-empty_.js';
|
||||
export { x } from './instn-iee-err-not-found-empty_FIXTURE.js';
|
||||
|
|
|
@ -33,17 +33,17 @@ info: |
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
export { a } from './instn-iee-iee-cycle-2_.js';
|
||||
export { c as b } from './instn-iee-iee-cycle-2_.js';
|
||||
export { e as d } from './instn-iee-iee-cycle-2_.js';
|
||||
export { g as f } from './instn-iee-iee-cycle-2_.js';
|
||||
export { i as h } from './instn-iee-iee-cycle-2_.js';
|
||||
export { k as j } from './instn-iee-iee-cycle-2_.js';
|
||||
export { m as l } from './instn-iee-iee-cycle-2_.js';
|
||||
export { o as n } from './instn-iee-iee-cycle-2_.js';
|
||||
export { q as p } from './instn-iee-iee-cycle-2_.js';
|
||||
export { s as r } from './instn-iee-iee-cycle-2_.js';
|
||||
export { u as t } from './instn-iee-iee-cycle-2_.js';
|
||||
export { w as v } from './instn-iee-iee-cycle-2_.js';
|
||||
export { y as x } from './instn-iee-iee-cycle-2_.js';
|
||||
export { a } from './instn-iee-iee-cycle-2_FIXTURE.js';
|
||||
export { c as b } from './instn-iee-iee-cycle-2_FIXTURE.js';
|
||||
export { e as d } from './instn-iee-iee-cycle-2_FIXTURE.js';
|
||||
export { g as f } from './instn-iee-iee-cycle-2_FIXTURE.js';
|
||||
export { i as h } from './instn-iee-iee-cycle-2_FIXTURE.js';
|
||||
export { k as j } from './instn-iee-iee-cycle-2_FIXTURE.js';
|
||||
export { m as l } from './instn-iee-iee-cycle-2_FIXTURE.js';
|
||||
export { o as n } from './instn-iee-iee-cycle-2_FIXTURE.js';
|
||||
export { q as p } from './instn-iee-iee-cycle-2_FIXTURE.js';
|
||||
export { s as r } from './instn-iee-iee-cycle-2_FIXTURE.js';
|
||||
export { u as t } from './instn-iee-iee-cycle-2_FIXTURE.js';
|
||||
export { w as v } from './instn-iee-iee-cycle-2_FIXTURE.js';
|
||||
export { y as x } from './instn-iee-iee-cycle-2_FIXTURE.js';
|
||||
export var z;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
export * from './instn-iee-err-dflt-thru-star-dflt_.js';
|
||||
export * from './instn-iee-star-cycle-indirect-x_FIXTURE.js';
|
|
@ -3,5 +3,5 @@
|
|||
|
||||
// This module should be visited exactly one time during resolution of the "x"
|
||||
// binding.
|
||||
export { y as x } from './instn-named-star-cycle-2_.js';
|
||||
export { y as x } from './instn-iee-star-cycle-2_FIXTURE.js';
|
||||
export var y = 45;
|
|
@ -22,4 +22,4 @@ negative: SyntaxError
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
export { x } from './instn-iee-star-cycle-2_.js';
|
||||
export { x } from './instn-iee-star-cycle-2_FIXTURE.js';
|
||||
|
|
|
@ -12,8 +12,8 @@ info: |
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
export { a , } from './instn-iee-trlng-comma_.js';
|
||||
export { a as b , } from './instn-iee-trlng-comma_.js';
|
||||
export { a , } from './instn-iee-trlng-comma_FIXTURE.js';
|
||||
export { a as b , } from './instn-iee-trlng-comma_FIXTURE.js';
|
||||
|
||||
import { a, b } from './instn-iee-trlng-comma.js';
|
||||
|
||||
|
|
|
@ -39,4 +39,4 @@ negative: SyntaxError
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
import { x as y } from './instn-named-err-ambiguous_.js';
|
||||
import { x as y } from './instn-named-err-ambiguous_FIXTURE.js';
|
||||
|
|
|
@ -39,4 +39,4 @@ negative: SyntaxError
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
import { x } from './instn-named-err-ambiguous_.js';
|
||||
import { x } from './instn-named-err-ambiguous_FIXTURE.js';
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
export * from './instn-named-err-ambiguous-1_FIXTURE.js';
|
||||
export * from './instn-named-err-ambiguous-2_FIXTURE.js';
|
|
@ -27,4 +27,4 @@ negative: SyntaxError
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
import { default as x } from './instn-named-err-dflt-thru-star-int_.js';
|
||||
import { default as x } from './instn-named-err-dflt-thru-star-int_FIXTURE.js';
|
||||
|
|
|
@ -27,4 +27,4 @@ negative: SyntaxError
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
import x from './instn-named-err-dflt-thru-star-int_.js';
|
||||
import x from './instn-named-err-dflt-thru-star-int_FIXTURE.js';
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
export * from './instn-named-err-dflt-thru-star-dflt_FIXTURE.js';
|
|
@ -27,4 +27,4 @@ negative: SyntaxError
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
import { x as y } from './instn-named-err-not-found-empty_.js';
|
||||
import { x as y } from './instn-named-err-not-found-empty_FIXTURE.js';
|
||||
|
|
|
@ -27,4 +27,4 @@ negative: SyntaxError
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
import x from './instn-named-err-not-found-empty_.js';
|
||||
import x from './instn-named-err-not-found-empty_FIXTURE.js';
|
||||
|
|
|
@ -27,4 +27,4 @@ negative: SyntaxError
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
import { x } from './instn-named-err-not-found-empty_.js';
|
||||
import { x } from './instn-named-err-not-found-empty_FIXTURE.js';
|
||||
|
|
|
@ -42,19 +42,19 @@ info: |
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
import { a } from './instn-named-iee-cycle-2_.js';
|
||||
export { c as b } from './instn-named-iee-cycle-2_.js';
|
||||
export { e as d } from './instn-named-iee-cycle-2_.js';
|
||||
export { g as f } from './instn-named-iee-cycle-2_.js';
|
||||
export { i as h } from './instn-named-iee-cycle-2_.js';
|
||||
export { k as j } from './instn-named-iee-cycle-2_.js';
|
||||
export { m as l } from './instn-named-iee-cycle-2_.js';
|
||||
export { o as n } from './instn-named-iee-cycle-2_.js';
|
||||
export { q as p } from './instn-named-iee-cycle-2_.js';
|
||||
export { s as r } from './instn-named-iee-cycle-2_.js';
|
||||
export { u as t } from './instn-named-iee-cycle-2_.js';
|
||||
export { w as v } from './instn-named-iee-cycle-2_.js';
|
||||
export { y as x } from './instn-named-iee-cycle-2_.js';
|
||||
import { a } from './instn-named-iee-cycle-2_FIXTURE.js';
|
||||
export { c as b } from './instn-named-iee-cycle-2_FIXTURE.js';
|
||||
export { e as d } from './instn-named-iee-cycle-2_FIXTURE.js';
|
||||
export { g as f } from './instn-named-iee-cycle-2_FIXTURE.js';
|
||||
export { i as h } from './instn-named-iee-cycle-2_FIXTURE.js';
|
||||
export { k as j } from './instn-named-iee-cycle-2_FIXTURE.js';
|
||||
export { m as l } from './instn-named-iee-cycle-2_FIXTURE.js';
|
||||
export { o as n } from './instn-named-iee-cycle-2_FIXTURE.js';
|
||||
export { q as p } from './instn-named-iee-cycle-2_FIXTURE.js';
|
||||
export { s as r } from './instn-named-iee-cycle-2_FIXTURE.js';
|
||||
export { u as t } from './instn-named-iee-cycle-2_FIXTURE.js';
|
||||
export { w as v } from './instn-named-iee-cycle-2_FIXTURE.js';
|
||||
export { y as x } from './instn-named-iee-cycle-2_FIXTURE.js';
|
||||
export var z = 23;
|
||||
|
||||
assert.sameValue(a, 23);
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
export * from './instn-named-star-cycle-indirect-x_FIXTURE.js';
|
|
@ -3,5 +3,5 @@
|
|||
|
||||
// This module should be visited exactly one time during resolution of the "x"
|
||||
// binding.
|
||||
export { y as x } from './instn-iee-star-cycle-2_.js';
|
||||
export { y as x } from './instn-named-star-cycle-2_FIXTURE.js';
|
||||
export var y = 45;
|
|
@ -31,4 +31,4 @@ negative: SyntaxError
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
import { x } from './instn-named-star-cycle-2_.js';
|
||||
import { x } from './instn-named-star-cycle-2_FIXTURE.js';
|
||||
|
|
|
@ -33,4 +33,4 @@ negative: ReferenceError
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
export {} from './instn-resolve-empty-export_.js';
|
||||
export {} from './instn-resolve-empty-export_FIXTURE.js';
|
||||
|
|
|
@ -39,4 +39,4 @@ negative: ReferenceError
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
import {} from './instn-resolve-empty-import_.js';
|
||||
import {} from './instn-resolve-empty-import_FIXTURE.js';
|
||||
|
|
|
@ -14,4 +14,4 @@ negative: ReferenceError
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
import './instn-resolve-err-reference_.js';
|
||||
import './instn-resolve-err-reference_FIXTURE.js';
|
||||
|
|
|
@ -14,4 +14,4 @@ negative: SyntaxError
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
import './instn-resolve-err-syntax_.js';
|
||||
import './instn-resolve-err-syntax_FIXTURE.js';
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
import './instn-resolve-order-depth-reference_.js';
|
|
@ -1,4 +1,4 @@
|
|||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
export * from './instn-named-star-cycle-indirect-x_.js';
|
||||
import './instn-resolve-order-depth-reference_FIXTURE.js';
|
|
@ -7,5 +7,5 @@ negative: ReferenceError
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
import './instn-resolve-order-depth-child_.js';
|
||||
import './instn-resolve-order-depth-syntax_.js';
|
||||
import './instn-resolve-order-depth-child_FIXTURE.js';
|
||||
import './instn-resolve-order-depth-syntax_FIXTURE.js';
|
||||
|
|
|
@ -7,6 +7,6 @@ negative: ReferenceError
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
import './instn-resolve-order-src-valid_.js';
|
||||
import './instn-resolve-order-src-reference_.js';
|
||||
import './instn-resolve-order-src-syntax_.js';
|
||||
import './instn-resolve-order-src-valid_FIXTURE.js';
|
||||
import './instn-resolve-order-src-reference_FIXTURE.js';
|
||||
import './instn-resolve-order-src-syntax_FIXTURE.js';
|
||||
|
|
|
@ -12,7 +12,7 @@ includes: [fnGlobalObject.js]
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
import './instn-same-global-set_.js';
|
||||
import './instn-same-global-set_FIXTURE.js';
|
||||
|
||||
var global = fnGlobalObject();
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ info: |
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
import * as ns from './instn-star-ambiguous_.js';
|
||||
import * as ns from './instn-star-ambiguous_FIXTURE.js';
|
||||
|
||||
assert('first' in ns, 'Non-ambiguous exports from first module are present');
|
||||
assert('second' in ns, 'Non-ambiguous exports from second module are present');
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
export * from './instn-star-ambiguous-1_.js';
|
||||
export * from './instn-star-ambiguous-2_.js';
|
|
@ -1,5 +1,5 @@
|
|||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
export * from './instn-iee-err-ambiguous-1_.js';
|
||||
export * from './instn-iee-err-ambiguous-2_.js';
|
||||
export * from './instn-star-ambiguous-1_FIXTURE.js';
|
||||
export * from './instn-star-ambiguous-2_FIXTURE.js';
|
|
@ -26,10 +26,10 @@ flags: [module]
|
|||
|
||||
import * as self1 from './instn-star-equality.js';
|
||||
import * as self2 from './instn-star-equality.js';
|
||||
import * as other1 from './instn-star-equality-other_.js';
|
||||
import * as other1 from './instn-star-equality-other_FIXTURE.js';
|
||||
import * as self3 from './instn-star-equality.js';
|
||||
import * as other2 from './instn-star-equality-other_.js';
|
||||
import { testNs } from './instn-star-equality-other_.js';
|
||||
import * as other2 from './instn-star-equality-other_FIXTURE.js';
|
||||
import { testNs } from './instn-star-equality-other_FIXTURE.js';
|
||||
|
||||
assert.sameValue(
|
||||
self1, self2, 'Local namespace objects from consecutive declarations'
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
export { x } from './inst-import-star-err-not-found-empty_.js';
|
|
@ -0,0 +1,4 @@
|
|||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
export { x } from './inst-import-star-err-not-found-empty_FIXTURE.js';
|
|
@ -26,4 +26,4 @@ negative: SyntaxError
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
import * as ns from './inst-import-star-err-not-found-faulty_.js';
|
||||
import * as ns from './inst-import-star-err-not-found-faulty_FIXTURE.js';
|
||||
|
|
|
@ -37,19 +37,19 @@ info: |
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
import * as ns from './instn-star-iee-cycle-2_.js';
|
||||
export { c as b } from './instn-star-iee-cycle-2_.js';
|
||||
export { e as d } from './instn-star-iee-cycle-2_.js';
|
||||
export { g as f } from './instn-star-iee-cycle-2_.js';
|
||||
export { i as h } from './instn-star-iee-cycle-2_.js';
|
||||
export { k as j } from './instn-star-iee-cycle-2_.js';
|
||||
export { m as l } from './instn-star-iee-cycle-2_.js';
|
||||
export { o as n } from './instn-star-iee-cycle-2_.js';
|
||||
export { q as p } from './instn-star-iee-cycle-2_.js';
|
||||
export { s as r } from './instn-star-iee-cycle-2_.js';
|
||||
export { u as t } from './instn-star-iee-cycle-2_.js';
|
||||
export { w as v } from './instn-star-iee-cycle-2_.js';
|
||||
export { y as x } from './instn-star-iee-cycle-2_.js';
|
||||
import * as ns from './instn-star-iee-cycle-2_FIXTURE.js';
|
||||
export { c as b } from './instn-star-iee-cycle-2_FIXTURE.js';
|
||||
export { e as d } from './instn-star-iee-cycle-2_FIXTURE.js';
|
||||
export { g as f } from './instn-star-iee-cycle-2_FIXTURE.js';
|
||||
export { i as h } from './instn-star-iee-cycle-2_FIXTURE.js';
|
||||
export { k as j } from './instn-star-iee-cycle-2_FIXTURE.js';
|
||||
export { m as l } from './instn-star-iee-cycle-2_FIXTURE.js';
|
||||
export { o as n } from './instn-star-iee-cycle-2_FIXTURE.js';
|
||||
export { q as p } from './instn-star-iee-cycle-2_FIXTURE.js';
|
||||
export { s as r } from './instn-star-iee-cycle-2_FIXTURE.js';
|
||||
export { u as t } from './instn-star-iee-cycle-2_FIXTURE.js';
|
||||
export { w as v } from './instn-star-iee-cycle-2_FIXTURE.js';
|
||||
export { y as x } from './instn-star-iee-cycle-2_FIXTURE.js';
|
||||
export var z = 23;
|
||||
|
||||
assert.sameValue(ns.a, 23);
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
export * from './instn-star-props-circular-b_.js';
|
||||
export * from './instn-star-props-circular-b_FIXTURE.js';
|
||||
export var fromA;
|
|
@ -1,5 +1,5 @@
|
|||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
export * from './instn-star-props-circular-a_.js';
|
||||
export * from './instn-star-props-circular-a_FIXTURE.js';
|
||||
export var fromB;
|
|
@ -30,8 +30,8 @@ info: |
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
import * as a from './instn-star-props-circular-a_.js';
|
||||
import * as b from './instn-star-props-circular-b_.js';
|
||||
import * as a from './instn-star-props-circular-a_FIXTURE.js';
|
||||
import * as b from './instn-star-props-circular-b_FIXTURE.js';
|
||||
|
||||
assert('fromA' in a, 'entry for binding from "a" in namespace of module A');
|
||||
assert('fromB' in a, 'entry for binding from "b" in namespace of module A');
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
export { default } from './instn-star-props-dflt-keep-indirect-def_.js';
|
||||
export { default } from './instn-star-props-dflt-keep-indirect-def_FIXTURE.js';
|
|
@ -30,6 +30,6 @@ info: |
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
import * as ns from './instn-star-props-dflt-keep-indirect-reexport_.js';
|
||||
import * as ns from './instn-star-props-dflt-keep-indirect-reexport_FIXTURE.js';
|
||||
|
||||
assert.sameValue('default' in ns, true);
|
||||
|
|
|
@ -30,8 +30,8 @@ info: |
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
import * as named from './instn-star-props-dflt-keep-local-named_.js';
|
||||
import * as production from './instn-star-props-dflt-keep-local-prod_.js';
|
||||
import * as named from './instn-star-props-dflt-keep-local-named_FIXTURE.js';
|
||||
import * as production from './instn-star-props-dflt-keep-local-prod_FIXTURE.js';
|
||||
|
||||
assert.sameValue('default' in named, true, 'default specified via identifier');
|
||||
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
export * from './instn-star-props-dflt-skip-named_.js';
|
|
@ -1,4 +1,4 @@
|
|||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
export * from './instn-named-err-dflt-thru-star-dflt_.js';
|
||||
export * from './instn-star-props-dflt-skip-named_FIXTURE.js';
|
|
@ -1,4 +0,0 @@
|
|||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
export * from './instn-star-props-dflt-skip-prod_.js';
|
|
@ -1,4 +1,4 @@
|
|||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
export * from './instn-iee-star-cycle-indirect-x_.js';
|
||||
export * from './instn-star-props-dflt-skip-prod_FIXTURE.js';
|
|
@ -31,8 +31,8 @@ info: |
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
import * as named from './instn-star-props-dflt-skip-star-named_.js';
|
||||
import * as production from './instn-star-props-dflt-skip-star-prod_.js';
|
||||
import * as named from './instn-star-props-dflt-skip-star-named_FIXTURE.js';
|
||||
import * as production from './instn-star-props-dflt-skip-star-prod_FIXTURE.js';
|
||||
|
||||
assert('namedOther' in named);
|
||||
assert.sameValue(
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue