diff options
Diffstat (limited to 'compiler/ast.nim')
-rw-r--r-- | compiler/ast.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/ast.nim b/compiler/ast.nim index 66fbe577c..d6fc5920e 100644 --- a/compiler/ast.nim +++ b/compiler/ast.nim @@ -736,7 +736,7 @@ type TLibKind* = enum libHeader, libDynamic - + TLib* = object # also misused for headers! kind*: TLibKind generated*: bool # needed for the backends: @@ -744,7 +744,7 @@ type name*: Rope path*: PNode # can be a string literal! - + CompilesId* = int ## id that is used for the caching logic within ## ``system.compiles``. See the seminst module. TInstantiation* = object @@ -1259,7 +1259,7 @@ proc assignType*(dest, src: PType) = # this fixes 'type TLock = TSysLock': if src.sym != nil: if dest.sym != nil: - dest.sym.flags = dest.sym.flags + src.sym.flags + dest.sym.flags = dest.sym.flags + (src.sym.flags-{sfExported}) if dest.sym.annex == nil: dest.sym.annex = src.sym.annex mergeLoc(dest.sym.loc, src.sym.loc) else: |