Skip to content

Commit ec4a43e

Browse files
committed
[GR-14598] Javadoc fixes.
1 parent 126b9a3 commit ec4a43e

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

sdk/CHANGELOG.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@ This changelog summarizes major changes between GraalVM SDK versions. The main f
44

55
## Version 20.0.0 Beta 1
66
* Removed deprecated `OptionCategory.DEBUG` (use `OptionCategory.INTERNAL` instead).
7+
* The path separator can now be configured by [FileSystem](http://www.graalvm.org/sdk/javadoc/org/graalvm/polyglot/io/FileSystem.html#getPathSeparator--).
78

8-
## Version 19.0.0
9-
* The path separator is provided by [FileSystem](http://www.graalvm.org/sdk/javadoc/org/graalvm/polyglot/io/FileSystem.html#getPathSeparator--).
10-
11-
## Version 1.0.0 RC17
9+
## Version 19.0.0
1210
* `Value.as(Interface.class)` now requires interface classes to be annotated with `HostAccess.Implementable` in `EXPLICIT` host access mode. Added new APIs to configure implementable behavior in HostAccess.
1311

1412
## Version 1.0.0 RC16

sdk/src/org.graalvm.polyglot.tck/src/org/graalvm/polyglot/tck/LanguageProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public interface LanguageProvider {
9696
*
9797
* @param context the context for a guest language code literal evaluation
9898
* @return the {@link Snippet} representing the identity function
99-
* @since 1.0
99+
* @since 20.0.0 beta 1
100100
*/
101101
default Snippet createIdentityFunctionSnippet(Context context) {
102102
Value value = createIdentityFunction(context);

sdk/src/org.graalvm.polyglot.tck/src/org/graalvm/polyglot/tck/ResultVerifier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ static ResultVerifier getDefaultResultVerifier() {
179179
* {@link ResultVerifier} tests that the identity function does not change the parameter type.
180180
*
181181
* @return the default {@link ResultVerifier} for {@code IdentityFunctionTest}.
182-
* @since 1.0
182+
* @since 20.0.0 beta 1
183183
*/
184184
static ResultVerifier getIdentityFunctionDefaultResultVerifier() {
185185
return IdentityFunctionResultVerifier.INSTANCE;

truffle/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ This changelog summarizes major changes between Truffle versions relevant to lan
77
* Removed deprecated and misspelled method `TruffleStackTrace#getStacktrace`.
88
* Removed deprecated methods`TruffleStackTraceElement#getStackTrace` and `TruffleStackTraceElement#fillIn` (use methods of `TruffleStackTrace` instead).
99
* `SlowPathException#fillInStackTrace` is now `final`.
10+
* Added an ability to read a [path separator](https://www.graalvm.org/truffle/javadoc/com/oracle/truffle/api/TruffleLanguage.Env.html#getPathSeparator--) used to separate filenames in a path list.
1011

1112
## Version 19.0.0
1213
* Renamed version 1.0.0 to 19.0.0
13-
* Added a getter for [path separator](https://www.graalvm.org/truffle/javadoc/com/oracle/truffle/api/TruffleLanguage.Env.html#getPathSeparator--) used to separate filenames in a path list.
1414

1515
## Version 1.0.0 RC15
1616
* This version includes a major revision of the Truffle Interoperability APIs. Most existing APIs for Truffle Interoperability were deprecated. The compatiblity layer may cause significant performance reduction for interoperability calls.

0 commit comments

Comments
 (0)