summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2013-03-16 09:45:39 -0700
committerAraq <rumpf_a@web.de>2013-03-16 09:45:39 -0700
commit5b7df8ed60ffc5c68c1485e7538e36c50142d0d0 (patch)
tree3aff7d96330f4f695b1af732588304d68f723bdb /lib
parentc445bd140aed6b731efb4b953f0f3768311cdf51 (diff)
parent129fcb327fb1900af0d9e55a668d7808344d29f3 (diff)
downloadNim-5b7df8ed60ffc5c68c1485e7538e36c50142d0d0.tar.gz
Merge pull request #359 from Tass/master
JS unwinding
Diffstat (limited to 'lib')
-rwxr-xr-xlib/system/jssys.nim1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/system/jssys.nim b/lib/system/jssys.nim
index 789e39d6d..1c43bfdc7 100755
--- a/lib/system/jssys.nim
+++ b/lib/system/jssys.nim
@@ -491,6 +491,7 @@ proc toU32(a: int): int32 {.noStackFrame, compilerproc.} =
 proc nimMin(a, b: int): int {.compilerproc.} = return if a <= b: a else: b
 proc nimMax(a, b: int): int {.compilerproc.} = return if a >= b: a else: b
 
+type NimString = string # hack for hti.nim
 include "system/hti"
 
 proc isFatPointer(ti: PNimType): bool =