diff options
author | Saem Ghani <saemghani+github@gmail.com> | 2021-01-12 04:35:21 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-12 13:35:21 +0100 |
commit | bb3c6d079772f2724c051c3ff3ccba90960548e2 (patch) | |
tree | 6fe03e34878e504fe3a42329c0bcf59f3bafb129 /nimsuggest/tests/tcon1.nim | |
parent | e5ea3f0ccec5e4c80bae0aeb7efd17eb88b386a3 (diff) | |
download | Nim-bb3c6d079772f2724c051c3ff3ccba90960548e2.tar.gz |
fixes nim-lang/nimsuggest#103 con dot exprs (#16657)
- con calls for dot exprs now returns results - discovered an issue with dot expr results -- documented
Diffstat (limited to 'nimsuggest/tests/tcon1.nim')
-rw-r--r-- | nimsuggest/tests/tcon1.nim | 34 |
1 files changed, 32 insertions, 2 deletions
diff --git a/nimsuggest/tests/tcon1.nim b/nimsuggest/tests/tcon1.nim index 262dd5151..627e7f400 100644 --- a/nimsuggest/tests/tcon1.nim +++ b/nimsuggest/tests/tcon1.nim @@ -1,13 +1,43 @@ +## Test Invocation `con`text in various situations + +## various of this proc are used as the basis for these tests proc test(s: string; a: int) = discard + +## This overload should be used to ensure the lower airity `test` doesn't match +proc test(s: string; a: string, b: int) = discard + +## similar signature but different name to ensure `con` doesn't get greedy proc testB(a, b: string) = discard + +# with a param already specified test("hello here", #[!]#) + +# as first param testB(#[!]# +# dot expressions +"from behind".test(#[!]# + +# two params matched, so disqualify the lower airity `test` +# TODO: this doesn't work, because dot exprs, overloads, etc aren't currently +# handled by suggest.suggestCall. sigmatch.partialMatch by way of +# sigmatch.matchesAux. Doesn't use the operand before the dot as part of +# the formal parameters. Changing this is tricky because it's used by +# the proper compilation sem pass and that's a big change all in one go. +"and again".test("more", #[!]# + discard """ $nimsuggest --tester $file >con $1 -con;;skProc;;tcon1.test;;proc (s: string, a: int);;$file;;1;;5;;"";;100 +con;;skProc;;tcon1.test;;proc (s: string, a: int);;$file;;4;;5;;"";;100 +con;;skProc;;tcon1.test;;proc (s: string, a: string, b: int);;$file;;7;;5;;"";;100 >con $2 -con;;skProc;;tcon1.testB;;proc (a: string, b: string);;$file;;2;;5;;"";;100 +con;;skProc;;tcon1.testB;;proc (a: string, b: string);;$file;;10;;5;;"";;100 +>con $3 +con;;skProc;;tcon1.test;;proc (s: string, a: string, b: int);;$file;;7;;5;;"";;100 +con;;skProc;;tcon1.test;;proc (s: string, a: int);;$file;;4;;5;;"";;100 +>con $4 +con;;skProc;;tcon1.test;;proc (s: string, a: int);;$file;;4;;5;;"";;100 +con;;skProc;;tcon1.test;;proc (s: string, a: string, b: int);;$file;;7;;5;;"";;100 """ |