Rikito Taniguchi

Results 135 comments of Rikito Taniguchi

@vishalovercome Thank you for reporting! > Error in "problems" section: package XXX does not exist Do you mean `package XXX` is the package of the generated Java files (from protobuf),...

> That might be some stale compilation I think. Maybe the reproduction step would be to gnerate the protobuf files after indexing everything in Metals? :+1: > Hopefully the recently...

> Maybe we shouldn't extract a single apply with {}, since that is usually some kind of Future or Task and extracting value would change the logic. Instead Extract function...

Closing for https://github.com/scalameta/metals/pull/4274 :tada:

> When selected it also jumps you to a random place in your file. > Extracting in the case @ckipp01 found is not working at all, but it's only needed...

looks like the root cause is `ammonite-repl` doesn't support defining extension methods. I opened an issue https://github.com/com-lihaoyi/Ammonite/issues/1281

I'm trying to write something like this ```diff diff --git a/nativelib/src/main/resources/scala-native/module_load.cpp b/nativelib/src/main/resources/scala-native/module_load.cpp index bebbf5e3..512de189 100644 --- a/nativelib/src/main/resources/scala-native/module_load.cpp +++ b/nativelib/src/main/resources/scala-native/module_load.cpp @@ -71,7 +71,7 @@ typedef struct InitializationContext { } InitializationContext; inline...

## Show meaningful error/stacktrace to users - ~Currently, we just re-throw the C++ exception, and die with `libc++abi: terminating due to uncaught exception of type void*`.~ - ~Maybe we need...

Talked with @WojciechMazur. The `SIGBUS` (or SIGSEGV) signals are deliberately triggered to create safepoints for GC (by attempting to access `0x0` that's what `scalanative_gc_safepoint_poll()` does). Therefore, debugger naturally gonna pause...