You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue lists language features to be implemented for the v1.0 release. For the standard library roadmap, see #7.
Note that ts-llvm will not attempt to implement all JavaScript/TypeScript language features, only those that are used the most and are compatible with strict typing. Language features not in this list will be implemented later.
This issue lists language features to be implemented for the v1.0 release. For the standard library roadmap, see #7.
Note that ts-llvm will not attempt to implement all JavaScript/TypeScript language features, only those that are used the most and are compatible with strict typing. Language features not in this list will be implemented later.
See e.g. this JavaScript reference for a full list of JS language features:
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference
For a full list of TypeScript-specific language features, see the TypeScript handbook:
https://www.typescriptlang.org/docs/handbook/basic-types.html
Data types:
Statements:
Declarations:
Expressions:
Operators:
=
===
,!==
,<
,>
,<=
,>=
+
,-
,*
,/
,%
+
for strings&
,|
,^
,~
,<<
,>>
,>>>
!
,&&
,||
+=
,-=
,*=
,/=
,%=
,&=
,|=
,^=
,<<=
,>>=
,>>>=
[]
(for arrays)TS features:
null
orundefined
. See About Add Union Types #5 for more discussion.Miscellaneous:
The text was updated successfully, but these errors were encountered: