mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-23 17:19:25 +02:00
31 lines
665 B
ObjectPascal
31 lines
665 B
ObjectPascal
{
|
|
This file is part of the Pas2JS run time library.
|
|
Copyright (c) 2017 by Mattias Gaertner
|
|
|
|
See the file COPYING.FPC, included in this distribution,
|
|
for details about the copyright.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
**********************************************************************}
|
|
unit ObjPas;
|
|
|
|
{$mode objfpc}
|
|
|
|
interface
|
|
|
|
const
|
|
MinInt = -$10000000000000;
|
|
MaxInt = $fffffffffffff;
|
|
|
|
type
|
|
IntegerArray = array of Integer;
|
|
TIntegerArray = IntegerArray;
|
|
|
|
implementation
|
|
|
|
end.
|
|
|