You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it seems our parser "state machine" switches over to assuming a property expression substitution upon seeing a single '$' character, looking for something like:
prop2=${prop1}
It seems we might need to rework it to look for "${" before assuming a property expression substitution.
That is more complicated parsing, but will stop there having identified the problem.
The text was updated successfully, but these errors were encountered:
In OpenLiberty/liberty-tools-eclipse#501, with LSP4MP v0.10.0, we see a validation error with a microprofile-config.properties property:
Looking at the code:
lsp4mp/microprofile.ls/org.eclipse.lsp4mp.ls/src/main/java/org/eclipse/lsp4mp/model/parser/PropertiesParser.java
Lines 173 to 189 in 302b7a1
it seems our parser "state machine" switches over to assuming a property expression substitution upon seeing a single '$' character, looking for something like:
It seems we might need to rework it to look for "${" before assuming a property expression substitution.
That is more complicated parsing, but will stop there having identified the problem.
The text was updated successfully, but these errors were encountered: