Example:
Object obj = engine.eval("""
function hello() {
print('"Hello, world"');
}
hello();
""");
can be replaced with
Object obj = engine.eval("function hello() {\n" +
" print('\"Hello, world\"');\n" +
"}\n" +
"\n" +
"hello();\n");
This inspection only reports if the configured language level is 14 Preview.
New in 2019.3