eclipse-langium/langium

Bad Container for Keyword in grammar ast

cdietrich opened this issue · 0 comments

Keywords are represented as

export interface Keyword extends AbstractElement {
    readonly $container: CharacterRange;
    readonly $type: 'Keyword';
    value: string;
}

in the grammar ast.

but not all keywords are used in CharacterRanges only.