Method: Steamd::Generator::Implementation#run

Defined in:
lib/steamd/generator/implementation.rb

#runObject

Run the generator. Load the parser, and parse the IO object.

Returns:

  • The parsed code



35
36
37
38
39
40
# File 'lib/steamd/generator/implementation.rb', line 35

def run
  @parser.load!
  @parser.parse(@io)
  generate
  @buffer
end