Package freemarker.template.compiler

The guts of the FreeMarker engine.

See:
          Description

Interface Summary
FMParserConstants  
 

Class Summary
Expression An abstract class for nodes in the parse tree that represent a FreeMarker expression.
FMParser This class is generated by JavaCC from a grammar file.
FMParserTokenManager  
Function An element representing a function declaration.
SimpleCharStream An implementation of interface CharStream, where the stream is assumed to contain only ASCII characters (without unicode processing).
TemplateElement Objects that represent elements in the compiled tree representation of the template necessarily descend from this abstract class.
Token Describes the input token stream.
 

Exception Summary
NonNumericalException A subclass of TemplateException that indicates that the internals expected an expression to evaluate to a numerical value and it didn't.
ParseException This exception is thrown when parse errors are encountered.
StopException This exception is thrown when a <stop> directive is encountered.
 

Error Summary
TokenMgrError  
 

Package freemarker.template.compiler Description

The guts of the FreeMarker engine. Most of the code here is generated by the javacc parser generator.