diff options
author | Araq <rumpf_a@web.de> | 2011-10-07 10:07:18 -0700 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-10-07 10:07:18 -0700 |
commit | fae8ea0cee55cf85a7d30d63d06c73ed3874fa89 (patch) | |
tree | 660df418fce1076c16cd7ab97574d0c6c12c6605 /compiler/ast.nim | |
parent | 130316751d88a93169304a19caf92308f115808c (diff) | |
parent | 4a444bf6dbf973faea020b1e82650e50eccf7d54 (diff) | |
download | Nim-fae8ea0cee55cf85a7d30d63d06c73ed3874fa89.tar.gz |
Merge pull request #58 from zah/getast-unittests
getAst operational. Unit testing library based on it.
Diffstat (limited to 'compiler/ast.nim')
-rwxr-xr-x | compiler/ast.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/ast.nim b/compiler/ast.nim index b33d99554..0d920b835 100755 --- a/compiler/ast.nim +++ b/compiler/ast.nim @@ -327,7 +327,7 @@ type TMagic* = enum # symbols that require compiler magic: mNone, mDefined, mDefinedInScope, mLow, mHigh, mSizeOf, mIs, mOf, mEcho, mShallowCopy, mSlurp, - mAstToYaml, mParseExprToAst, mParseStmtToAst, mExpandMacroToAst, + mAstToYaml, mParseExprToAst, mParseStmtToAst, mExpandToAst, mUnaryLt, mSucc, mPred, mInc, mDec, mOrd, mNew, mNewFinalize, mNewSeq, mLengthOpenArray, mLengthStr, mLengthArray, mLengthSeq, mIncl, mExcl, mCard, mChr, mGCref, @@ -369,7 +369,7 @@ type mCompileOption, mCompileOptionArg, mNLen, mNChild, mNSetChild, mNAdd, mNAddMultiple, mNDel, mNKind, mNIntVal, mNFloatVal, mNSymbol, mNIdent, mNGetType, mNStrVal, mNSetIntVal, - mNSetFloatVal, mNSetSymbol, mNSetIdent, mNSetType, mNSetStrVal, + mNSetFloatVal, mNSetSymbol, mNSetIdent, mNSetType, mNSetStrVal, mNLineInfo, mNNewNimNode, mNCopyNimNode, mNCopyNimTree, mStrToIdent, mIdentToStr, mEqIdent, mEqNimrodNode, mNHint, mNWarning, mNError, mGetTypeInfo |