Class: RuboCop::Token
- Inherits:
-
Object
- Object
- RuboCop::Token
- Defined in:
- lib/rubocop/token.rb
Overview
A basic wrapper around Parser's tokens.
Instance Attribute Summary collapse
-
#pos ⇒ Object
readonly
Returns the value of attribute pos.
-
#text ⇒ Object
readonly
Returns the value of attribute text.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(pos, type, text) ⇒ Token
constructor
A new instance of Token.
- #to_s ⇒ Object
Constructor Details
#initialize(pos, type, text) ⇒ Token
Returns a new instance of Token.
14 15 16 |
# File 'lib/rubocop/token.rb', line 14 def initialize(pos, type, text) @pos, @type, @text = pos, type, text end |
Instance Attribute Details
#pos ⇒ Object (readonly)
Returns the value of attribute pos.
6 7 8 |
# File 'lib/rubocop/token.rb', line 6 def pos @pos end |
#text ⇒ Object (readonly)
Returns the value of attribute text.
6 7 8 |
# File 'lib/rubocop/token.rb', line 6 def text @text end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
6 7 8 |
# File 'lib/rubocop/token.rb', line 6 def type @type end |
Class Method Details
.from_parser_token(parser_token) ⇒ Object
8 9 10 11 12 |
# File 'lib/rubocop/token.rb', line 8 def self.from_parser_token(parser_token) type, details = *parser_token text, range = *details new(range, type, text) end |
Instance Method Details
#to_s ⇒ Object
18 19 20 |
# File 'lib/rubocop/token.rb', line 18 def to_s "[[#{@pos.line}, #{@pos.column}], #{@type}, #{@text.inspect}]" end |