Skip to content

Commit

Permalink
Make "features" an API option
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Wimmer committed Oct 10, 2018
1 parent 278e021 commit 1419fe8
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@

import com.oracle.svm.core.annotate.AutomaticFeature;
import com.oracle.svm.core.graal.GraalFeature;
import com.oracle.svm.core.option.APIOption;
import com.oracle.svm.core.option.HostedOptionKey;
import com.oracle.svm.core.util.UserError;
import com.oracle.svm.core.util.VMError;
Expand All @@ -47,7 +48,8 @@
public class FeatureHandler {

public static class Options {
@Option(help = "Comma-separate list of fully qualified Feature implementation classes")//
@APIOption(name = "features") //
@Option(help = "A comma-separated list of fully qualified Feature implementation classes")//
public static final HostedOptionKey<String> Features = new HostedOptionKey<>("");
}

Expand Down

0 comments on commit 1419fe8

Please sign in to comment.