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
| Assembly Information: | |
| Culture=neutral | |
| PublicKeyToken=b03f5f7f11d50a3a | |
| System.AppDomain | |
| System.AppDomainUnloadedException | |
| System.ApplicationId | |
| System.AssemblyLoadEventArgs |
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
| --- /dev/null 2017-04-24 21:53:22.000000000 -0400 | |
| +++ README.md 2017-04-24 21:53:03.000000000 -0400 | |
| @@ -0,0 +1,67 @@ | |
| +Current work: | |
| + | |
| +Trying to allow the existing patch for dictionary literals that allows: | |
| + | |
| + var a = ["key":"value"]; | |
| + | |
| +Which creates an inferred Dictionary<string,string> above into |
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
| mono$ mono /usr/local//share/dotnet/sdk/1.0.0-preview3-004056/csc.exe | |
| Could not load signature of Microsoft.CodeAnalysis.CommonCompiler:ResolveAnalyzersFromArguments due to: Could not load file or assembly 'System.Collections.Immutable, Version=1.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. assembly:System.Collections.Immutable, Version=1.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a type:<unknown type> member:<none> | |
| Unhandled Exception: | |
| System.TypeLoadException: Could not load type of field 'Microsoft.CodeAnalysis.CoreClrAnalyzerAssemblyLoader:_loadContext' (0) due to: Could not load file or assembly 'System.Runtime.Loader, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. assembly:System.Runtime.Loader, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a type:<unknown type> member:<none> | |
| at Microsoft.CodeAnalysis.CommandLine.BuildClient.RunCompilation (System.Collections.Generic.IEnumerable`1[T] o |
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
| using System; | |
| using Windows.ApplicationModel.Core; | |
| using Urho; | |
| using Urho.Holographics; | |
| using Urho.HoloLens; | |
| internal class Program | |
| { | |
| [MTAThread] | |
| private static void Main() |
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/constant.cs b/mcs/mcs/constant.cs | |
| old mode 100644 | |
| new mode 100755 | |
| index a0ae78c..0f45e74 | |
| --- a/mcs/mcs/constant.cs | |
| +++ b/mcs/mcs/constant.cs | |
| @@ -12,6 +12,7 @@ | |
| using System; | |
| using System.Globalization; |
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/cs-parser.jay b/mcs/mcs/cs-parser.jay | |
| index bb2bd6e..a41ae23 100644 | |
| --- a/mcs/mcs/cs-parser.jay | |
| +++ b/mcs/mcs/cs-parser.jay | |
| @@ -3222,6 +3222,20 @@ type_expression | |
| $$ = new ComposedCast ((ATypeNameExpression) $1, (ComposedTypeSpecifier) $2); | |
| } | |
| | builtin_type_expression | |
| + | tuple_type | |
| + ; |
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
| using Mono.CSharp; | |
| class X { | |
| static void Main () | |
| { | |
| var a = new | |
| Evaluator (new CompilerContext (new CompilerSettings (), new ConsoleReportPrinter ())); | |
| a.Run ("System.Console.WriteLine (true);"); | |
| } | |
| } |
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
| const BindingFlags SEARCH_FLAGS = BindingFlags.NonPublic | BindingFlags.Instance; | |
| var hasSingleTargetMethod = typeof(MulticastDelegate).GetMethod("InvocationListLogicallyNull", SEARCH_FLAGS) ?? | |
| typeof(MulticastDelegate).GetMethod("get_HasSingleTarget", SEARCH_FLAGS); | |
| if (hasSingleTargetMethod != null) | |
| HasSingleTarget = (HasSingleTargetFn)Delegate.CreateDelegate(typeof(HasSingleTargetFn), hasSingleTargetMethod, true); | |
| else // gracefull degradation | |
| HasSingleTarget = md => md.GetInvocationList().Length == 1; | |
| // ... | |
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/Clang/Ast/CXXRecordDecl.cs b/Clang/Ast/CXXRecordDecl.cs | |
| index 6acc7b3..16f5453 100644 | |
| --- a/Clang/Ast/CXXRecordDecl.cs | |
| +++ b/Clang/Ast/CXXRecordDecl.cs | |
| @@ -19,6 +19,13 @@ namespace Clang.Ast | |
| public extern bool IsDerivedFrom (CXXRecordDecl baseDecl); | |
| [MethodImpl (MethodImplOptions.InternalCall)] | |
| + extern int GetAbstract (); | |
| + |
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/external/rx b/external/rx | |
| --- a/external/rx | |
| +++ b/external/rx | |
| @@ -1 +1 @@ | |
| -Subproject commit 00c1aadf149334c694d2a5096983a84cf46221b8 | |
| +Subproject commit 00c1aadf149334c694d2a5096983a84cf46221b8-dirty | |
| diff --git a/mcs/mcs/Makefile b/mcs/mcs/Makefile | |
| index d2aa50e..8999939 100644 | |
| --- a/mcs/mcs/Makefile | |
| +++ b/mcs/mcs/Makefile |