We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
in this line we can see that the -Xsemanticdb setting has an abbreviation -Ysemanticdb:
-Xsemanticdb
-Ysemanticdb
https://github.com/lampepfl/dotty/blob/bfb0b8194a3e96d08abf8d96f3cba8d701febc3e/compiler/src/dotty/tools/dotc/config/ScalaSettings.scala#L138
However invoking the compiler with -Ysemanticdb warns that is is an invalid flag and the setting is not active.
$>scalac -Ysemanticdb bad option '-Ysemanticdb' was ignored Usage: scalac <options> <source files> ...
passing -Ysemanticdb should act like -Xsemanticdb
linked to #10844, but is more general than that, e.g. -classpath has an abbreviation -cp that is also not accepted
-classpath
-cp
The text was updated successfully, but these errors were encountered:
#10810 has a smaller issue number.
Sorry, something went wrong.
Thanks for noticing
No branches or pull requests
Minimized code
in this line we can see that the
-Xsemanticdb
setting has an abbreviation-Ysemanticdb
:https://github.com/lampepfl/dotty/blob/bfb0b8194a3e96d08abf8d96f3cba8d701febc3e/compiler/src/dotty/tools/dotc/config/ScalaSettings.scala#L138
However invoking the compiler with
-Ysemanticdb
warns that is is an invalid flag and the setting is not active.Output
Expectation
passing
-Ysemanticdb
should act like-Xsemanticdb
linked to #10844, but is more general than that, e.g.
-classpath
has an abbreviation-cp
that is also not acceptedThe text was updated successfully, but these errors were encountered: