diff options
Diffstat (limited to 'compiler/ast.nim')
-rw-r--r-- | compiler/ast.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/ast.nim b/compiler/ast.nim index 27db97f0c..06041eaa7 100644 --- a/compiler/ast.nim +++ b/compiler/ast.nim @@ -228,7 +228,7 @@ type TNodeKinds* = set[TNodeKind] type - TSymFlag* = enum # already 38 flags! + TSymFlag* = enum # 39 flags! sfUsed, # read access of sym (for warnings) or simply used sfExported, # symbol is exported from module sfFromGeneric, # symbol is instantiation of a generic; this is needed @@ -284,6 +284,7 @@ type # variable is generated closure environment; requires early # destruction for --newruntime. sfTemplateParam # symbol is a template parameter + sfCursor # variable/field is a cursor, see RFC 177 for details TSymFlags* = set[TSymFlag] |