You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Show tooltips on hover for type property definitions and type additional properties accesses (#13546)
Resolves#13461Resolves#13398
There were a couple of scenarios where the LS was not showing hover
tooltips for properties:
* When hovering over a type property definition
* When hovering over a property name that would match against a value's
additional properties type
There's no way to capture a description for an object's additional
properties type, but the hover can at least show the expected type.
Copy file name to clipboardExpand all lines: src/Bicep.Core/Semantics/SymbolHelper.cs
+54-5Lines changed: 54 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ public static class SymbolHelper
21
21
// The decision to pass in getDeclaredTypeFunc as a lambda rather than the ITypeManager interface is deliberate.
22
22
// We should be conscious about not introducing cyclic dependencies, as this code is also used within the type manager, but it only needs declared types.
0 commit comments