ui5-language-assistant icon indicating copy to clipboard operation
ui5-language-assistant copied to clipboard

Move generic XML utils from @ui5-Lang-Assistant/logic-utils to XML-Tools/common

Open bd82 opened this issue 3 years ago • 0 comments

Some of the utilities in the logic-utils package are not specific to UI5 flows or structures. These should be part of @xml-tools/common to avoid future duplication / re-implementation.

e.g:

  • export function xmlToFQN(astElement: XMLElement): string;
  • export function xmlClosingTagToFQN(astElement: XMLElement): string;
  • export function splitQNameByNamespace( qName: string ): { prefix: string | undefined; localName: string };
  • ...

bd82 avatar Jul 22 '20 10:07 bd82