summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorVeladus <veladus@web.de>2017-12-11 21:49:28 +0100
committerVeladus <veladus@web.de>2017-12-11 21:49:28 +0100
commit15f72d0cf1390971e047f22dabf7a9e5b24fd85b (patch)
tree62449933045d7b0768e9951feb86b9bd340563b7 /lib
parenta15ddf4013c5157e7532c71aa2045e07947782fb (diff)
downloadNim-15f72d0cf1390971e047f22dabf7a9e5b24fd85b.tar.gz
Now analyzes over magics instead of symbol names; but dosn't compile for me
Diffstat (limited to 'lib')
-rw-r--r--lib/system.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system.nim b/lib/system.nim
index b9f01c306..ca17f70f6 100644
--- a/lib/system.nim
+++ b/lib/system.nim
@@ -463,7 +463,7 @@ type
     line*: int          ## line number of the proc that is currently executing
     filename*: cstring  ## filename of the proc that is currently executing
 
-  Exception* {.compilerproc.} = object of RootObj ## \
+  Exception* {.compilerproc, magic: "Exception".} = object of RootObj ## \
     ## Base exception class.
     ##
     ## Each exception has to inherit from `Exception`. See the full `exception