Skip to content

Commit d9b1826

Browse files
panagosg7facebook-github-bot
authored andcommitted
add support for const type parameter (JS changes)
Summary: JS changes for support for [`const` modifier on type parameters](microsoft/TypeScript#51865). E.g. ``` function foo<const T>(x: T): [T] {...} ``` Reviewed By: SamChou19815 Differential Revision: D66856337 fbshipit-source-id: 109911abd8400b97a35d20d611b376dd12c46bed
1 parent 5ce24bf commit d9b1826

File tree

8 files changed

+18
-0
lines changed

8 files changed

+18
-0
lines changed

tools/hermes-parser/js/flow-api-translator/src/TSDefToFlowDef.js

+1
Original file line numberDiff line numberDiff line change
@@ -1884,6 +1884,7 @@ const getTransforms = (originalCode: string, opts: TranslationOptions) => {
18841884
type: 'TypeAnnotation',
18851885
typeAnnotation: Transform.TSTypeAnnotation(node.constraint),
18861886
}),
1887+
const: false,
18871888
default:
18881889
node.default == null
18891890
? null

tools/hermes-parser/js/hermes-estree/src/types.js

+1
Original file line numberDiff line numberDiff line change
@@ -1606,6 +1606,7 @@ export interface TypeParameterDeclaration extends BaseNode {
16061606
export interface TypeParameter extends BaseNode {
16071607
+type: 'TypeParameter';
16081608
+name: string;
1609+
+const: boolean;
16091610
+bound: null | TypeAnnotation;
16101611
+variance: null | Variance;
16111612
+default: null | TypeAnnotationType;

tools/hermes-parser/js/hermes-parser/__tests__/__snapshots__/ComponentDeclaration-test.js.snap

+4
Original file line numberDiff line numberDiff line change
@@ -4954,6 +4954,7 @@ exports[`ComponentDeclaration type parameters Babel 1`] = `
49544954
"params": [
49554955
{
49564956
"bound": null,
4957+
"const": false,
49574958
"default": null,
49584959
"name": "T1",
49594960
"type": "TypeParameter",
@@ -4962,6 +4963,7 @@ exports[`ComponentDeclaration type parameters Babel 1`] = `
49624963
},
49634964
{
49644965
"bound": null,
4966+
"const": false,
49654967
"default": null,
49664968
"name": "T2",
49674969
"type": "TypeParameter",
@@ -5040,6 +5042,7 @@ exports[`ComponentDeclaration type parameters ESTree 1`] = `
50405042
"params": [
50415043
{
50425044
"bound": null,
5045+
"const": false,
50435046
"default": null,
50445047
"name": "T1",
50455048
"type": "TypeParameter",
@@ -5048,6 +5051,7 @@ exports[`ComponentDeclaration type parameters ESTree 1`] = `
50485051
},
50495052
{
50505053
"bound": null,
5054+
"const": false,
50515055
"default": null,
50525056
"name": "T2",
50535057
"type": "TypeParameter",

tools/hermes-parser/js/hermes-parser/__tests__/__snapshots__/ConditionalTypeAnnotation-test.js.snap

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ exports[`ConditionalTypeAnnotation Basic Babel 1`] = `
1616
"params": [
1717
{
1818
"bound": null,
19+
"const": false,
1920
"default": null,
2021
"name": "TKey",
2122
"type": "TypeParameter",
@@ -114,6 +115,7 @@ exports[`ConditionalTypeAnnotation Basic ESTree 1`] = `
114115
"params": [
115116
{
116117
"bound": null,
118+
"const": false,
117119
"default": null,
118120
"name": "TKey",
119121
"type": "TypeParameter",
@@ -179,6 +181,7 @@ exports[`ConditionalTypeAnnotation InferType ESTree 1`] = `
179181
"bound": {
180182
"type": "NumberTypeAnnotation",
181183
},
184+
"const": false,
182185
"default": null,
183186
"name": "T",
184187
"type": "TypeParameter",

tools/hermes-parser/js/hermes-parser/__tests__/__snapshots__/HookDeclaration-test.js.snap

+4
Original file line numberDiff line numberDiff line change
@@ -884,6 +884,7 @@ exports[`HookDeclaration type parameters Babel 1`] = `
884884
"params": [
885885
{
886886
"bound": null,
887+
"const": false,
887888
"default": null,
888889
"name": "T1",
889890
"type": "TypeParameter",
@@ -892,6 +893,7 @@ exports[`HookDeclaration type parameters Babel 1`] = `
892893
},
893894
{
894895
"bound": null,
896+
"const": false,
895897
"default": null,
896898
"name": "T2",
897899
"type": "TypeParameter",
@@ -959,6 +961,7 @@ exports[`HookDeclaration type parameters ESTree 1`] = `
959961
"params": [
960962
{
961963
"bound": null,
964+
"const": false,
962965
"default": null,
963966
"name": "T1",
964967
"type": "TypeParameter",
@@ -967,6 +970,7 @@ exports[`HookDeclaration type parameters ESTree 1`] = `
967970
},
968971
{
969972
"bound": null,
973+
"const": false,
970974
"default": null,
971975
"name": "T2",
972976
"type": "TypeParameter",

tools/hermes-parser/js/hermes-parser/__tests__/__snapshots__/MappedType-test.js.snap

+2
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ exports[`MappedType Basic ESTree 1`] = `
3939
{
4040
"keyTparam": {
4141
"bound": null,
42+
"const": false,
4243
"default": null,
4344
"name": "key",
4445
"type": "TypeParameter",
@@ -135,6 +136,7 @@ exports[`MappedType Union ESTree 1`] = `
135136
{
136137
"keyTparam": {
137138
"bound": null,
139+
"const": false,
138140
"default": null,
139141
"name": "key",
140142
"type": "TypeParameter",

tools/hermes-parser/js/hermes-parser/src/HermesParserNodeDeserializers.js

+1
Original file line numberDiff line numberDiff line change
@@ -1574,6 +1574,7 @@ function deserializeTypeParameter() {
15741574
type: 'TypeParameter',
15751575
loc: this.addEmptyLoc(),
15761576
name: this.deserializeString(),
1577+
const: this.deserializeBoolean(),
15771578
bound: this.deserializeNode(),
15781579
variance: this.deserializeNode(),
15791580
default: this.deserializeNode(),

tools/hermes-parser/js/hermes-transform/src/generated/node-types.js

+2
Original file line numberDiff line numberDiff line change
@@ -1192,6 +1192,7 @@ export type TypeOperatorProps = {
11921192

11931193
export type TypeParameterProps = {
11941194
+name: TypeParameterType['name'],
1195+
+const: TypeParameterType['const'],
11951196
+bound?: ?MaybeDetachedNode<TypeParameterType['bound']>,
11961197
+variance?: ?MaybeDetachedNode<TypeParameterType['variance']>,
11971198
+default?: ?MaybeDetachedNode<TypeParameterType['default']>,
@@ -3685,6 +3686,7 @@ export function TypeParameter(props: {
36853686
const node = detachedProps<TypeParameterType>((props.parent: $FlowFixMe), {
36863687
type: 'TypeParameter',
36873688
name: props.name,
3689+
const: props.const,
36883690
bound: asDetachedNodeForCodeGen(props.bound),
36893691
variance: asDetachedNodeForCodeGen(props.variance),
36903692
default: asDetachedNodeForCodeGen(props.default),

0 commit comments

Comments
 (0)