-
Notifications
You must be signed in to change notification settings - Fork 224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Large designer files crash converter (within VS) during formatting #778
Comments
Is VertragsMaschinenHinzufuegenForm.Designer.vb a very large file and fails after a couple of minutes by any chance? |
Thank you for the fast answer. VertragsMaschinenHinzufuegenForm is not large, but we have some other real big form designer files (>10.000 lines of code), may be, this is the root problem. Conversation fails after some hours with 'out of memory'. I'll use a shorter timeout (default is 600 minutes) and try to run conversation from command line (how can I start conversation from command line?) |
For command line, start with |
Now the converter crashes in VS 2019 and also in VS 2022 without message. |
Oh dear, especially sad to hear it crashes Vs2022! I still believe big files are likely the cause. So even taking the longest files and just splitting them in half using partial classes can work. Especially designer files which end up much larger after conversion usually. |
After splitting crashing assembly it works |
Thanks for letting me know, glad it's working. I think the outcome here is that I (or indeed anyone) should try to reproduce this bug using just the roslyn API here and submit it as an issue upstream: CodeConverter/CodeConverter/Shared/OptionalOperations.cs Lines 47 to 48 in 0c39437
I did previously (separately) log the bug upstream of the fact that VS intentionally hard crashes when various things go wrong: |
In #774 I've made a change to decrease the amount of boilerplate for events in many common cases. Hopefully this will help mitigate the issue until a fix can be found |
Ah whoops I've left a duplicate of this. Consolidating this into #877 |
Steps to reproduce
Error message shown
Error while formatting and converting comments: System.InvalidOperationException: Exception of type 'System.InvalidOperationException' was thrown.
Error while formatting and converting comments: System.InvalidOperationException: Exception of type 'System.InvalidOperationException' was thrown.
at System.Runtime.CompilerServices.ConditionalWeakTable
2.VerifyIntegrity() at System.Runtime.CompilerServices.ConditionalWeakTable
2.TryGetValue(TKey key, TValue& value)at Microsoft.CodeAnalysis.GreenNode.GetAnnotations()
at Microsoft.CodeAnalysis.GreenNode.HasAnnotation(SyntaxAnnotation annotation)
at Microsoft.CodeAnalysis.CSharp.Formatting.TriviaDataFactory.Analyzer.AnalyzeWhitespacesInTrivia(SyntaxTrivia trivia, AnalysisResult& result)
at Microsoft.CodeAnalysis.CSharp.Formatting.TriviaDataFactory.Analyzer.Analyze(SyntaxTriviaList list, AnalysisResult& result)
at Microsoft.CodeAnalysis.CSharp.Formatting.TriviaDataFactory.Analyzer.Leading(SyntaxToken token)
at Microsoft.CodeAnalysis.CSharp.Formatting.TriviaDataFactory.CreateLeadingTrivia(SyntaxToken token)
at Microsoft.CodeAnalysis.Formatting.TokenStream.GetOriginalTriviaData(TokenData token1, TokenData token2)
at Microsoft.CodeAnalysis.Formatting.TokenStream.GetColumn(TokenData tokenData, Func
3 triviaDataGetter) at Microsoft.CodeAnalysis.Formatting.FormattingContext.AddAnchorIndentationOperation(AnchorIndentationOperation operation) at Roslyn.Utilities.EnumerableExtensions.Do[T](IEnumerable
1 source, Action1 action) at Microsoft.CodeAnalysis.Formatting.AbstractFormatEngine.Format(CancellationToken cancellationToken) at Microsoft.CodeAnalysis.CSharp.Formatting.CSharpSyntaxFormattingService.Format(SyntaxNode node, AnalyzerConfigOptions options, IEnumerable
1 formattingRules, SyntaxToken token1, SyntaxToken token2, CancellationToken cancellationToken)at Microsoft.CodeAnalysis.Formatting.AbstractSyntaxFormattingService.FormatIndividually(SyntaxNode node, AnalyzerConfigOptions options, IEnumerable
1 rules, IList
1 spansToFormat, CancellationToken cancellationToken)at Microsoft.CodeAnalysis.Formatting.AbstractSyntaxFormattingService.Format(SyntaxNode node, IEnumerable
1 spans, Boolean shouldUseFormattingSpanCollapse, AnalyzerConfigOptions options, IEnumerable
1 rules, CancellationToken cancellationToken)at Microsoft.CodeAnalysis.Formatting.Formatter.GetFormattingResult(SyntaxNode node, IEnumerable
1 spans, Workspace workspace, OptionSet options, IEnumerable
1 rules, CancellationToken cancellationToken)at ICSharpCode.CodeConverter.Shared.OptionalOperations.Format(SyntaxNode node, Document document)
at ICSharpCode.CodeConverter.Shared.OptionalOperations.MapSourceTriviaToTargetHandled[TSource,TTarget](TSource root, TTarget converted, Document document)
Details
The text was updated successfully, but these errors were encountered: