Method: Node::Compiler#initialize

Defined in:
lib/node/compiler.rb

#initialize(entrance, options = {}) ⇒ Compiler

Returns a new instance of Compiler.



44
45
46
47
48
49
50
51
# File 'lib/node/compiler.rb', line 44

def initialize(entrance, options = {})
  @options = options
  @entrance = entrance

  init_options
  init_entrance
  init_tmpdir
end