-
Notifications
You must be signed in to change notification settings - Fork 418
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
Intellisense not showing methods from the Base class in Signature Help #1030
Changes from 1 commit
30c5092
de3de6a
ef0352a
eff068d
cf8f790
6362fda
997d104
41d4d2c
2c0bc6f
9cb58b4
07cee28
29b3803
2e1e0a0
cda2c28
a13a6b0
17f52cf
fbc4c5f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
using System; | ||
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sort usings. |
||
using Microsoft.CodeAnalysis; | ||
|
@@ -7,6 +9,7 @@ | |
|
||
namespace OmniSharp.Roslyn.CSharp.Services.Signatures | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing a line between the using directives and the namespace. |
||
{ | ||
//TO DO: Reomove this class once a public API for Signature Help from Roslyn is available | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Reomove -> Remove |
||
internal static class CheckForStaticExtension | ||
{ | ||
public static bool IsInStaticContext(this SyntaxNode node) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You might add a comment for where this was copied from.