updated docs

This commit is contained in:
Araq
2013-05-19 03:32:37 +02:00
parent 38ed2373ab
commit f16ded879b
4 changed files with 2 additions and 13 deletions

View File

@@ -1284,7 +1284,7 @@ proc getMagicSym(magic: TMagic): PSym =
proc newAnonSym(kind: TSymKind, info: TLineInfo,
owner = getCurrOwner()): PSym =
result = newSym(kind, idAnon, owner, info)
result.flags = { sfGenSym }
result.flags = {sfGenSym}
proc semExpandToAst(c: PContext, n: PNode): PNode =
var macroCall = n[1]

View File

@@ -598,9 +598,3 @@ file. However, you can also run the code with `nodejs`:idx:\:
nimrod js -d:nodejs -r examples/hallo.nim
Known bugs
----------
* exception handling does not work

View File

@@ -101,4 +101,3 @@ Roadmap to 1.0
Version 0.9.x
* the symbol binding rules for templates will change
* a shared memory garbage collected heap will be provided
* the need for forward declarations may be removed

View File

@@ -62,11 +62,7 @@ How stable is Nimrod?
The compiler is in development and some important features are still missing.
However, the compiler is quite stable already: It is able to compile itself
and a substantial body of other code. Until version 1.0.0 is released,
incompatibilities with older versions of the compiler will be introduced. The
semantic details of overloading, macros/templates/generics and iterators
and their interactions are subject to change. Changes to the syntax
are also planned; gone will be the distinction between expressions and
statements.
minor incompatibilities with older versions of the compiler will be introduced.
How fast is Nimrod?