yesamer commented on code in PR #2968:
URL: 
https://github.com/apache/incubator-kie-tools/pull/2968#discussion_r1985086424


##########
packages/dmn-marshaller/src/index.ts:
##########
@@ -203,6 +205,31 @@ export const FEEL_NAMESPACES: Record<DmnVersions, string> 
= {
   "1.5": "https://www.omg.org/spec/DMN/20230324/FEEL/";,
 };
 
+const feel12ns = new Map<string, string>([
+  [FEEL_NS, FEEL_NAMESPACES["1.2"]],
+  [FEEL_NAMESPACES["1.2"], FEEL_NS],
+]);
+
+const feel13ns = new Map<string, string>([
+  [FEEL_NS, FEEL_NAMESPACES["1.3"]],
+  [FEEL_NAMESPACES["1.3"], FEEL_NS],
+]);
+
+const feel14ns = new Map<string, string>([
+  [FEEL_NS, FEEL_NAMESPACES["1.4"]],
+  [FEEL_NAMESPACES["1.4"], FEEL_NS],
+]);
+
+const feel15ns = new Map<string, string>([
+  [FEEL_NS, FEEL_NAMESPACES["1.5"]],
+  [FEEL_NAMESPACES["1.5"], FEEL_NS],
+]);

Review Comment:
   Just a note: DMN specs recently introduced the B-FEEL, which is a second 
"dialect" for FEEL. To have the FULL support of B-FEEL in the editor, we need 
to adjust the logic here to cover it.
   @tiagobento can you please put a comment or a note in this ticket? 
https://github.com/apache/incubator-kie-issues/issues/1751



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to