summary refs log tree commit diff stats
path: root/compiler/semcall.nim
Commit message (Collapse)AuthorAgeFilesLines
* Update all the default parameters after an instantiation (#8689)LemonBoy2018-08-201-6/+5
| | | | | | The old implementation relied on the (now?) wrong assumption that default-valued parameters can only be placed after the required ones. Fixes #8683
* WIP: disallow 'nil' for strings and seqsAndreas Rumpf2018-08-131-3/+3
|
* Try conversion to static[T] in generic instantation (#8443)LemonBoy2018-07-301-1/+9
| | | Fixes #8439
* allow referencing other parameters in default parameter valuesZahary Karadjov2018-06-161-1/+3
| | | | | | | | fix #7756 fix #1201 fix #7000 fix #3002 fix #1046
* fixes #7222; fixes #5595; fixes #3747Zahary Karadjov2018-06-161-4/+19
| | | | | | | | | | * late instantiation for the generic procs' default param values * automatic mixin behaviour in concepts Other fixes: * don't render the automatically inserted default params in calls * better rendering of tyFromExpr
* refactoring: remove idents.legacy global variable and pass the IdentCache ↵Andreas Rumpf2018-05-271-5/+5
| | | | around explicitly
* Merge branch 'devel' into araq-big-refactoringAndreas Rumpf2018-05-271-0/+1
|\
| * fix #7883; fix #7829Zahary Karadjov2018-05-261-0/+1
| |
* | remove more global variables in the Nim compilerAndreas Rumpf2018-05-271-2/+2
| |
* | make tests green againAndreas Rumpf2018-05-181-2/+3
|/
* make tests green againAraq2018-05-141-2/+2
|
* more modules compile againAndreas Rumpf2018-05-121-26/+33
|
* sigmatch: speed it upAndreas Rumpf2018-04-281-17/+18
|
* minor speedup: concept tests still greenAndreas Rumpf2018-04-281-3/+4
|
* stuff that is greenAndreas Rumpf2018-04-281-15/+18
|
* .experimental can now be used to enable specific featuresAndreas Rumpf2018-04-241-1/+1
|
* revert the error messageAraq2018-04-061-1/+1
|
* improve compiler error messageAraq2018-04-061-1/+1
|
* fixes #7335Araq2018-03-181-3/+3
|
* make concept tests green againAndreas Rumpf2018-02-271-1/+1
|
* improve the error message for #4659; closes #4659Andreas Rumpf2018-02-251-9/+12
|
* improve the error message for mutability problemsAraq2018-02-171-1/+7
|
* fixes #6186Andreas Rumpf2018-02-111-2/+16
|
* better error messages: use <T1, T2> instead of (T1, T2) in order to prevent ↵Araq2018-02-101-4/+4
| | | | confusions with tuple types
* improve error message for twrongcolonAndreas Rumpf2018-02-061-2/+2
|
* improve the error messages regarding type mismatches in overloading resolutionAndreas Rumpf2018-02-041-2/+16
|
* preparations for language extensions: 'sink' and 'lent' typesAndreas Rumpf2018-01-071-1/+1
|
* make tests green againAraq2017-12-011-2/+0
|
* improve the error messages when overloaded '.' operators are involvedAraq2017-11-301-1/+3
|
* language change: change how the experimental dot operators workAndreas Rumpf2017-11-291-5/+4
|
* made nimresolve part of the compilerAndreas Rumpf2017-10-291-1/+1
|
* deprecated unary '<'Andreas Rumpf2017-10-291-2/+2
|
* preparations for another bugfixAndreas Rumpf2017-10-191-0/+4
|
* first implementation of the 'func' keywordAndreas Rumpf2017-09-231-1/+1
|
* fix #1017; fix #3309Zahary Karadjov2017-06-201-1/+2
|
* improve confusing error messages for failed overloading resolution when ↵Araq2017-05-311-1/+7
| | | | deref of first arg failed
* doh, forgot to add all files in the previous commitZahary Karadjov2017-05-121-1/+1
|
* fixes #5638Araq2017-04-041-3/+1
|
* revert PR #5638 because it breaks codeAraq2017-04-041-2/+2
|
* Fixed issue #5638 (#5639)Anatoly Galiulin2017-04-011-0/+1
|
* make all tests green againZahary Karadjov2017-03-311-1/+1
| | | | | | properly disabling the extra diagnostics in semCompiles proved to be too much work. I have some plans for further improving the error messages in the future and I'll revisit this later.
* requested code review changesZahary Karadjov2017-03-291-12/+18
|
* carefully reviewed and merged the changes from the devel branchZahary Karadjov2017-03-241-61/+75
|
* further improvements to the error messages produced by conceptsZahary Karadjov2017-03-241-3/+3
|
* proper error reporting for concepts and the introduction of the {.explain.} ↵Zahary Karadjov2017-03-241-108/+113
| | | | pragma
* kill the reportConceptFailures options as it will be replaced by the ↵Zahary Karadjov2017-03-241-5/+2
| | | | .explain. pragma
* fixes a potential endless loopAndreas Rumpf2017-03-201-1/+1
|
* Fixes #5167 and related problems (#5475)zah2017-03-121-0/+1
| | | | | | | | | This commit returns to a bit less strict checking of the number of macro arguments, because some old immediate macros rely on a behavior where even the arity of the macro is not being checked. It may be better if such macros are just declared to use varargs[expr], but this remains for another day.
* fixes #5430Araq2017-02-261-1/+1
|
* big compiler refactoring; avoid globals for multi method dispatcher generationAndreas Rumpf2017-02-221-2/+2
|