@tracecode/harness 0.6.0 → 0.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/README.md +5 -3
- package/dist/browser.cjs +4 -4
- package/dist/browser.cjs.map +1 -1
- package/dist/browser.js +4 -4
- package/dist/browser.js.map +1 -1
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +10 -3
- package/workers/java/java-worker.js +99 -26
package/dist/index.cjs
CHANGED
|
@@ -1411,7 +1411,7 @@ var JAVA_RUNTIME_PROFILE = {
|
|
|
1411
1411
|
function: true,
|
|
1412
1412
|
solutionMethod: true,
|
|
1413
1413
|
opsClass: true,
|
|
1414
|
-
script:
|
|
1414
|
+
script: true,
|
|
1415
1415
|
interviewMode: true
|
|
1416
1416
|
},
|
|
1417
1417
|
timeouts: {
|
|
@@ -1464,9 +1464,9 @@ var JAVA_RUNTIME_PROFILE = {
|
|
|
1464
1464
|
}
|
|
1465
1465
|
},
|
|
1466
1466
|
notes: [
|
|
1467
|
-
"Java currently supports the browser-local Java 17 lane for function, solution-method,
|
|
1468
|
-
"Interview-mode Java reuses the same browser-local execution path and remains experimental
|
|
1469
|
-
|
|
1467
|
+
"Java currently supports the browser-local Java 17 lane for function, solution-method, ops-class, and script-style execution.",
|
|
1468
|
+
"Interview-mode Java reuses the same browser-local execution path and remains experimental.",
|
|
1469
|
+
'Script-style Java uses an empty function name with executionStyle="function" and reads the top-level result variable.'
|
|
1470
1470
|
]
|
|
1471
1471
|
};
|
|
1472
1472
|
var LANGUAGE_RUNTIME_PROFILES = {
|