This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/mcs/mcs/doc.cs b/mcs/mcs/doc.cs | |
index 2b4ca5d..7107568 100644 | |
--- a/mcs/mcs/doc.cs | |
+++ b/mcs/mcs/doc.cs | |
@@ -741,10 +741,25 @@ namespace Mono.CSharp { | |
{ | |
var tp = type as TypeParameterSpec; | |
if (tp != null) { | |
+ int c = 0; | |
+ type = type.DeclaringType; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/mcs/mcs/typespec.cs b/mcs/mcs/typespec.cs | |
index 8bb6f56..da19f08 100644 | |
--- a/mcs/mcs/typespec.cs | |
+++ b/mcs/mcs/typespec.cs | |
@@ -1049,6 +1049,16 @@ namespace Mono.CSharp | |
} | |
} | |
+ public override string Name { | |
+ get { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I/MonoDroid-Timing( 2903): 634153676364465130 | |
I/MonoDroid-Timing( 2903): 634153676372732120 | |
I/MonoDroid-Timing( 2903): 634153676372765720 | |
I/MonoDroid-Timing( 2903): CreateNativeInterface: CreateNativeInterface [elapsed: 53.565 ms] | |
I/MonoDroid-Timing( 2903): 634153676375435070 | |
I/MonoDroid-Timing( 2903): 634153676376707730 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Range: | |
Min/Max rather than Start/End, better naming when dealing with non-contiguous ranges. | |
Start and end values are inclusive. | |
How enumeration works for stepping, etc is left to the class to decide, provide a static class with some standard implementations that use Math<T>. | |
Assumption is the main IRange<T> can be either contiguous or non-contiguous | |
Assumptions for SubRanges(): | |
No two sub-ranges overlap. | |
Each sub-range is atomic (ie contiguous). |
NewerOlder