Recover Fixture files

This commit is contained in:
Leo Balter 2018-10-04 14:35:24 -04:00 committed by Rick Waldron
parent b13b5b9843
commit dac8fd4975
5 changed files with 18 additions and 1 deletions

View File

@ -35,6 +35,6 @@ template: catch
---*/
//- params
'./instn-iee-err-ambiguous-export.js'
'./instn-iee-err-ambiguous-export_FIXTURE.js'
//- body
assert.sameValue(error.name, 'SyntaxError');

View File

@ -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 var x;

View File

@ -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 var x;

View File

@ -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 './instn-iee-err-ambiguous_FIXTURE.js';

View File

@ -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-iee-err-ambiguous-1_FIXTURE.js';
export * from './instn-iee-err-ambiguous-2_FIXTURE.js';