Java Code Examples for com.intellij.lang.javascript.psi.JSProperty#getFirstChild()

The following examples show how to use com.intellij.lang.javascript.psi.JSProperty#getFirstChild() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: RTFileUtil.java    From react-templates-plugin with MIT License 5 votes vote down vote up
@Nullable
public static PsiElement getStringLiteral(@NotNull JSProperty property) {
    PsiElement firstElement = property.getFirstChild();
    if (firstElement != null && isStringLiteral(firstElement)) {
        return firstElement;
    }
    return null;
}
 
Example 2
Source File: RTFileUtil.java    From react-templates-plugin with MIT License 5 votes vote down vote up
@Nullable
public static PsiElement getStringLiteral(@NotNull JSProperty property) {
    PsiElement firstElement = property.getFirstChild();
    if (firstElement != null && isStringLiteral(firstElement)) {
        return firstElement;
    }
    return null;
}
 
Example 3
Source File: ESLintConfigFileUtil.java    From eslint-plugin with MIT License 5 votes vote down vote up
@Nullable
public static PsiElement getStringLiteral(@NotNull JSProperty property) {
    PsiElement firstElement = property.getFirstChild();
    if (firstElement != null && isStringLiteral(firstElement)) {
        return firstElement;
    }
    return null;
}