From f16ded879b61428043cc4f78ae117de591c9339b Mon Sep 17 00:00:00 2001 From: Araq Date: Sun, 19 May 2013 03:32:37 +0200 Subject: [PATCH] updated docs --- compiler/semexprs.nim | 2 +- doc/nimrodc.txt | 6 ------ web/index.txt | 1 - web/question.txt | 6 +----- 4 files changed, 2 insertions(+), 13 deletions(-) diff --git a/compiler/semexprs.nim b/compiler/semexprs.nim index 2b419e84ae..ed8ebfbb98 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 179de3b043..7f77a50d28 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 4a5ddeaca9..ba56230f43 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 ebdcc091c0..7e93d2574c 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?