-
Notifications
You must be signed in to change notification settings - Fork 12.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Design Meeting Notes, 11/20/2015 #5740
Labels
Design Notes
Notes from our design meetings
Comments
some additional notes on JSX and JS prototype assignments: JSX
Prototype assignments in Js
|
thank you πΉ! |
This was referenced Nov 30, 2015
Closed
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
IntrinsicAttributes
enum Direction { North = 'north', South = 'south', ...}
type NS = Direction.North|Direction.South
namespace Direction {
const North = "north"
<-const North: North
orconst North: Direction
?type North = "north"
}
type Direction = Direction.North | Direction.South | ...
symbol
s?UInt64
,rational
,bignum
,struct
,vector
, etc...)const x = 10
? With an opt-inlet x = Direction.North; // x: Direction
const x = Direction.North; // x: Direction.North
function f() { let/const x = Direction.North; return x; }
?The text was updated successfully, but these errors were encountered: