Class: Yaparc::Symbol

Inherits:
Object
  • Object
show all
Includes:
Parsable
Defined in:
lib/yaparc.rb

Constant Summary

Constants included from Parsable

Parsable::IS_ALPHANUM, Parsable::IS_DIGIT, Parsable::IS_LOWER, Parsable::IS_SPACE, Parsable::IS_WHITESPACE

Instance Attribute Summary

Attributes included from Parsable

#tree

Instance Method Summary collapse

Methods included from Parsable

#eval, included, #parse

Constructor Details

#initialize(literal, args = {}) ⇒ Symbol

Returns a new instance of Symbol.



512
513
514
515
516
# File 'lib/yaparc.rb', line 512

def initialize(literal, args = {})
  @parser = lambda do |input|
    Literal.new(literal)
  end
end