Araq
0cac8d9b6f
made tests green again
2012-08-16 19:05:38 +02:00
Araq
0171566c98
openarray/varargs split; breaks bootstrapping
2012-08-16 08:34:33 +02:00
Araq
adb73ec9ed
Merge branch 'master' of github.com:Araq/Nimrod
2012-08-13 18:52:00 +02:00
Araq
244c14db0b
top level closures should work; transf is not a pass anymore; next steps for first class iterator support
2012-08-13 17:07:49 +02:00
Dominik Picheta
e9604b4433
UDP improvements for the sockets module. Renamed ftpclient.fileExists to
...
existsFile for consistency. Added tasyncudp test.
2012-08-12 11:53:09 +01:00
Araq
ce23b814a0
borrow works with generics
2012-08-06 18:11:03 +02:00
Araq
9222a8a0eb
made more tests green
2012-07-26 00:30:19 +02:00
Dominik Picheta
d640fe7af8
Added mycert.pem for the asynciossl test.
2012-07-24 22:49:54 +01:00
Dominik Picheta
5310a3044f
Many fixes for asynchronous sockets. Asyncio should now work well with buffered and unbuffered plain and ssl sockets. Added asyncio
...
test to the test suite.
2012-07-22 23:32:49 +01:00
Araq
39235e21f5
bugfixes for the symbol mangling; implements #129
2012-07-19 17:38:52 +02:00
Araq
e68830a952
improvements for 'bind', fixes #166
2012-07-18 17:21:10 +02:00
Araq
4f582da27f
make tests green again
2012-07-17 01:27:25 +02:00
Araq
8d99753d63
preparations for making 'closure' the default calling convention for proc types
2012-07-16 23:00:57 +02:00
Araq
56b4e3ad91
closures shouldn't leak anymore
2012-07-16 08:43:54 +02:00
Araq
8ce1c99d0d
work on closures continues; fixed #116
2012-07-13 00:50:56 +02:00
Araq
795afb0021
made tests green again
2012-07-09 00:54:46 +02:00
Araq
0b509127d2
documentation improvements; added system.gorge (for Araq's fun)
2012-06-22 08:30:55 +02:00
Araq
7b4560337b
bugfixes for closures
2012-06-21 08:46:56 +02:00
Araq
39137294a3
made some tests green again
2012-06-20 00:21:53 +02:00
Araq
e0092cfae6
Merge branch 'master' of github.com:Araq/Nimrod
2012-06-19 22:38:48 +02:00
Araq
f191059e56
somewhat working closures
2012-06-19 22:37:00 +02:00
Araq
d5b01dfb7c
next steps for full closure support
2012-06-18 02:03:08 +02:00
Araq
7076f07228
tinterf.nim works now
2012-06-17 02:11:13 +02:00
Araq
7b539c9e58
simple example works again
2012-06-16 18:29:22 +02:00
Araq
15dad22a0a
first implementation of new lambda lifting
2012-06-15 23:18:52 +02:00
Zahary Karadjov
bb850aafec
codegen for C++ exceptions
2012-06-03 20:37:56 +03:00
Zahary Karadjov
3ce400bb00
bugfix: finally blocks were not executed when the except block is exited by raise or return
2012-06-03 18:00:45 +03:00
Araq
04300542da
fixes #127
2012-05-30 22:37:17 +02:00
Araq
b5d8e8bfaa
'+=' etc for all floating point types
2012-05-29 00:42:28 +02:00
Araq
f3980eb24a
made tsequtils green again
2012-05-28 01:17:17 +02:00
Araq
15dd3a2251
fixes #109
2012-05-20 10:56:17 +02:00
Araq
85ac5f94f1
made tests green again
2012-05-11 00:11:17 +02:00
Araq
ccc4ed2c5a
added thexlit test
2012-05-09 23:59:12 +02:00
Zahary Karadjov
251c44ff04
implicit generics types as return types. removed the error message for capturing incorrect uses of `proc`
2012-04-21 03:24:32 +03:00
Zahary Karadjov
818787457d
grammar: the built-in type classes are now valid expressions
2012-04-18 19:50:32 +03:00
Araq
3d65c0a73f
attempt to make tests green
2012-04-17 22:39:37 +02:00
Araq
cb79bf9f16
compiler finally supports 'object {.pragma.}' syntax
2012-04-16 23:40:08 +02:00
Araq
17d67ab828
fixes #105
2012-04-16 16:31:15 +02:00
Araq
da9ff288d9
Merge branch 'master' of github.com:Araq/Nimrod
2012-04-15 10:02:35 +02:00
Araq
959e370ae9
@ is a sigil-like operator
2012-04-15 10:02:15 +02:00
Zahary Karadjov
1ba31f8df7
minor changes to make the test suite green again
2012-04-15 02:54:12 +03:00
Zahary Karadjov
238202ccbc
re-enable rodfiles tests; fixes #91
2012-04-11 01:52:12 +03:00
Zahary Karadjov
97ab16d46b
typetraits module and tests
2012-04-10 22:32:23 +03:00
Zahary Karadjov
a64f03230a
proper order of initialization for .global. variables
2012-04-10 20:53:44 +03:00
Zahary Karadjov
22dc76a361
typedesc and expr params
...
types are now valid proc/template/macro params and you can overload over them:
proc foo(T: typedesc) # accept any type
proc foo(T: typedesc{int}) # overload specifically for int
proc foo(T: typedesc{int or float or Callable}) # overload for any type matching the constraints
expr{type} is a param expecting compile time value of the designated type (or type class).
when typedesc or expr params are used with a proc, the proc will be instantiated once
for each unique type/value used as parameter.
2012-03-31 18:50:48 +03:00
Zahary Karadjov
bc2eb0ea9b
generic types can be used like type classes. distinct can be applied to type classes.
2012-03-25 20:55:21 +03:00
Zahary Karadjov
3a5cf3d63a
expr params implemented for procs; paving the way for type classes
2012-03-22 03:27:00 +02:00
Zahary Karadjov
a72fe16f9d
making tests green again
2012-03-20 14:44:23 +02:00
Zahary Karadjov
e43f8d842b
merged branch overloading-for-macros
2012-03-19 12:06:38 +02:00
Zahary Karadjov
72f2a6e275
the test suite is mostly green again
2012-03-16 05:33:21 +02:00