43
43
import com .sun .source .tree .AssertTree ;
44
44
import com .sun .source .tree .AssignmentTree ;
45
45
import com .sun .source .tree .BinaryTree ;
46
+ import com .sun .source .tree .BindingPatternTree ;
46
47
import com .sun .source .tree .BlockTree ;
47
48
import com .sun .source .tree .BreakTree ;
48
49
import com .sun .source .tree .CaseTree ;
55
56
import com .sun .source .tree .DoWhileLoopTree ;
56
57
import com .sun .source .tree .EmptyStatementTree ;
57
58
import com .sun .source .tree .EnhancedForLoopTree ;
59
+ import com .sun .source .tree .ExportsTree ;
58
60
import com .sun .source .tree .ExpressionStatementTree ;
59
61
import com .sun .source .tree .ForLoopTree ;
60
62
import com .sun .source .tree .IdentifierTree ;
70
72
import com .sun .source .tree .MethodInvocationTree ;
71
73
import com .sun .source .tree .MethodTree ;
72
74
import com .sun .source .tree .ModifiersTree ;
75
+ import com .sun .source .tree .ModuleTree ;
73
76
import com .sun .source .tree .NewArrayTree ;
74
77
import com .sun .source .tree .NewClassTree ;
78
+ import com .sun .source .tree .OpensTree ;
79
+ import com .sun .source .tree .PackageTree ;
75
80
import com .sun .source .tree .ParameterizedTypeTree ;
76
81
import com .sun .source .tree .ParenthesizedTree ;
77
82
import com .sun .source .tree .PrimitiveTypeTree ;
83
+ import com .sun .source .tree .ProvidesTree ;
84
+ import com .sun .source .tree .RequiresTree ;
78
85
import com .sun .source .tree .ReturnTree ;
86
+ import com .sun .source .tree .SwitchExpressionTree ;
79
87
import com .sun .source .tree .SwitchTree ;
80
88
import com .sun .source .tree .SynchronizedTree ;
81
89
import com .sun .source .tree .ThrowTree ;
85
93
import com .sun .source .tree .TypeParameterTree ;
86
94
import com .sun .source .tree .UnaryTree ;
87
95
import com .sun .source .tree .UnionTypeTree ;
96
+ import com .sun .source .tree .UsesTree ;
88
97
import com .sun .source .tree .VariableTree ;
89
98
import com .sun .source .tree .WhileLoopTree ;
90
99
import com .sun .source .tree .WildcardTree ;
100
+ import com .sun .source .tree .YieldTree ;
91
101
import com .sun .source .util .TreePath ;
92
102
import com .sun .source .util .TreePathScanner ;
93
103
import com .sun .source .util .TreeScanner ;
@@ -342,14 +352,14 @@ public Void scan(Tree tree, Void unused) {
342
352
return ImmutableRangeSet .copyOf (suppressedRegions );
343
353
}
344
354
345
- public interface AnnotationTreeMatcher extends Suppressible {
346
- Description matchAnnotation (AnnotationTree tree , VisitorState state );
347
- }
348
-
349
355
public interface AnnotatedTypeTreeMatcher extends Suppressible {
350
356
Description matchAnnotatedType (AnnotatedTypeTree tree , VisitorState state );
351
357
}
352
358
359
+ public interface AnnotationTreeMatcher extends Suppressible {
360
+ Description matchAnnotation (AnnotationTree tree , VisitorState state );
361
+ }
362
+
353
363
public interface ArrayAccessTreeMatcher extends Suppressible {
354
364
Description matchArrayAccess (ArrayAccessTree tree , VisitorState state );
355
365
}
@@ -370,6 +380,10 @@ public interface BinaryTreeMatcher extends Suppressible {
370
380
Description matchBinary (BinaryTree tree , VisitorState state );
371
381
}
372
382
383
+ public interface BindingPatternTreeMatcher extends Suppressible {
384
+ Description matchBindingPattern (BindingPatternTree tree , VisitorState state );
385
+ }
386
+
373
387
public interface BlockTreeMatcher extends Suppressible {
374
388
Description matchBlock (BlockTree tree , VisitorState state );
375
389
}
@@ -420,6 +434,10 @@ public interface EnhancedForLoopTreeMatcher extends Suppressible {
420
434
421
435
// Intentionally skip ErroneousTreeMatcher -- we don't analyze malformed expressions.
422
436
437
+ public interface ExportsTreeMatcher extends Suppressible {
438
+ Description matchExports (ExportsTree tree , VisitorState state );
439
+ }
440
+
423
441
public interface ExpressionStatementTreeMatcher extends Suppressible {
424
442
Description matchExpressionStatement (ExpressionStatementTree tree , VisitorState state );
425
443
}
@@ -480,6 +498,10 @@ public interface ModifiersTreeMatcher extends Suppressible {
480
498
Description matchModifiers (ModifiersTree tree , VisitorState state );
481
499
}
482
500
501
+ public interface ModuleTreeMatcher extends Suppressible {
502
+ Description matchModule (ModuleTree tree , VisitorState state );
503
+ }
504
+
483
505
public interface NewArrayTreeMatcher extends Suppressible {
484
506
Description matchNewArray (NewArrayTree tree , VisitorState state );
485
507
}
@@ -491,6 +513,14 @@ public interface NewClassTreeMatcher extends Suppressible {
491
513
// Intentionally skip OtherTreeMatcher. It seems to be used only for let expressions, which are
492
514
// generated by javac to implement autoboxing. We are only interested in source-level constructs.
493
515
516
+ public interface OpensTreeMatcher extends Suppressible {
517
+ Description matchOpens (OpensTree tree , VisitorState state );
518
+ }
519
+
520
+ public interface PackageTreeMatcher extends Suppressible {
521
+ Description matchPackage (PackageTree tree , VisitorState state );
522
+ }
523
+
494
524
public interface ParameterizedTypeTreeMatcher extends Suppressible {
495
525
Description matchParameterizedType (ParameterizedTypeTree tree , VisitorState state );
496
526
}
@@ -503,10 +533,22 @@ public interface PrimitiveTypeTreeMatcher extends Suppressible {
503
533
Description matchPrimitiveType (PrimitiveTypeTree tree , VisitorState state );
504
534
}
505
535
536
+ public interface ProvidesTreeMatcher extends Suppressible {
537
+ Description matchProvides (ProvidesTree tree , VisitorState state );
538
+ }
539
+
540
+ public interface RequiresTreeMatcher extends Suppressible {
541
+ Description matchRequires (RequiresTree tree , VisitorState state );
542
+ }
543
+
506
544
public interface ReturnTreeMatcher extends Suppressible {
507
545
Description matchReturn (ReturnTree tree , VisitorState state );
508
546
}
509
547
548
+ public interface SwitchExpressionTreeMatcher extends Suppressible {
549
+ Description matchSwitchExpression (SwitchExpressionTree tree , VisitorState state );
550
+ }
551
+
510
552
public interface SwitchTreeMatcher extends Suppressible {
511
553
Description matchSwitch (SwitchTree tree , VisitorState state );
512
554
}
@@ -539,6 +581,10 @@ public interface UnionTypeTreeMatcher extends Suppressible {
539
581
Description matchUnionType (UnionTypeTree tree , VisitorState state );
540
582
}
541
583
584
+ public interface UsesTreeMatcher extends Suppressible {
585
+ Description matchUses (UsesTree tree , VisitorState state );
586
+ }
587
+
542
588
public interface VariableTreeMatcher extends Suppressible {
543
589
Description matchVariable (VariableTree tree , VisitorState state );
544
590
}
@@ -551,6 +597,10 @@ public interface WildcardTreeMatcher extends Suppressible {
551
597
Description matchWildcard (WildcardTree tree , VisitorState state );
552
598
}
553
599
600
+ public interface YieldTreeMatcher extends Suppressible {
601
+ Description matchYield (YieldTree tree , VisitorState state );
602
+ }
603
+
554
604
@ Override
555
605
public boolean equals (Object obj ) {
556
606
if (!(obj instanceof BugChecker )) {
0 commit comments