Daniel Grunwald
|
f3541d4747
|
Fixed accessing protected members through type parameters.
|
14 years ago |
Daniel Grunwald
|
9f5f18eeb2
|
Fixed resolving "condition ? byte : 0".
|
14 years ago |
Daniel Grunwald
|
c20807e31c
|
Fixed return type of members of generic enums.
|
14 years ago |
Daniel Grunwald
|
67d19127f5
|
Fixed bug in reachability analysis when lambda/anonymous method contains a condition or switch statement.
|
14 years ago |
Daniel Grunwald
|
1a7ca154b4
|
Allow conversion of anonymous method with unreachable endpoint to Func<T>.
|
14 years ago |
Daniel Grunwald
|
822fda7e36
|
Handle T[] -> T* and string -> char* conversions in fixed statement initializers.
|
14 years ago |
Daniel Grunwald
|
0f2b0c380e
|
Fixed lambda type inference in delegate creation expressions. ("new Func<int, int>(a => a)")
|
14 years ago |
Daniel Grunwald
|
aa2e97f564
|
When copying type parameters into inner classes, re-use the same ITypeParameter instance.
|
14 years ago |
Daniel Grunwald
|
57a59341a5
|
Revert "Fixed type system converter case reported from "erik-kallen"."
The bug was already fixed in fb0c2923; this patch was adding the parameters a second time.
This reverts commit c4dfb27626 .
|
14 years ago |
Mike Krüger
|
426ce5dccf
|
Removed some ignore attributes.
|
14 years ago |
Mike Krüger
|
c4dfb27626
|
Fixed type system converter case reported from "erik-kallen".
|
14 years ago |
Daniel Grunwald
|
fb0c292380
|
Fix icsharpcode/NRefactory#13 - Indexer accessors do not get correct parameters.
|
14 years ago |
Daniel Grunwald
|
5c9dfb9896
|
Fixed IUnresolvedTypeDefinition.Resolve() and IAssembly.GetTypeDefinition(IUnresolvedTypeDefinition) to always retrieve the correct version of the type definition for the compilation, even if the IUnresolvedTypeDefinition is a different version.
The two methods now return UnknownType/null if the IUnresolvedTypeDefinition does not belong to the assembly.
|
14 years ago |
Daniel Grunwald
|
c5c5192f38
|
Add documentation to methods for creating type references that describe the expected ITypeResolveContext for resolving those type references.
|
14 years ago |
Daniel Grunwald
|
c5c1337aee
|
Add failing unit test for using-statement with multiple variable declarations.
|
14 years ago |
Daniel Grunwald
|
79b8b00d29
|
Fix bug in output type inference for explicitly typed lambdas.
|
14 years ago |
Daniel Grunwald
|
e441980154
|
Fixed parsing "bool.TrueString".
|
14 years ago |
Mike Krüger
|
dce53cb312
|
Fixed code completion bug.
|
14 years ago |
Daniel Grunwald
|
a3ff017e9e
|
When a simple-name refers to an instance field in the current class, set TargetResult=new ThisResolveResult().
|
14 years ago |
Daniel Grunwald
|
b4003145b3
|
Add MethodGroupResolveResult.GetEligibleExtensionMethods() method.
|
14 years ago |
Mike Krüger
|
510d58a28b
|
Fixed parameter test case.
|
14 years ago |
Mike Krüger
|
8b32926d67
|
Fixed const field access.
|
14 years ago |
Mike Krüger
|
e7833ba973
|
Added some more naming contexts.
|
14 years ago |
Mike Krüger
|
d88c793032
|
Fixed bug in RemoveBackingStore context action.
|
14 years ago |
Mike Krüger
|
9a96b02042
|
Fixed using context/ added unit test for try ... catch case.
|
14 years ago |
Mike
|
2cfed41833
|
Fixed primitive type keywords.
|
14 years ago |
Mike Krüger
|
6a85f2a5e3
|
Fixed AST builder.
|
14 years ago |
Mike Krüger
|
764b8a33f4
|
Added unit tests for context actions.
|
14 years ago |
Mike Krüger
|
e6df8e7628
|
Added unit tests for SplitDeclarationAndAssignment context action.
|
14 years ago |
Mike Krüger
|
1d8918caa6
|
Fixed unit tests.
|
14 years ago |
Mike Krüger
|
93bea6d4d1
|
Fixed failing unit test.
|
14 years ago |
Mike Krüger
|
1737920336
|
Added some unit tests.
|
14 years ago |
Mike Krüger
|
72258ae41b
|
Implemented type parameter type completion.
|
14 years ago |
Mike Krüger
|
a126210ec5
|
Improved anonymous type context.
|
14 years ago |
Mike Krüger
|
12b9542414
|
Fixed other LINQ case.
|
14 years ago |
Mike Krüger
|
ddc245e78b
|
Fixed "LINQ" context unit tests.
|
14 years ago |
Daniel Grunwald
|
f788f91421
|
Ignore AssemblyInfo in RoundtripTest.
|
14 years ago |
Mike Krüger
|
7431897ae7
|
Implemented 'partial' completion.
|
14 years ago |
Mike Krüger
|
e0d4232751
|
Added unit test for "as" expression context.
|
14 years ago |
Daniel Grunwald
|
90c0758bb0
|
Update roundtrip test.
|
14 years ago |
Daniel Grunwald
|
f2011680e9
|
Fixed resolving LINQ queries that involve transparent identifiers.
|
14 years ago |
Daniel Grunwald
|
418f7090cb
|
Fixed resolving NamedExpressions in anonymous type creation expressions.
|
14 years ago |
Daniel Grunwald
|
7779508e9f
|
Fixed lifting for built-in relational operators.
|
14 years ago |
Daniel Grunwald
|
040b841c3b
|
Fixed resolving equality and relational operators on nullable types.
|
14 years ago |
Daniel Grunwald
|
b803d850f7
|
Do not report invalid conversion from int to void for this code:
void Run(Action<string> a) { }
int M() {
Run(x => $M()$);
}
|
14 years ago |
Daniel Grunwald
|
70e62f42a1
|
Fixed DefaultMemberReference for methods with parameters.
|
14 years ago |
Mike Krüger
|
dba7b479ae
|
Fixed operators show up in completion list.
|
14 years ago |
Mike Krüger
|
a33b320958
|
Fixed failing unit test.
|
14 years ago |
Mike Krüger
|
b5c90d631c
|
Added unit test for "Finalizer" method not shown.
|
14 years ago |
Mike Krüger
|
1c46d7d4c5
|
Added unit test for category sorting.
|
14 years ago |