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

Support unicode variable names in scope #3847

@clee704

Description

@clee704

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?

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions