Files
intellijai/src/main/gen/dev/hgh/jai/psi/JaiDeclNames.java
hgranthorner 840a503e40 Parser: raise corpus parse rate from 57% to 69%
Grammar gains: array types, directive flags, declaration-level directive
modifiers, parameter markers, backticked declaration names, notes after a
block-valued declaration, 'if cond then stmt', 'ifx c else v', '#module_parameters'
two-group form, '(.*)' prefix dereference, and '#asm' bodies consumed opaquely
(they are x86-64 assembly, not Jai).

Return items no longer take a default value: allowing one made
'f: (K) -> u32 = null' swallow the enclosing parameter's default and read the
rest of the parameter list as extra return values.
2026-08-04 12:13:26 -04:00

14 lines
289 B
Java

// This is a generated file. Not intended for manual editing.
package dev.hgh.jai.psi;
import java.util.List;
import org.jetbrains.annotations.*;
import com.intellij.psi.PsiElement;
public interface JaiDeclNames extends PsiElement {
@NotNull
List<JaiDeclName> getDeclNameList();
}