Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ruby,refactor: handle symbols in parseIdentifier
parseIdentifier() handled symbols, ':' prefixed identifiers partially. However, it was not perfect. So callers handled ':' in their side. This change moves the resposiblity handling ':' from the callers to parseIdentifier(). The complexity about reading identifiers represented in various ways: name, :name, :'name', and :"name" can be handled in one place, parseIdentifier(). Signed-off-by: Masatake YAMATO <yamato@redhat.com>
- Loading branch information