Class: Antelope::Generator::Info

Inherits:
Base
  • Object
show all
Defined in:
lib/antelope/generator/info.rb

Overview

Generates an output file, mainly for debugging. Included always as a generator for a grammar.

Constant Summary

Constants inherited from Base

Base::Boolean

Instance Attribute Summary

Attributes inherited from Base

#file, #grammar, #mods

Instance Method Summary collapse

Methods inherited from Base

directive, directives, inherited, register_as, source_root, #template

Methods included from Base::Extra

#productions, #table

Methods included from Base::Coerce

#coerce_directive_class, #coerce_directive_value, #coerce_nested_hash, #directives

Constructor Details

#initializeInfo

Defines singleton method for every mod that the grammar passed to the generator.

See Also:

  • Generator#initialize


16
17
18
19
20
21
# File 'lib/antelope/generator/info.rb', line 16

def initialize(*)
  super
  mods.each do |k, v|
    define_singleton_method (k) { v }
  end
end

Instance Method Details

#generatevoid

This method returns an undefined value.

Actually performs the generation. Uses the template in output.erb, and generates the file <file>.output.



42
43
44
# File 'lib/antelope/generator/info.rb', line 42

def generate
  template "info", "#{file}.inf"
end

#unused_symbolsObject



23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/antelope/generator/info.rb', line 23

def unused_symbols
  @_unused_symbols ||= begin
    used = grammar.all_productions.map(&:items).flatten.uniq
    all  = grammar.symbols.map do |s|
      if Symbol === s
        grammar.find_token(s)
      else
        s
      end
    end

    all - used - [grammar.find_token(:"$start")]
  end
end