-
Notifications
You must be signed in to change notification settings - Fork 758
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
Add StAX based XML parser and serializer #20774
Closed
rdhananjaya
wants to merge
283
commits into
ballerina-platform:xml-proposal-impl
from
rdhananjaya:xml-proposal-impl
Closed
Add StAX based XML parser and serializer #20774
rdhananjaya
wants to merge
283
commits into
ballerina-platform:xml-proposal-impl
from
rdhananjaya:xml-proposal-impl
Conversation
This file contains 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
…ina-lang into fix-type-extract
to new xml node structure
… into xml-proposal-impl � Conflicts: � bvm/ballerina-runtime/src/main/java/org/ballerinalang/jvm/XMLFactory.java � bvm/ballerina-runtime/src/main/java/org/ballerinalang/jvm/values/XMLItem.java � bvm/ballerina-runtime/src/main/java/org/ballerinalang/jvm/values/XMLSequence.java � bvm/ballerina-runtime/src/main/java/org/ballerinalang/jvm/values/XMLValue.java � bvm/ballerina-runtime/src/main/java/org/ballerinalang/jvm/values/api/BValueCreator.java � bvm/ballerina-runtime/src/main/java/org/ballerinalang/jvm/values/api/BXML.java � langlib/lang.xml/src/main/java/org/ballerinalang/langlib/xml/Concat.java � langlib/lang.xml/src/main/java/org/ballerinalang/langlib/xml/Elements.java � langlib/lang.xml/src/main/java/org/ballerinalang/langlib/xml/Filter.java � langlib/lang.xml/src/main/java/org/ballerinalang/langlib/xml/Map.java � stdlib/http/src/test/java/org/ballerinalang/stdlib/services/nativeimpl/request/RequestNativeFunctionNegativeTest.java � stdlib/http/src/test/java/org/ballerinalang/stdlib/services/nativeimpl/response/ResponseNativeFunctionNegativeTest.java � stdlib/io/src/main/java/org/ballerinalang/stdlib/io/nativeimpl/WriteXml.java � stdlib/jsonutils/src/main/java/org/ballerinalang/stdlib/jsonutils/FromXML.java � stdlib/xmlutils/src/main/java/org/ballerinalang/stdlib/xmlutils/JSONToXMLConverter.java � stdlib/xslt/src/main/java/org/ballerinalang/xslt/XsltTransformer.java � tests/jballerina-unit-test/src/test/java/org/ballerinalang/test/statements/arrays/ArrayTest.java
… into xml-proposal-impl
Fix formatting bug in check node
When declaring a listener, user no longer have to explocitly mention the listener type. Type will be inferred from rhs expression as the same way `var` is handled Signed-off-by: KRVPerera <rukshan.viduranga@gmail.com>
Fix delimiter based completion on grouped expressions
…-type-extract Improve Type extraction for ballerina OpenApi
Suggest optional record fields within block statement
Fix goto definition from implicit new object creation
…-master Trim the scope string [master]
Migrate codegen to use BString
…i/ballerina into lang_changes_200207
Fix object init completion suggestion
…ra/ballerina-lang into lang_changes_200207
…ballerina-lang into lang_changes_200207
…s_200207 Lang Changes - Combined PR
… into xml-proposal-impl
rdhananjaya
force-pushed
the
xml-proposal-impl
branch
from
February 9, 2020 11:23
8f92c05
to
6e989c3
Compare
rdhananjaya
force-pushed
the
xml-proposal-impl
branch
from
February 9, 2020 21:46
6e989c3
to
47622fb
Compare
Closing in favor of #20915 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Team/CompilerFE
All issues related to Language implementation and Compiler, this exclude run times.
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.
Purpose
This PR adds the new XML node structure, xml parser, xml serializer as a part of revamping xml support. This is a part of #19570
Fixes #19832
Approach
Samples
Remarks
Check List