Skip to content
Snippets Groups Projects
Commit e1f9c459 authored by Lukas Stadler's avatar Lukas Stadler
Browse files

make FastROption values CompilationFinal

parent 377d7d62
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,8 @@ package com.oracle.truffle.r.runtime;
import java.util.Map.Entry;
import com.oracle.truffle.api.CompilerDirectives.CompilationFinal;
/**
* Options to control the behavior of the FastR system, that relate to the implementation, i.e., are
* <b>not</b> part of the standard set of R options or command line options. The syntax follows that
......@@ -64,7 +66,7 @@ public enum FastROptions {
private final String help;
private final boolean isBoolean;
private final Object defaultValue;
Object value;
@CompilationFinal Object value;
FastROptions(String help, boolean defaultValue) {
this(help, defaultValue, false);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment