Tobias Schlatter

Results 38 issues of Tobias Schlatter

Originated here: scala-js/scala-js#965

enhancement

Follow up to #381, #59. Related: https://github.com/buchgr/bazel-remote/issues/59#issuecomment-1185025200 It would be nice to have an option for different users for write / read permissions (without anonymous reads). The use case is...

Follow-up form here: https://github.com/scala-js/scala-js/blob/244fa5307edd253332b46a97408e198672b387a6/linker/shared/src/main/scala/org/scalajs/linker/frontend/optimizer/OptimizerCore.scala#L1236-L1240

Following up from https://github.com/scala-js/scala-js/issues/4925#issuecomment-1878517715_ IMHO Java streams are sufficiently important that if we cannot support them, we should at the very least formally document that (and why).

missing javalib

IMO there are likely a couple of low-hanging fruits in terms of linker memory consumption. Last time I checked, a large portion of memory was taken by `::` (List's cons)....

optimization

I realized this when looking at https://github.com/gemini-hlsw/lucuma-core/pull/708#discussion_r1174045510 `index.js` / `index.ts` is special in the entire JS ecosystem as the "default" module (similar to `__init__.py` in python). It is likely not...

enhancement

Follow-up to #4736 One last follow-up: I installed d8 (debug v8) as suggested in the linked blog post. ``` $ ~/.jsvu/bin/v8-debug V8 version 11.1.192 d8> ``` I was able to...

optimization

### What happened? It seems that ts_project doesn't expose this config option yet and the defaults are different. # Without transpiler 1. data is passed to the `ts_project` rule here:...

bug
need: investigation

Consider: ```javascript var x = true window.setInterval(1000, function() { if (x) { x = false; throw "foo"; } scalaJSCom.send("hello"); } ``` The message(s) `"hello"` should not be sent.

bug