Files
bds.mr.dpg/src.lib/dpglib.TreeParserGrammar.pas
T
2026-01-03 18:33:48 +01:00

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.