문제

I'm creating a JSON-RPC library and I need to know what characters are allowed as Haxe method names. I know that I must be cautious of allowed method names in the target languages as well, but I'm trying to start with Haxe : )

도움이 되었습니까?

해결책

Alpha or underscore for the first symbol and alpanumeric or underscore for the next symbols.

[a-zA-Z_][a-zA-Z0-9_]*

is the regexp for haxe method name.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top