Microsoft/TypeScript

The parsed identifier is incomplete due to updateSourceFile.

Open

#60.773 geöffnet am 16. Dez. 2024

Auf GitHub ansehen
 (2 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)TypeScript (6.726 Forks)batch import
BugDomain: ParserHelp Wanted

Repository-Metriken

Stars
 (48.455 Stars)
PR-Merge-Metriken
 (Durchschn. Merge 6T 17h) (9 gemergte PRs in 30 T)

Beschreibung

🔎 Search Terms

updateSourceFile

🕗 Version & Regression Information

5.6.0

⏯ Playground Link

No response

💻 Code

// Your code here

🙁 Actual behavior

class Test { testMethod() { let newLocal = "kk" let a = 123 let b = 12 } } After the value of variable b is changed, the identifiers set of sourceFile parsed by the updateSourceFile method contains only Test, testMethod, and b. Variables a and newLocal are lost.

🙂 Expected behavior

the identifiers set of sourceFile contains Test, testMethod, b, a and newLocal.

Additional information about the issue

No response

Contributor Guide