diff options
author | Araq <rumpf_a@web.de> | 2013-03-16 09:45:39 -0700 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2013-03-16 09:45:39 -0700 |
commit | 5b7df8ed60ffc5c68c1485e7538e36c50142d0d0 (patch) | |
tree | 3aff7d96330f4f695b1af732588304d68f723bdb /lib | |
parent | c445bd140aed6b731efb4b953f0f3768311cdf51 (diff) | |
parent | 129fcb327fb1900af0d9e55a668d7808344d29f3 (diff) | |
download | Nim-5b7df8ed60ffc5c68c1485e7538e36c50142d0d0.tar.gz |
Merge pull request #359 from Tass/master
JS unwinding
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/system/jssys.nim | 1 |
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 = |