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
Errors reported from Frgaal compiler are, parsed by sbt as warnings rather than errors. For example:
sbt
[info] compiling 1 Java source to /home/pavel/dev/enso/engine/runtime/target/scala-2.13/test-classes ... [warn] Unexpected javac output: warning: The following options were not recognized by any processor: '[truffle.dsl.SuppressWarnings]' [warn] /home/pavel/dev/enso/engine/runtime/src/test/java/org/enso/interpreter/test/caches/ModuleCacheTest.java:50: error: serialize(EnsoContext,CachedModule) has protected access in ModuleCache [warn] byte[] arr = module.getCache().serialize(ensoCtx, cm); [warn] ^ [warn] /home/pavel/dev/enso/engine/runtime/src/test/java/org/enso/interpreter/test/caches/ModuleCacheTest.java:53: error: deserialize(EnsoContext,byte[],Metadata,TruffleLogger) has protected access in ModuleCache [warn] var cachedIr = module.getCache().deserialize(ensoCtx, arr, meta, null); [warn] ^ [warn] /home/pavel/dev/enso/engine/runtime/src/test/java/org/enso/interpreter/test/caches/ModuleCacheTest.java:76: error: serialize(EnsoContext,CachedModule) has protected access in ModuleCache [warn] byte[] arr = module.getCache().serialize(ensoCtx, cm); [warn] ^ [warn] /home/pavel/dev/enso/engine/runtime/src/test/java/org/enso/interpreter/test/caches/ModuleCacheTest.java:79: error: deserialize(EnsoContext,byte[],Metadata,TruffleLogger) has protected access in ModuleCache [warn] var cachedIr = module.getCache().deserialize(ensoCtx, arr, meta, null); [warn] ^ [warn] 4 errors [warn] 1 warning. [warn] frgaal exited with exit code 1 [error] (Test / compileIncremental) javac returned non-zero exit code [error] Total time: 3 s, completed Dec 11, 2023, 7:00:16 PM
This can lead to some confusions.
Let's modify javac output processor in FrgaalCompiler.scala such that errors are correctly recognized.
FrgaalCompiler.scala
The text was updated successfully, but these errors were encountered:
Jaroslav Tulach reports a new STANDUP for yesterday (2024-05-02):
Progress: - fix for #8513 as #9834
jdk.internal.vm.TranslatedException: Error decoding exception
WithWarnings
isException
DiscordDiscord - A New Way to Chat with Friends & CommunitiesDiscord is the easiest way to communicate over voice, video, and text. Chat, hang out, and stay close with your friends and communities.
Sorry, something went wrong.
Jaroslav Tulach reports a new STANDUP for yesterday (2024-05-03):
Progress: - WithWarnings and MetaIsATest: 7489bec
MetaIsATest
WarningsTest
JaroslavTulach
Successfully merging a pull request may close this issue.
Errors reported from Frgaal compiler are, parsed by
sbt
as warnings rather than errors. For example:This can lead to some confusions.
Let's modify javac output processor in
FrgaalCompiler.scala
such that errors are correctly recognized.The text was updated successfully, but these errors were encountered: