Skip to content

Commit

Permalink
Make RegexLanguage public so its options are exposed by launchers
Browse files Browse the repository at this point in the history
  • Loading branch information
jirkamarsik committed Nov 13, 2018
1 parent 930f21f commit 89e6bf0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
* </pre>
*/

@TruffleLanguage.Registration(name = RegexLanguage.NAME, id = RegexLanguage.ID, characterMimeTypes = RegexLanguage.MIME_TYPE, version = "0.1", internal = true, contextPolicy = TruffleLanguage.ContextPolicy.EXCLUSIVE)
@TruffleLanguage.Registration(name = RegexLanguage.NAME, id = RegexLanguage.ID, characterMimeTypes = RegexLanguage.MIME_TYPE, version = "0.1", contextPolicy = TruffleLanguage.ContextPolicy.EXCLUSIVE)
@ProvidedTags(StandardTags.RootTag.class)
public final class RegexLanguage extends TruffleLanguage<Void> {

Expand Down

0 comments on commit 89e6bf0

Please sign in to comment.