Skip to content
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

FSharpCheckFileResults.GetMethodsAsSymbols doesn't provide all overloads #17876

Open
auduchinok opened this issue Oct 11, 2024 · 0 comments
Open

Comments

@auduchinok
Copy link
Member

auduchinok commented Oct 11, 2024

Consider the following console app that references Selenium.WebDriver package:

open System
open OpenQA.Selenium.Safari

let driver = new SafariDriver()

let url = Uri("")
let str = ""

driver.Navigate().GoToUrl(url)
driver.Navigate().GoToUrl(str)


let navigation = driver.Navigate()
navigation.GoToUrl(url)

'Parameter Info' popup (which uses checkResults.GetMethodsAsSymbols from FCS) is missing overloads when invoked on driver.Navigate().GoToUrl. When using the Uri overload, the string one is missing:

The same happens in the other direction:

However, if driver.Navigate is moved to a binding, it works as expected:

@github-actions github-actions bot added this to the Backlog milestone Oct 11, 2024
@auduchinok auduchinok changed the title 'Parameter info' doesn't show all overloads FSharpCheckFileResults.GetMethodsAsSymbols doesn't provide all overloads Oct 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: New
Development

No branches or pull requests

1 participant