diff options
author | Araq <rumpf_a@web.de> | 2012-02-09 01:18:33 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-02-09 01:18:33 +0100 |
commit | 32b4192b3f0771af11e9d850046e5f3dd42a9a5f (patch) | |
tree | 4d9510ce8c0104f4b6aab97260674a0486729d21 /compiler | |
parent | 51850b546a0dbb260833070e5dcfb90abc1e8620 (diff) | |
download | Nim-32b4192b3f0771af11e9d850046e5f3dd42a9a5f.tar.gz |
version 0.8.14
Diffstat (limited to 'compiler')
-rwxr-xr-x | compiler/evals.nim | 2 | ||||
-rwxr-xr-x | compiler/nimrod.ini | 1 | ||||
-rwxr-xr-x | compiler/nversion.nim | 4 | ||||
-rwxr-xr-x | compiler/renderer.nim | 3 |
4 files changed, 7 insertions, 3 deletions
diff --git a/compiler/evals.nim b/compiler/evals.nim index cc223e13d..0c67503f1 100755 --- a/compiler/evals.nim +++ b/compiler/evals.nim @@ -337,7 +337,7 @@ proc evalVariable(c: PStackFrame, sym: PSym, flags: TEvalFlags): PNode = result = copyTree(result) if result != nil: return x = x.next - internalError(sym.info, "cannot eval " & sym.name.s) + #internalError(sym.info, "cannot eval " & sym.name.s) result = raiseCannotEval(nil, sym.info) #result = emptyNode diff --git a/compiler/nimrod.ini b/compiler/nimrod.ini index cb3a80a04..4016328ae 100755 --- a/compiler/nimrod.ini +++ b/compiler/nimrod.ini @@ -30,6 +30,7 @@ Files: "doc/*.txt" Files: "doc/*.html" Files: "doc/*.cfg" Files: "doc/*.pdf" +Files: "doc/*.ini" Start: "doc/overview.html" [Other] diff --git a/compiler/nversion.nim b/compiler/nversion.nim index 0ea5aa036..28b2850e7 100755 --- a/compiler/nversion.nim +++ b/compiler/nversion.nim @@ -15,8 +15,8 @@ const defaultAsmMarkerSymbol* = '!' VersionMajor* = 0 VersionMinor* = 8 - VersionPatch* = 13 + VersionPatch* = 14 VersionAsString* = $VersionMajor & "." & $VersionMinor & "." & $VersionPatch - RodFileVersion* = "1033" # modify this if the rod-format changes! + RodFileVersion* = "1209" # modify this if the rod-format changes! diff --git a/compiler/renderer.nim b/compiler/renderer.nim index dd62363e1..21cf175f5 100755 --- a/compiler/renderer.nim +++ b/compiler/renderer.nim @@ -955,6 +955,9 @@ proc gsub(g: var TSrcGen, n: PNode, c: TContext) = of nkProcDef: putWithSpace(g, tkProc, "proc") gproc(g, n) + of nkConverterDef: + putWithSpace(g, tkConverter, "converter") + gproc(g, n) of nkMethodDef: putWithSpace(g, tkMethod, "method") gproc(g, n) |