Parent

Syntax::Convertors::Abstract

The abstract ancestor class for all convertors. It implements a few convenience methods to provide a common interface for all convertors.

Attributes

tokenizer[R]

A reference to the tokenizer used by this convertor.

Public Class Methods

for_syntax( syntax ) click to toggle source

A convenience method for instantiating a new convertor for a specific syntax.

    # File lib/syntax/convertors/abstract.rb, line 15
15:       def self.for_syntax( syntax )
16:         new( Syntax.load( syntax ) )
17:       end
new( tokenizer ) click to toggle source

Creates a new convertor that uses the given tokenizer.

    # File lib/syntax/convertors/abstract.rb, line 20
20:       def initialize( tokenizer )
21:         @tokenizer = tokenizer
22:       end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.