Changeset 3


Ignore:
Timestamp:
Nov 4, 2010, 12:19:14 PM (13 years ago)
Author:
george
Message:
  • Modified: More parsing procedures transformed to functions.
Location:
trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore set to
      lib
  • trunk/Compiler

    • Property svn:ignore set to
      lib
  • trunk/Compiler/Analyze/UParser.pas

    r2 r3  
    360360        // Update cursor position
    361361        Inc(CodePosition.X);
    362         if (CurrentChar = LineEnding) then begin
     362        if (CurrentChar = LineEnding[1]) then begin
    363363          CodePosition.X := 0;
    364364          Inc(CodePosition.Y);
  • trunk/Compiler/Analyze/UPascalParser.pas

    r2 r3  
    1818  public
    1919    function ParseFile(Name: string): Boolean;
    20     procedure ParseWhileDo(SourceCode: TWhileDo);
     20    function ParseWhileDo(var WhileDo: TWhileDo; SourceCode: TCommonBlock): Boolean;
    2121    procedure ParseExpression(SourceCode: TExpression);
    2222    function ParseRightValue(SourceCode: TExpression): TObject;
    2323    function ParseFunctionCall(SourceCode: TExpression): TObject;
    24     procedure ParseUses(SourceCode: TUsedModuleList; AExported: Boolean);
     24    function ParseUses(SourceCode: TUsedModuleList; AExported: Boolean): Boolean;
    2525    function ParseModule(ProgramCode: TProgram): TModule;
    26     procedure ParseUnit(SourceCode: TModuleUnit);
    27     procedure ParseUnitInterface(SourceCode: TModuleUnit);
    28     procedure ParseUnitImplementation(SourceCode: TModuleUnit);
     26    function ParseUnit(var SourceCode: TModuleUnit; ProgramCode: TProgram): Boolean;
     27    function ParseUnitInterface(SourceCode: TModuleUnit): Boolean;
     28    function ParseUnitImplementation(SourceCode: TModuleUnit): Boolean;
    2929    procedure ParseProgram(SourceCode: TModuleProgram);
    3030    procedure ParseCommonBlock(SourceCode: TCommonBlock; EndSymbol: char = ';';
     
    3232    procedure ParseCommonBlockInterface(SourceCode: TCommonBlock);
    3333    function ParseCommand(SourceCode: TCommonBlock): TCommand;
    34     procedure ParseBeginEnd(SourceCode: TBeginEnd);
     34    function ParseBeginEnd(var BeginEnd: TBeginEnd; SourceCode: TCommonBlock): Boolean;
    3535    function ParseFunctionList(SourceCode: TFunctionList; Exported: Boolean = False): Boolean;
    3636    procedure ParseFunctionParameters(SourceCode: TFunction; ValidateParams: Boolean = False);
    37     procedure ParseIfThenElse(SourceCode: TIfThenElse);
    38     procedure ParseForToDo(SourceCode: TForToDo);
     37    function ParseIfThenElse(var IfThenElse: TIfThenElse; SourceCode: TCommonBlock): Boolean;
     38    function ParseForToDo(var ForToDo: TForToDo; SourceCode: TCommonBlock): Boolean;
    3939    function ParseVariableList(SourceCode: TVariableList; Exported: Boolean = False): Boolean;
    4040    procedure ParseVariable(SourceCode: TVariableList; Exported: Boolean = False);
     
    107107end;
    108108
    109 procedure TPascalParser.ParseWhileDo(SourceCode: TWhileDo);
    110 begin
    111   with SourceCode do
    112   begin
     109function TPascalParser.ParseWhileDo(var WhileDo: TWhileDo; SourceCode: TCommonBlock): Boolean;
     110begin
     111  if NextToken = 'while' then begin
    113112    Expect('while');
    114     Condition.CommonBlock := CommonBlock;
    115     ParseExpression(Condition);
    116     Expect('do');
    117     Command := ParseCommand(CommonBlock);
    118   end;
     113    WhileDo := TWhileDo.Create;
     114    WhileDo.CommonBlock := SourceCode;
     115    with WhileDo do begin
     116      Condition.CommonBlock := CommonBlock;
     117      ParseExpression(Condition);
     118      Expect('do');
     119      Command := ParseCommand(CommonBlock);
     120    end;
     121    Result := True;
     122  end else Result := False;
    119123end;
    120124
     
    311315begin
    312316  begin
    313     if NextToken = 'begin' then begin
    314       Result := TBeginEnd.Create;
    315       TBeginEnd(Result).CommonBlock := SourceCode;
    316       //ShowMessage(IntToStr(Integer(SourceCode))
    317       // + ' ' + IntToStr(Integer(Result)));
    318       ParseBeginEnd(TBeginEnd(Result));
    319     end else
    320     if NextToken = 'if' then begin
    321       Result := TIfThenElse.Create;
    322       TIfThenElse(Result).CommonBlock := SourceCode;
    323       ParseIfThenElse(TIfThenElse(Result));
    324     end else
    325     if NextToken = 'while' then begin
    326       Result := TWhileDo.Create;
    327       TWhileDo(Result).CommonBlock := SourceCode;
    328       ParseWhileDo(TWhileDo(Result));
    329     end else
    330     if NextToken = 'for' then begin
    331       Result := TForToDo.Create;
    332       TForToDo(Result).CommonBlock := SourceCode;
    333       ParseForToDo(TForToDo(Result));
    334     end else
     317    if not ParseBeginEnd(TBeginEnd(Result), SourceCode) then
     318    if not ParseIfThenElse(TIfThenElse(Result), SourceCode) then
     319    if not ParseWhileDo(TWhileDo(Result), SourceCode) then
     320    if not ParseForToDo(TForToDo(Result), SourceCode) then
    335321    if IsIdentificator(NextToken) then begin
    336322      if Assigned(SourceCode.Variables.Search(NextToken)) then begin
     
    381367begin
    382368  Self.ProgramCode := ProgramCode;
    383   if NextToken = 'unit' then begin
    384     Result := TModuleUnit.Create;
    385     Result.ParentProgram := ProgramCode;
    386     ParseUnit(TModuleUnit(Result));
    387   end else
    388   if NextToken = 'program' then begin
     369  if not ParseUnit(TModuleUnit(Result), ProgramCode) then begin
    389370    Result := TModuleProgram.Create;
    390371    Result.ParentProgram := ProgramCode;
     
    414395end;
    415396
    416 procedure TPascalParser.ParseUnit(SourceCode: TModuleUnit);
     397function TPascalParser.ParseUnit(var SourceCode: TModuleUnit; ProgramCode: TProgram): Boolean;
    417398var
    418399  NewModule: TModule;
    419400begin
    420   Expect('unit');
    421   with Sourcecode do begin
    422     Name := ReadToken;
    423   end;
    424   Expect(';');
    425 
    426   ParseUnitInterface(SourceCode);
    427   if NextToken = 'implementation' then
    428     ParseUnitImplementation(SourceCode);
    429 
    430   SourceCode.ParentProgram.Modules.Add(SourceCode);
    431 
    432   if NextToken = 'initialization' then begin
    433     Expect('initialization');
    434   end;
    435   if NextToken = 'finalization' then begin
    436     Expect('finalization');
    437   end;
    438 end;
    439 
    440 procedure TPascalParser.ParseUnitInterface(SourceCode: TModuleUnit);
    441 begin
    442   Expect('interface');
    443   // Uses section
    444   if NextToken = 'uses' then
     401  if NextToken = 'unit' then begin
     402    SourceCode := TModuleUnit.Create;
     403    SourceCode.ParentProgram := ProgramCode;
     404    Expect('unit');
     405    with Sourcecode do begin
     406      Name := ReadToken;
     407    end;
     408    Expect(';');
     409
     410    if not ParseUnitInterface(SourceCode) then
     411      ErrorMessage(SExpectedButFound, ['interface', NextToken]);
     412
     413    if not ParseUnitImplementation(SourceCode) then
     414      ErrorMessage(SExpectedButFound, ['implementation', NextToken]);
     415
     416    SourceCode.ParentProgram.Modules.Add(SourceCode);
     417
     418    if NextToken = 'initialization' then begin
     419      Expect('initialization');
     420    end;
     421    if NextToken = 'finalization' then begin
     422      Expect('finalization');
     423    end;
     424    Result := True;
     425  end else Result := False;
     426end;
     427
     428function TPascalParser.ParseUnitInterface(SourceCode: TModuleUnit): Boolean;
     429begin
     430  if NextToken = 'interface' then begin
     431    Expect('interface');
     432    // Uses section
    445433    ParseUses(SourceCode.UsedModules, True);
    446434
    447   ParseCommonBlockInterface(SourceCode.Body);
    448 end;
    449 
    450 procedure TPascalParser.ParseUnitImplementation(SourceCode: TModuleUnit);
    451 begin
    452   Expect('implementation');
    453 
    454   // Uses section
    455   if NextToken = 'uses' then
    456     ParseUses(SourceCode.UsedModules, False);
    457 
    458   ParseCommonBlock(SourceCode.Body, '.', False);
     435    ParseCommonBlockInterface(SourceCode.Body);
     436    Result := True;
     437  end else Result := False;
     438end;
     439
     440function TPascalParser.ParseUnitImplementation(SourceCode: TModuleUnit): Boolean;
     441begin
     442  if NextToken = 'implementation' then begin
     443    Expect('implementation');
     444
     445    // Uses section
     446    if NextToken = 'uses' then
     447      ParseUses(SourceCode.UsedModules, False);
     448
     449    ParseCommonBlock(SourceCode.Body, '.', False);
     450    Result := True;
     451  end else Result := False;
    459452end;
    460453
     
    471464      if not ParseFunctionList(Functions) then begin
    472465        if WithBody then
    473           ParseBeginEnd(Code);
     466          if not ParseBeginEnd(Code, SourceCode) then
     467            ErrorMessage(SExpectedButFound, ['begin', NextToken]);
    474468        Break;
    475469      end;
     
    496490{ TParserBeginEnd }
    497491
    498 procedure TPascalParser.ParseBeginEnd(SourceCode: TBeginEnd);
     492function TPascalParser.ParseBeginEnd(var BeginEnd: TBeginEnd; SourceCode: TCommonBlock): Boolean;
    499493var
    500494  NewCommand: TCommand;
    501495begin
    502   //ShowMessage(IntToStr(Integer(SourceCode)) + ' ' + IntToStr(Integer(SourceCode.CommonBlock)));
    503   with SourceCode do
    504   begin
    505     Expect('begin');
    506     while (NextToken <> 'end') and (NextTokenType <> ttEndOfFile) do
     496  if NextToken = 'begin' then begin
     497    //ShowMessage(IntToStr(Integer(SourceCode)) + ' ' + IntToStr(Integer(SourceCode.CommonBlock)));
     498    BeginEnd := TBeginEnd.Create;
     499    TBeginEnd(BeginEnd).CommonBlock := SourceCode;
     500    with BeginEnd do
    507501    begin
    508       NewCommand := ParseCommand(CommonBlock);
    509       if Assigned(NewCommand) then
    510         Commands.Add(NewCommand);
    511       //ShowMessage(NextCode);
    512       if NextToken = ';' then
    513         ReadToken;
    514     end;
    515     Expect('end');
    516   end;
     502      Expect('begin');
     503      while (NextToken <> 'end') and (NextTokenType <> ttEndOfFile) do
     504      begin
     505        NewCommand := ParseCommand(CommonBlock);
     506        if Assigned(NewCommand) then
     507          Commands.Add(NewCommand);
     508       //ShowMessage(NextCode);
     509        if NextToken = ';' then
     510          ReadToken;
     511      end;
     512      Expect('end');
     513    end;
     514    Result := True;
     515  end else Result := False;
    517516end;
    518517
     
    680679{ TParserIfThenElse }
    681680
    682 procedure TPascalParser.ParseIfThenElse(SourceCode: TIfThenElse);
    683 begin
    684   with SourceCode do begin
    685     Expect('if');
    686     Condition.CommonBlock := CommonBlock;
    687     ParseExpression(Condition);
    688     Expect('then');
    689     Command := ParseCommand(CommonBlock);
    690     if NextToken = 'else' then
    691     begin
    692       Expect('else');
    693       ElseCommand := ParseCommand(CommonBlock);
    694     end;
    695   end;
    696 end;
    697 
    698 procedure TPascalParser.ParseForToDo(SourceCode: TForToDo);
     681function TPascalParser.ParseIfThenElse(var IfThenElse: TIfThenElse; SourceCode: TCommonBlock): Boolean;
     682begin
     683  if NextToken = 'if' then begin
     684    IfThenElse := TIfThenElse.Create;
     685    IfThenElse.CommonBlock := SourceCode;
     686    with IfThenElse do begin
     687      Expect('if');
     688      Condition.CommonBlock := CommonBlock;
     689      ParseExpression(Condition);
     690      Expect('then');
     691      Command := ParseCommand(CommonBlock);
     692      if NextToken = 'else' then
     693      begin
     694        Expect('else');
     695        ElseCommand := ParseCommand(CommonBlock);
     696      end;
     697    end;
     698    Result := True;
     699  end else Result := False;
     700end;
     701
     702function TPascalParser.ParseForToDo(var ForToDo: TForToDo; SourceCode: TCommonBlock): Boolean;
    699703var
    700704  VariableName: string;
    701705begin
    702   with SourceCode do
    703   begin
    704     Expect('for');
    705     VariableName := ReadToken;
    706     ControlVariable := SourceCode.CommonBlock.Variables.Search(VariableName);
    707     if not Assigned(ControlVariable) then
    708       ErrorMessage(SUndefinedVariable, [VariableName], -1);
    709     Expect(':=');
    710     Start.CommonBlock := CommonBlock;
    711     ParseExpression(Start);
    712     Expect('to');
    713     Stop.CommonBlock := CommonBlock;
    714     ParseExpression(Stop);
    715     Expect('do');
    716     Command := ParseCommand(CommonBlock);
    717   end;
     706  if NextToken = 'for' then begin
     707    ForToDo := TForToDo.Create;
     708    ForToDo.CommonBlock := SourceCode;
     709    with ForToDo do begin
     710      Expect('for');
     711      VariableName := ReadToken;
     712      ControlVariable := ForToDo.CommonBlock.Variables.Search(VariableName);
     713      if not Assigned(ControlVariable) then
     714        ErrorMessage(SUndefinedVariable, [VariableName], -1);
     715      Expect(':=');
     716      Start.CommonBlock := CommonBlock;
     717      ParseExpression(Start);
     718      Expect('to');
     719      Stop.CommonBlock := CommonBlock;
     720      ParseExpression(Stop);
     721      Expect('do');
     722      Command := ParseCommand(CommonBlock);
     723    end;
     724    Result := True;
     725  end else Result := False;
    718726end;
    719727
     
    11281136{ TParserUsedModuleList }
    11291137
    1130 procedure TPascalParser.ParseUses(SourceCode: TUsedModuleList; AExported: Boolean = False);
     1138function TPascalParser.ParseUses(SourceCode: TUsedModuleList; AExported: Boolean = False): Boolean;
    11311139var
    11321140  NewUsedModule: TUsedModule;
    11331141begin
    1134   Expect('uses');
    1135   with TUsedModule(SourceCode.Items[SourceCode.Add(TUsedModule.Create)]) do
    1136   begin
    1137     Name := ReadToken;
    1138     if NextToken = 'in' then begin
    1139       Expect('in');
    1140       Location := ReadToken;
    1141     end else Location := Name + '.pas';
    1142     Module := SourceCode.ParentModule.ParentProgram.Modules.Search(Name);
    1143     if not Assigned(Module) then begin
    1144       if ParseFile(Name) then begin
    1145         Module := SourceCode.ParentModule.ParentProgram.Modules.Search(Name);
    1146         Exported := AExported;
    1147       end else begin
    1148         ErrorMessage(SUnitNotFound, [Name], -2);
    1149         SourceCode.Delete(SourceCode.Count - 1);
    1150       end;
    1151     end;
    1152   end;
    1153   while NextToken = ',' do begin
    1154     Expect(',');
    1155     with TUsedModule(SourceCode.Items[SourceCode.Add(TUsedModule.Create)]) do
    1156     begin
     1142  if NextToken = 'uses' then begin
     1143    Expect('uses');
     1144    with TUsedModule(SourceCode.Items[SourceCode.Add(TUsedModule.Create)]) do begin
    11571145      Name := ReadToken;
    11581146      if NextToken = 'in' then begin
     
    11621150      Module := SourceCode.ParentModule.ParentProgram.Modules.Search(Name);
    11631151      if not Assigned(Module) then begin
    1164         if not ParseFile(Name) then begin
     1152        if ParseFile(Name) then begin
     1153          Module := SourceCode.ParentModule.ParentProgram.Modules.Search(Name);
     1154          Exported := AExported;
     1155        end else begin
    11651156          ErrorMessage(SUnitNotFound, [Name], -2);
    11661157          SourceCode.Delete(SourceCode.Count - 1);
     
    11681159      end;
    11691160    end;
    1170   end;
    1171   Expect(';');
     1161    while NextToken = ',' do begin
     1162      Expect(',');
     1163      with TUsedModule(SourceCode.Items[SourceCode.Add(TUsedModule.Create)]) do
     1164      begin
     1165        Name := ReadToken;
     1166        if NextToken = 'in' then begin
     1167          Expect('in');
     1168          Location := ReadToken;
     1169        end else Location := Name + '.pas';
     1170        Module := SourceCode.ParentModule.ParentProgram.Modules.Search(Name);
     1171        if not Assigned(Module) then begin
     1172          if not ParseFile(Name) then begin
     1173            ErrorMessage(SUnitNotFound, [Name], -2);
     1174            SourceCode.Delete(SourceCode.Count - 1);
     1175          end;
     1176        end;
     1177      end;
     1178    end;
     1179    Expect(';');
     1180    Result := True;
     1181  end else Result := False;
    11721182end;
    11731183
  • trunk/Compiler/TranspascalCompiler.lpk

    r2 r3  
    1515      </Other>
    1616    </CompilerOptions>
     17    <Version Minor="1"/>
    1718    <Files Count="11">
    1819      <Item1>
  • trunk/Forms/UMainForm.pas

    r2 r3  
    150150  CompiledForm.Show;
    151151
    152   //TCoolDockManager(Container2.Panel.DockManager).DockStyle := dsTabs;
     152  TCoolDockManager(Container2.Panel.DockManager).DockStyle := dsTabs;
    153153
    154154  ProjectManager.Parent.Parent.Width := 200;
  • trunk/Transpascal.lpi

    r2 r3  
    2020      <StringTable ProductVersion=""/>
    2121    </VersionInfo>
     22    <BuildModes Count="1">
     23      <Item1 Name="default" Default="True"/>
     24    </BuildModes>
    2225    <PublishOptions>
    2326      <Version Value="2"/>
     
    5053      </Item5>
    5154    </RequiredPackages>
    52     <Units Count="79">
     55    <Units Count="81">
    5356      <Unit0>
    5457        <Filename Value="Transpascal.lpr"/>
     
    6871        <ResourceBaseClass Value="Form"/>
    6972        <UnitName Value="UMainForm"/>
    70         <EditorIndex Value="14"/>
    71         <WindowIndex Value="0"/>
    72         <TopLine Value="1"/>
    73         <CursorPos X="20" Y="11"/>
     73        <EditorIndex Value="2"/>
     74        <WindowIndex Value="0"/>
     75        <TopLine Value="82"/>
     76        <CursorPos X="1" Y="103"/>
    7477        <UsageCount Value="215"/>
    7578        <Loaded Value="True"/>
     
    143146        <CursorPos X="27" Y="86"/>
    144147        <UsageCount Value="31"/>
    145         <DefaultSyntaxHighlighter Value="Delphi"/>
    146148      </Unit9>
    147149      <Unit10>
     
    151153        <CursorPos X="7" Y="68"/>
    152154        <UsageCount Value="41"/>
    153         <DefaultSyntaxHighlighter Value="Delphi"/>
    154155      </Unit10>
    155156      <Unit11>
     
    159160        <CursorPos X="16" Y="146"/>
    160161        <UsageCount Value="41"/>
    161         <DefaultSyntaxHighlighter Value="Delphi"/>
    162162      </Unit11>
    163163      <Unit12>
     
    175175        <CursorPos X="3" Y="604"/>
    176176        <UsageCount Value="3"/>
    177         <DefaultSyntaxHighlighter Value="Delphi"/>
    178177      </Unit13>
    179178      <Unit14>
     
    189188        <IsPartOfProject Value="True"/>
    190189        <UnitName Value="UProject"/>
    191         <EditorIndex Value="15"/>
    192         <WindowIndex Value="0"/>
    193         <TopLine Value="68"/>
    194         <CursorPos X="12" Y="77"/>
    195         <FoldState Value=" TM HP215"/>
     190        <EditorIndex Value="7"/>
     191        <WindowIndex Value="0"/>
     192        <TopLine Value="4"/>
     193        <CursorPos X="25" Y="16"/>
    196194        <UsageCount Value="223"/>
    197195        <Loaded Value="True"/>
     
    204202        <CursorPos X="11" Y="30"/>
    205203        <UsageCount Value="4"/>
    206         <DefaultSyntaxHighlighter Value="Delphi"/>
    207204      </Unit16>
    208205      <Unit17>
     
    217214        <Filename Value="Compiler\UCompiler.pas"/>
    218215        <UnitName Value="UCompiler"/>
    219         <WindowIndex Value="0"/>
    220         <TopLine Value="55"/>
    221         <CursorPos X="15" Y="63"/>
     216        <IsVisibleTab Value="True"/>
     217        <EditorIndex Value="4"/>
     218        <WindowIndex Value="0"/>
     219        <TopLine Value="59"/>
     220        <CursorPos X="14" Y="68"/>
    222221        <UsageCount Value="102"/>
     222        <Loaded Value="True"/>
    223223      </Unit18>
    224224      <Unit19>
    225225        <Filename Value="Compiler\USourceCode.pas"/>
    226226        <UnitName Value="USourceCode"/>
    227         <IsVisibleTab Value="True"/>
    228227        <EditorIndex Value="0"/>
    229228        <WindowIndex Value="0"/>
    230229        <TopLine Value="1037"/>
    231         <CursorPos X="71" Y="1063"/>
     230        <CursorPos X="60" Y="1040"/>
    232231        <UsageCount Value="103"/>
    233232        <Loaded Value="True"/>
     
    236235        <Filename Value="Compiler\Analyze\UParser.pas"/>
    237236        <UnitName Value="UParser"/>
    238         <WindowIndex Value="0"/>
    239         <TopLine Value="295"/>
    240         <CursorPos X="1" Y="362"/>
     237        <EditorIndex Value="3"/>
     238        <WindowIndex Value="0"/>
     239        <TopLine Value="53"/>
     240        <CursorPos X="15" Y="66"/>
    241241        <UsageCount Value="102"/>
     242        <Loaded Value="True"/>
    242243      </Unit20>
    243244      <Unit21>
     
    317318        <CursorPos X="14" Y="329"/>
    318319        <UsageCount Value="17"/>
    319         <DefaultSyntaxHighlighter Value="Delphi"/>
    320320      </Unit27>
    321321      <Unit28>
     
    325325        <CursorPos X="1" Y="1769"/>
    326326        <UsageCount Value="17"/>
    327         <DefaultSyntaxHighlighter Value="Delphi"/>
    328327      </Unit28>
    329328      <Unit29>
     
    384383        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
    385384        <UnitName Value="UPascalParser"/>
    386         <WindowIndex Value="0"/>
    387         <TopLine Value="187"/>
    388         <CursorPos X="17" Y="246"/>
     385        <EditorIndex Value="5"/>
     386        <WindowIndex Value="0"/>
     387        <TopLine Value="878"/>
     388        <CursorPos X="3" Y="891"/>
    389389        <UsageCount Value="110"/>
     390        <Loaded Value="True"/>
    390391      </Unit35>
    391392      <Unit36>
     
    404405        <CursorPos X="27" Y="841"/>
    405406        <UsageCount Value="20"/>
    406         <DefaultSyntaxHighlighter Value="Delphi"/>
    407407      </Unit37>
    408408      <Unit38>
     
    413413        <CursorPos X="3" Y="69"/>
    414414        <UsageCount Value="4"/>
    415         <DefaultSyntaxHighlighter Value="Delphi"/>
    416415      </Unit38>
    417416      <Unit39>
     
    422421        <CursorPos X="3" Y="120"/>
    423422        <UsageCount Value="4"/>
    424         <DefaultSyntaxHighlighter Value="Delphi"/>
    425423      </Unit39>
    426424      <Unit40>
     
    430428        <CursorPos X="24" Y="11"/>
    431429        <UsageCount Value="4"/>
    432         <DefaultSyntaxHighlighter Value="Delphi"/>
    433430      </Unit40>
    434431      <Unit41>
     
    455452        <TopLine Value="1"/>
    456453        <CursorPos X="28" Y="22"/>
    457         <UsageCount Value="145"/>
     454        <UsageCount Value="149"/>
    458455        <DefaultSyntaxHighlighter Value="Delphi"/>
    459456      </Unit43>
     
    464461        <CursorPos X="5" Y="370"/>
    465462        <UsageCount Value="24"/>
    466         <DefaultSyntaxHighlighter Value="Delphi"/>
    467463      </Unit44>
    468464      <Unit45>
     
    473469        <CursorPos X="6" Y="16"/>
    474470        <UsageCount Value="3"/>
    475         <DefaultSyntaxHighlighter Value="Delphi"/>
    476471      </Unit45>
    477472      <Unit46>
     
    490485        <CursorPos X="14" Y="91"/>
    491486        <UsageCount Value="4"/>
    492         <DefaultSyntaxHighlighter Value="Delphi"/>
    493487      </Unit47>
    494488      <Unit48>
     
    497491        <TopLine Value="1"/>
    498492        <CursorPos X="1" Y="1"/>
    499         <UsageCount Value="45"/>
     493        <UsageCount Value="47"/>
    500494        <Loaded Value="True"/>
    501495        <DefaultSyntaxHighlighter Value="LFM"/>
    502496      </Unit48>
    503497      <Unit49>
    504         <Filename Value="..\..\..\..\..\..\..\usr\share\fpcsrc\packages\fcl-registry\src\registry.pp"/>
     498        <Filename Value="E:\usr\share\fpcsrc\packages\fcl-registry\src\registry.pp"/>
    505499        <UnitName Value="registry"/>
    506500        <WindowIndex Value="0"/>
     
    511505      </Unit49>
    512506      <Unit50>
    513         <Filename Value="..\..\..\..\..\..\..\usr\share\fpcsrc\packages\fcl-registry\src\regdef.inc"/>
     507        <Filename Value="E:\usr\share\fpcsrc\packages\fcl-registry\src\regdef.inc"/>
    514508        <WindowIndex Value="0"/>
    515509        <TopLine Value="1"/>
     
    519513      </Unit50>
    520514      <Unit51>
    521         <Filename Value="..\..\..\..\lazarus\trunk\lcl\interfaces\gtk2\gtk2widgetset.inc"/>
     515        <Filename Value="E:\lazarus\trunk\lcl\interfaces\gtk2\gtk2widgetset.inc"/>
    522516        <WindowIndex Value="0"/>
    523517        <TopLine Value="1377"/>
    524518        <CursorPos X="32" Y="1396"/>
    525519        <UsageCount Value="37"/>
     520        <DefaultSyntaxHighlighter Value="Delphi"/>
    526521      </Unit51>
    527522      <Unit52>
    528         <Filename Value="..\..\..\PascalClassLibrary\Generics\TemplateGenerics\List\GenericListInterface.tpl"/>
     523        <Filename Value="E:\PascalClassLibrary\Generics\TemplateGenerics\List\GenericListInterface.tpl"/>
    529524        <WindowIndex Value="0"/>
    530525        <TopLine Value="22"/>
     
    534529      </Unit52>
    535530      <Unit53>
    536         <Filename Value="..\..\..\PascalClassLibrary\Generics\TemplateGenerics\List\GenericListImplementation.tpl"/>
     531        <Filename Value="E:\PascalClassLibrary\Generics\TemplateGenerics\List\GenericListImplementation.tpl"/>
    537532        <WindowIndex Value="0"/>
    538533        <TopLine Value="171"/>
     
    542537      </Unit53>
    543538      <Unit54>
    544         <Filename Value="..\..\..\PascalClassLibrary\Generics\TemplateGenerics\Specialized\ListObject.pas"/>
     539        <Filename Value="E:\PascalClassLibrary\Generics\TemplateGenerics\Specialized\ListObject.pas"/>
    545540        <UnitName Value="ListObject"/>
    546541        <WindowIndex Value="0"/>
     
    548543        <CursorPos X="1" Y="74"/>
    549544        <UsageCount Value="11"/>
     545        <DefaultSyntaxHighlighter Value="Delphi"/>
    550546      </Unit54>
    551547      <Unit55>
    552         <Filename Value="..\..\..\..\lazarus\trunk\lcl\include\listitem.inc"/>
     548        <Filename Value="E:\lazarus\trunk\lcl\include\listitem.inc"/>
    553549        <WindowIndex Value="0"/>
    554550        <TopLine Value="525"/>
    555551        <CursorPos X="24" Y="548"/>
    556552        <UsageCount Value="9"/>
     553        <DefaultSyntaxHighlighter Value="Delphi"/>
    557554      </Unit55>
    558555      <Unit56>
    559         <Filename Value="..\..\..\PascalClassLibrary\Docking\CoolDocking\UCoolDocking.pas"/>
     556        <Filename Value="E:\PascalClassLibrary\Docking\CoolDocking\UCoolDocking.pas"/>
    560557        <UnitName Value="UCoolDocking"/>
    561558        <WindowIndex Value="0"/>
     
    563560        <CursorPos X="19" Y="828"/>
    564561        <UsageCount Value="10"/>
     562        <DefaultSyntaxHighlighter Value="Delphi"/>
    565563      </Unit56>
    566564      <Unit57>
    567         <Filename Value="..\..\..\..\..\..\..\usr\share\fpcsrc\2.4.0\rtl\unix\sysunixh.inc"/>
     565        <Filename Value="E:\usr\share\fpcsrc\2.4.0\rtl\unix\sysunixh.inc"/>
    568566        <WindowIndex Value="0"/>
    569567        <TopLine Value="15"/>
     
    573571      </Unit57>
    574572      <Unit58>
    575         <Filename Value="..\..\..\..\..\..\..\usr\share\fpcsrc\2.4.0\packages\fcl-registry\src\registry.pp"/>
     573        <Filename Value="E:\usr\share\fpcsrc\2.4.0\packages\fcl-registry\src\registry.pp"/>
    576574        <UnitName Value="registry"/>
    577575        <WindowIndex Value="0"/>
     
    582580      </Unit58>
    583581      <Unit59>
    584         <Filename Value="..\..\..\..\..\..\..\usr\share\fpcsrc\2.4.0\packages\fcl-registry\src\xregreg.inc"/>
     582        <Filename Value="E:\usr\share\fpcsrc\2.4.0\packages\fcl-registry\src\xregreg.inc"/>
    585583        <WindowIndex Value="0"/>
    586584        <TopLine Value="1"/>
     
    590588      </Unit59>
    591589      <Unit60>
    592         <Filename Value="..\..\..\..\..\..\..\usr\share\fpcsrc\2.4.0\rtl\objpas\sysutils\osutilsh.inc"/>
     590        <Filename Value="E:\usr\share\fpcsrc\2.4.0\rtl\objpas\sysutils\osutilsh.inc"/>
    593591        <WindowIndex Value="0"/>
    594592        <TopLine Value="22"/>
     
    598596      </Unit60>
    599597      <Unit61>
    600         <Filename Value="..\..\..\..\..\..\..\usr\share\fpcsrc\2.4.0\rtl\unix\sysutils.pp"/>
     598        <Filename Value="E:\usr\share\fpcsrc\2.4.0\rtl\unix\sysutils.pp"/>
    601599        <UnitName Value="sysutils"/>
    602600        <WindowIndex Value="0"/>
     
    607605      </Unit61>
    608606      <Unit62>
    609         <Filename Value="..\..\..\PascalClassLibrary\Generics\TemplateGenerics\Generic\ObjectListInterface.tpl"/>
     607        <Filename Value="E:\PascalClassLibrary\Generics\TemplateGenerics\Generic\ObjectListInterface.tpl"/>
    610608        <TopLine Value="1"/>
    611609        <CursorPos X="1" Y="13"/>
     
    614612      </Unit62>
    615613      <Unit63>
    616         <Filename Value="..\..\..\PascalClassLibrary\Generics\TemplateGenerics\Generic\ObjectListImplementation.tpl"/>
     614        <Filename Value="E:\PascalClassLibrary\Generics\TemplateGenerics\Generic\ObjectListImplementation.tpl"/>
    617615        <WindowIndex Value="0"/>
    618616        <TopLine Value="1"/>
     
    622620      </Unit63>
    623621      <Unit64>
    624         <Filename Value="..\..\..\PascalClassLibrary\Generics\TemplateGenerics\Generic\GenericObjectList.inc"/>
    625         <EditorIndex Value="3"/>
     622        <Filename Value="E:\PascalClassLibrary\Generics\TemplateGenerics\Generic\GenericObjectList.inc"/>
    626623        <WindowIndex Value="0"/>
    627624        <TopLine Value="1"/>
    628625        <CursorPos X="40" Y="13"/>
    629626        <UsageCount Value="19"/>
    630         <Loaded Value="True"/>
     627        <DefaultSyntaxHighlighter Value="Delphi"/>
    631628      </Unit64>
    632629      <Unit65>
     
    645642      </Unit66>
    646643      <Unit67>
    647         <Filename Value="..\..\..\PascalClassLibrary\Generics\TemplateGenerics\Generic\GenericList.inc"/>
    648         <EditorIndex Value="2"/>
     644        <Filename Value="E:\PascalClassLibrary\Generics\TemplateGenerics\Generic\GenericList.inc"/>
    649645        <WindowIndex Value="0"/>
    650646        <TopLine Value="24"/>
    651647        <CursorPos X="14" Y="43"/>
    652648        <UsageCount Value="10"/>
    653         <Loaded Value="True"/>
     649        <DefaultSyntaxHighlighter Value="Delphi"/>
    654650      </Unit67>
    655651      <Unit68>
    656         <Filename Value="..\..\..\PascalClassLibrary\Generics\TemplateGenerics\Generic\GenericDictionary.inc"/>
    657         <EditorIndex Value="1"/>
     652        <Filename Value="E:\PascalClassLibrary\Generics\TemplateGenerics\Generic\GenericDictionary.inc"/>
    658653        <WindowIndex Value="0"/>
    659654        <TopLine Value="69"/>
    660655        <CursorPos X="4" Y="41"/>
    661656        <UsageCount Value="10"/>
    662         <Loaded Value="True"/>
     657        <DefaultSyntaxHighlighter Value="Delphi"/>
    663658      </Unit68>
    664659      <Unit69>
    665         <Filename Value="..\..\..\PascalClassLibrary\Generics\TemplateGenerics\Generic\GenericQueue.inc"/>
    666         <EditorIndex Value="4"/>
     660        <Filename Value="E:\PascalClassLibrary\Generics\TemplateGenerics\Generic\GenericQueue.inc"/>
    667661        <WindowIndex Value="0"/>
    668662        <TopLine Value="1"/>
    669663        <CursorPos X="8" Y="30"/>
    670664        <UsageCount Value="10"/>
    671         <Loaded Value="True"/>
     665        <DefaultSyntaxHighlighter Value="Delphi"/>
    672666      </Unit69>
    673667      <Unit70>
    674         <Filename Value="..\..\..\PascalClassLibrary\Generics\TemplateGenerics\Generic\GenericSet.inc"/>
    675         <EditorIndex Value="5"/>
     668        <Filename Value="E:\PascalClassLibrary\Generics\TemplateGenerics\Generic\GenericSet.inc"/>
    676669        <WindowIndex Value="0"/>
    677670        <TopLine Value="12"/>
    678671        <CursorPos X="8" Y="28"/>
    679672        <UsageCount Value="10"/>
    680         <Loaded Value="True"/>
     673        <DefaultSyntaxHighlighter Value="Delphi"/>
    681674      </Unit70>
    682675      <Unit71>
    683         <Filename Value="..\..\..\PascalClassLibrary\Generics\TemplateGenerics\Generic\GenericStack.inc"/>
    684         <EditorIndex Value="6"/>
     676        <Filename Value="E:\PascalClassLibrary\Generics\TemplateGenerics\Generic\GenericStack.inc"/>
    685677        <WindowIndex Value="0"/>
    686678        <TopLine Value="31"/>
    687679        <CursorPos X="4" Y="42"/>
    688680        <UsageCount Value="10"/>
    689         <Loaded Value="True"/>
     681        <DefaultSyntaxHighlighter Value="Delphi"/>
    690682      </Unit71>
    691683      <Unit72>
    692         <Filename Value="..\..\..\PascalClassLibrary\Generics\TemplateGenerics\Generic\GenericTree.inc"/>
    693         <EditorIndex Value="7"/>
     684        <Filename Value="E:\PascalClassLibrary\Generics\TemplateGenerics\Generic\GenericTree.inc"/>
    694685        <WindowIndex Value="0"/>
    695686        <TopLine Value="27"/>
    696687        <CursorPos X="4" Y="47"/>
    697688        <UsageCount Value="10"/>
    698         <Loaded Value="True"/>
     689        <DefaultSyntaxHighlighter Value="Delphi"/>
    699690      </Unit72>
    700691      <Unit73>
    701         <Filename Value="..\..\..\PascalClassLibrary\Generics\TemplateGenerics\Specialized\SpecializedList.pas"/>
     692        <Filename Value="E:\PascalClassLibrary\Generics\TemplateGenerics\Specialized\SpecializedList.pas"/>
    702693        <UnitName Value="SpecializedList"/>
    703         <EditorIndex Value="8"/>
    704694        <WindowIndex Value="0"/>
    705695        <TopLine Value="166"/>
    706696        <CursorPos X="6" Y="203"/>
    707697        <UsageCount Value="10"/>
    708         <Loaded Value="True"/>
     698        <DefaultSyntaxHighlighter Value="Delphi"/>
    709699      </Unit73>
    710700      <Unit74>
    711         <Filename Value="..\..\..\PascalClassLibrary\Generics\TemplateGenerics\Specialized\SpecializedDictionary.pas"/>
     701        <Filename Value="E:\PascalClassLibrary\Generics\TemplateGenerics\Specialized\SpecializedDictionary.pas"/>
    712702        <UnitName Value="SpecializedDictionary"/>
    713         <EditorIndex Value="9"/>
    714703        <WindowIndex Value="0"/>
    715704        <TopLine Value="2"/>
    716705        <CursorPos X="6" Y="39"/>
    717706        <UsageCount Value="10"/>
    718         <Loaded Value="True"/>
     707        <DefaultSyntaxHighlighter Value="Delphi"/>
    719708      </Unit74>
    720709      <Unit75>
    721         <Filename Value="..\..\..\PascalClassLibrary\Generics\TemplateGenerics\Specialized\SpecializedStack.pas"/>
     710        <Filename Value="E:\PascalClassLibrary\Generics\TemplateGenerics\Specialized\SpecializedStack.pas"/>
    722711        <UnitName Value="SpecializedStack"/>
    723         <EditorIndex Value="10"/>
    724712        <WindowIndex Value="0"/>
    725713        <TopLine Value="21"/>
    726714        <CursorPos X="6" Y="57"/>
    727715        <UsageCount Value="10"/>
    728         <Loaded Value="True"/>
     716        <DefaultSyntaxHighlighter Value="Delphi"/>
    729717      </Unit75>
    730718      <Unit76>
    731         <Filename Value="..\..\..\PascalClassLibrary\Generics\TemplateGenerics\Specialized\SpecializedTree.pas"/>
     719        <Filename Value="E:\PascalClassLibrary\Generics\TemplateGenerics\Specialized\SpecializedTree.pas"/>
    732720        <UnitName Value="SpecializedTree"/>
    733         <EditorIndex Value="11"/>
    734721        <WindowIndex Value="0"/>
    735722        <TopLine Value="46"/>
    736723        <CursorPos X="6" Y="83"/>
    737724        <UsageCount Value="10"/>
    738         <Loaded Value="True"/>
     725        <DefaultSyntaxHighlighter Value="Delphi"/>
    739726      </Unit76>
    740727      <Unit77>
    741         <Filename Value="..\..\..\PascalClassLibrary\Generics\TemplateGenerics\Specialized\SpecializedQueue.pas"/>
     728        <Filename Value="E:\PascalClassLibrary\Generics\TemplateGenerics\Specialized\SpecializedQueue.pas"/>
    742729        <UnitName Value="SpecializedQueue"/>
    743         <EditorIndex Value="12"/>
    744730        <WindowIndex Value="0"/>
    745731        <TopLine Value="41"/>
    746732        <CursorPos X="6" Y="78"/>
    747733        <UsageCount Value="10"/>
    748         <Loaded Value="True"/>
     734        <DefaultSyntaxHighlighter Value="Delphi"/>
    749735      </Unit77>
    750736      <Unit78>
    751         <Filename Value="..\..\..\PascalClassLibrary\Generics\TemplateGenerics\Specialized\SpecializedSet.pas"/>
     737        <Filename Value="E:\PascalClassLibrary\Generics\TemplateGenerics\Specialized\SpecializedSet.pas"/>
    752738        <UnitName Value="SpecializedSet"/>
    753         <EditorIndex Value="13"/>
    754739        <WindowIndex Value="0"/>
    755740        <TopLine Value="21"/>
    756741        <CursorPos X="23" Y="32"/>
    757742        <UsageCount Value="10"/>
     743        <DefaultSyntaxHighlighter Value="Delphi"/>
     744      </Unit78>
     745      <Unit79>
     746        <Filename Value="E:\Projekty\PascalClassLibrary\Docking\CoolDocking\UCoolDockStyleTabs.pas"/>
     747        <UnitName Value="UCoolDockStyleTabs"/>
     748        <EditorIndex Value="1"/>
     749        <WindowIndex Value="0"/>
     750        <TopLine Value="1"/>
     751        <CursorPos X="44" Y="6"/>
     752        <UsageCount Value="12"/>
    758753        <Loaded Value="True"/>
    759       </Unit78>
     754      </Unit79>
     755      <Unit80>
     756        <Filename Value="E:\Programy\Lazarus\fpc\2.4.3\source\rtl\win32\system.pp"/>
     757        <UnitName Value="System"/>
     758        <EditorIndex Value="6"/>
     759        <WindowIndex Value="0"/>
     760        <TopLine Value="22"/>
     761        <CursorPos X="2" Y="35"/>
     762        <UsageCount Value="12"/>
     763        <Loaded Value="True"/>
     764      </Unit80>
    760765    </Units>
    761     <JumpHistory Count="30" HistoryIndex="28">
     766    <JumpHistory Count="30" HistoryIndex="29">
    762767      <Position1>
    763         <Filename Value="Compiler\USourceCode.pas"/>
    764         <Caret Line="63" Column="1" TopLine="44"/>
     768        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     769        <Caret Line="329" Column="19" TopLine="136"/>
    765770      </Position1>
    766771      <Position2>
    767         <Filename Value="Compiler\USourceCode.pas"/>
    768         <Caret Line="494" Column="34" TopLine="458"/>
     772        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     773        <Caret Line="20" Column="51" TopLine="7"/>
    769774      </Position2>
    770775      <Position3>
    771         <Filename Value="Compiler\USourceCode.pas"/>
    772         <Caret Line="478" Column="31" TopLine="460"/>
     776        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     777        <Caret Line="115" Column="37" TopLine="102"/>
    773778      </Position3>
    774779      <Position4>
    775         <Filename Value="Compiler\USourceCode.pas"/>
    776         <Caret Line="472" Column="42" TopLine="306"/>
     780        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     781        <Caret Line="20" Column="31" TopLine="7"/>
    777782      </Position4>
    778783      <Position5>
    779         <Filename Value="Compiler\USourceCode.pas"/>
    780         <Caret Line="468" Column="46" TopLine="460"/>
     784        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     785        <Caret Line="119" Column="44" TopLine="109"/>
    781786      </Position5>
    782787      <Position6>
    783         <Filename Value="Compiler\USourceCode.pas"/>
    784         <Caret Line="890" Column="36" TopLine="871"/>
     788        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     789        <Caret Line="330" Column="20" TopLine="319"/>
    785790      </Position6>
    786791      <Position7>
    787         <Filename Value="Compiler\USourceCode.pas"/>
    788         <Caret Line="917" Column="41" TopLine="898"/>
     792        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     793        <Caret Line="38" Column="13" TopLine="25"/>
    789794      </Position7>
    790795      <Position8>
    791         <Filename Value="Compiler\USourceCode.pas"/>
    792         <Caret Line="1051" Column="25" TopLine="1032"/>
     796        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     797        <Caret Line="697" Column="41" TopLine="697"/>
    793798      </Position8>
    794799      <Position9>
    795         <Filename Value="Forms\UMainForm.pas"/>
    796         <Caret Line="30" Column="51" TopLine="1"/>
     800        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     801        <Caret Line="38" Column="31" TopLine="37"/>
    797802      </Position9>
    798803      <Position10>
    799         <Filename Value="UProject.pas"/>
    800         <Caret Line="62" Column="58" TopLine="51"/>
     804        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     805        <Caret Line="720" Column="28" TopLine="697"/>
    801806      </Position10>
    802807      <Position11>
    803         <Filename Value="UProject.pas"/>
    804         <Caret Line="8" Column="22" TopLine="1"/>
     808        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     809        <Caret Line="471" Column="18" TopLine="462"/>
    805810      </Position11>
    806811      <Position12>
    807         <Filename Value="UProject.pas"/>
    808         <Caret Line="78" Column="1" TopLine="62"/>
     812        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     813        <Caret Line="472" Column="22" TopLine="459"/>
    809814      </Position12>
    810815      <Position13>
    811         <Filename Value="UProject.pas"/>
    812         <Caret Line="10" Column="67" TopLine="1"/>
     816        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     817        <Caret Line="508" Column="31" TopLine="497"/>
    813818      </Position13>
    814819      <Position14>
    815         <Filename Value="UProject.pas"/>
    816         <Caret Line="4" Column="8" TopLine="1"/>
     820        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     821        <Caret Line="312" Column="62" TopLine="298"/>
    817822      </Position14>
    818823      <Position15>
    819         <Filename Value="Compiler\USourceCode.pas"/>
    820         <Caret Line="192" Column="74" TopLine="177"/>
     824        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     825        <Caret Line="322" Column="17" TopLine="307"/>
    821826      </Position15>
    822827      <Position16>
    823         <Filename Value="Compiler\USourceCode.pas"/>
    824         <Caret Line="62" Column="43" TopLine="47"/>
     828        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     829        <Caret Line="34" Column="53" TopLine="21"/>
    825830      </Position16>
    826831      <Position17>
    827         <Filename Value="..\..\..\PascalClassLibrary\Generics\TemplateGenerics\Specialized\SpecializedList.pas"/>
    828         <Caret Line="20" Column="6" TopLine="1"/>
     832        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     833        <Caret Line="317" Column="19" TopLine="304"/>
    829834      </Position17>
    830835      <Position18>
    831         <Filename Value="Compiler\USourceCode.pas"/>
    832         <Caret Line="66" Column="4" TopLine="47"/>
     836        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     837        <Caret Line="491" Column="50" TopLine="491"/>
    833838      </Position18>
    834839      <Position19>
    835         <Filename Value="Compiler\USourceCode.pas"/>
    836         <Caret Line="36" Column="38" TopLine="23"/>
     840        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     841        <Caret Line="498" Column="23" TopLine="492"/>
    837842      </Position19>
    838843      <Position20>
    839         <Filename Value="Compiler\USourceCode.pas"/>
    840         <Caret Line="241" Column="6" TopLine="222"/>
     844        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     845        <Caret Line="466" Column="27" TopLine="453"/>
    841846      </Position20>
    842847      <Position21>
    843         <Filename Value="Compiler\USourceCode.pas"/>
    844         <Caret Line="273" Column="6" TopLine="254"/>
     848        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     849        <Caret Line="37" Column="63" TopLine="21"/>
    845850      </Position21>
    846851      <Position22>
    847         <Filename Value="Compiler\USourceCode.pas"/>
    848         <Caret Line="296" Column="8" TopLine="277"/>
     852        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     853        <Caret Line="680" Column="40" TopLine="680"/>
    849854      </Position22>
    850855      <Position23>
    851         <Filename Value="Compiler\USourceCode.pas"/>
    852         <Caret Line="315" Column="8" TopLine="296"/>
     856        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     857        <Caret Line="318" Column="18" TopLine="304"/>
    853858      </Position23>
    854859      <Position24>
    855         <Filename Value="Compiler\USourceCode.pas"/>
    856         <Caret Line="365" Column="8" TopLine="346"/>
     860        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     861        <Caret Line="692" Column="3" TopLine="676"/>
    857862      </Position24>
    858863      <Position25>
    859         <Filename Value="Compiler\USourceCode.pas"/>
    860         <Caret Line="388" Column="8" TopLine="369"/>
     864        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     865        <Caret Line="27" Column="66" TopLine="14"/>
    861866      </Position25>
    862867      <Position26>
    863         <Filename Value="Compiler\USourceCode.pas"/>
    864         <Caret Line="439" Column="8" TopLine="420"/>
     868        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     869        <Caret Line="8" Column="62" TopLine="4"/>
    865870      </Position26>
    866871      <Position27>
    867         <Filename Value="Compiler\USourceCode.pas"/>
    868         <Caret Line="468" Column="6" TopLine="449"/>
     872        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     873        <Caret Line="20" Column="26" TopLine="4"/>
    869874      </Position27>
    870875      <Position28>
    871         <Filename Value="Compiler\USourceCode.pas"/>
    872         <Caret Line="627" Column="35" TopLine="599"/>
     876        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     877        <Caret Line="3" Column="67" TopLine="1"/>
    873878      </Position28>
    874879      <Position29>
    875         <Filename Value="Compiler\USourceCode.pas"/>
    876         <Caret Line="730" Column="45" TopLine="711"/>
     880        <Filename Value="Compiler\Analyze\UPascalParser.pas"/>
     881        <Caret Line="27" Column="32" TopLine="14"/>
    877882      </Position29>
    878883      <Position30>
    879         <Filename Value="..\..\..\PascalClassLibrary\Generics\TemplateGenerics\Generic\GenericObjectList.inc"/>
    880         <Caret Line="13" Column="40" TopLine="1"/>
     884        <Filename Value="Compiler\UCompiler.pas"/>
     885        <Caret Line="82" Column="20" TopLine="70"/>
    881886      </Position30>
    882887    </JumpHistory>
     
    886891    <PathDelim Value="\"/>
    887892    <SearchPaths>
    888       <OtherUnitFiles Value="Forms\;Common\"/>
     893      <OtherUnitFiles Value="Forms;Common"/>
    889894      <UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
    890895    </SearchPaths>
     
    904909        <StackChecks Value="True"/>
    905910      </Checks>
    906       <VerifyObjMethodCallValidity Value="True"/>
    907911    </CodeGeneration>
    908912    <Linking>
     
    918922    </Linking>
    919923    <Other>
    920       <CompilerMessages>
    921         <IgnoredMessages idx5023="True" idx5024="True" idx5025="True" idx5028="True" idx5029="True" idx5031="True"/>
    922         <UseMsgFile Value="True"/>
    923       </CompilerMessages>
    924924      <CompilerPath Value="$(CompPath)"/>
    925925    </Other>
Note: See TracChangeset for help on using the changeset viewer.