Sha256: bc9eb063a1dff009338aa8cd79bfc550935424db55b3bc6e114b5c94d52f89c1
Contents?: true
Size: 617 Bytes
Versions: 3
Compression:
Stored size: 617 Bytes
Contents
module Lrama class Lexer class Token attr_reader s_value: String attr_accessor alias_name: String attr_reader location: Location attr_accessor referred: bool def initialize: (s_value: String, ?alias_name: String, ?location: Location) -> void def to_s: () -> String def referred_by?: (String string) -> bool def ==: (Token other) -> bool def first_line: () -> Integer def first_column: () -> Integer def last_line: () -> Integer def last_column: () -> Integer alias line first_line alias column first_column end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
lrama-0.6.0 | sig/lrama/lexer/token.rbs |
lrama-0.5.12 | sig/lrama/lexer/token.rbs |
lrama-0.5.11 | sig/lrama/lexer/token.rbs |