Fix java commenting issues

master
Oystein Kristoffer Tveit 2021-03-01 14:10:34 +01:00
parent 35a370626f
commit 73e2f15232
1 changed files with 14 additions and 15 deletions

View File

@ -35,20 +35,20 @@ public class Java implements ProgrammingLanguage {
private static final Map<Pattern, String> pattern =
Map.ofEntries(
e("\"([^\"\\\\]|\\\\.)*\"", "string"),
e("\\bthis\\b", "this"),
e("\\btrue\\b", "true"),
e("\\bfalse\\b", "false"),
e("(?<=\\.?)\\w+(?=\\()", "method"),
e("\\(|\\)", "paranthesis"),
e("\\{|\\}", "curlyBrackets"),
e("\\[|\\]", "squareBrackets"),
e(";", "semicolon"),
e("\\.\\w+\\b(?!\\()", "property"),
e("\\b[A-Z]\\w+\\b", "identifier"),
e("\"([^\"\\\\]|\\\\.)*\"", "string"),
e("\\bthis\\b", "this"),
e("\\btrue\\b", "true"),
e("\\bfalse\\b", "false"),
e("(?<=\\.?)\\w+(?=\\()", "method"),
e("\\(|\\)", "paranthesis"),
e("\\{|\\}", "curlyBrackets"),
e("\\[|\\]", "squareBrackets"),
e(";", "semicolon"),
e("\\.\\w+\\b(?!\\()", "property"),
e("\\b[A-Z]\\w+\\b", "identifier"),
e("\\b(" + String.join("|", keywords) + ")\\b",
"keyword"),
e("(?://.*)|/\\*(?:\\n|.)*\\*/", "comment")
"keyword"),
e("(?://.*)|/\\*(?:\\n|.)*?\\*/", "comment")
);
public String getName() {
@ -113,8 +113,7 @@ public class Java implements ProgrammingLanguage {
lines.length < 2 ||
Arrays.asList(Arrays.copyOfRange(lines, 1, lines.length - 1))
.stream()
.map(l -> l.startsWith(" * "))
.allMatch(b -> b);
.allMatch(l -> l.startsWith(" * "));
return
Stream.of(