Use explicit relative paths

This commit is contained in:
André Bargull 2024-07-10 14:03:53 +02:00 committed by Ms2ger
parent 507c28b3f9
commit 0ff7881d75
3 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
// Copyright (C) 2024 the V8 project authors. All rights reserved. // Copyright (C) 2024 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
import "parent-tla_FIXTURE.js"; import "./parent-tla_FIXTURE.js";

View File

@ -1,4 +1,4 @@
// Copyright (C) 2024 the V8 project authors. All rights reserved. // Copyright (C) 2024 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
import "tla_FIXTURE.js" import "./tla_FIXTURE.js"

View File

@ -7,7 +7,7 @@ flags: [module, async]
features: [top-level-await] features: [top-level-await]
---*/ ---*/
import "parent-tla_FIXTURE.js"; import "./parent-tla_FIXTURE.js";
await import("grandparent-tla_FIXTURE.js"); await import("./grandparent-tla_FIXTURE.js");
$DONE(); $DONE();