public static String getValueText()

in src/main/java/ru/adelf/idea/dotenv/psi/DotEnvPsiUtil.java [25:34]


    public static String getValueText(DotEnvProperty element) {
        ASTNode valueNode = element.getNode().findChildByType(DotEnvTypes.VALUE);
        if (valueNode != null) {
            return Arrays.stream(valueNode.getChildren(VALUE_TOKEN_SET))
                .map(ASTNode::getText)
                .collect(Collectors.joining(""));
        } else {
            return "";
        }
    }