Fixed: #2325 AS3 direct editation - allow single quoted attributes in XML

This commit is contained in:
Jindra Petřík
2024-09-26 19:47:46 +02:00
parent 4efa3191e7
commit ce2ac52ba1
6 changed files with 868 additions and 853 deletions

View File

@@ -556,9 +556,13 @@ public enum SymbolType {
*/
XML_ATTRIBUTENAME(GraphTargetItem.PRECEDENCE_PRIMARY, false), // aaa=
/**
* XML: attribute value
* XML: attribute value, double quoted
*/
XML_ATTRIBUTEVALUE(GraphTargetItem.PRECEDENCE_PRIMARY, false), // "vvv"
/**
* XML: attribute value, single quoted
*/
XML_ATTRIBUTEVALUE_SINGLEQUOTED(GraphTargetItem.PRECEDENCE_PRIMARY, false), // 'vvv'
/**
* XML: text
*/