more literals are strings

This commit is contained in:
Maxim.Medvedev
2012-05-25 15:34:21 +04:00
parent 613f5ee7ca
commit 6a5f65de94
@@ -160,7 +160,7 @@ public class GrLiteralImpl extends GrAbstractLiteral implements GrLiteral, PsiLa
if (child == null) return false;
IElementType elementType = child.getNode().getElementType();
return elementType == mGSTRING_LITERAL || elementType == mSTRING_LITERAL;
return TokenSets.STRING_LITERAL_SET.contains(elementType);
}
@NotNull