-
Notifications
You must be signed in to change notification settings - Fork 3
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
Implement YAML data module #2
Implement YAML data module #2
Conversation
@@ -0,0 +1,321 @@ | |||
/* |
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.
Don't we need to change this file name as YamlTraverse
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.
No, because we are traversing over a Json value. Any input @prakanth97?
Welcome to Codecov 🎉Once you merge this PR into your default branch, you're all set! Codecov will compare coverage reports and display results in all future pull requests. Thanks for integrating Codecov - We've got you covered ☂️ |
d280790
to
0a9b6f9
Compare
0a9b6f9
to
499bf19
Compare
f169ff1
into
ballerina-platform:data-yaml
Purpose
This PR contains all the functionalities that we are going to provide with
data.yaml
ballerina library. Key features of this Library are,parseString
,parseBytes
andparseStream
apis users can use to create Ballerina values with or without Projection.toYamlString
library to convert a Ballerina value to a yaml string.parse
apis.Fixes: library-issue-6089
Checklist