diff options
author | Jake Leahy <jake@leahy.dev> | 2023-07-10 16:34:10 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-10 08:34:10 +0200 |
commit | 1b132ddaa2734fc43a9c172407fc968cfeec4a24 (patch) | |
tree | 6247aa5dda47642c3bad0e52ebff70f445ce8efe /nimsuggest/tests/t20265_2.nim | |
parent | 6ec10a4c9182c513fecd17fde4a81a3a007bb2e9 (diff) | |
download | Nim-1b132ddaa2734fc43a9c172407fc968cfeec4a24.tar.gz |
Fix nimsuggest not showing suggestions for imported tuples (#22241)
* Add tests Also test if exported all tuple fields works. This seems like a hacky solution so will try and dive further to find a better solution * Always suggest tuple fields if it passes the filter If the tuple we are accessing is in scope then all the fields will also be in scope * Update tests so line numbers are correct
Diffstat (limited to 'nimsuggest/tests/t20265_2.nim')
-rw-r--r-- | nimsuggest/tests/t20265_2.nim | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/nimsuggest/tests/t20265_2.nim b/nimsuggest/tests/t20265_2.nim new file mode 100644 index 000000000..33edf2d9a --- /dev/null +++ b/nimsuggest/tests/t20265_2.nim @@ -0,0 +1,8 @@ +discard """ +$nimsuggest --tester $file +>sug $1 +sug;;skField;;a;;int;;*module_20265.nim;;2;;2;;"";;100;;None +sug;;skField;;b;;int;;*module_20265.nim;;3;;2;;"";;100;;None +""" +import module_20265 +x.#[!]# |