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