-
-
Notifications
You must be signed in to change notification settings - Fork 410
3944 extend the properties api to better support nested configuration #3952
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
soulomoon
merged 43 commits into
master
from
3944-extend-the-properties-api-to-better-support-nested-configuration
May 18, 2024
Merged
Changes from 32 commits
Commits
Show all changes
43 commits
Select commit
Hold shift + click to select a range
b494b39
remove unsafe coerce to use type class based method
soulomoon 18a8367
revert Elem to have better error display
soulomoon fd05577
clean up
soulomoon d09898e
clean up
soulomoon 72d625a
remove redundant-constraints suppresion
soulomoon 2b1a432
add KeyNamePath (..), usePropertyByPathEither, usePropertyByPath and…
soulomoon 2c94e20
Merge branch 'master' into 3944-extend-the-properties-api-to-better-s…
soulomoon 0b3c0b9
add usePropertyByPathAction action to allow getting nested property
soulomoon 3e9c9c8
clean up
soulomoon f213a8c
cleanup
soulomoon 28f9656
cleanup
soulomoon 2be2ebb
cleanup
soulomoon 8af4caf
reorder import
soulomoon bd99b44
reformat
soulomoon c7f20f1
add test
soulomoon 28165cc
stylish
soulomoon 437bcfd
Revert "stylish"
soulomoon e75b0d8
stylish
soulomoon c2e8b1b
Merge branch 'master' into 3944-extend-the-properties-api-to-better-s…
soulomoon f780642
simplify the logic of FindByKeyPath
soulomoon d13901f
use case instead of partial pattern
soulomoon 709cd5c
Merge branch 'master' into 3944-extend-the-properties-api-to-better-s…
soulomoon 9991779
Merge branch 'master' into 3944-extend-the-properties-api-to-better-s…
soulomoon 9db1ef6
Merge branch 'master' into 3944-extend-the-properties-api-to-better-s…
soulomoon 3552d0b
Merge branch 'master' into 3944-extend-the-properties-api-to-better-s…
soulomoon 275e6cd
Merge branch 'master' into 3944-extend-the-properties-api-to-better-s…
soulomoon 8e9a6d8
Merge branch 'master' into 3944-extend-the-properties-api-to-better-s…
soulomoon 985de2b
Merge branch 'master' into 3944-extend-the-properties-api-to-better-s…
soulomoon b213717
Merge branch 'master' into 3944-extend-the-properties-api-to-better-s…
soulomoon 9bf9b29
Merge branch 'master' into 3944-extend-the-properties-api-to-better-s…
soulomoon f219f00
Merge branch 'master' into 3944-extend-the-properties-api-to-better-s…
soulomoon 617b36c
Merge branch 'master' into 3944-extend-the-properties-api-to-better-s…
soulomoon 71d927c
Update hls-plugin-api/src/Ide/Plugin/Properties.hs
soulomoon a82fe33
Update hls-plugin-api/src/Ide/Plugin/Properties.hs
soulomoon 4c13973
Update hls-plugin-api/src/Ide/Plugin/Properties.hs
soulomoon e36e6cc
Merge branch 'master' into 3944-extend-the-properties-api-to-better-s…
soulomoon cf0ab4f
add golden test and add comment
soulomoon 994d912
clean up
soulomoon 6385592
clean up
soulomoon 053bea8
fix golden test
soulomoon 2a04413
fix golden test
soulomoon 7d7322a
add more golden test
soulomoon 32958e9
Merge branch 'master' into 3944-extend-the-properties-api-to-better-s…
fendor File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -112,6 +112,7 @@ test-suite tests | |
| Ide.TypesTests | ||
|
|
||
| build-depends: | ||
| , aeson | ||
| , base | ||
| , containers | ||
| , data-default | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't map naturally the JSON type any more, could you add a comment why we want/need this?