summary refs log tree commit diff stats
path: root/compiler/vmdeps.nim
Commit message (Expand)AuthorAgeFilesLines
* Fix the return value of GetType and friends when given a `var T` type. (#7701)Varriount2018-04-271-1/+6
* introduce nkTupleConstr AST node for unary tuple construction; breaking changeAndreas Rumpf2018-04-131-1/+1
* preparations for language extensions: 'sink' and 'lent' typesAndreas Rumpf2018-01-071-1/+3
* modify getTypeImpl to reduce result to final implementation (#6891)jcosborn2017-12-091-3/+3
* fix getTypeInst for tyGenericInst (#6868)jcosborn2017-12-041-3/+6
* deprecated unary '<'Andreas Rumpf2017-10-291-3/+3
* implemented new experimental scriptable import mechanismAndreas Rumpf2017-10-011-44/+1
* first steps of making 'opt' a first class type for NimAndreas Rumpf2017-09-251-1/+1
* some work to make 'opt' a first class typeAndreas Rumpf2017-09-241-1/+2
* Corrected tuple type to nkPar for unnamed tuples on getType (#6172)Yuriy Glukhov2017-08-031-1/+2
* fixed macros.getTypeImpl for a symbol of type tyGenericBody (#5788) (#5812)jcosborn2017-05-141-1/+6
* support derived values in non-generic user type classesZahary Karadjov2017-03-241-4/+7
* introduce tyInferred for the unbound concept type paramsZahary Karadjov2017-03-241-0/+1
* fix getTypeImpl for tyEnum (#5568)jcosborn2017-03-191-1/+3
* Fix sigsegv in getTypeImpl for unnamed tuple (#5440)Fabian Keller2017-03-021-2/+7
* added system.gorgeEx that includes the exitCode; refs #4874; fixes #1994Araq2017-01-071-12/+12
* fixes #5131Araq2016-12-201-1/+1
* Merge branch 'devel' into sighashesAraq2016-12-131-4/+9
|\
| * macros.getType: do not copy symbols if not necessaryAraq2016-12-071-4/+9
* | removed tyArrayConstr completely from the compiler; introduced tyAlias instea...Araq2016-11-141-2/+2
|/
* Merge pull request #4945 from arnetheduck/cleanup-tyXxxAndreas Rumpf2016-10-241-4/+1
|\
| * clean up tyMutable remnantsJacek Sieka2016-10-241-2/+1
| * clean up tyConst remnantsJacek Sieka2016-10-241-2/+1
| * clean up tyBigNum remnantsJacek Sieka2016-10-241-2/+1
* | Merge pull request #4872 from flyx/gorgefixAndreas Rumpf2016-10-241-3/+6
|\ \ | |/ |/|
| * Fixes #4871Felix Krause2016-10-091-3/+6
* | remove remnants of tyIterJacek Sieka2016-10-241-1/+1
|/
* remove unused stuffJacek Sieka2016-08-091-4/+0
* fixes #4526Andreas Rumpf2016-08-041-7/+15
* compiler almost free of deprecated expr/stmt namesAndreas Rumpf2016-07-301-9/+9
* fixes #4371Andreas Rumpf2016-07-081-2/+3
* fixes #4395, getType still not entirely correctAndreas Rumpf2016-06-231-63/+67
* fixes #765Andreas Rumpf2016-05-311-2/+4
* cleanup of #4113Andreas Rumpf2016-05-281-3/+3
* getTypeInst and getTypeImpl mostly working now and added testJames Osborn2016-05-041-30/+113
* changed getTypeInst handling for distinct typesJames Osborn2016-05-041-5/+15
* added getTypeInst which includes generic parametersJames Osborn2016-05-041-10/+30
* Fixed lineinfo in getTypeYuriy Glukhov2015-12-251-8/+8
* staticExec: redirect stderr to stdout so stderr is returned tooAraq2015-08-161-2/+2
* staticExec now supports cachingAraq2015-07-151-10/+30
* protect against new stupid setlen that doesn't accept -1 anymoreAraq2015-06-251-1/+2
* concept types are represented with getType()fowlmouth2015-04-131-1/+3
* set type for symbols from getType()Billingsly Wetherfordshire2015-03-271-0/+1
* macros.getType() works properly for distinct typesAraq2015-03-161-2/+7
* tester reports ignored tests and supports 'nimout'; fixes #2211Araq2015-02-251-1/+2
* types API: now works for proc():voidAraq2015-02-241-1/+5
* implements a type API for macrosAraq2015-02-241-7/+118
* Fix a few more warningsdef2015-02-171-1/+1
* merged things from develAraq2014-09-121-1/+1
|\
| * Properly handle staticExec() generating large output.Reimer Behrends2014-09-101-1/+1
ass='alt'>
3350c34a ^
775f77c3 ^




ec32c11d ^

775f77c3 ^






ec32c11d ^
372367f5 ^
ec32c11d ^
372367f5 ^
775f77c3 ^


372367f5 ^
ec32c11d ^
372367f5 ^
775f77c3 ^


3350c34a ^
775f77c3 ^
3350c34a ^
775f77c3 ^

372367f5 ^
ec32c11d ^
372367f5 ^
775f77c3 ^





1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129