发布于 2017-05-19 06:00:15 | 122 次阅读 | 评论: 0 | 来源: 网友投递
Nim 命令式编程语言
Nimrod (已改名为 Nim)是一个新型的静态类型、命令式编程语言,支持过程式、函数式、面向对象和泛型编程风格而保持简单和高效。Nimrod从Lisp继承来的一个特殊特性--抽象语法树(AST)作为语言规范的一部分,可以用作创建领域特定语言的强大宏系统。
Nim 0.17.0 发布了,Nim 是一种专注于性能,可移植性和表现力的系统编程语言。
此版本修复了 0.16.0 版本中最重要的回归,特别是内存管理器和通道错误已经修复。
语言方面也有很多重大改进,特别是在概念(concepts)方面投入大量的工作。请查看下面的更改日志,获取全面的更改列表。
影响向后兼容性的变更:
There are now two different HTTP response types, Response
and AsyncResponse
. AsyncResponse
’s body
accessor returns a Future[string]
!
Due to this change you may need to add another await
in your code.
httpclient.request
now respects the maxRedirects
option. Previously redirects were handled only by get
and post
procs.
The IO routines now raise EOFError
for the “end of file” condition. EOFError
is a subtype of IOError
and so it’s easier to distinguish between “error during read” and “error due to EOF”.
A hash procedure has been added for cstring
type in hashes
module. Previously, hash of a cstring
would be calculated as a hash of the pointer. Now the hash is calculated from the contents of the string, assumingcstring
is a null-terminated string. Equal string
and cstring
values produce an equal hash value.
Macros accepting varargs
arguments will now receive a node having the nkArgList
node kind. Previous code expecting the node kind to be nkBracket
may have to be updated.
memfiles.open
now closes file handles/fds by default. Passing allowRemap=true
to memfiles.open
recovers the old behavior. The old behavior is only needed to call mapMem
on the resulting MemFile
.
posix.nim
: For better C++ interop the field sa_sigaction*: proc (x: cint, y: var SigInfo, z: pointer) {.noconv.}
was changed to sa_sigaction*: proc (x: cint, y: ptr SigInfo, z: pointer) {.noconv.}
.
The compiler doesn’t infer effects for .base
methods anymore. This means you need to annotate them with .gcsafe
or similar to clearly declare upfront every implementation needs to fullfill these contracts.
system.getAst templateCall(x, y)
now typechecks the templateCall
properly. You need to patch your code accordingly.
macros.getType
and macros.getTypeImpl
for an enum will now return an AST that is the same as what is used to define an enum. Previously the AST returned had a repeated EnumTy
node and was missing the initial pragma node (which is currently empty for an enum).
macros.getTypeImpl
now correctly returns the implementation for a symbol of type tyGenericBody
.
If the dispatcher parameter’s value used in multi method is nil
, a NilError
exception is raised. The old behavior was that the method would be a nop
then.
posix.nim
: the family of ntohs
procs now takes unsigned integers instead of signed integers.
In Nim identifiers en-dash (Unicode point U+2013) is not an alias for the underscore anymore. Use underscores instead.
When the requiresInit
pragma is applied to a record type, future versions of Nim will also require you to initialize all the fields of the type during object construction. For now, only a warning will be produced.
The Object construction syntax now performs a number of additional safety checks. When fields within case objects are initialiazed, the compiler will now demand that the respective discriminator field has a matching known compile-time value.
On posix, the results of waitForExit
, peekExitCode
, execCmd
will return 128 + signal number if the application terminates via signal.
ospaths.getConfigDir
now conforms to the XDG Base Directory specification on non-Windows OSs. It returns the value of the XDG_CONFIG_DIR
environment variable if it is set, and returns the default configuration directory, “~/.config/”, otherwise.
Renamed the line info node parameter for newNimNode
procedure.
The parsing rules of do
changed.
foo bar do: baz
Used to be parsed as:
foo(bar(do: baz))
Now it is parsed as:
foo(bar, do: baz)
详情请参阅发布主页。
下载地址