Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upSupport some non-structural (nominal) type matching #202
Comments
|
Is there a better keyword here than "abstract" ? People are going to confuse it with "abstract class". +Needs Proposal |
|
w.r.t. Needs Proposal: do you mean how to implement it? For compilation to JS, nothing needs to be changed. But would need internal identifiers for new types being introduced and an extra check at assignment. |
|
Regarding a name, what about "nominal" types? Seems pretty common in literature. |
|
We're still writing up the exact guidelines on suggestions, but basically "Needs Proposal" means that we're looking for someone to write up a detailed formal explanation of what the suggestion means so that it can be more accurately evaluated. In this case, that would mean a description of how these types would fit in to all the various type algorithms in the spec, defining in precise language any "special case" things, listing motivating examples, and writing out error and non-error cases for each new or modified rule. |
|
@RyanCavanaugh Thanks! Not sure I have time for that this evening :) but if the idea would be seriously considered I can either do it, to get someone on my team to do so. Would you want an implementation also? Or would a clear design proposal suffice? |
|
@iislucas no implementation is necessary for "Needs Proposal" issues, just something on the more formal side like Ryan described. No rush ;) |
|
There is a workaround that I use a lot in my code to get nominal typing, consider:
|
|
Neat trick! Slight optimization, you can use:
(Slightly nicer/safer looking syntax) |
|
@Aleksey-Bykov nice trick. We have nominal Id types on the server (c#) that are serialized as strings (and we like this serialization). We've wondered of a good way to do that without it all being // FOO
interface FooId{
'FooId':string; // To prevent type errors
}
interface String{ // To ease client side assignment from string
'FooId':string;
}
// BAR
interface BarId{
'BarId':string; // To prevent type errors
}
interface String{ // To ease client side assignment from string
'BarId':string;
}
var fooId: FooId;
var barId: BarId;
// Safety!
fooId = barId; // error
barId = fooId; // error
fooId = <FooId>barId; // error
barId = <BarId>fooId; // error
// client side assignment. Think of it as "new Id"
fooId = <FooId>'foo';
barId = <BarId>'bar';
// If you need the base string
// (for generic code that might operate on base identity)
var str:string;
str = <string>fooId;
str = <string>barId; |
|
We could look at an implementation that largely left the syntax untouched: perhaps we could add a single new keyword that switches on "nominality" for a given interface. That would leave the TypeScript syntax largely unchanged and familiar.
So you can use a Client where a Customer is needed, but not vice versa. You could fix the error in this example by having Customer extend Client, or by using the correct named type - at which point the error goes away. You could use the "named" switch on classes and interfaces. |
|
|
You could also use it to make a type nominal in a specific context, even if the type was not marked as nominal:
|
What would that mean? |
|
When used as part of a type annotation, it would tell the compiler to compare types nominally, rather than structurally - so you could decide when it is important for the exact type, and when it isn't. It would be equivalent to specifying it on the class or interface, but would allow you to create a "structural" interface that in your specific case is treated as "nominal". Or, I have jumped the shark :) ! |
|
An example of an error (or non-error) would be nice. I can't figure out how you'd even use this thing interface CustomerId { name: string }
interface OrderId { name: string }
function getById(id: named CustomerId) {
//...
}
var x = {name: 'bob'};
getById(x); // Error, x is not the nominal 'named CustomerId' ?
function doubleNamed1(a: named CustomerId, b: named OrderId) {
a = b; // Legal? Not legal?
}
function doubleNamed2(a: named CustomerId, b: named CustomerId) {
a = b; // Legal? Not legal?
}
function namedAnon(x: named { name: string }) {
// What does this even mean? How would I make a value compatible with 'x' ?
} |
|
This is why I'm not a language designer :) I've shown in the example below that the keyword applies for the scope of the variable. If you make a parameter nominal, it is nominal for the whole function.
|
|
I admit that the notion of marking an item as nominal temporarily as per these recent examples may have been a little flippant - in the process of thinking through the implications of the feature I'm happy to accept it may be a terrible idea. I'd hate for that to affect the much more straightforward idea marking a class or interface as nominal at the point it is defined. |
|
Will need an inline creation syntax. Suggestion, a named assertion: var x = <named CustomerId>{name: 'bob'}; // x is now named `CustomerId`
getById(x); // okayPerhaps there can be a better one. |
|
I wonder what the use cases for library developers are to not request nominal type checking via Wouldn't you always be on the safe side if you use Maybe the whole problem is the duck typing system itself. But that's one problem TypeScript shouldn't solve, I suppose. |
|
Not to sound like a sour puss, but being a structural type system is a fork in the road early on in how the type system works. We intentionally went structural to fit in better with JavaScript and then added layer upon layer of type system machinery on top of it that assumes things are structural. To pull up the floor boards and rethink that is a ton of work, and I'm not clear on how it adds enough value to pay for itself. It's worth noting, too, the complexity it adds in terms of usability. Now people would always need to think about "is this type going to be used nominally or structurally?" Like Ryan shows, once you mix in patterns that are common in TypeScript the story gets murky. It may have been mentioned already, but a good article for rules of thumb on new features is this one: http://blogs.msdn.com/b/ericgu/archive/2004/01/12/57985.aspx The gist is that assume every new feature starts at -100 points and has to pay for itself in terms of added benefit. Something that causes a deep rethink of the type system is probably an order of magnitude worse. Not to say it's impossible. Rather, it's highly unlikely a feature could be worth so much. |
|
Agree with Jonathan here. I would have to see an extremely thorough proposal with some large code examples that prove this doesn't quickly become unmanageable. I have a hard time imagining how you could effectively use this modifier in a restricted set of circumstances without it leaking everywhere and ending up with you needing to use it on every type in your program (or giving up entirely on things like object literals). At that point you're talking about a different language that is basically incompatible with JavaScript. Remember that nominal systems come with pain too and have patterns they don't represent as well. The trade off to enable those patterns with a structural system is the occasional overlap of structurally equal but conceptually different types. |
|
So the most common use case for this (that I can think of) is type-safe ids. Currently, you can create these in TypeScript by adding a private member to a class (or a crazy identifier on an interface, although that only reduces the chance, whereas the private member trick works as expected). You have already made the decision that you want a nominal type when you create a type safe id class, because that is the purpose of such a class (and is the reason you aren't simply using So my question is as follows, this code does what a lot of people want: class ExampleId {
constructor(public value: number){}
private notused: string;
}i.e. you cannot create another type that will satisfy this structure, because of the private member...
The first of these two questions would probably cover 80% of the use cases. The second would allow similar cases and would be very useful from a This limits the feature to the creation of types that cannot be matched, which is already possible as described and for classes simply moves a "magic fix" into a more deliberate keyword. I would be happy to write up something for this. |
|
Certainly feel free to try to write up something more complete that can be evaluated, although I will be honest and say the chances of us taking a change like seem quite slim to me. Another data point to consider is that TypeScript classes had this behavior by default for some time (ie always behaved as a nominal type) and it was just very incongruous with the rest of the type system and ways in which object types were used. Obviously the ability to turn nominal on/off is quite different from always on but something to consider nonetheless. Also, as you note this pattern does allow some amount of nominal typing today, so it would be interesting to see if there are any codebases that have used this intermixing to a non-trivial degree (in a way that isn't just all nominal all the time). |
|
Note: lets not mix up the baby and bathwater here: the proposal in this On Fri, Aug 1, 2014 at 4:37 PM, Dan Quirk notifications@github.com wrote:
Lucas Dixon | Google Ideas |
|
@iislucas - as mentioned earlier, structural and nominal are fundamental choices in the type system. Any time you rethink part of the fundamental design choices, you need to understand the full impact. Even if it seems to be isolated to a small set of scenarios. The best way to full understand the impact is to have a more complete suggestion. I wouldn't confuse @danquirk's response as throwing the baby with the bathwater, but instead as the minimal amount of work any proposal would need that touches a fundamental design choice. |
|
I agree that a fully proposal is a good idea, and I'll do that. I worked a On Fri, Aug 1, 2014 at 5:17 PM, Jonathan Turner notifications@github.com
Lucas Dixon | Google Ideas |
|
@spion that looks really good to me. Nice! |
|
this is my code gen function: https://gist.github.com/xiaoxiangmoe/bf5294336f15d0d040db20b178f5a2c8 namespace _opaque{declare const opaque_key_0:unique symbol;export interface t0{[opaque_key_0]:0};declare const opaque_key_1:unique symbol;export interface t1{[opaque_key_1]:0}} /* prettier-ignore */ // tslint:disable-line
export interface ID extends _opaque.t0 {}
export interface ID1 extends _opaque.t1 {}
export namespace ID {
// @ts-ignore
export function fromString(id: string): ID;
export function fromString(id: string) {
return id;
}
// @ts-ignore
export function toString(id: ID): string;
export function toString(id: string) {
return id;
}
// @ts-ignore
export function compare(a: ID, b: ID): -1 | 0 | 1;
export function compare(a: string, b: string) {
return a.localeCompare(b);
}
export function equal(a: ID, b: ID) {
return a === b;
}
}
declare let id0: ID;
declare let id1: ID1;
id0 = id1; // Error: Property '[opaque_key_0]' is missing in type 'ID1' but required in type 'ID'.
|
We don't have actual opaque types in TypeScript yet, but this serves as a stand-in for now. This is just one of several possible ways to do this in TypeScript; see these threads for many details: - https://codemix.com/opaque-types-in-javascript/ - microsoft/TypeScript#15807 - microsoft/TypeScript#4895 - microsoft/TypeScript#202
|
Awesome! It will so helpful for refinement types in https://github.com/rtcad/rtcad/blob/master/src/__tests__/index.ts |
|
Ok, I've came to another way to declare a nominal type, it allows somewhat little more comfortable declaration, though two declarations per type are necessary:
Use cases:
Also it is possible to declare only the
|
|
For all the cases above, it seems like we can use something like "narrowing" mechanism for primitive types. The case is that we need to have types like type Guid extends string; // AFAIK, this will not break any existing syntaxSo the compiler knows that every type that extends type A extends string;
type B extends string;
declare let a: A;
declare let b: B;
declare let s: string;
s = a; // ok
s = b; // ok
a = s; // error; need to use typecast
a = s as a; // ok
a = b; // error;
a = b as a; // error, '... neither type sufficiently overlaps with the other ...'This also can be enhanced with more advanced subtyping, like Indeed, this is still a kind of nominal typing, since the compiler knows nothing about |
|
In case it is useful in this discussion, I learn that there are at least two flavor of nominal types. |
|
How about newtype f32 = number;
newtype f64 = f32;or (with avoiding extra keyword reservation) type f32 = new number;
type f64 = new f32; |
|
My workaround for this currently is to use a marker interface like this. interface TickerSymbol extends String {}The only problem is that when I want to use it as a index key, I have to cast it to interface TickerSymbol extends String {}
var symbol: TickerSymbol = 'MSFT';
// declare var tickers: {[symbol: TickerSymbol]: any}; // Error: index key must be string or number
declare var tickers: {[symbol: string]: any};
// tickers[symbol]; // Type 'TickerSymbol' cannot be used as an index type
tickers[symbol as string]; // OKHowever, JavaScript seems to be fine with index type of var obj = { one: 1 }
var key = new String('one');
obj[key]; // TypeScript Error: Type 'String' cannot be used as an index type.
// but JS gives expected output:
// 1 |
|
Using Consider this code:
A better solution:
The constant symbol |
|
That doesn’t work for types that aren’t symbols, like if i want a “FooID” string type to be unique (yet be recognized as a string) |
|
@lu4 points out that TypeScript already has nominal typing in symbols and enums. Perhaps someone familiar with those could describe if the same approach could be used for other nominal types. Language-wise newtype-like proposal seems straightforward. type meters = new number;
type width = new meters;
type thing = { a: string };
type otherthing = new thing; |
|
For what it's worth, this used to be very important to me but I found once I let my OCD calm down, the hacks that exist work really well. Especially because I ended up using "flavoring" instead of "branding" (https://spin.atomicobject.com/2018/01/15/typescript-flexible-nominal-typing/). I imagine an official solution would give me semantics closer to branding. |
|
There’s also somewhat nominal typing for classes with private fields (both hard and soft private): declare class FooHardPrivate {
#private;
}
// https://github.com/sandersn/downlevel-dts result:
declare class FooSoftPrivate {
private "#private";
}See TypeScript FAQ § When and why are classes nominal? for details. |
Proposal: support non-structural typing (e.g. new user-defined base-types, or some form of basic nominal typing). This allows programmer to have more refined types supporting frequently used idioms such as:
Indexes that come from different tables. Because all indexes are strings (or numbers), it's easy to use the an index variable (intended for one table) with another index variable intended for a different table. Because indexes are the same type, no error is given. If we have abstract index classes this would be fixed.
Certain classes of functions (e.g. callbacks) can be important to be distinguished even though they have the same type. e.g. "() => void" often captures a side-effect producing function. Sometimes you want to control which ones are put into an event handler. Currently there's no way to type-check them.
Consider having 2 different interfaces that have different optional parameters but the same required one. In typescript you will not get a compiler error when you provide one but need the other. Sometimes this is ok, but very often this is very not ok and you would love to have a compiler error rather than be confused at run-time.
Proposal (with all type-Error-lines removed!):