Class: Dentaku::AST::Function

Inherits:
Node
  • Object
show all
Defined in:
lib/dentaku/ast/function.rb

Direct Known Subclasses

If

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Node

arity, precedence

Constructor Details

#initialize(*args) ⇒ Function

Returns a new instance of Function.



6
7
8
# File 'lib/dentaku/ast/function.rb', line 6

def initialize(*args)
  @args = args
end

Class Method Details

.get(name) ⇒ Object



14
15
16
# File 'lib/dentaku/ast/function.rb', line 14

def self.get(name)
  registry.fetch(function_name(name)) { fail "Undefined function #{ name } "}
end

.register(name, type, implementation) ⇒ Object



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/dentaku/ast/function.rb', line 18

def self.register(name, type, implementation)
  function = Class.new(self) do
    def self.implementation=(impl)
      @implementation = impl
    end

    def self.implementation
      @implementation
    end

    def self.type=(type)
      @type = type
    end

    def self.type
      @type
    end

    def value(context={})
      args = @args.flat_map { |a| a.value(context) }
      self.class.implementation.call(*args)
    end

    def type
      self.class.type
    end
  end

  function_class = name.to_s.capitalize
  Dentaku::AST.send(:remove_const, function_class) if Dentaku::AST.const_defined?(function_class)
  Dentaku::AST.const_set(function_class, function)

  function.implementation = implementation
  function.type = type

  registry[function_name(name)] = function
end

.register_class(name, function_class) ⇒ Object



56
57
58
# File 'lib/dentaku/ast/function.rb', line 56

def self.register_class(name, function_class)
  registry[function_name(name)] = function_class
end

Instance Method Details

#dependencies(context = {}) ⇒ Object



10
11
12
# File 'lib/dentaku/ast/function.rb', line 10

def dependencies(context={})
  @args.flat_map { |a| a.dependencies(context) }
end