Skip to content

Commit 722501c

Browse files
committed
Adds the debugger info
1 parent e7fe4ba commit 722501c

File tree

3 files changed

+5
-48
lines changed

3 files changed

+5
-48
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ If you are completely new to the TypeScript codebase, this YouTube video covers
1010

1111
<a href='https://www.youtube.com/watch?v=X8k_4tZ16qU&list=PLYUbsZda9oHu-EiIdekbAzNO0-pUM5Iqj&index=4'><img src="https://user-images.githubusercontent.com/49038/140491214-720ce354-e526-4599-94ec-72cdbecc2b01.png" /></a>
1212

13-
From there, you can start in the [First Steps to Contributing to the TypeScript Repo](./first_steps.md) consult the [Glossary](./GLOSSARY.md) or dive directly into the [`./codebase/`](./codebase) or [`./systems/`](./systems) folders.
13+
From there, you can start in the [First Steps to Contributing to the TypeScript Repo](https://github.com/microsoft/TypeScript-Compiler-Notes/tree/main/intro#the-typescript-compiler) consult the [Glossary](./GLOSSARY.md) or dive directly into the [`./codebase/`](./codebase) or [`./systems/`](./systems) folders.
1414

1515
## Asking Questions
1616

first_steps.md

Lines changed: 0 additions & 47 deletions
This file was deleted.

intro/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,10 +214,14 @@ the codebase for the key in that file. E.g:
214214

215215
### Embrace the debugger
216216

217+
You'll probably spend a good amount of time in the debugger, if this is completely new to you. [Here is a video from](https://www.youtube.com/watch?v=ChQ_sYjU8tU)
218+
[@alloy](https://github.com/alloy) covering the usage of the debugger inside VS Code, what the buttons do and how it all works.
219+
217220
To test it out the debugger, open up `src/compiler/checker.ts` find
218221
`function checkSourceFileWorker(node: SourceFile) {` and add a `debugger` statement on the first line in the
219222
function.
220223

224+
221225
```diff
222226
function checkSourceFileWorker(node: SourceFile) {
223227
+ debugger

0 commit comments

Comments
 (0)