#FEATURE by cg
authorClaus Gittinger <cg@exept.de>
Mon, 19 Jun 2017 09:17:39 +0200
changeset 21835 9bdc9ff693ef
parent 21834 1fe471f18a2e
child 21836 ecb128dd5877
#FEATURE by cg class: Float changed: #ldexp:
Float.st
--- a/Float.st	Mon Jun 19 09:08:14 2017 +0200
+++ b/Float.st	Mon Jun 19 09:17:39 2017 +0200
@@ -1747,21 +1747,14 @@
     }
 #endif
 %}.
-    "
-     an invalid argument
-    "
-    ^ self class
-        raise:#domainErrorSignal
-        receiver:self
-        selector:#ldexp:
-        arguments:{exp}
-        errorString:'bad receiver/arg in ldexp'
+    ^ super ldexp:exp
 
     "
      1.0 ldexp:16
     "
 
     "Created: / 19-06-2017 / 01:42:22 / cg"
+    "Modified: / 19-06-2017 / 09:16:32 / cg"
 !
 
 ln