mirror of
https://github.com/tc39/test262.git
synced 2025-05-31 04:00:34 +02:00
- Add cases for mixing module and script code - Rename test case from return promise to thenable - Fix script code case with valid loaded fixture - Add a test to assert a promise return - Add case for specifier toString rejection - Add case for specifier toString - Test Assignment expression abrupt completion - Test Promise return
9 lines
203 B
JavaScript
9 lines
203 B
JavaScript
// Copyright (C) 2018 Leo Balter. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
const x = 'Test262';
|
|
const y = 42;
|
|
|
|
export default y;
|
|
export { x, y as z };
|