this post was submitted on 08 Sep 2023
52 points (69.1% liked)

Programming

18824 readers
659 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 2 years ago (3 children)

The issue with transpiling is that the code that's running in production is not necessarily the one that's been tested. A source map doesn't fix that.

[–] [email protected] 6 points 2 years ago (1 children)

I loathe this line of reasoning. It's like saying "unless you wrote assembly, compiling your code could change what it does."

Guess what, the CPU reorders/ellides assembly, too! You can't trust anything!

[–] pivot_root 4 points 2 years ago* (last edited 2 years ago) (1 children)

Haha, what is this, the 90s?

Assembled instructions aren't even the lowest non-hardware stage in instruction execution. There's proprietary microcode sitting a level below your typical x86 ISA.

And even then, what if—God forbid—the hardware has errata. A line has to be drawn somewhere between trusting that what you write is logically correct at all stages below it. If someone is unable to trust that the environment they wrote code for works, they better start learning how to create PCBs and writing for FPGAs.

[–] [email protected] 3 points 2 years ago* (last edited 2 years ago) (1 children)

🙈🙉🙊

I know, but I didn’t want to scare the children.

I also chose to pretend it’s just little gnomes moving the bytes around. Less magic.

[–] pivot_root 1 points 2 years ago

What are electrons, but a miserable pile of little magic gnomes? But enough talk... have a upvote!

[–] pivot_root 3 points 2 years ago

Unless someone is using some language extensions, transpiling from TS to an ECMAScript module using the ESNext target merely drops the type annotations.

If not running the exact same code being developed is an issue, it's an easy fix.

[–] [email protected] 1 points 2 years ago* (last edited 2 years ago) (1 children)

Ugh? Why shouldn't it be the same code?

[–] [email protected] 1 points 2 years ago (1 children)

Because Browsers can't run Typescript, they run JavaScript. That's why the intermediate conversion step isneededd.

[–] [email protected] 1 points 2 years ago* (last edited 2 years ago)

But your tests are running on the compiled code too. Nothing can be tested but handwritten assembly, with such approach