Skip to content
Snippets Groups Projects
Commit 892c733c authored by Mick Jordan's avatar Mick Jordan
Browse files

make SymbolHandle final, update javadoc

parent 554259e7
Branches
No related tags found
No related merge requests found
......@@ -258,9 +258,10 @@ public class DLL {
/**
* Abstracts the way that DLL function symbols are represented, either as a machine address (
* {@link Long}) or a {@link TruffleObject}.
* {@link Long}) or a {@link TruffleObject}. At the present time, both forms can exists within a
* single VM, so the class is defined as a "union" for simplicity.
*/
public static class SymbolHandle {
public static final class SymbolHandle {
public final Object value;
public SymbolHandle(Object value) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment