1c5529993d
This is a reland of ed6f00fb8e
Original change's description:
> [modules] Implement import.meta proposal
>
> Rewrites references to import.meta to a new GetImportMetaObject runtime
> call. Embedders can define a callback for creating the meta object using
> v8::Isolate::SetHostGetImportMetaObjectCallback. If no callback has been
> provided, an empty object with null prototype is created.
>
> This adds an example implementation to d8 that sets meta.url.
>
> Bug: v8:6693
> Cq-Include-Trybots: master.tryserver.chromium.linux:linux_chromium_rel_ng
> Change-Id: I6871eec79da45bba81bbbc84b1ffff48534c368d
> Reviewed-on: https://chromium-review.googlesource.com/707902
> Commit-Queue: Sathya Gunasekaran <gsathya@chromium.org>
> Reviewed-by: Adam Klein <adamk@chromium.org>
> Reviewed-by: Sathya Gunasekaran <gsathya@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#48433}
TBR=adamk@chromium.org
Bug: v8:6693
Change-Id: Ie2d746ad996a56ed6ff50b832f320fe44e02f231
Cq-Include-Trybots: master.tryserver.chromium.linux:linux_chromium_rel_ng
Reviewed-on: https://chromium-review.googlesource.com/712834
Reviewed-by: Sathya Gunasekaran <gsathya@chromium.org>
Commit-Queue: Sathya Gunasekaran <gsathya@chromium.org>
Cr-Commit-Position: refs/heads/master@{#48468}
33 lines
1.2 KiB
JavaScript
33 lines
1.2 KiB
JavaScript
// Copyright 2017 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.
|
|
|
|
// MODULE
|
|
// Flags: --harmony-import-meta
|
|
|
|
import foreign, { url as otherUrl } from './modules-skip-export-import-meta.js';
|
|
|
|
assertEquals("object", typeof import.meta);
|
|
assertEquals(null, Object.getPrototypeOf(import.meta));
|
|
assertSame(import.meta, import.meta);
|
|
|
|
// This property isn't part of the spec itself but is mentioned as an example
|
|
assertMatches(/\/modules-import-meta\.js$/, import.meta.url);
|
|
|
|
import.meta.x = 42;
|
|
assertEquals(42, import.meta.x);
|
|
Object.assign(import.meta, { foo: "bar" })
|
|
assertEquals("bar", import.meta.foo);
|
|
|
|
// PerformEval parses its argument for the goal symbol Script. So the following
|
|
// should fail just as it does for every other Script context.
|
|
//
|
|
// See:
|
|
// https://github.com/tc39/proposal-import-meta/issues/7#issuecomment-329363083
|
|
assertThrows(() => eval('import.meta'), SyntaxError);
|
|
assertThrows(() => new Function('return import.meta;'), SyntaxError);
|
|
|
|
assertNotEquals(foreign, import.meta);
|
|
assertMatches(/\/modules-skip-export-import-meta\.js$/, foreign.url);
|
|
assertEquals(foreign.url, otherUrl);
|