зеркало из https://github.com/mono/monocov.git
22 строки
345 B
C#
22 строки
345 B
C#
|
|
using System;
|
|
using System.Collections;
|
|
|
|
namespace MonoCov {
|
|
|
|
public class NamespaceCoverageItem : CoverageItem {
|
|
|
|
public string ns;
|
|
|
|
public NamespaceCoverageItem (CoverageItem parent, string ns) : base (parent) {
|
|
this.ns = ns;
|
|
}
|
|
|
|
public NamespaceCoverageItem ParentNamespace {
|
|
get {
|
|
return (NamespaceCoverageItem)parent;
|
|
}
|
|
}
|
|
}
|
|
}
|