diff options
author | def <dennis@felsin9.de> | 2015-03-12 13:16:47 +0100 |
---|---|---|
committer | def <dennis@felsin9.de> | 2015-03-12 13:16:47 +0100 |
commit | b72528d6352cb4d1708727d93e5147598a7a7bc7 (patch) | |
tree | c1ab471a195f1d7b964c260d92582afa5a274823 | |
parent | 3aad16e337a18861d76df24f8137d2dbe1144ac2 (diff) | |
download | Nim-b72528d6352cb4d1708727d93e5147598a7a7bc7.tar.gz |
Typeinfo for uints in javascript
-rw-r--r-- | compiler/jstypes.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/jstypes.nim b/compiler/jstypes.nim index 8b032c3ce..1288c854d 100644 --- a/compiler/jstypes.nim +++ b/compiler/jstypes.nim @@ -123,7 +123,7 @@ proc genTypeInfo(p: PProc, typ: PType): PRope = case t.kind of tyDistinct: result = genTypeInfo(p, typ.sons[0]) - of tyPointer, tyProc, tyBool, tyChar, tyCString, tyString, tyInt..tyFloat128: + of tyPointer, tyProc, tyBool, tyChar, tyCString, tyString, tyInt..tyUInt64: var s = ropef( "var $1 = {size: 0,kind: $2,base: null,node: null,finalizer: null};$n", [result, toRope(ord(t.kind))]) |