summary refs log tree commit diff stats
path: root/tests/caas/completion_dot_syntax_dirty.nim
diff options
context:
space:
mode:
authorGrzegorz Adam Hankiewicz <gradha@imap.cc>2013-06-14 20:01:57 +0200
committerGrzegorz Adam Hankiewicz <gradha@imap.cc>2013-07-02 12:28:22 +0200
commitf7f14081682a24cf110ed7acd907ab2e17834b97 (patch)
treefac65a0e7af938dd3cdd8b45e4b78bb88fa90efa /tests/caas/completion_dot_syntax_dirty.nim
parent0c18e053365f767366fa17823796930b3458e2a5 (diff)
downloadNim-f7f14081682a24cf110ed7acd907ab2e17834b97.tar.gz
Adds idetools --suggest test case. Refs #484.
1) There are too many suggestions for the given prefix.
2) The suggestions don't take into account the preceeding type.
3) trackDirty only works on caas mode.
Diffstat (limited to 'tests/caas/completion_dot_syntax_dirty.nim')
-rw-r--r--tests/caas/completion_dot_syntax_dirty.nim25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/caas/completion_dot_syntax_dirty.nim b/tests/caas/completion_dot_syntax_dirty.nim
new file mode 100644
index 000000000..6237c4e79
--- /dev/null
+++ b/tests/caas/completion_dot_syntax_dirty.nim
@@ -0,0 +1,25 @@
+import strutils
+
+# Verifies if the --suggestion switch differentiates types for dot notation.
+
+type
+  TDollar = distinct int
+  TEuro = distinct int
+
+proc echoRemainingDollars(amount: TDollar) =
+  echo "You have $1 dollars" % [$int(amount)]
+
+proc echoRemainingEuros(amount: TEuro) =
+  echo "You have $1 euros" % [$int(amount)]
+
+proc echoRemainingBugs() =
+  echo "You still have bugs"
+
+proc main =
+  var
+    d: TDollar
+    e: TEuro
+  d = TDollar(23)
+  e = TEuro(32)
+  d.echoRemainingDollars()
+  e.echoRemai