* Return string literal value.
*/
private String stringLiteral(final AstNode node) {
checkState(node instanceof StringLiteral, node, "Expected string literal only");
//noinspection ConstantConditions
StringLiteral string = (StringLiteral) node;
return string.getValue();
}