diff options
author | Araq <rumpf_a@web.de> | 2012-09-13 08:46:24 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-09-13 08:46:24 +0200 |
commit | a783077cfde0f542c1cc155fde617b0ceb977b21 (patch) | |
tree | c39f054064849b12b6e9444d7582b2fac6a56cb7 /lib | |
parent | 23c3af80f60c1da49a1c979642e712358d960301 (diff) | |
download | Nim-a783077cfde0f542c1cc155fde617b0ceb977b21.tar.gz |
splitted echo into echo/debugEcho
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/system.nim | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/system.nim b/lib/system.nim index 100707687..911b134e2 100755 --- a/lib/system.nim +++ b/lib/system.nim @@ -1648,7 +1648,7 @@ else: proc add*(x: var cstring, y: cstring) {.magic: "AppendStrStr".} -proc echo*[T](x: varargs[T, `$`]) {.magic: "Echo", noSideEffect.} +proc echo*[T](x: varargs[T, `$`]) {.magic: "Echo".} ## special built-in that takes a variable number of arguments. Each argument ## is converted to a string via ``$``, so it works for user-defined ## types that have an overloaded ``$`` operator. @@ -1656,10 +1656,11 @@ proc echo*[T](x: varargs[T, `$`]) {.magic: "Echo", noSideEffect.} ## available for the ECMAScript target too. ## Unlike other IO operations this is guaranteed to be thread-safe as ## ``echo`` is very often used for debugging convenience. - ## - ## As a special semantic rule, ``echo`` pretends to be free of - ## side effects, so that it can be used for debugging routines marked as - ## ``noSideEffect``. + +proc debugEcho*[T](x: varargs[T, `$`]) {.magic: "Echo", noSideEffect.} + ## Same as ``echo``, but as a special semantic rule, ``debugEcho`` pretends + ## to be free of side effects, so that it can be used for debugging routines + ## marked as ``noSideEffect``. template newException*(exceptn: typeDesc, message: string): expr = ## creates an exception object of type ``exceptn`` and sets its ``msg`` field |