KirillOsenkov / RoslynQuoter

Roslyn tool that for a given C# program shows syntax tree API calls to construct its syntax tree
http://roslynquoter.azurewebsites.net
Apache License 2.0
922 stars 118 forks source link

System.NullReferenceException: Object reference not set to an instance of an object. #24

Closed calebnelton closed 7 years ago

calebnelton commented 7 years ago

public class C { }

System.NullReferenceException: Object reference not set to an instance of an object. at Microsoft.CodeAnalysis.CSharp.Syntax.InternalSyntax.SyntaxParser.AddError[TNode](TNode node, ErrorCode code, Object[] args) at Microsoft.CodeAnalysis.CSharp.Syntax.InternalSyntax.LanguageParser.ConsumeUnexpectedTokens[TNode](TNode node) at Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseStatement(String text, Int32 offset, ParseOptions options, Boolean consumeFullText) at Quoter.Parse(String sourceText, NodeKind nodeKind) at QuoterService.Controllers.QuoterController.Get(String sourceText, NodeKind nodeKind, Boolean openCurlyOnNewLine, Boolean closeCurlyOnNewLine, Boolean preserveOriginalWhitespace, Boolean keepRedundantApiCalls, Boolean avoidUsingStatic)

KirillOsenkov commented 7 years ago

This has just been fixed in Roslyn today: https://github.com/dotnet/roslyn/issues/17458

After I update to the new Roslyn binaries this should go away. It'll take some time.

KirillOsenkov commented 7 years ago

This should now be fixed.