128 Commits (51bd4164fe2a5756c15514ddb2d105a33e89c5a3)

Author SHA1 Message Date
Daniel Grunwald 51bd4164fe Correctly set OperatorResolveResult.IsLiftedOperator in more cases. 14 years ago
Daniel Grunwald df380b6055 Fixed potential cause of CSharpAstResolver.Resolve returning null. 14 years ago
Daniel Grunwald e80f142381 Fixed bug in CSharpAstResolver.GetExpectedType(). 14 years ago
Daniel Grunwald 55f858efb2 Fix icsharpcode/NRefactory#26: Static methods are reported as having "this" as the target 14 years ago
Daniel Grunwald c27f57f4a1 Fix icsharpcode/NRefactory#25: OperatorResolveResult.IsLiftedOperator for unary operators 14 years ago
Mike Krüger 6a0a96ce31 Moved some roles to the Roles class. 14 years ago
Mike Krüger 90bf204c7f Moved the roles class out of AstNode. 14 years ago
Daniel Grunwald b491ea85c3 Rename Conversions to CSharpConversions. 14 years ago
Daniel Grunwald 3df0cd3946 Make CSharpAstResolver and Conversions thread-safe. 14 years ago
Daniel Grunwald cf331bb4af Fixed resolving partial method definitions. 14 years ago
Daniel Grunwald 24d2d195f9 Use specialized method for MethodGroupConversion. icsharpcode/NRefactory#21 14 years ago
Daniel Grunwald a731b9371e Fix icsharpcode/NRefactory#19: OperatorResolveResult.IsLiftedOperator is false for lifted built-in operators. 14 years ago
Daniel Grunwald c6ae6c30ee Script refactoring. 14 years ago
mike 61c44816e3 [FindReferences] Added destructor find support. 14 years ago
Mike Krüger cfe0d4257f Made resolve result == null assertion more verbose. 14 years ago
Daniel Grunwald fe8e098a27 Fixed some FxCop warnings. 14 years ago
Daniel Grunwald eba021814c FindReferences for IEnumerator.Current now finds foreach statements. 14 years ago
Daniel Grunwald 3e7244197c Fix icsharpcode/NRefactory#16: Resolve the GetEnumerator call inside a foreach 14 years ago
Daniel Grunwald fb0dbc9bee Fix icsharpcode/NRefactory#17: Resolving "is" and "as" expressions loses the semantics 14 years ago
mike b13dad1436 Resolve visitor change: If the type of an object create expression 14 years ago
Daniel Grunwald a353f23d70 Combine AttributedNode and MemberDeclaration into EntityDeclaration. 14 years ago
Daniel Grunwald 2f859148f0 Use simpler IAstVisitor for ResolveVisitor. 14 years ago
Daniel Grunwald 14bf452879 Rename InterfaceImplementations -> ImplementedInterfaceMembers. 14 years ago
Daniel Grunwald 2bebee46a1 C# XML documentation support. 14 years ago
Daniel Grunwald 7a76a805a0 Add DocumentationComment class that allows looking up 'cref' attributes. 14 years ago
Mike Krüger de6870b067 Fixed completion unit test. 14 years ago
Daniel Grunwald d2f2feb994 Remove the thread-local cache; it seems to cause massive memory leaks. 14 years ago
Daniel Grunwald cfe807ab73 Fix "find references" for method group conversions in delegate creation expressions "new Action(MyMethod)" 14 years ago
Daniel Grunwald 9859dce24f Improve ResolveAtLocation. 14 years ago
Daniel Grunwald a7245affe6 Fixed finding references to method group conversions. 14 years ago
Daniel Grunwald 194b33438b Add FindReferencesConsistencyCheck. 14 years ago
Daniel Grunwald 311df2bbb2 CSharpAstResolver: add cancellation support 14 years ago
Daniel Grunwald e5217c2c13 Fixed bug in 'BetterConversion' implementation - converting to Func<> delegates is better than converting to Action<> delegates. 14 years ago
Daniel Grunwald 46254b3b0d Add support for resolving "operator true". 14 years ago
Daniel Grunwald 77ea4dae30 Report more types of invalid equality comparisons as errors. 14 years ago
Daniel Grunwald bb822e94d4 Allow using AstType.ToTypeReference().Resolve(compilation.TypeResolveContext) - this will now resolve in the global namespace. 14 years ago
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 7971ad21f9 Check IType.Kind instead of using SpecialType.X.Equals(). 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
Mike Krüger 006d18a067 Resolve at location can now give back the AstNode. 14 years ago
Daniel Grunwald 13ac45ebf7 Add AstType.ToTypeReference() method. 14 years ago
Daniel Grunwald 79b8b00d29 Fix bug in output type inference for explicitly typed lambdas. 14 years ago
Daniel Grunwald cdfa794e37 Add some ToString() overrides for easier debugging 14 years ago
Daniel Grunwald d44077aa59 Add CSharpAstResolver.GetResolverStateAfter() and fixed an issue with the scanning logic in ResolveVisitor. 14 years ago
Daniel Grunwald 3d21a80e7d Fixed the ResolveVisitor scanning logic and several related issues. 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