23 lines
503 B
ObjectPascal
23 lines
503 B
ObjectPascal
unit dpglib.TreeParserGrammar;
|
|
|
|
interface
|
|
uses
|
|
System.Classes,
|
|
System.Contnrs,
|
|
dpgrtl.types,
|
|
dpglib.Types,
|
|
dpglib.ParserGrammar;
|
|
|
|
type
|
|
// =========================================================================
|
|
// Class TParserGrammar
|
|
// =========================================================================
|
|
TTreeParserGrammar = class(TParserGrammar,
|
|
IGrammar,
|
|
ITreeWalkerGrammar)
|
|
end;
|
|
|
|
implementation
|
|
|
|
end.
|