JS compilation works again

This commit is contained in:
Araq
2014-07-16 09:00:41 +02:00
parent e94203ac21
commit 4dc2925b7a
2 changed files with 2 additions and 3 deletions

View File

@@ -646,10 +646,10 @@ proc tenToThePowerOf(b: int): BiggestFloat =
result = 1.0
while true:
if (b and 1) == 1:
result *= a
result = result * a
b = b shr 1
if b == 0: break
a *= a
a = a * a
const
IdentChars = {'a'..'z', 'A'..'Z', '0'..'9', '_'}

View File

@@ -2,7 +2,6 @@ version 0.9.6
=============
- scopes are still broken for generic instantiation!
- integrate the new LL into the devel branch
- start experimental branch
- overloading of '='; general lift mechanism