Class: Sass::Script::Lexer::Token

Inherits:
Struct
  • Object
show all
Defined in:
lib/sass/script/lexer.rb

Overview

A struct containing information about an individual token.

type: [Symbol] : The type of token.

value: [Object] : The Ruby object corresponding to the value of the token.

source_range: [Sass::Source::Range] : The range in the source file in which the token appeared.

pos: [Integer] : The scanner position at which the SassScript token appeared.

Instance Attribute Summary collapse

Instance Attribute Details

#posObject

Returns the value of attribute pos

Returns:

  • (Object)

    the current value of pos



24
25
26
# File 'lib/sass/script/lexer.rb', line 24

def pos
  @pos
end

#source_rangeObject

Returns the value of attribute source_range

Returns:

  • (Object)

    the current value of source_range



24
25
26
# File 'lib/sass/script/lexer.rb', line 24

def source_range
  @source_range
end

#typeObject

Returns the value of attribute type

Returns:

  • (Object)

    the current value of type



24
25
26
# File 'lib/sass/script/lexer.rb', line 24

def type
  @type
end

#valueObject

Returns the value of attribute value

Returns:

  • (Object)

    the current value of value



24
25
26
# File 'lib/sass/script/lexer.rb', line 24

def value
  @value
end