diff options
author | Araq <rumpf_a@web.de> | 2012-09-13 00:12:24 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-09-13 00:12:24 +0200 |
commit | 8c8400ea3aa8a785aa24127602de917c21c20ffb (patch) | |
tree | bc78ca4f77af56a74e009b641fcf64c32f45b29e | |
parent | eb72c7c0a0fb99d13b049de5aacb05673acc0754 (diff) | |
parent | 9e4254e4de8cecff5c0a8026930ae79b68ca7c61 (diff) | |
download | Nim-8c8400ea3aa8a785aa24127602de917c21c20ffb.tar.gz |
Merge branch 'master' of github.com:Araq/Nimrod
-rwxr-xr-x | compiler/evals.nim | 3 | ||||
-rw-r--r-- | tests/run/ttypetraits.nim | 16 | ||||
-rwxr-xr-x | tools/nimrepl.nim | 4 |
3 files changed, 18 insertions, 5 deletions
diff --git a/compiler/evals.nim b/compiler/evals.nim index bb0e5936d..3f801e123 100755 --- a/compiler/evals.nim +++ b/compiler/evals.nim @@ -864,8 +864,7 @@ proc evalTypeTrait*(n: PNode, context: PSym): PNode = ## XXX: This should be pretty much guaranteed to be true # by the type traits procs' signatures, but until the # code is more mature it doesn't hurt to be extra safe - internalAssert n.sons.len >= 2 and n.sons[1].kind == nkSym and - n.sons[1].sym.typ.kind == tyTypeDesc + internalAssert n.sons.len >= 2 and n.sons[1].kind == nkSym let typ = n.sons[1].sym.typ.skipTypes({tyTypeDesc}) case n.sons[0].sym.name.s.normalize diff --git a/tests/run/ttypetraits.nim b/tests/run/ttypetraits.nim index 5b683bef0..cba610871 100644 --- a/tests/run/ttypetraits.nim +++ b/tests/run/ttypetraits.nim @@ -1,10 +1,11 @@ discard """ msg: "int\nstring\nTBar[int]" - output: "int\nstring\nTBar[int]" + output: "int\nstring\nTBar[int]\nint\nrange 0..2" """ import typetraits +# simple case of type trait usage inside/outside of static blocks proc foo(x) = static: var t = type(x) @@ -22,3 +23,16 @@ foo 10 foo "test" foo bar +# generic params on user types work too +proc foo2[T](x: TBar[T]) = + echo T.name + +foo2 bar + +# less usual generic params on built-in types +var arr: array[0..2, int] = [1, 2, 3] + +proc foo3[R, T](x: array[R, T]) = + echo name(R) + +foo3 arr diff --git a/tools/nimrepl.nim b/tools/nimrepl.nim index c43a7101d..8e43b4431 100755 --- a/tools/nimrepl.nim +++ b/tools/nimrepl.nim @@ -63,7 +63,7 @@ proc FileSaveClicked(menuitem: PMenuItem, userdata: pgpointer) {.cdecl.} = error(w, "Unable to write to file") proc inputKeyPressed(widget: PWidget, event: PEventKey, - userdata: pgpointer): bool = + userdata: pgpointer): bool {.cdecl.} = if ($keyval_name(event.keyval)).tolower() == "shift_l": # SHIFT is pressed shiftPressed = True @@ -72,7 +72,7 @@ proc setError(msg: string) = outputTextBuffer.setText(msg, msg.len.gint) proc inputKeyReleased(widget: PWidget, event: PEventKey, - userdata: pgpointer): bool = + userdata: pgpointer): bool {.cdecl.} = #echo(keyval_name(event.keyval)) if ($keyval_name(event.keyval)).tolower() == "shift_l": # SHIFT is released |