Skip to content

Commit 0262828

Browse files
committed
m-m-m/base#8: scanner API changes for unicode
1 parent 1fb7947 commit 0262828

File tree

2 files changed

+31
-31
lines changed

2 files changed

+31
-31
lines changed

java/impl/src/main/java/io/github/mmm/code/impl/java/parser/JavaSourceCodeReaderHighlevel.java

+8-8
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ private void parsePackage() {
100100

101101
consume();
102102
String actualPkg = "";
103-
char c = peek();
104-
if ((c == 'p') && expect("package")) {
103+
int cp = peek();
104+
if ((cp == 'p') && expect("package")) {
105105
skipWhile(CharFilter.WHITESPACE);
106106
actualPkg = readUntil(';', true).trim();
107107
}
@@ -668,24 +668,24 @@ private void applyCommentAndAnnotations(BaseElement element) {
668668
private CodeTypeCategory parseCategory() {
669669

670670
consume();
671-
char c = peek();
672-
if (c == 'c') {
671+
int cp = peek();
672+
if (cp == 'c') {
673673
if (expect("class")) {
674674
return CodeTypeCategory.CLASS;
675675
}
676-
} else if (c == 'i') {
676+
} else if (cp == 'i') {
677677
if (expect("interface")) {
678678
return CodeTypeCategory.INTERFACE;
679679
}
680-
} else if (c == 'e') {
680+
} else if (cp == 'e') {
681681
if (expect("enum")) {
682682
return CodeTypeCategory.ENUMERAION;
683683
}
684-
} else if (c == 'r') {
684+
} else if (cp == 'r') {
685685
if (expect("record")) {
686686
return CodeTypeCategory.RECORD;
687687
}
688-
} else if (c == '@') {
688+
} else if (cp == '@') {
689689
if (expect("@interface")) {
690690
return CodeTypeCategory.ANNOTATION;
691691
}

java/impl/src/main/java/io/github/mmm/code/impl/java/parser/JavaSourceCodeReaderLowlevel.java

+23-23
Original file line numberDiff line numberDiff line change
@@ -175,12 +175,12 @@ public void consume() {
175175

176176
// clearConsumeState();
177177
skipWhile(CharFilter.WHITESPACE);
178-
char c = peek();
179-
if (c == '/') { // comment or doc?
178+
int cp = peek();
179+
if (cp == '/') { // comment or doc?
180180
next();
181181
parseDocOrComment();
182182
consume();
183-
} else if (c == '@') { // annotation?
183+
} else if (cp == '@') { // annotation?
184184
next();
185185
getElementComment();
186186
parseAnnotations();
@@ -332,8 +332,8 @@ CodeExpression parseAssignmentValue() {
332332
List<CodeExpression> expressions = null;
333333
while (true) {
334334
parseWhitespacesAndComments();
335-
char c = peek();
336-
if (CHAR_FILTER_OPERATOR.accept(c)) {
335+
int cp = peek();
336+
if (CHAR_FILTER_OPERATOR.accept(cp)) {
337337
String operatorName = readWhile(CHAR_FILTER_OPERATOR);
338338
CodeOperator nextOperator = BaseOperator.of(operatorName);
339339
if (operator == null) {
@@ -431,14 +431,14 @@ private String getQualifiedName(String name) {
431431

432432
private void parseDocOrComment() {
433433

434-
char c = peek();
435-
if (c == '/') {
434+
int cp = peek();
435+
if (cp == '/') {
436436
String docLine = readLine(true);
437437
this.comments.add(new BaseSingleLineComment(docLine));
438-
} else if (c == '*') {
438+
} else if (cp == '*') {
439439
next();
440-
c = peek();
441-
if (c == '*') { // JavaDoc or regular comment
440+
cp = peek();
441+
if (cp == '*') { // JavaDoc or regular comment
442442
next();
443443
if (!this.javaDocLines.isEmpty()) {
444444
LOG.warn("Duplicate JavaDoc in {}.", this.file);
@@ -451,7 +451,7 @@ private void parseDocOrComment() {
451451
this.comments.add(comment);
452452
}
453453
} else {
454-
LOG.warn("Illegal language: {} in {}.", "/" + c, this.file);
454+
LOG.warn("Illegal language: {} in {}.", "/" + cp, this.file);
455455
}
456456
}
457457

@@ -466,11 +466,11 @@ private void parseDocOrBlockComment(List<String> lines) {
466466
}
467467
while (true) {
468468
skipWhile(CharFilter.WHITESPACE);
469-
char c = peek();
470-
if (c == '*') {
469+
int cp = peek();
470+
if (cp == '*') {
471471
next();
472-
c = peek();
473-
if (c == '/') {
472+
cp = peek();
473+
if (cp == '/') {
474474
next();
475475
skipWhile(CharFilter.WHITESPACE);
476476
return;
@@ -509,26 +509,26 @@ protected CodeModifiers parseModifiers(boolean inInterface) {
509509
boolean found = true;
510510
while (found) {
511511
skipWhile(CharFilter.WHITESPACE);
512-
char c = peek();
513-
if (c == 'a') {
512+
int cp = peek();
513+
if (cp == 'a') {
514514
found = parseModifierKeyword(modifiers, CodeModifiers.KEY_ABSTRACT);
515-
} else if (c == 'd') {
515+
} else if (cp == 'd') {
516516
found = parseModifierKeyword(modifiers, CodeModifiers.KEY_DEFAULT);
517-
} else if (c == 'n') {
517+
} else if (cp == 'n') {
518518
found = parseModifierKeyword(modifiers, CodeModifiers.KEY_NATIVE);
519-
} else if (c == 'f') {
519+
} else if (cp == 'f') {
520520
found = parseModifierKeyword(modifiers, CodeModifiers.KEY_FINAL);
521-
} else if (c == 'v') {
521+
} else if (cp == 'v') {
522522
found = parseModifierKeyword(modifiers, CodeModifiers.KEY_VOLATILE);
523-
} else if (c == 's') {
523+
} else if (cp == 's') {
524524
found = parseModifierKeyword(modifiers, CodeModifiers.KEY_STATIC);
525525
if (!found) {
526526
found = parseModifierKeyword(modifiers, CodeModifiers.KEY_SYNCHRONIZED);
527527
if (!found) {
528528
found = parseModifierKeyword(modifiers, CodeModifiers.KEY_SYNCHRONIZED);
529529
}
530530
}
531-
} else if (c == 't') {
531+
} else if (cp == 't') {
532532
found = parseModifierKeyword(modifiers, CodeModifiers.KEY_TRANSIENT);
533533
} else {
534534
found = false;

0 commit comments

Comments
 (0)