diff options
author | Simon Hafner <hafnersimon@gmail.com> | 2015-05-02 09:14:02 +0500 |
---|---|---|
committer | Simon Hafner <hafnersimon@gmail.com> | 2015-05-02 09:14:02 +0500 |
commit | 2522049ed2991cf9c8c8c7026646e16472125271 (patch) | |
tree | 6cc4136d044cd61a50420db8e21356f39bb469d7 | |
parent | 0ff5339590b0acde4c344af7799232ae2d44737f (diff) | |
download | Nim-2522049ed2991cf9c8c8c7026646e16472125271.tar.gz |
method arrives as symbol
-rw-r--r-- | compiler/nimsuggest/nimsuggest.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/nimsuggest/nimsuggest.nim b/compiler/nimsuggest/nimsuggest.nim index 636d14e7f..6975c87cc 100644 --- a/compiler/nimsuggest/nimsuggest.nim +++ b/compiler/nimsuggest/nimsuggest.nim @@ -249,7 +249,7 @@ proc serve() = let uid = message[1].getNum - cmd = parseIdeCmd(message[2].getStr) + cmd = parseIdeCmd(message[2].getSymbol) args = message[3] executeEPC(cmd, args) returnEPC(client, uid, sexp(results)) |