File tree 1 file changed +24
-0
lines changed
shared/src/main/scala/scala/xml/parsing
1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -39,9 +39,33 @@ abstract class FactoryAdapter extends DefaultHandler with factory.XMLLoader[Node
39
39
var rootElem : Node = null
40
40
41
41
val buffer = new StringBuilder ()
42
+ /** List of attributes
43
+ *
44
+ * Previously was a [[scala.collection.mutable.Stack ]], but is now a mutable [[scala.collection.immutable.List ]].
45
+ *
46
+ * @since 1.0.7
47
+ */
42
48
var attribStack = List .empty[MetaData ]
49
+ /** List of elements
50
+ *
51
+ * Previously was a [[scala.collection.mutable.Stack ]], but is now a mutable [[scala.collection.immutable.List ]].
52
+ *
53
+ * @since 1.0.7
54
+ */
43
55
var hStack = List .empty[Node ] // [ element ] contains siblings
56
+ /** List of element names
57
+ *
58
+ * Previously was a [[scala.collection.mutable.Stack ]], but is now a mutable [[scala.collection.immutable.List ]].
59
+ *
60
+ * @since 1.0.7
61
+ */
44
62
var tagStack = List .empty[String ]
63
+ /** List of namespaces
64
+ *
65
+ * Previously was a [[scala.collection.mutable.Stack ]], but is now a mutable [[scala.collection.immutable.List ]].
66
+ *
67
+ * @since 1.0.7
68
+ */
45
69
var scopeStack = List .empty[NamespaceBinding ]
46
70
47
71
var curTag : String = null
You can’t perform that action at this time.
0 commit comments