diff options
-rw-r--r-- | compiler/semexprs.nim | 2 | ||||
-rw-r--r-- | doc/nimrodc.txt | 6 | ||||
-rw-r--r-- | web/index.txt | 1 | ||||
-rw-r--r-- | web/question.txt | 6 |
4 files changed, 2 insertions, 13 deletions
diff --git a/compiler/semexprs.nim b/compiler/semexprs.nim index 2b419e84a..ed8ebfbb9 100644 --- a/compiler/semexprs.nim +++ b/compiler/semexprs.nim @@ -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] diff --git a/doc/nimrodc.txt b/doc/nimrodc.txt index 179de3b04..7f77a50d2 100644 --- a/doc/nimrodc.txt +++ b/doc/nimrodc.txt @@ -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 - diff --git a/web/index.txt b/web/index.txt index 4a5ddeaca..ba56230f4 100644 --- a/web/index.txt +++ b/web/index.txt @@ -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 diff --git a/web/question.txt b/web/question.txt index ebdcc091c..7e93d2574 100644 --- a/web/question.txt +++ b/web/question.txt @@ -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? |