This also helps identify fragile or even dead code.
이것은 또한 깨지기 쉬운 코드나 심지어는 죽은 코드를 식별하는 데 도움이됩니다.
Coverage will help to identify dead code.
In large programming projects, it is sometimes difficult to recognize and eliminate dead code, particularly when entire modules become dead.
큰 프로그래밍 프로젝트들에서, 불필요한 코드를 인식하고 제거하는 것은 가끔은 어려우며, 특히 전체 모듈들이 불필요할 경우에는 더 그렇다.
This essentially makes the statement "this.a = 37;" dead code.
(이것은 본질적으로 "this.a = 37;"가 죽은 코드를 만든다.
How about removing dead code?
만약 죽은 코드를 제거하지 않는다면?
It parses your JavaScript, analyzes it, removes dead code and rewrites and minimizes what's left.
그것은 자바 스크립트 구문 분석을 분석, 죽은 코드를 제거하고 다시 쓰고 남은 것을 최소화 할 수 있습니다.
Dead code is code that is never executed or used.
죽은 코드는 사용하지 않거나 도달할 수 없는 코드를 말한다.
Dead code means unnecessary, inoperative code that can be removed.
죽은 코드는 사용하지 않거나 도달할 수 없는 코드를 말한다.
Some of those functions may be roots, things we must keep alive, and we want to perform Dead Code Elimination (DCE), which is to remove everything not reachable from a root.
이 함수들의 일부는 root(계속 살아 있도록 유지해야하는 것들)일 수 있고, 우리는 데드 코드 제거(Dead Code Elimination, DCE)를 수행해 root로부터 도달할 수 없는 모든 것들을 제거하려고합니다.
Dead code elimination is a form of compiler optimization in which dead code is removed from a program.