• @cactusupyourbutt@lemmy.world
    link
    fedilink
    910 months ago

    so he does all of this because he dislikes transpiling because supposedly it makes debugging etc harder? does he know about sourcemaps?

    he also says he doesnt like type information in his code, so he adda them as comments. the type information is still there, how is this an improvement?

    • @scorpionix@feddit.de
      link
      fedilink
      210 months ago

      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.

      • @atheken@programming.dev
        link
        fedilink
        510 months ago

        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@lemmy.world
          link
          fedilink
          4
          edit-2
          10 months ago

          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.

          • @atheken@programming.dev
            link
            fedilink
            English
            3
            edit-2
            10 months ago

            🙈🙉🙊

            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@lemmy.world
        link
        fedilink
        210 months 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.

        • @scorpionix@feddit.de
          link
          fedilink
          110 months ago

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

          • @Miaou@jlai.lu
            link
            fedilink
            1
            edit-2
            10 months ago

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