File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/Microsoft.SqlTools.ServiceLayer/LanguageServices Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2929 <PackageReference Update =" Microsoft.SqlServer.Migration.Assessment" Version =" 1.0.20241001.3" />
3030 <PackageReference Update =" Microsoft.SqlServer.Migration.Logins" Version =" 1.0.20240920.1" />
3131 <PackageReference Update =" Microsoft.SqlServer.Management.QueryStoreModel" Version =" 163.55.1" />
32- <PackageReference Update =" Microsoft.SqlServer.Management.SqlParser" Version =" 170.9.0 " />
32+ <PackageReference Update =" Microsoft.SqlServer.Management.SqlParser" Version =" 172.14.1 " />
3333 <PackageReference Update =" Microsoft.SqlServer.Migration.Tde" Version =" 1.0.0-preview.1.0.20230914.107" />
3434 <PackageReference Update =" Microsoft.SqlServer.Migration.SqlTargetProvisioning" Version =" 1.0.20241022.2" />
3535
Original file line number Diff line number Diff line change @@ -729,7 +729,7 @@ internal static SignatureHelp ConvertMethodHelpTextListToSignatureHelp(List<Babe
729729 if ( locations . ParamStartLocation != null )
730730 {
731731 // Is the cursor past the function name?
732- var location = locations . ParamStartLocation . Value ;
732+ var location = locations . ParamStartLocation ;
733733 if ( line > location . LineNumber || ( line == location . LineNumber && line == location . LineNumber && column >= location . ColumnNumber ) )
734734 {
735735 currentParameter = 0 ;
@@ -746,7 +746,7 @@ internal static SignatureHelp ConvertMethodHelpTextListToSignatureHelp(List<Babe
746746 if ( locations . ParamEndLocation != null )
747747 {
748748 // Is the cursor past the end of the parameter list on a different token?
749- var location = locations . ParamEndLocation . Value ;
749+ var location = locations . ParamEndLocation ;
750750 if ( line > location . LineNumber || ( line == location . LineNumber && line == location . LineNumber && column > location . ColumnNumber ) )
751751 {
752752 currentParameter = - 1 ;
You can’t perform that action at this time.
0 commit comments