Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: 0.9.1
-
Fix Version/s: None
-
Component/s: Compiler
-
Labels:None
-
Environment:Mac OS X, Boo 0.91, Mono 2.4
-
Number of attachments :
Description
If we define an extension property like this:
class ShouldMatcher:
[Extension]
static Should[target as int]:
get:
return IntShould(target)
[Extension]
static Should[target as object]:
get:
return ReferenceShould(target)
When calling something like:
1.Should
The Boo Compiler is unable to resolve the call to the first Should Property.