-
Notifications
You must be signed in to change notification settings - Fork 17
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
[TOOLS-4684] Apply Oracle PL/SQL Procedure Parser to CMT #247
[TOOLS-4684] Apply Oracle PL/SQL Procedure Parser to CMT #247
Conversation
10c4204
into
CUBRID:release/oracle_procedure_migration
} | ||
|
||
@Override | ||
public void enterRoutine_definition(PloParser.Routine_definitionContext ctx) { |
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.
Function에 underscore를 추가한 이유를 알 수 있을까요?
java 메소드이기때문에 제거하는 것이 좋지 않을까 합니다.
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.
해당 소스 코드는 현익님께서 만드신 코드라 C 언어 스타일로 작성된 부분이 있는거 같습니다.
저도 이 부분은 Java 코드 스타일과는 맞지 않다고 생각해 수정하도록 하겠습니다.
} | ||
|
||
@Override | ||
public boolean equals(Object o) { |
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.
반복문이 아닌 경우 o라는 변수보다는 obj로 표현하는 것이 더 좋지 않을까요?
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.
저도 코드에서 명확한 변수명을 사용하는 것이 더 좋다고 생각합니다.
enterRoutine_definition
를 수정하면서 이 부분도 수정하도록 하겠습니다.
http://jira.cubrid.org/browse/TOOLS-4684
Purpose
Implementation
N/A
Remarks
Oracle PL/SQL Procedure Parser - TOOLS-4683