Example:
Object obj = engine.eval("""
function hello() {
print('"Hello, world"');
}
hello();
""");
After the quick fix is applied:
Object obj = engine.eval("function hello() {\n" +
" print('\"Hello, world\"');\n" +
"}\n" +
"\n" +
"hello();\n");
Text block appeared in Java 15. This inspection can help to downgrade for backward compatibility with earlier Java versions.
New in 2019.3