From 7be1d273429765907af0abad182666d77eb557e4 Mon Sep 17 00:00:00 2001 From: Ryo Nihei Date: Sat, 18 Sep 2021 21:25:48 +0900 Subject: Add name field to the lexical specification --- spec/spec.go | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'spec/spec.go') diff --git a/spec/spec.go b/spec/spec.go index 62acfc4..2360201 100644 --- a/spec/spec.go +++ b/spec/spec.go @@ -157,10 +157,16 @@ func (e *LexEntry) validate() error { } type LexSpec struct { + Name string `json:"name"` Entries []*LexEntry `json:"entries"` } func (s *LexSpec) Validate() error { + err := validateIdentifier(s.Name) + if err != nil { + return fmt.Errorf("invalid specification name: %v", err) + } + if len(s.Entries) <= 0 { return fmt.Errorf("the lexical specification must have at least one entry") } @@ -364,6 +370,7 @@ type CompiledLexModeSpec struct { } type CompiledLexSpec struct { + Name string `json:"name"` InitialModeID LexModeID `json:"initial_mode_id"` ModeNames []LexModeName `json:"mode_names"` KindNames []LexKindName `json:"kind_names"` -- cgit v1.2.3