Class: Ldpath::TypeTest

Inherits:
TestSelector show all
Defined in:
lib/ldpath/tests.rb

Instance Attribute Summary collapse

Attributes inherited from TestSelector

#delegate, #test

Instance Method Summary collapse

Methods inherited from Selector

#loading

Constructor Details

#initialize(type) ⇒ TypeTest

Returns a new instance of TypeTest.



46
47
48
49
50
# File 'lib/ldpath/tests.rb', line 46

def initialize(type)
  @type = type

  super
end

Instance Attribute Details

#typeObject (readonly)

Returns the value of attribute type.



44
45
46
# File 'lib/ldpath/tests.rb', line 44

def type
  @type
end

Instance Method Details

#evaluate(_program, uri, _context) ⇒ Object



52
53
54
55
56
# File 'lib/ldpath/tests.rb', line 52

def evaluate(_program, uri, _context)
  return unless uri.literal?

  uri if uri.has_datatype? && uri.datatype == type
end