This repository was archived by the owner on Nov 11, 2024. It is now read-only.
4 files changed
+8
-3
lines changedSubmodule cecil updated from a6eec3e to cd2ff63
Submodule debugger-libs updated 31 files
- Mono.Debugger.Soft/Mono.Debugger.Soft.csproj+3-2
- Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs+38-47
- Mono.Debugger.Soft/Mono.Debugger.Soft/ILInterpreter.cs+11
- Mono.Debugger.Soft/Mono.Debugger.Soft/StackFrame.cs+12
- Mono.Debugger.Soft/Mono.Debugger.Soft/VirtualMachineManager.cs+51-47
- Mono.Debugging.Soft/ArrayAdaptor.cs+5-4
- Mono.Debugging.Soft/FieldValueReference.cs+1-1
- Mono.Debugging.Soft/PropertyValueReference.cs+3
- Mono.Debugging.Soft/SoftDebuggerAdaptor.cs+226-101
- Mono.Debugging.Soft/SoftDebuggerBacktrace.cs+5-2
- Mono.Debugging.Soft/SoftDebuggerSession.cs+514-294
- Mono.Debugging.Soft/SoftDebuggerStartInfo.cs+7-2
- Mono.Debugging.Soft/SoftEvaluationContext.cs+9-4
- Mono.Debugging/Mono.Debugging.Client/BreakEvent.cs+11
- Mono.Debugging/Mono.Debugging.Client/BreakpointStore.cs+11-2
- Mono.Debugging/Mono.Debugging.Client/DebuggerLoggingService.cs+5
- Mono.Debugging/Mono.Debugging.Client/DebuggerSession.cs+3-3
- Mono.Debugging/Mono.Debugging.Client/ExceptionInfo.cs+24
- Mono.Debugging/Mono.Debugging.Client/ProcessInfo.cs+1-10
- Mono.Debugging/Mono.Debugging.Client/RawValue.cs+47-25
- Mono.Debugging/Mono.Debugging.Client/SourceLocation.cs+7-2
- Mono.Debugging/Mono.Debugging.Client/StackFrame.cs+1-1
- Mono.Debugging/Mono.Debugging.Evaluation/ArrayElementGroup.cs+5-5
- Mono.Debugging/Mono.Debugging.Evaluation/BaseBacktrace.cs+1
- Mono.Debugging/Mono.Debugging.Evaluation/EnumerableElementGroup.cs+4-2
- Mono.Debugging/Mono.Debugging.Evaluation/ExceptionInfoSource.cs+75-30
- Mono.Debugging/Mono.Debugging.Evaluation/LiteralValueReference.cs+2-2
- Mono.Debugging/Mono.Debugging.Evaluation/NRefactoryExpressionEvaluatorVisitor.cs+27-12
- Mono.Debugging/Mono.Debugging.Evaluation/ObjectValueAdaptor.cs+19-4
- Mono.Debugging/Mono.Debugging.Evaluation/TimedEvaluator.cs+75-110
- Mono.Debugging/Mono.Debugging.Evaluation/ValueReference.cs+1-1
Submodule nrefactory updated 55 files
- .travis.yml+10
- ICSharpCode.NRefactory.CSharp.Refactoring/CodeActions/ConvertExplicitToImplicitImplementationAction.cs+1-1
- ICSharpCode.NRefactory.CSharp.Refactoring/CodeIssues/Custom/RedundantAssignmentIssue.cs+8-3
- ICSharpCode.NRefactory.CSharp.Refactoring/CodeIssues/Synced/PracticesAndImprovements/ParameterCanBeDeclaredWithBaseTypeIssue.cs+1-1
- ICSharpCode.NRefactory.CSharp/Analysis/SemanticHighlightingVisitor.cs+2-1
- ICSharpCode.NRefactory.CSharp/Ast/GeneralScope/WhitespaceNode.cs+1-1
- ICSharpCode.NRefactory.CSharp/Ast/PrimitiveType.cs+5-2
- ICSharpCode.NRefactory.CSharp/Ast/Statements/TryCatchStatement.cs+11
- ICSharpCode.NRefactory.CSharp/CombineQueryExpressions.cs+2-2
- ICSharpCode.NRefactory.CSharp/Completion/CSharpCompletionEngine.cs+2-2
- ICSharpCode.NRefactory.CSharp/ICSharpCode.NRefactory.CSharp.csproj+1-1
- ICSharpCode.NRefactory.CSharp/OutputVisitor/CSharpAmbience.cs+2-2
- ICSharpCode.NRefactory.CSharp/OutputVisitor/CSharpOutputVisitor.cs+165-155
- ICSharpCode.NRefactory.CSharp/OutputVisitor/CodeDomConvertVisitor.cs+2-2
- ICSharpCode.NRefactory.CSharp/OutputVisitor/InsertParenthesesVisitor.cs+8
- ICSharpCode.NRefactory.CSharp/Parser/CSharpParser.cs+2
- ICSharpCode.NRefactory.CSharp/Parser/mcs/membercache.cs+1-1
- ICSharpCode.NRefactory.CSharp/Refactoring/CodeGenerationService.cs+2-2
- ICSharpCode.NRefactory.CSharp/Refactoring/CodeIssues/Uncategorized/.DS_Store
- ICSharpCode.NRefactory.CSharp/Refactoring/FormatStringHelper.cs+1-1
- ICSharpCode.NRefactory.CSharp/Refactoring/TypeSystemAstBuilder.cs+178-26
- ICSharpCode.NRefactory.CSharp/Resolver/CSharpOperators.cs+1-1
- ICSharpCode.NRefactory.CSharp/Resolver/CSharpResolver.cs+2-2
- ICSharpCode.NRefactory.CSharp/Resolver/OverloadResolution.cs+1-1
- ICSharpCode.NRefactory.CSharp/Resolver/ResolveVisitor.cs+3-1
- ICSharpCode.NRefactory.Cecil/CecilLoader.cs+41-6
- ICSharpCode.NRefactory.Cecil/ICSharpCode.NRefactory.Cecil.csproj+21-12
- ICSharpCode.NRefactory.IKVM/IkvmLoader.cs+19
- ICSharpCode.NRefactory.Tests/CSharp/CSharpOutputVisitorTests.cs+9-1
- ICSharpCode.NRefactory.Tests/CSharp/CodeCompletion/CodeCompletionAccessibleTests.cs+22
- ICSharpCode.NRefactory.Tests/CSharp/Parser/TypeMembers/MethodDeclarationTests.cs+14
- ICSharpCode.NRefactory.Tests/CSharp/Resolver/BinaryOperatorTests.cs+9
- ICSharpCode.NRefactory.Tests/CSharp/Resolver/UnaryOperatorTests.cs+1-3
- ICSharpCode.NRefactory.Tests/ICSharpCode.NRefactory.Tests.csproj+7-2
- ICSharpCode.NRefactory.Tests/TypeSystem/InheritanceHelperTests.cs+24
- ICSharpCode.NRefactory.Tests/TypeSystem/TypeSystemTests.TestCase.cs+20-2
- ICSharpCode.NRefactory.Tests/TypeSystem/TypeSystemTests.cs+48
- ICSharpCode.NRefactory/Analysis/SymbolCollector.cs+1-1
- ICSharpCode.NRefactory/Documentation/IdStringProvider.cs+4-2
- ICSharpCode.NRefactory/ICSharpCode.NRefactory.csproj+1-1
- ICSharpCode.NRefactory/Semantics/MemberResolveResult.cs+1-1
- ICSharpCode.NRefactory/TypeSystem/IEntity.cs+1-1
- ICSharpCode.NRefactory/TypeSystem/ITypeDefinition.cs+1-1
- ICSharpCode.NRefactory/TypeSystem/Implementation/AbstractResolvedEntity.cs+8-8
- ICSharpCode.NRefactory/TypeSystem/Implementation/AbstractResolvedMember.cs+2-1
- ICSharpCode.NRefactory/TypeSystem/Implementation/BlobReader.cs+1-1
- ICSharpCode.NRefactory/TypeSystem/Implementation/DefaultAttribute.cs+1-1
- ICSharpCode.NRefactory/TypeSystem/Implementation/DefaultResolvedEvent.cs+7-1
- ICSharpCode.NRefactory/TypeSystem/Implementation/DefaultResolvedField.cs+7-1
- ICSharpCode.NRefactory/TypeSystem/Implementation/DefaultResolvedMethod.cs+10-5
- ICSharpCode.NRefactory/TypeSystem/Implementation/DefaultResolvedProperty.cs+33-2
- ICSharpCode.NRefactory/TypeSystem/Implementation/SpecializedMember.cs+1-2
- ICSharpCode.NRefactory/TypeSystem/InheritanceHelper.cs+4
- ICSharpCode.NRefactory/TypeSystem/SpecialType.cs+5
- ICSharpCode.NRefactory/TypeSystem/TypeKind.cs+3-1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
46 | 46 |
| |
47 | 47 |
| |
48 | 48 |
| |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
49 | 54 |
| |
50 | 55 |
|
0 commit comments