다트 공식홈페이지에서 연습문제를 풀다가 no_leading_underscores_for_local_identifiers 를 알게되었다.
(에디터에서 바로바로 경고창이 떠서 놀랐다!)
https://dart-lang.github.io/linter/lints/no_leading_underscores_for_local_identifiers.html
다트에서 _는 private을 의미하기 때문에 해당되지 않는 경우(예를 들면 메서드의 맴버변수!!!)에서는 _를 사용하지 말라는 의미이다.
아무 생각없이 _를 메서드 안에서도 다 사용했었는데 앞으로는 올바른 위치에만 쓰도록 해야겠다!
'Language > Dart' 카테고리의 다른 글
[Exercism] Word Count (0) | 2022.08.31 |
---|---|
[Exercism] Difference Of Squares (0) | 2022.08.30 |
[Exercism] Armstrong Numbers #num #math (0) | 2022.08.19 |
[Exercism] Scrabble Score #가독성 있는 코드란?2 (0) | 2022.08.18 |
[Exercism] Leap #가독성 있는 코드란? (0) | 2022.08.18 |