diff options
Diffstat (limited to 'compiler/sem.nim')
-rwxr-xr-x | compiler/sem.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/sem.nim b/compiler/sem.nim index e27f20503..8afbe3c51 100755 --- a/compiler/sem.nim +++ b/compiler/sem.nim @@ -21,7 +21,7 @@ proc semPass*(): TPass type TExprFlag = enum - efAllowType, efLValue, efWantIterator, efInTypeof + efLValue, efWantIterator, efInTypeof TExprFlags = set[TExprFlag] proc semExpr(c: PContext, n: PNode, flags: TExprFlags = {}): PNode |