diff options
author | Eduardo Julian | 2018-07-11 21:45:38 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-07-11 21:45:38 -0400 |
commit | f76922dfef6e88db854a27dc17987ccdc9736d6a (patch) | |
tree | 5c3dc4b67b6bddcbb31152ae2ace4baf9c5a3fe3 /new-luxc/source/luxc/lang/translation/php | |
parent | 0097e306a1e3b53e4cda304aac82b8778036eddf (diff) |
- Removed stale machinery for "lux int min" and "lux int max".
Diffstat (limited to '')
-rw-r--r-- | new-luxc/source/luxc/lang/translation/php/procedure/common.jvm.lux | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/new-luxc/source/luxc/lang/translation/php/procedure/common.jvm.lux b/new-luxc/source/luxc/lang/translation/php/procedure/common.jvm.lux index 8f11d98a3..3f9825737 100644 --- a/new-luxc/source/luxc/lang/translation/php/procedure/common.jvm.lux +++ b/new-luxc/source/luxc/lang/translation/php/procedure/common.jvm.lux @@ -227,15 +227,6 @@ ## [frac//max Double::MAX_VALUE _.float] ## ) -(do-template [<name> <expression>] - [(def: (<name> _) - Nullary - <expression>)] - - [int//min (|> (_.int -2) (_.** (_.int 63)))] - [int//max (|> (_.int 2) (_.** (_.int 63)) (_.- (_.int 1)))] - ) - (do-template [<name> <op>] [(def: (<name> [subjectO paramO]) Binary @@ -286,8 +277,6 @@ (install "%" (binary int//%)) (install "=" (binary int//=)) (install "<" (binary int//<)) - (install "min" (nullary int//min)) - (install "max" (nullary int//max)) (install "to-frac" (unary _.floatval/1))))) ## (def: frac-procs |