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.



38
39
40
# File 'lib/ldpath/tests.rb', line 38

def initialize(type)
  @type = type
end

Instance Attribute Details

#typeObject (readonly)

Returns the value of attribute type.



37
38
39
# File 'lib/ldpath/tests.rb', line 37

def type
  @type
end

Instance Method Details

#evaluate(program, uri, _context) ⇒ Object



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

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

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