Changeset 3799 for trunk/ProjectFortress/LibraryBuiltin
- Timestamp:
- 06/04/09 09:24:05 (6 months ago)
- Location:
- trunk/ProjectFortress/LibraryBuiltin
- Files:
-
- 2 modified
-
CompilerBuiltin.fsi (modified) (1 diff)
-
CompilerBuiltin.fss (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ProjectFortress/LibraryBuiltin/CompilerBuiltin.fsi
r3772 r3799 48 48 opr <(self, other:ZZ32) : Boolean 49 49 opr <=(self, other:ZZ32): Boolean 50 opr >(self, other:ZZ32): Boolean 50 51 opr =(self, other:ZZ32): Boolean 51 52 opr juxtaposition(self, other:ZZ32): ZZ32 -
trunk/ProjectFortress/LibraryBuiltin/CompilerBuiltin.fss
r3775 r3799 26 26 simpleIntArith.intLT => jIntLT, 27 27 simpleIntArith.intLE => jIntLE, 28 simpleIntArith.intGT => jIntGT, 28 29 simpleIntArith.intEQ => jIntEQ, 29 30 simpleIntArith.intNeg => jIntNeg, … … 61 62 opr <(self, other:ZZ32): Boolean = jIntLT(self,other) 62 63 opr <=(self, other:ZZ32): Boolean = jIntLE(self,other) 64 opr >(self, other:ZZ32): Boolean = jIntGT(self,other) 63 65 opr =(self, other:ZZ32): Boolean = jIntEQ(self,other) 64 66 opr juxtaposition(self, other:ZZ32): ZZ32 = jIntMul(self,other)

