We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
스캐너
파서
바인더
체커
이미터
The text was updated successfully, but these errors were encountered:
bada308
No branches or pull requests
타입스크립트 컴파일 과정 정리
스캐너
는 소스 파일을 토큰 단위로 분리한다.파서
는 토큰을 이용하여 AST를 생성한다.바인더
는 AST의 각 노드에 대응하는 심볼을 생성한다. 심볼은 선언된 타입의 노드 정보를 담고 있다.체커
는 AST를 탐색하면서 심볼 정보를 활용하여 타입 검사를 수행한다.이미터
를 사용해서 자바스크립트 소스 파일로 변환한다.The text was updated successfully, but these errors were encountered: