diff --git a/sig/lrama/lexer/token/type.rbs b/sig/lrama/lexer/token/type.rbs index 14a17f75..dc96b8f9 100644 --- a/sig/lrama/lexer/token/type.rbs +++ b/sig/lrama/lexer/token/type.rbs @@ -4,11 +4,13 @@ module Lrama attr_accessor type: Type attr_accessor s_value: String attr_accessor alias: String - attr_accessor keyword_init: bool + + def initialize: (?type: Type, ?s_value: String, ?alias: String) -> void class Type attr_accessor id: Integer attr_accessor name: String - attr_accessor keyword_init: bool + + def initialize: (?id: Integer, ?name: String) -> void end end end