Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add '_' to reserved hashtable #4221

Closed
wants to merge 2 commits into from
Closed

add '_' to reserved hashtable #4221

wants to merge 2 commits into from

Conversation

musou1500
Copy link

I fixed this issue.
Just add '' to reserved hashtable.
#4219 '
' as an identifier not supported in Java 8

@@ -767,7 +767,7 @@ let reserved = let res = Hashtbl.create 120 in
"false"; "finally"; "float"; "for"; "goto"; "if"; "implements"; "import"; "instanceof"; "int";
"interface"; "long"; "native"; "new"; "null"; "package"; "private"; "protected"; "public"; "return"; "short";
"static"; "strictfp"; "super"; "switch"; "synchronized"; "this"; "throw"; "throws"; "transient"; "true"; "try";
"void"; "volatile"; "while"; ];
"void"; "volatile"; "while"; "_"; ];

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You should use tab for the indentation.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry. I fixed.

@Simn Simn added this to the 3.3 milestone May 15, 2015
@Simn
Copy link
Member

Simn commented Mar 16, 2016

The related issue has been fixed, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants