forked from lukehoban/es6features
-
Notifications
You must be signed in to change notification settings - Fork 9
번역 중간 결과물 #28
New issue
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
Merged
Merged
번역 중간 결과물 #28
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
9bcbcd5
feat: 이터레이터 + for…of 번역 #1
apple77y 05d63ab
feat: 제너레이터 번역 #2
apple77y 320c00e
feat: Map + Set + WeakMap + WeakSet 번역 #3
apple77y 95c72b4
feat: 프록시 번역 #4
apple77y 3873e9a
feat: 심볼 번역 #5
apple77y db4709b
feat: 프로미스 번역 #7
apple77y c1879c6
feat: 빌트인 객체의 서브클래스화 번역 #6
apple77y 6e6487f
fix: 이터레이터 + for…of 오타 교정 #1
apple77y 539cebc
feat: 이터레이터 + for…of 코드 주석 번역 #1
apple77y File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jeonghwan-kim @pouu69
515라인과 516에 있는 부분의 내용을 이해 못해서 도움 요청합니다.
static으로 정의된 메소드의 역할을 이야기하는 것 같은데, 실제로 저 메소드를 호출하려면 어떻게 써야하나요?
ex) Array.xxx();
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
제생각에 저렇게 심볼로 생성한이유는 저 Array클래스를 상속받은 하위클래스에서 Array 그러니깐 배열의 속성을 그대로 사용하기위해 하는걸로 알고있습니다.
그뢔서 하위클래스에서 배열이랑 똑같이 사용이 가능하게된다고 합니다. length 같은거요.
확실한건 아닙니다. 그래서 사용법은 저걸 상속받은 하위클래스에서 x.length 요라고 쓰는거같습니다.라고 생각이듭니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
하위 클래스에서 상위 클래스의 속성을 그대로 사용하는 건
하위 클래스 constructor에서 super();만 해주면 되는 거 아닌가요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
음 단순히 array 클래스를 상속받았다고 히위클래스가 진짜 배열객체가되는게 아니라서
하위클래스가 진짜우리가 알고있는 배열객체로 뿅 하고 변신시키려는 횅위라고 알고있습니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
그리고 제가방금 살짝 찾아봤는데 Symbol.species ? 라는 형식으로 빌트인내장클래스를 결합한다고 하는데 참고해서 검색좀... 제가몸이불편해서..
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
네넵, 알겠습니다.
일단 정환님 의견까지 확인하고 추가 커밋 푸쉬할게요!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jeonghwan-kim 소환
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
뾰로롱~ 소환되었습니다.
해당 섹션은 논의 중이다가 es6에서 제외(?)된 내용같습니다.
MDN에도 없구요.
@@create를 호출하지 않고 부모클래스 생성자 함수가 초기화 작업을 한다로 이해했습니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
저도 @@create 는 찾아봐도 없엇는데, 제외되어서 그런거엿군요.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
아 원본 저장소의 issue를 찾아 볼 생각을 못 했네요ㅎㅎ
감사합니다.