View Source API Reference renewex v0.14.0

Modules

The Renewex module provides functionality for parsing Renew source files (*.rnw).

This module defines aliases for Renew class names.

Renewex.Document captures the concept of a full Renew document as described by the content of an *.rnw file.

This module defines the grammar to parse Renew *.rnw files.

The grammar for parsing a Renew *.rnw file is defined by the object oriented class hierarchy of java classes in the original Java Renew implementation.

This module implements the core of the parser for reading Renew *.rnw files. The grammar to be used for parsing is defined by Renewex.Grammar.

This module implements the core of the serializer for generating Renew *.rnw files. The grammar to be used for serialization is defined by Renewex.Grammar.

In the original Renew Java implementation a *.rnw is deserialized into Java Objects of a variaty of classes.

This module implements a simple tokenizer for splitting a string into lexems that are needed to parse Renew *.rnw files.