Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2006-11-15 14:31:25 +0300
committerAtsushi Eno <atsushieno@gmail.com>2006-11-15 14:31:25 +0300
commit1d3440fc5dd6fe75add2fb7567679abf40e9d8aa (patch)
treea15adf185627a446ab4f1d5a809f640750ba9ba0 /mcs/class/System.XML/System.Xml.XPath
parentd7b8f52eaa85ff78c1424663befa1c885b90999e (diff)
sanitizing MonoTODOs.
svn path=/trunk/mcs/; revision=67899
Diffstat (limited to 'mcs/class/System.XML/System.Xml.XPath')
-rw-r--r--mcs/class/System.XML/System.Xml.XPath/Expression.cs6
-rw-r--r--mcs/class/System.XML/System.Xml.XPath/XPathNavigator.cs13
2 files changed, 3 insertions, 16 deletions
diff --git a/mcs/class/System.XML/System.Xml.XPath/Expression.cs b/mcs/class/System.XML/System.Xml.XPath/Expression.cs
index 7f724d428b0..fc81742b5b7 100644
--- a/mcs/class/System.XML/System.Xml.XPath/Expression.cs
+++ b/mcs/class/System.XML/System.Xml.XPath/Expression.cs
@@ -739,7 +739,7 @@ namespace System.Xml.XPath
}
}
- [MonoTODO ("Avoid extraneous evaluation")]
+ // FIXME: Avoid extraneous evaluation
public override bool EvaluateBoolean (BaseIterator iter)
{
XPathResultType typeL = _left.GetReturnType (iter);
@@ -840,7 +840,7 @@ namespace System.Xml.XPath
get { return HasStaticValue ? Compare (_left.StaticValueAsNumber, _right.StaticValueAsNumber) : false; }
}
- [MonoTODO ("Avoid extraneous evaluation.")]
+ // FIXME: Avoid extraneous evaluation.
public override bool EvaluateBoolean (BaseIterator iter)
{
XPathResultType typeL = _left.GetReturnType (iter);
@@ -1496,7 +1496,7 @@ namespace System.Xml.XPath
{
this.type = type;
}
- [MonoTODO ("Better description.")]
+ // FIXME: Better description
public NodeTypeTest (Axes axis, XPathNodeType type, String param) : base (axis)
{
this.type = type;
diff --git a/mcs/class/System.XML/System.Xml.XPath/XPathNavigator.cs b/mcs/class/System.XML/System.Xml.XPath/XPathNavigator.cs
index a4ea087110c..23ac485e5a6 100644
--- a/mcs/class/System.XML/System.Xml.XPath/XPathNavigator.cs
+++ b/mcs/class/System.XML/System.Xml.XPath/XPathNavigator.cs
@@ -651,13 +651,11 @@ namespace System.Xml.XPath
return Clone ();
}
- [MonoTODO]
public virtual object Evaluate (string xpath, IXmlNamespaceResolver nsResolver)
{
return Evaluate (Compile (xpath), null, nsResolver);
}
- [MonoTODO]
public virtual IDictionary<string, string> GetNamespacesInScope (XmlNamespaceScope scope)
{
IDictionary<string, string> table = new Dictionary<string, string> ();
@@ -991,7 +989,6 @@ namespace System.Xml.XPath
}
return sb.ToString ();
}
- [MonoTODO]
set {
switch (NodeType) {
case XPathNodeType.Root:
@@ -1006,14 +1003,12 @@ namespace System.Xml.XPath
}
}
- [MonoTODO]
public virtual IXmlSchemaInfo SchemaInfo {
get {
return null;
}
}
- [MonoTODO]
public override object TypedValue {
get {
switch (NodeType) {
@@ -1064,7 +1059,6 @@ namespace System.Xml.XPath
}
}
- [MonoTODO]
public override XmlSchemaType XmlType {
get {
if (SchemaInfo != null)
@@ -1107,7 +1101,6 @@ namespace System.Xml.XPath
w.Close ();
}
- [MonoTODO]
public virtual void AppendChild (
XPathNavigator nav)
{
@@ -1131,7 +1124,6 @@ namespace System.Xml.XPath
}
// must override it.
- [MonoTODO ("needs tests")]
public virtual XmlWriter CreateAttributes ()
{
throw new NotSupportedException ();
@@ -1183,7 +1175,6 @@ namespace System.Xml.XPath
}
}
- [MonoTODO]
public virtual void InsertAfter (XPathNavigator nav)
{
InsertAfter (new XPathNavigatorReader (nav));
@@ -1206,7 +1197,6 @@ namespace System.Xml.XPath
}
}
- [MonoTODO]
public virtual void InsertBefore (XPathNavigator nav)
{
InsertBefore (new XPathNavigatorReader (nav));
@@ -1249,7 +1239,6 @@ namespace System.Xml.XPath
}
}
- [MonoTODO]
public virtual void PrependChild (XPathNavigator nav)
{
PrependChild (new XPathNavigatorReader (nav));
@@ -1274,7 +1263,6 @@ namespace System.Xml.XPath
throw new NotSupportedException ();
}
- [MonoTODO]
public virtual void ReplaceSelf (XPathNavigator navigator)
{
ReplaceSelf (new XPathNavigatorReader (navigator));
@@ -1292,7 +1280,6 @@ namespace System.Xml.XPath
throw new NotSupportedException ();
}
- [MonoTODO]
private void DeleteChildren ()
{
switch (NodeType) {