mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
11 lines
280 B
Java
11 lines
280 B
Java
class Node {
|
|
String getType() { return ""; }
|
|
|
|
String foo(Node left, Node right) {
|
|
String leftType = left.getType();
|
|
<selection>String rightType = (right.getType());</selection>
|
|
|
|
String type = "A";
|
|
return leftType + rightType + type;
|
|
}
|
|
} |