Files
openide/json/gen/com/intellij/json/psi/JsonReferenceExpression.java
Mikhail Golubev b0d1c1f1bc Fix typo in the name of IDENTIFIER token type in JSON grammar
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.
2016-11-08 17:02:54 +03:00

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();
}