blob: 31b8ae042a2d1cb872744462bdff2214329b7315 [file] [log] [blame]
if ('a'.equa<caret>ls('b')) {
print 2
}
-----
if (testMethod()) {
print 2
}
private boolean testMethod() {
return 'a'.equals('b')
}