Changeset 77 for branches/Transpascal/Compiler/USourceCode.pas
- Timestamp:
- Oct 22, 2010, 9:22:55 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Transpascal/Compiler/USourceCode.pas
r76 r77 153 153 154 154 TType = class 155 System: Boolean;155 Internal: Boolean; 156 156 Parent: TTypeList; 157 157 Name: string; … … 259 259 end; 260 260 261 TFunctionType = (ftFunction, ftProcedure, ftConstructor, ftDestructor); 262 261 263 TFunction = class(TCommonBlock) 262 264 public 263 System: Boolean;264 HaveResult: Boolean;265 Internal: Boolean; 266 FunctionType: TFunctionType; 265 267 Parameters: TParameterList; 266 268 ResultType: TType; … … 769 771 while (I < UsedModules.Count) and (not Assigned(Result)) do begin 770 772 with TUsedModule(UsedModules[I]) do 773 if Assigned(Module) then 771 774 with Module do 772 775 Result := SearchType(AName, False);
Note:
See TracChangeset
for help on using the changeset viewer.