-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
$ is sometimes used in TypeScript template params names to describe observables, e.g.: export interface Foo<T, S$ extends EntitySelectors$<T>> {...} Tsickle does not tranforms template param names. Closure Compiler currently only allows characters, digits and underscores. This means the code above results in a JSC_TOO_MANY_TEMPLATE_PARAMS error, when tsickle instantiates the interfaces with 2 template args. This change adds $ to allowed template name characters. PiperOrigin-RevId: 597805467
- Loading branch information
1 parent
70cc650
commit 8c52080
Showing
2 changed files
with
11 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters