Class: Jass::Function

Inherits:
Object
  • Object
show all
Defined in:
lib/jass/function.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, code) ⇒ Function

Returns a new instance of Function.



5
6
7
# File 'lib/jass/function.rb', line 5

def initialize(name, code)
  @name, @code = name, code
end

Instance Attribute Details

#codeObject (readonly)

Returns the value of attribute code.



3
4
5
# File 'lib/jass/function.rb', line 3

def code
  @code
end

#nameObject (readonly)

Returns the value of attribute name.



3
4
5
# File 'lib/jass/function.rb', line 3

def name
  @name
end

Instance Method Details

#to_jsObject



9
10
11
# File 'lib/jass/function.rb', line 9

def to_js
  "__methods__[#{name.to_json}] = (#{code});\n"
end