mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-26 22:33:41 +02:00
20 lines
474 B
ObjectPascal
20 lines
474 B
ObjectPascal
unit Generics.Strings;
|
|
|
|
{$Mode Delphi}
|
|
|
|
interface
|
|
|
|
resourcestring
|
|
SArgumentOutOfRange = 'Argument out of range';
|
|
//SArgumentNilNode = 'Node is nil';
|
|
//SDuplicatesNotAllowed = 'Duplicates not allowed in dictionary';
|
|
//SCollectionInconsistency = 'Collection inconsistency';
|
|
//SCollectionDuplicate = 'Collection does not allow duplicates';
|
|
//SDictionaryKeyDoesNotExist = 'Dictionary key does not exist';
|
|
//SItemNotFound = 'Item not found';
|
|
|
|
implementation
|
|
|
|
end.
|
|
|