microsoft / microsoft/TypeScript
Analysis support for metaprogramming decorators
Nobody has claimed this yet.
- Dominant language
- Go
- Stars
- 111k
- Forks
- 14.3k
- Avg merge
- 2d 4h
- Merged PRs (30d)
- 132
Description
Search Terms
decorator, metaprogramming, rename, renaming
Suggestion
As decorators near Stage 3, use cases are coming up that would currently pose problems for TypeScript due to their dynamic nature. Any additional properties added won't be visible, renamed properties won't analyze, and custom visibility schemes like protected or friends won't be understood.
This is another area where the dynamic nature of JavaScript might stretch the TypeScript type system, but with mapped and conditional types we might be able to describe a subset of the use-cases in the type system.
I don't have a concrete solution to suggest, but a couple of requirements that a solution should meet:
- Describe the change in type of a decorated property
- Describe the change in name of a property
- Describe newly introduced properties (ie, private storage for an
@observedproperty) - Describe changes to a class (ie, added static properties)
Mapped and conditional types already support some type transformation, but not transforming the keys, or describing a transformation across the static and instance types.
Maybe there's a way to expand on the list-comprehension-like syntax for mapped types to be even more like a list comprehension and allow
- Transformations of property names
- Filtering
Here's a rough idea of a mapping that would transform a key name to a symbol, and filter by properties decorated with a specific decorator:
type Namespaced<T> = {
[Symbol(P): T[P] for P in keyof T where namespaced decorates P];
}
Symbol(P) and where namespaced decorates P are obviously very made up and probably not great choices choices.
That's not exactly right for use from individual decorators though. Since decorators take and return an extended PropertyDescriptor, maybe we can just type the decorator itself:
const namespaced = <P extends PropertyDescriptor>(descriptor: P): NamespacedPropertyDescriptor<P> => { ... }
type NamespacedPropertyDescriptor<P extends PropertyDescriptor> = {
key: Symbol(P['key']);
} extends P;
(I threw in the extends type operator because key must override key in P, so an intersection won't work. Some kind of object-spread-like syntax could also work)
That describes that the key of the property is transformed, but it doesn't associate it with the declaration of that symbol.
One possibility for that is for TypeScript to understand the type of the finisher method on the property descriptor and use that to infer changes to the class itself:
// P is the PropertyDescriptor passed to the decorator
// C is the constructor type for static properties, there would need to be a instance type
// as well
type NamespacedPropertyDescriptor<P extends PropertyDescriptor, C> = {
key: typeof C[P['key']];
finisher(klass: C): NamespacedClass<C, P['key']>;
};
type NamespacedClass<C, K> = {
readonly K: symbol;
} extends C;
I realize I just put a lot of hand-wavy, complicated, probably not workable ideas up there, but maybe there's some better direction for the solution (short of adding an imperative type language) those could inspire.
Another approach would be for TypeScript to intrinsically understand the operation of a few well-known decorators as and not allow their definition within the type system itself.
Use Cases
One example of name-rewriting decorators is to prevent name collisions with string properties by renaming a property to a unique Symbol defined on the class:
abstract class A {
@namespaced f() {}
}
abstract class B {
@namespaced f() {}
}
class C implements A, B {
[A.f]() {
console.log('C[A.f]');
}
[B.f]() {
console.log('C[B.f]');
}
}
Class A above would be equivalent to this manual namespacing:
class A {
static f = Symbol();
[A.f]() {}
}
Examples
/**
* Rewrites a string-keyed class property to use a Symbol defined on the constructor.
* @
*/
const namespaced = (descriptor: PropertyDescriptor) => {
if (typeof descriptor.key === 'symbol') {
return descriptor;
}
const symbol = Symbol(descriptor.key);
return {
key: symbol,
...descriptor,
finisher(klass) { Object.defineProperty(klass, descriptor.key, {value: symbol}); }
};
};
Checklist
My suggestion meets these guidelines:
- This wouldn't be a breaking change in existing TypeScript / JavaScript code
- This wouldn't change the runtime behavior of existing JavaScript code
- This could be implemented without emitting different JS based on the types of the expressions
- This isn't a runtime feature (e.g. new expression-level syntax)
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by reviewing the decorator examples and the requirements for changing property types and names, adding properties, and transforming class types. No files, tests, or implementation entry points are named, and the proposal does not provide a concrete solution. Done would require a defined type-system design and corresponding implementation and tests.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- javascript, typescript
- Domain
- compilers
- Issue type
- Feature
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Stale
- Clarity
- Needs clarification
- Newbie friendliness
- 20/100