The operator identifier lexer grammar has been revised to simplify the rules
for operators that start with a dot ("."). The new rule is that an operator
that starts with a dot may contain other dots in it, but operators that start
with some other character may not contain dots. For example:
x....foo --> "x" "...." "foo"
x&%^.foo --> "x" "&%^" ".foo"
----------------- 分割线 ------------------
연산자의 구문이 다소 수정되어 더 간단한 규칙을 제공합니다.
.
으로 시작하는 연산자에는.
또는..
와 같이 내부에 다른...
이 포함될 수도 있습니다..
도 연산자 자체에 통합되므로x....foo
의 연산자는...
이나 다른 연산자가 아닌(x)(...)(.foo)
이어야 합니다..
처럼 연산자가&%^
으로 시작하지 않으면&%^.
뒤의.
은 이 연산자에 속하지 않고.foo
에 속합니다(foo는 열거형 멤버입니다).