You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add test case for #8229
* Do not report errors during contextual typecheck
Fixes#8229
* Handle the scenario when let [a=undefined]=[]
* Don't allow `.ts` to appear in an import
* Add specific error message for unwanted '.ts' extension
* Allow `await` in a simple unary expression
* More tests
* Forbid `await await`
* Allow `await await`
* Improve error message
* Don't allow ".d.ts" extension in an import either.
* Rename 'find' functions
* Move supportedTypescriptExtensionsWithDtsFirst next to supportedTypeScriptExtensions and rename
* Fix comment
* Treat special property access symbol differently
... when retriving documentation
* Fix tests
* Update shim version to be 2.1 (#10424)
* Check return code paths on getters (#10102)
* Check return paths on getters
* Remove TODO comment
* Remove extraneous arguments from harness's runBaseline (#10419)
* Remove extraneous arguments from runBaseline
* Address comments from @yuit
* Remove needless call to basename
* Refactor baseliners out of compiler runner (#10440)
* CR feedback
* fix broken tests
* Pass in baselineOpts into types baselines so that RWC baselines can be written to internal folder (#10443)
Copy file name to clipboardExpand all lines: src/compiler/program.ts
+29-26Lines changed: 29 additions & 26 deletions
Original file line number
Diff line number
Diff line change
@@ -662,51 +662,52 @@ namespace ts {
662
662
* @param {boolean} onlyRecordFailures - if true then function won't try to actually load files but instead record all attempts as failures. This flag is necessary
663
663
* in cases when we know upfront that all load attempts will fail (because containing folder does not exists) however we still need to record all failed lookup locations.
0 commit comments