This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Description
ES 5.1 allows unicode characters for identifier names but angular doesn't. For example, the following code won't work:
$scope.がな = 1; // fine
$scope.$watch('がな', function (value) {
alert('new value: ' + value);
}); // doesn't work (Lexer Error)
How about supporting them in angular as well?