diff options
author | Zahary Karadjov <zahary@gmail.com> | 2014-03-06 21:57:35 +0200 |
---|---|---|
committer | Zahary Karadjov <zahary@gmail.com> | 2014-03-06 21:57:35 +0200 |
commit | 862c0ef83d7a85798df0474522dd4ba8cfcab674 (patch) | |
tree | e617065ce6bd6d72c278d7b22edbc5fcc5d86a58 /lib/core | |
parent | 5324c9ebba1aa21c893db03c1d56d3ce1b42f162 (diff) | |
download | Nim-862c0ef83d7a85798df0474522dd4ba8cfcab674.tar.gz |
split the inline and closure iterators into different symbol kinds for easier discrimination between them
Diffstat (limited to 'lib/core')
-rw-r--r-- | lib/core/macros.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/core/macros.nim b/lib/core/macros.nim index d14822974..db2bbc5a4 100644 --- a/lib/core/macros.nim +++ b/lib/core/macros.nim @@ -88,7 +88,7 @@ type nskUnknown, nskConditional, nskDynLib, nskParam, nskGenericParam, nskTemp, nskModule, nskType, nskVar, nskLet, nskConst, nskResult, - nskProc, nskMethod, nskIterator, + nskProc, nskMethod, nskIterator, nskClosureIterator, nskConverter, nskMacro, nskTemplate, nskField, nskEnumField, nskForVar, nskLabel, nskStub |