Graal.js importing module causes org.graalvm.polyglot.PolyglotException: SyntaxError: Expected an operand but found import

Graal.js importing module causes org.graalvm.polyglot.PolyglotException: SyntaxError: Expected an operand but found import

我正在尝试使用来自 Grall.js 的实验性 ES 模块支持。 我使用以下脚本:ES 模块 "lib"

export const sqrt = Math.sqrt;
export function square(x) {
    return x * x;
}
export function diag(x, y) {
    return sqrt(square(x) + square(y));
}

和主脚本"script"

import { square, diag } from 'lib';
console.log('square(11)=' + square(11));
console.log('diag(4,3)=' + diag(4, 3));

我使用 graalvm-ce-19.2.1 并通过 JSR 223 到 运行 主脚本在 JVM 中使用 Polyglot。 它没有尝试从磁盘上的某个位置加载 lib,而是抛出:

javax.script.ScriptException: org.graalvm.polyglot.PolyglotException: SyntaxError: script:1:0 Expected an operand but found import
import { square, diag } from 'lib';
^
script:1:30 Expected ; but found lib
import { square, diag } from 'lib';
                              ^
        at com.oracle.truffle.js.scriptengine.GraalJSScriptEngine.eval(GraalJSScriptEngine.java:348)
        at com.oracle.truffle.js.scriptengine.GraalJSScriptEngine.eval(GraalJSScriptEngine.java:323)

怎么了?

文件名有一个约定,触发将它们视为 ES 模块 - 文件必须以 .mjs 结尾。或者,可以在 org.graalvm.polyglot.Source 对象上使用(非官方)mime 类型 application/javascript+module。没有这个 import 语句是不允许的 1

这是使用 Polyglot 时的样子 Source/Context API:

String script = "import {x} from 'lib'";

// these two support "import"
Source source1 =  Source.newBuilder("js", script, "script.mjs").build();
Source source2 =  Source.newBuilder("js", script, "script").mimeType("application/javascript+module").build();

// this one doesn't
//Source source3 =  Source.newBuilder("js", script, "script").build(); 

这是针对 JSR-223 API:

javax.script.ScriptEngine engine = factory.getEngineByName("graal.js");
engine.getContext().setAttribute(ScriptEngine.FILENAME, "script.mjs", ScriptContext.ENGINE_SCOPE);

似乎还有 an older convention - 使用 module: 前缀,但这似乎不再有效。