惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
博客园 - 司徒正美
Last Week in AI
Last Week in AI
博客园 - 聂微东
Jina AI
Jina AI
月光博客
月光博客
爱范儿
爱范儿
美团技术团队
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Hugging Face - Blog
Hugging Face - Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 叶小钗
T
Tailwind CSS Blog
博客园 - 【当耐特】
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Apple Machine Learning Research
Apple Machine Learning Research
有赞技术团队
有赞技术团队
罗磊的独立博客
小众软件
小众软件
雷峰网
雷峰网
IT之家
IT之家
大猫的无限游戏
大猫的无限游戏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
Visual Studio Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Why Autofixing Missing TypeScript Arguments Is Harder Tha...
i-am-killvis · 2026-05-18 · via DEV Community

Why Autofixing Missing TypeScript Arguments Is Harder Than It Looks

One TypeScript error that looked deceptively simple to autofix at first was this:

greet("john");

Enter fullscreen mode Exit fullscreen mode

TypeScript immediately complains:

Expected 2 arguments, but got 1.

Enter fullscreen mode Exit fullscreen mode

At first glance, the fix feels obvious.

Why not just automatically transform this into:

greet("john", 0);

Enter fullscreen mode Exit fullscreen mode

or maybe:

greet("john", "");

Enter fullscreen mode Exit fullscreen mode

depending on the parameter type?

The compiler error disappears instantly.

Problem solved… right?


The Dangerous Part

The more I thought about it though, the more uncomfortable that approach started feeling.

Because now the compiler is happy.

But the runtime behavior may already be wrong.

That 0 might silently affect:

  • pricing logic
  • discounts
  • analytics
  • permissions
  • feature flags
  • business calculations

The code compiles.

But the original intent may already be broken.


A Small Example

Imagine something like this:

applyDiscount(user, percentage);

Enter fullscreen mode Exit fullscreen mode

Now suppose the developer accidentally forgets the second argument:

applyDiscount(user);

Enter fullscreen mode Exit fullscreen mode

A naive autofix might generate:

applyDiscount(user, 0);

Enter fullscreen mode Exit fullscreen mode

TypeScript becomes happy.

But now the business logic silently changes.

That missing argument may not have meant:

0% discount

Enter fullscreen mode Exit fullscreen mode

It may have meant:

"the developer forgot something important"

Enter fullscreen mode Exit fullscreen mode

That was a pretty important realization for me.


Compiler Correct ≠ Runtime Correct

One thing I’ve started realizing while building TypeScript tooling is this:

making the compiler happy

Enter fullscreen mode Exit fullscreen mode

and:

preserving runtime intent

Enter fullscreen mode Exit fullscreen mode

are very different problems.

A fix can be technically valid from the compiler’s perspective while still being dangerous for the actual application logic.

That’s where autofixing becomes surprisingly tricky.

Because the more aggressively a tool tries to “repair” code automatically,
the easier it becomes to silently change behavior developers actually cared about.


Why This Felt Wrong

Initially, I tried generating values automatically based on the parameter type.

Something like:

number  -> 0
string  -> ""
boolean -> true

Enter fullscreen mode Exit fullscreen mode

From the compiler’s perspective:

perfect

Enter fullscreen mode Exit fullscreen mode

From a runtime/business perspective:

potentially dangerous

Enter fullscreen mode Exit fullscreen mode

Because now the tool was effectively:

inventing developer intent

Enter fullscreen mode Exit fullscreen mode

And that felt wrong.

A developer may have forgotten:

  • a discount percentage
  • a tax value
  • a feature flag
  • a permission value
  • a calculation input

Automatically generating fake business values could hide real logic mistakes instead of helping reveal them.


Rethinking The Repair Strategy

That realization eventually made me redesign the TS2554 repair logic inside my CLI tool fixmyfile.

Instead of inventing business values automatically,
the tool now prefers minimal compiler-safe placeholders like:

undefined as any

Enter fullscreen mode Exit fullscreen mode

So this:

greet("john");

Enter fullscreen mode Exit fullscreen mode

becomes:

greet("john", undefined as any);

Enter fullscreen mode Exit fullscreen mode

The important difference is that:

  • the compiler error disappears
  • the missing value stays visible
  • runtime intent is not silently fabricated
  • developers can intentionally revisit the logic later

That felt like a much safer tradeoff.


The Interesting Part Wasn't The AST Transform

Ironically, generating the AST transformation itself was not even the hardest part.

The harder part was making the fix:

  • predictable
  • minimal
  • non-destructive
  • repeatable
  • compiler-aware

because AST transforms can become destructive very quickly if existing arguments are not preserved carefully.

Early versions of the fixer accidentally replaced valid existing arguments entirely.

That was the moment I started realizing how much developer tooling is really about:

preserving developer trust

Enter fullscreen mode Exit fullscreen mode

instead of simply replacing syntax.


Small TypeScript Friction Adds Up

One thing I keep noticing in TypeScript ecosystems is that many frustrations are not huge architectural problems.

They’re usually:

  • repetitive
  • mechanical
  • mentally draining
  • individually tiny
  • but exhausting when repeated constantly

Things like:

user?.name

Enter fullscreen mode Exit fullscreen mode

.filter(Boolean)

Enter fullscreen mode Exit fullscreen mode

greet("john")

Enter fullscreen mode Exit fullscreen mode

all look small individually.

But repeated hundreds of times,
they slowly create workflow friction.


Final Thoughts

I don’t think TypeScript is wrong here.

The compiler is intentionally conservative.

But I do think there’s a growing opportunity for tooling that helps bridge the gap between:

what developers obviously mean

Enter fullscreen mode Exit fullscreen mode

and:

what the compiler can safely infer

Enter fullscreen mode Exit fullscreen mode

That’s the direction I’ve been exploring recently with compiler-aware AST fixes and TypeScript tooling.

And honestly, it has become one of the most interesting parts of working with the TypeScript ecosystem so far.


If you’ve run into similar TypeScript friction patterns repeatedly, I’d genuinely love to hear which ones annoy you the most.