mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-04 03:58:15 +02:00
42 lines
990 B
ObjectPascal
42 lines
990 B
ObjectPascal
{ $Id$ }
|
|
{
|
|
/***************************************************************************
|
|
allcodetoolunits.pp
|
|
|
|
dummy unit to compile all units
|
|
|
|
/***************************************************************************
|
|
}
|
|
unit allcodetoolunits;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
MemCheck,
|
|
CodeToolManager, CustomCodeTool, PascalParserTool, StdCodeTools,
|
|
MethodJumpTool, EventCodeTool, CodeCompletionTool, LinkScanner,
|
|
BasicCodeTools, CodeTree, CodeAtom, SourceChanger, CodeCache,
|
|
KeywordFuncLists, SourceLog, ExprEval, AVL_Tree, DefineTemplates;
|
|
|
|
|
|
implementation
|
|
|
|
end.
|
|
|
|
{ =============================================================================
|
|
|
|
$Log$
|
|
Revision 1.3 2001/11/15 09:08:35 lazarus
|
|
MG: splitted codetools.pp, it was a monster
|
|
|
|
Revision 1.2 2001/10/24 00:35:53 lazarus
|
|
MG: fixes for fpc 1.1: range check errors
|
|
|
|
Revision 1.1 2001/10/09 10:04:43 lazarus
|
|
MG: added allcodetoolunits.pp
|
|
|
|
|
|
}
|