Class: Rubocop::Cop::Token

Inherits:
Object
  • Object
show all
Defined in:
lib/rubocop/cop/cop.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(pos, type, text) ⇒ Token

Returns a new instance of Token.



8
9
10
# File 'lib/rubocop/cop/cop.rb', line 8

def initialize(pos, type, text)
  @pos, @type, @text = pos, type, text
end

Instance Attribute Details

#posObject (readonly)

Returns the value of attribute pos.



6
7
8
# File 'lib/rubocop/cop/cop.rb', line 6

def pos
  @pos
end

#textObject (readonly)

Returns the value of attribute text.



6
7
8
# File 'lib/rubocop/cop/cop.rb', line 6

def text
  @text
end

#typeObject (readonly)

Returns the value of attribute type.



6
7
8
# File 'lib/rubocop/cop/cop.rb', line 6

def type
  @type
end

Instance Method Details

#to_sObject



12
13
14
# File 'lib/rubocop/cop/cop.rb', line 12

def to_s
  "[[#{@pos.line}, #{@pos.column}], #{@type}, #{@text.inspect}]"
end