-
Notifications
You must be signed in to change notification settings - Fork 281
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Config: make withDialect
a public method
#4849
Conversation
when compiling Scastie against this PR, I still see:
so it seems the status quo has not been restored I was able to get it to compile with - }.withDialect(dialect)
+ }.withDialect(NamedDialect(NamedDialect.getName(dialect).get, dialect)) but this seems infelicitous and may actually be incorrect at runtime for all I know; it's just blind fumbling with code I don't understand the context of |
They are completely identical to the originals and they also convey the impression that their type is NamedDialect when it is just Dialect.
generally, the expectation was one wouldn't call instead of
with the new interface one would use
Also, |
thanks @kitbellew , that's super helpful |
Also: