From 78346c25878bd1555697ee0a4ccdb9c9d5f8238f Mon Sep 17 00:00:00 2001 From: Araq Date: Fri, 14 Nov 2014 01:39:53 +0100 Subject: [PATCH] astToStr is a special magic --- compiler/ast.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/ast.nim b/compiler/ast.nim index db6003b874..4f0b47b851 100644 --- a/compiler/ast.nim +++ b/compiler/ast.nim @@ -610,7 +610,7 @@ const # thus cannot be overloaded (also documented in the spec!): SpecialSemMagics* = { mDefined, mDefinedInScope, mCompiles, mLow, mHigh, mSizeOf, mIs, mOf, - mEcho, mShallowCopy, mExpandToAst, mParallel, mSpawn} + mEcho, mShallowCopy, mExpandToAst, mParallel, mSpawn, mAstToStr} type PNode* = ref TNode