Class: EBNF::LL1::Lexer::Token

Inherits:
Object
  • Object
show all
Defined in:
lib/ebnf/ll1/lexer.rb

Overview

Represents a lexer token.

Examples:

Creating a new token

token = EBNF::LL1::Lexer::Token.new(:LANGTAG, "en")
token.type   #=> :LANGTAG
token.value  #=> "en"

See Also:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type, value, options = {}) ⇒ Token

Initializes a new token instance.

Parameters:

  • type (Symbol)
  • value (String)
  • options (Hash{Symbol => Object}) (defaults to: {})

Options Hash (options):

  • :lineno (Integer) — default: nil


387
388
389
390
391
392
# File 'lib/ebnf/ll1/lexer.rb', line 387

def initialize(type, value, options = {})
  @type = type.to_s.to_sym if type
  @value = value.to_s
  @options = options.dup
  @lineno  = @options.delete(:lineno)
end

Instance Attribute Details

#linenoInteger (readonly)

The line number where the token was encountered.

Returns:

  • (Integer)


372
373
374
# File 'lib/ebnf/ll1/lexer.rb', line 372

def lineno
  @lineno
end

#optionsHash (readonly)

Any additional options for the token.

Returns:

  • (Hash)


378
379
380
# File 'lib/ebnf/ll1/lexer.rb', line 378

def options
  @options
end

#typeSymbol (readonly)

The token’s symbol type.

Returns:

  • (Symbol)


360
361
362
# File 'lib/ebnf/ll1/lexer.rb', line 360

def type
  @type
end

#valueString (readonly)

The token’s value.

Returns:

  • (String)


366
367
368
# File 'lib/ebnf/ll1/lexer.rb', line 366

def value
  @value
end

Instance Method Details

#===(value) ⇒ Boolean

Returns ‘true` if the given `value` matches either the type or value of this token.

Examples:

Matching using the symbolic type

EBNF::LL1::Lexer::Token.new(:NIL) === :NIL     #=> true

Matching using the string value

EBNF::LL1::Lexer::Token.new(nil, "{") === "{"  #=> true

Parameters:

  • value (Symbol, String)

Returns:

  • (Boolean)


420
421
422
423
424
425
426
427
428
# File 'lib/ebnf/ll1/lexer.rb', line 420

def ===(value)
  case value
    when Symbol
      value == @type
    when ::String
      @value == (@options[:case_insensitive] ? value.to_s.downcase : value.to_s)
    else value == @value
  end
end

#[](key) ⇒ Object

Returns the attribute named by ‘key`.

Parameters:

  • key (Symbol)

Returns:

  • (Object)


399
400
401
402
403
404
405
406
# File 'lib/ebnf/ll1/lexer.rb', line 399

def [](key)
  key = key.to_s.to_sym unless key.is_a?(Integer) || key.is_a?(Symbol)
  case key
    when 0, :type    then @type
    when 1, :value   then @value
    else nil
  end
end

#inspectString

Returns a developer-friendly representation of this token.

Returns:

  • (String)


462
463
464
# File 'lib/ebnf/ll1/lexer.rb', line 462

def inspect
  "#{@value.inspect}#{'(' + @type.to_s + ')' if @type}"
end

#representationObject

Returns type, if not nil, otherwise value



446
447
448
# File 'lib/ebnf/ll1/lexer.rb', line 446

def representation
  @type ? @type : @value
end

#to_aArray

Returns an array representation of this token.

Returns:

  • (Array)


454
455
456
# File 'lib/ebnf/ll1/lexer.rb', line 454

def to_a
  [@type, @value]
end

#to_hashHash

Returns a hash table representation of this token.

Returns:

  • (Hash)


434
435
436
# File 'lib/ebnf/ll1/lexer.rb', line 434

def to_hash
  {:type => @type, :value => @value}
end

#to_sObject

Readable version of token



440
441
442
# File 'lib/ebnf/ll1/lexer.rb', line 440

def to_s
  @type ? @type.inspect : @value
end