summary refs log tree commit diff stats
path: root/compiler/sigmatch.nim
Commit message (Collapse)AuthorAgeFilesLines
* fixes #3305; error message will improve with later improvements for conceptsAraq2015-09-181-0/+3
|
* fixes #3329Araq2015-09-181-1/+1
|
* fixes #2599Araq2015-09-131-4/+1
|
* next steps in binding [] properlyAraq2015-09-131-0/+1
|
* first attempt to fix 'a[i]' handling in genericsAraq2015-09-121-0/+6
|
* compiler: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-1/+1
| | | | via OSX: find . -name '*.nim' -exec sed -i '' -E 's/[[:space:]]+$//' {} +
* extending metatype matching in sigmatch.nimPeter Mora2015-08-211-5/+60
|
* fix recently introduced regressionsAraq2015-07-221-5/+2
|
* fixes #3079, fixes #1146, fixes #2879Araq2015-07-221-2/+9
|
* varargs[untyped] actually worksAraq2015-07-021-1/+6
|
* fixes broken mergeAraq2015-07-021-1/+5
|
* implements varargs[untyped]; refs #2545; to be documentedAraq2015-07-021-6/+19
|
* fixes #2993Araq2015-07-011-6/+2
|
* Fixes #3022r-ku2015-06-301-1/+5
|
* fixes #2974Araq2015-06-251-0/+2
|
* renamed writeln to writeLine in compilerpatrick dw2015-06-191-6/+6
|
* string only matches for openarray not varargsBillingsly Wetherfordshire2015-06-011-4/+5
|
* made string compatible with openarray[char]Billingsly Wetherfordshire2015-06-011-0/+5
|
* Fix #2662: Don't convert subtype typedesc paramsAdam Strzelecki2015-05-131-1/+4
| | | | | | | | | | | | | There is no point to issue implicit HiddenStdConv encountering subtype of typedesc[Base] parameter on overload resolution, since this will anyway never reach codegen. This change effectively fixes compiler bug for: iterator it(T: typedesc[Base]) = ... for s in it(SubclassOfBase): ... Where HiddenStdConv triggered implicit instantiation of variable of type typedesc[Base] in for transform, that eventually fails at getUniqueType, that refuses to work for typedesc.
* fixes #2470, fixes #1354Araq2015-04-281-11/+4
|
* fixes #2577Araq2015-04-271-0/+1
|
* fixes regression: overloading by 'var'Araq2015-04-251-2/+3
|
* fixes #2600Araq2015-04-251-5/+5
|
* fixes #2505, fixes #1853, fixes #2522Araq2015-04-201-1/+3
|
* fixes #2481Araq2015-04-101-2/+5
|
* fixes #2500Araq2015-04-101-4/+6
|
* first implementation of overloading of '='; missing: rewriting let/var sectionsAraq2015-04-061-3/+6
|
* don't store the scope for routinesAraq2015-04-041-1/+2
|
* fixes #2397Araq2015-03-251-16/+22
|
* concept example from the manual now works againAraq2015-03-231-14/+4
|
* fixes #2266Araq2015-03-221-1/+3
|
* fixes #2221Araq2015-03-211-4/+17
|
* fixes #2304Araq2015-03-161-2/+6
|
* fixes #1809; implements overloading based on 'var T'Araq2015-03-141-15/+6
|
* fixes #2220; #2219; breaks #2022; for #2022 callsite needs to be usedAraq2015-03-101-39/+87
|
* fixes #1940; code breakage! stricter template evaluationAraq2015-03-071-1/+1
|
* fixes #2229Araq2015-03-051-145/+134
|
* some love for the testsuite; fixed regressionsAraq2015-03-011-2/+4
|
* fixes #2169Araq2015-02-281-2/+2
|
* added a commentAraq2015-02-261-2/+2
|
* fixes #2216Araq2015-02-261-2/+14
|
* tsigtypeop.nim works againAraq2015-02-251-2/+1
|
* fixes #2125Araq2015-02-181-6/+14
|
* Fix a few more warningsdef2015-02-171-1/+1
|
* Fix typosFederico Ceratto2015-02-151-8/+8
|
* fixes endless recursion with static type parametersAraq2015-02-141-2/+10
|
* Aporia compiles again (disabling thread analysis is horrible!)Araq2015-02-121-1/+2
|
* ordinary parameters can follow a varargs parameterAraq2015-02-121-8/+14
|
* cleaned up some testsAraq2015-02-101-1/+1
|
* fixes #1988Araq2015-01-311-5/+7
|