summary refs log tree commit diff stats
path: root/lib/system.nim
Commit message (Collapse)AuthorAgeFilesLines
* iterators check seqs/strings are not resized during iterationAraq2014-03-291-14/+18
|
* Adds example to likely/unlikely docstring. Refs #983.Grzegorz Adam Hankiewicz2014-03-131-4/+24
|
* EOS exception now contains the error code.Dominik Picheta2014-03-111-0/+1
|
* Use 'Natural' or 'Positive' instead of 'int' where applicable.EXetoC2014-03-071-6/+6
|
* create -> createU, create0 -> create.EXetoC2014-03-071-9/+9
|
* Use separate names for type-based allocation procs rather than overloading.EXetoC2014-03-071-20/+29
|
* Better names.EXetoC2014-03-071-2/+2
|
* Merge branch 'devel' into alloc-overloadsEXetoC2014-03-061-5/+10
|\
| * system.nim makes use of the 'unchecked' pragmaAraq2014-03-051-1/+4
| |
| * Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-02-251-2/+4
| |\ | | | | | | | | | | | | Conflicts: lib/system/jssys.nim
| | * Documents system.readAll() limitations. Refs #298.Grzegorz Adam Hankiewicz2014-02-201-2/+4
| | |
| * | renamed noStackFrame to asmNoStackFrameAraq2014-02-181-2/+2
| |/
* | Add missing cast.EXetoC2014-03-061-1/+1
| |
* | Add type-specific allocation procs.EXetoC2014-03-061-6/+51
|/
* 'discard' instead of 'nil' for system.nimAraq2014-02-021-19/+19
|
* disable internalError so that nimbuild compiles againAraq2014-01-251-1/+1
|
* fix the error "only proc headers can feature pragmas" when compiling in JS modeZahary Karadjov2014-01-231-32/+32
|
* resolved conflicts with masterAraq2014-01-181-2/+17
|\
| * Adds example to locals() docstring.Grzegorz Adam Hankiewicz2013-12-231-1/+17
| |
* | Clarifies system.lines() docstring.Grzegorz Adam Hankiewicz2014-01-151-4/+4
| | | | | | | | Amends c087f905134b249cf20cbabc4066fbfa62dd668a.
* | Adds docstrings to lines() iterators.Grzegorz Adam Hankiewicz2014-01-151-2/+24
| |
* | Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-01-131-11/+29
|\ \
| * | progress towards fixing tgenericshardcasesZahary Karadjov2014-01-061-1/+1
| | |
| * | add incl/excl for sets accepting accepting other setsZahary Karadjov2013-12-301-0/+8
| | |
| * | Merge branch 'upstream' into develZahary Karadjov2013-12-291-10/+20
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: compiler/ccgutils.nim compiler/msgs.nim compiler/sem.nim compiler/semexprs.nim compiler/seminst.nim compiler/semmagic.nim compiler/semstmts.nim compiler/semtypes.nim compiler/semtypinst.nim compiler/sigmatch.nim compiler/types.nim compiler/vmgen.nim lib/core/macros.nim lib/system.nim tests/reject/tenummix.nim web/news.txt
| | * | fixes #787Zahary Karadjov2013-12-281-9/+9
| | | |
| | * | documented static paramsZahary Karadjov2013-12-251-0/+10
| | | |
| | * | static params: expr[T] is now static[T]Zahary Karadjov2013-12-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This introduces tyStatic and successfully bootstraps and handles few simple test cases. Static params within macros are no longer treated as PNimrodNodes - they are now equivalent to constants of the designated type.
* | | | case consistency improvementsAraq2014-01-111-1/+1
|/ / /
* | | case consistency: next stepsAraq2013-12-291-1/+1
| | |
* | | improvements for 'pretty'Araq2013-12-281-4/+4
| | |
* | | case consistency part 6Araq2013-12-281-2/+2
| | |
* | | case consistency part 4Araq2013-12-271-37/+37
| | |
* | | case consistency part 3Araq2013-12-271-4/+3
| | |
* | | case consistency part 1Araq2013-12-271-10/+10
| | |
* | | vm: FFI improvementsAraq2013-12-231-2/+6
| |/ |/|
* | Merge pull request #759 from zielmicha/stdmsgAndreas Rumpf2013-12-201-9/+7
|\ \ | | | | | | Write tracebacks to stderr instead of stdout.
| * | Add stdmsg (an alias to either stdout or stderr).Michał Zieliński2013-12-171-9/+7
| |/
* / Mentions static alternatives to quit().Grzegorz Adam Hankiewicz2013-12-121-0/+4
|/
* Merge pull request #684 from gradha/pr_clarifies_docsAndreas Rumpf2013-11-301-8/+8
|\ | | | | Clarifies wording of newSeq proc docstrings.
| * Clarifies wording of newSeq proc docstrings.Grzegorz Adam Hankiewicz2013-11-221-8/+8
| |
* | removed 'system.eval'Araq2013-11-271-6/+7
| |
* | Merge branch 'master' of https://github.com/Araq/NimrodAraq2013-11-251-2/+2
|\|
| * Fixed definition of seqShallowFlag.Dominik Picheta2013-10-191-1/+1
| |
| * Fixed regression on ARM caused by the changed behaviour of noStackFrame in ↵Dominik Picheta2013-10-191-1/+1
| | | | | | | | commit ac474a28120.
* | fixed definition of culong on win64Araq2013-10-151-10/+14
|/
* some fixes for win64Araq2013-10-101-2/+7
|
* first version of the debug GC; doesn't work yetAraq2013-10-011-16/+5
|
* Merge pull request #580 from gradha/pr_adds_equality_for_arraysAraq2013-09-011-0/+6
|\ | | | | Adds equality comparison for arrays.
| * Adds equality comparison for arrays.Grzegorz Adam Hankiewicz2013-08-221-0/+6
| |