nodejs/deps/v8/test/mjsunit/baseline/test-baseline-module.mjs
Michaël Zasso a7cbf19a82
deps: update V8 to 9.1.269.36
PR-URL: https://github.com/nodejs/node/pull/38273
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Michael Dawson <midawson@redhat.com>
Reviewed-By: Mary Marchini <oss@mmarchini.me>
2021-06-10 11:10:13 +02:00

25 lines
727 B
JavaScript

// Copyright 2020 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Flags: --allow-natives-syntax --super-ic --sparkplug --no-always-sparkplug
export let exported = 17;
import imported from 'test-baseline-module-helper.mjs';
function run(f, ...args) {
try { f(...args); } catch (e) {}
%CompileBaseline(f);
return f(...args);
}
function construct(f, ...args) {
try { new f(...args); } catch (e) {}
%CompileBaseline(f);
return new f(...args);
}
assertEquals(17, run((o)=>{ return exported; }));
assertEquals(12, run((o)=>{ return imported; }));
assertEquals(20, run((o)=>{ exported = 20; return exported; }));