Skip to content

Commit

Permalink
Automate testing partial application across module-level declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
Viir committed Sep 27, 2024
1 parent 4b7c31e commit 37b883a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module ModuleA exposing (partially_applied_a)
module ModuleA exposing (..)


partially_applied_a =
Expand All @@ -7,3 +7,11 @@ partially_applied_a =

function_with_three_parameters param0 param1 param2 =
[ param0, param1, param0, param2, param1 ]


same_module_partially_applied_b =
partially_applied_a named_literal


named_literal =
71
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[11,71,11,41,71]
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ModuleA.same_module_partially_applied_b 41

0 comments on commit 37b883a

Please sign in to comment.