mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
I re-generated JFlex lexer and GrammarKit parser accordingly. I had to adjust the macro for WHITE_SPACE token, though, since GrammarKit generates weird "WHITE_SPACE=\s" for some reason.
14 lines
296 B
Java
14 lines
296 B
Java
// This is a generated file. Not intended for manual editing.
|
|
package com.intellij.json.psi;
|
|
|
|
import java.util.List;
|
|
import org.jetbrains.annotations.*;
|
|
import com.intellij.psi.PsiElement;
|
|
|
|
public interface JsonReferenceExpression extends JsonValue {
|
|
|
|
@NotNull
|
|
PsiElement getIdentifier();
|
|
|
|
}
|