This repository was archived by the owner on Dec 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathClosureTypeSpecifier.hack
More file actions
720 lines (658 loc) · 19.6 KB
/
ClosureTypeSpecifier.hack
File metadata and controls
720 lines (658 loc) · 19.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
/**
* This file is generated. Do not modify it manually!
*
* @generated SignedSource<<9c84879ef1b8682f02bbf8aafc171109>>
*/
namespace Facebook\HHAST;
use namespace Facebook\TypeAssert;
use namespace HH\Lib\Dict;
/* HHAST_IGNORE_ALL[5607] 5607 is ignored because of false positives when comparing a generic to a typed value */
/* HHAST_IGNORE_ALL[5624] HHAST_IGNORE_ALL[5639] 5624 and 5639 are ignored because they insist on using co(tra)variant generics. Could this break external consumers? */
<<__ConsistentConstruct>>
final class ClosureTypeSpecifier extends Node implements ITypeSpecifier {
const string SYNTAX_KIND = 'closure_type_specifier';
private LeftParenToken $_outer_left_paren;
private ?ReadonlyToken $_readonly_keyword;
private FunctionToken $_function_keyword;
private LeftParenToken $_inner_left_paren;
private ?NodeList<ListItem<ITypeSpecifier>> $_parameter_list;
private RightParenToken $_inner_right_paren;
private ?Contexts $_contexts;
private ColonToken $_colon;
private ?ReadonlyToken $_readonly_return;
private ITypeSpecifier $_return_type;
private RightParenToken $_outer_right_paren;
public function __construct(
LeftParenToken $outer_left_paren,
?ReadonlyToken $readonly_keyword,
FunctionToken $function_keyword,
LeftParenToken $inner_left_paren,
?NodeList<ListItem<ITypeSpecifier>> $parameter_list,
RightParenToken $inner_right_paren,
?Contexts $contexts,
ColonToken $colon,
?ReadonlyToken $readonly_return,
ITypeSpecifier $return_type,
RightParenToken $outer_right_paren,
?__Private\SourceRef $source_ref = null,
) {
$this->_outer_left_paren = $outer_left_paren;
$this->_readonly_keyword = $readonly_keyword;
$this->_function_keyword = $function_keyword;
$this->_inner_left_paren = $inner_left_paren;
$this->_parameter_list = $parameter_list;
$this->_inner_right_paren = $inner_right_paren;
$this->_contexts = $contexts;
$this->_colon = $colon;
$this->_readonly_return = $readonly_return;
$this->_return_type = $return_type;
$this->_outer_right_paren = $outer_right_paren;
parent::__construct($source_ref);
}
<<__Override>>
public static function fromJSON(
dict<arraykey, mixed> $json,
string $file,
int $initial_offset,
string $source,
string $_type_hint,
): this {
$offset = $initial_offset;
$outer_left_paren = Node::fromJSON(
($json['closure_outer_left_paren']) as dict<_, _>,
$file,
$offset,
$source,
'LeftParenToken',
);
$outer_left_paren = $outer_left_paren as nonnull;
$offset += $outer_left_paren->getWidth();
$readonly_keyword = Node::fromJSON(
($json['closure_readonly_keyword'] ?? dict['kind' => 'missing'])
as dict<_, _>,
$file,
$offset,
$source,
'ReadonlyToken',
);
$offset += $readonly_keyword?->getWidth() ?? 0;
$function_keyword = Node::fromJSON(
($json['closure_function_keyword']) as dict<_, _>,
$file,
$offset,
$source,
'FunctionToken',
);
$function_keyword = $function_keyword as nonnull;
$offset += $function_keyword->getWidth();
$inner_left_paren = Node::fromJSON(
($json['closure_inner_left_paren']) as dict<_, _>,
$file,
$offset,
$source,
'LeftParenToken',
);
$inner_left_paren = $inner_left_paren as nonnull;
$offset += $inner_left_paren->getWidth();
$parameter_list = Node::fromJSON(
($json['closure_parameter_list'] ?? dict['kind' => 'missing'])
as dict<_, _>,
$file,
$offset,
$source,
'NodeList<ListItem<ITypeSpecifier>>',
);
$offset += $parameter_list?->getWidth() ?? 0;
$inner_right_paren = Node::fromJSON(
($json['closure_inner_right_paren']) as dict<_, _>,
$file,
$offset,
$source,
'RightParenToken',
);
$inner_right_paren = $inner_right_paren as nonnull;
$offset += $inner_right_paren->getWidth();
$contexts = Node::fromJSON(
($json['closure_contexts'] ?? dict['kind' => 'missing']) as dict<_, _>,
$file,
$offset,
$source,
'Contexts',
);
$offset += $contexts?->getWidth() ?? 0;
$colon = Node::fromJSON(
($json['closure_colon']) as dict<_, _>,
$file,
$offset,
$source,
'ColonToken',
);
$colon = $colon as nonnull;
$offset += $colon->getWidth();
$readonly_return = Node::fromJSON(
($json['closure_readonly_return'] ?? dict['kind' => 'missing'])
as dict<_, _>,
$file,
$offset,
$source,
'ReadonlyToken',
);
$offset += $readonly_return?->getWidth() ?? 0;
$return_type = Node::fromJSON(
($json['closure_return_type']) as dict<_, _>,
$file,
$offset,
$source,
'ITypeSpecifier',
);
$return_type = $return_type as nonnull;
$offset += $return_type->getWidth();
$outer_right_paren = Node::fromJSON(
($json['closure_outer_right_paren']) as dict<_, _>,
$file,
$offset,
$source,
'RightParenToken',
);
$outer_right_paren = $outer_right_paren as nonnull;
$offset += $outer_right_paren->getWidth();
$source_ref = shape(
'file' => $file,
'source' => $source,
'offset' => $initial_offset,
'width' => $offset - $initial_offset,
);
return new static(
/* HH_IGNORE_ERROR[4110] */ $outer_left_paren,
/* HH_IGNORE_ERROR[4110] */ $readonly_keyword,
/* HH_IGNORE_ERROR[4110] */ $function_keyword,
/* HH_IGNORE_ERROR[4110] */ $inner_left_paren,
/* HH_IGNORE_ERROR[4110] */ $parameter_list,
/* HH_IGNORE_ERROR[4110] */ $inner_right_paren,
/* HH_IGNORE_ERROR[4110] */ $contexts,
/* HH_IGNORE_ERROR[4110] */ $colon,
/* HH_IGNORE_ERROR[4110] */ $readonly_return,
/* HH_IGNORE_ERROR[4110] */ $return_type,
/* HH_IGNORE_ERROR[4110] */ $outer_right_paren,
$source_ref,
);
}
<<__Override>>
public function getChildren(): dict<string, Node> {
return dict[
'outer_left_paren' => $this->_outer_left_paren,
'readonly_keyword' => $this->_readonly_keyword,
'function_keyword' => $this->_function_keyword,
'inner_left_paren' => $this->_inner_left_paren,
'parameter_list' => $this->_parameter_list,
'inner_right_paren' => $this->_inner_right_paren,
'contexts' => $this->_contexts,
'colon' => $this->_colon,
'readonly_return' => $this->_readonly_return,
'return_type' => $this->_return_type,
'outer_right_paren' => $this->_outer_right_paren,
]
|> Dict\filter_nulls($$);
}
<<__Override>>
public function rewriteChildren<Tret as ?Node>(
(function(Node, vec<Node>): Tret) $rewriter,
vec<Node> $parents = vec[],
): this {
$parents[] = $this;
$outer_left_paren = $rewriter($this->_outer_left_paren, $parents);
$readonly_keyword = $this->_readonly_keyword === null
? null
: $rewriter($this->_readonly_keyword, $parents);
$function_keyword = $rewriter($this->_function_keyword, $parents);
$inner_left_paren = $rewriter($this->_inner_left_paren, $parents);
$parameter_list = $this->_parameter_list === null
? null
: $rewriter($this->_parameter_list, $parents);
$inner_right_paren = $rewriter($this->_inner_right_paren, $parents);
$contexts =
$this->_contexts === null ? null : $rewriter($this->_contexts, $parents);
$colon = $rewriter($this->_colon, $parents);
$readonly_return = $this->_readonly_return === null
? null
: $rewriter($this->_readonly_return, $parents);
$return_type = $rewriter($this->_return_type, $parents);
$outer_right_paren = $rewriter($this->_outer_right_paren, $parents);
if (
$outer_left_paren === $this->_outer_left_paren &&
$readonly_keyword === $this->_readonly_keyword &&
$function_keyword === $this->_function_keyword &&
$inner_left_paren === $this->_inner_left_paren &&
$parameter_list === $this->_parameter_list &&
$inner_right_paren === $this->_inner_right_paren &&
$contexts === $this->_contexts &&
$colon === $this->_colon &&
$readonly_return === $this->_readonly_return &&
$return_type === $this->_return_type &&
$outer_right_paren === $this->_outer_right_paren
) {
return $this;
}
return new static(
$outer_left_paren as LeftParenToken,
$readonly_keyword as ?ReadonlyToken,
$function_keyword as FunctionToken,
$inner_left_paren as LeftParenToken,
/* HH_FIXME[4110] ?NodeList<ListItem<ITypeSpecifier>> may not be enforceable */ $parameter_list,
$inner_right_paren as RightParenToken,
$contexts as ?Contexts,
$colon as ColonToken,
$readonly_return as ?ReadonlyToken,
$return_type as ITypeSpecifier,
$outer_right_paren as RightParenToken,
);
}
public function getOuterLeftParenUNTYPED(): ?Node {
return $this->_outer_left_paren;
}
public function withOuterLeftParen(LeftParenToken $value): this {
if ($value === $this->_outer_left_paren) {
return $this;
}
return new static(
$value,
$this->_readonly_keyword,
$this->_function_keyword,
$this->_inner_left_paren,
$this->_parameter_list,
$this->_inner_right_paren,
$this->_contexts,
$this->_colon,
$this->_readonly_return,
$this->_return_type,
$this->_outer_right_paren,
);
}
public function hasOuterLeftParen(): bool {
return true;
}
/**
* @return LeftParenToken
*/
public function getOuterLeftParen(): LeftParenToken {
return
TypeAssert\instance_of(LeftParenToken::class, $this->_outer_left_paren);
}
/**
* @return LeftParenToken
*/
public function getOuterLeftParenx(): LeftParenToken {
return $this->getOuterLeftParen();
}
public function getReadonlyKeywordUNTYPED(): ?Node {
return $this->_readonly_keyword;
}
public function withReadonlyKeyword(?ReadonlyToken $value): this {
if ($value === $this->_readonly_keyword) {
return $this;
}
return new static(
$this->_outer_left_paren,
$value,
$this->_function_keyword,
$this->_inner_left_paren,
$this->_parameter_list,
$this->_inner_right_paren,
$this->_contexts,
$this->_colon,
$this->_readonly_return,
$this->_return_type,
$this->_outer_right_paren,
);
}
public function hasReadonlyKeyword(): bool {
return $this->_readonly_keyword !== null;
}
/**
* @return null | ReadonlyToken
*/
public function getReadonlyKeyword(): ?ReadonlyToken {
return $this->_readonly_keyword;
}
/**
* @return ReadonlyToken
*/
public function getReadonlyKeywordx(): ReadonlyToken {
return TypeAssert\not_null($this->getReadonlyKeyword());
}
public function getFunctionKeywordUNTYPED(): ?Node {
return $this->_function_keyword;
}
public function withFunctionKeyword(FunctionToken $value): this {
if ($value === $this->_function_keyword) {
return $this;
}
return new static(
$this->_outer_left_paren,
$this->_readonly_keyword,
$value,
$this->_inner_left_paren,
$this->_parameter_list,
$this->_inner_right_paren,
$this->_contexts,
$this->_colon,
$this->_readonly_return,
$this->_return_type,
$this->_outer_right_paren,
);
}
public function hasFunctionKeyword(): bool {
return true;
}
/**
* @return FunctionToken
*/
public function getFunctionKeyword(): FunctionToken {
return
TypeAssert\instance_of(FunctionToken::class, $this->_function_keyword);
}
/**
* @return FunctionToken
*/
public function getFunctionKeywordx(): FunctionToken {
return $this->getFunctionKeyword();
}
public function getInnerLeftParenUNTYPED(): ?Node {
return $this->_inner_left_paren;
}
public function withInnerLeftParen(LeftParenToken $value): this {
if ($value === $this->_inner_left_paren) {
return $this;
}
return new static(
$this->_outer_left_paren,
$this->_readonly_keyword,
$this->_function_keyword,
$value,
$this->_parameter_list,
$this->_inner_right_paren,
$this->_contexts,
$this->_colon,
$this->_readonly_return,
$this->_return_type,
$this->_outer_right_paren,
);
}
public function hasInnerLeftParen(): bool {
return true;
}
/**
* @return LeftParenToken
*/
public function getInnerLeftParen(): LeftParenToken {
return
TypeAssert\instance_of(LeftParenToken::class, $this->_inner_left_paren);
}
/**
* @return LeftParenToken
*/
public function getInnerLeftParenx(): LeftParenToken {
return $this->getInnerLeftParen();
}
public function getParameterListUNTYPED(): ?Node {
return $this->_parameter_list;
}
public function withParameterList(
?NodeList<ListItem<ITypeSpecifier>> $value,
): this {
if ($value === $this->_parameter_list) {
return $this;
}
return new static(
$this->_outer_left_paren,
$this->_readonly_keyword,
$this->_function_keyword,
$this->_inner_left_paren,
$value,
$this->_inner_right_paren,
$this->_contexts,
$this->_colon,
$this->_readonly_return,
$this->_return_type,
$this->_outer_right_paren,
);
}
public function hasParameterList(): bool {
return $this->_parameter_list !== null;
}
/**
* @return NodeList<ListItem<ClosureParameterTypeSpecifier>> |
* NodeList<ListItem<ITypeSpecifier>> | NodeList<ListItem<VariadicParameter>>
* | null
*/
public function getParameterList(): ?NodeList<ListItem<ITypeSpecifier>> {
return $this->_parameter_list;
}
/**
* @return NodeList<ListItem<ClosureParameterTypeSpecifier>> |
* NodeList<ListItem<ITypeSpecifier>> | NodeList<ListItem<VariadicParameter>>
*/
public function getParameterListx(): NodeList<ListItem<ITypeSpecifier>> {
return TypeAssert\not_null($this->getParameterList());
}
public function getInnerRightParenUNTYPED(): ?Node {
return $this->_inner_right_paren;
}
public function withInnerRightParen(RightParenToken $value): this {
if ($value === $this->_inner_right_paren) {
return $this;
}
return new static(
$this->_outer_left_paren,
$this->_readonly_keyword,
$this->_function_keyword,
$this->_inner_left_paren,
$this->_parameter_list,
$value,
$this->_contexts,
$this->_colon,
$this->_readonly_return,
$this->_return_type,
$this->_outer_right_paren,
);
}
public function hasInnerRightParen(): bool {
return true;
}
/**
* @return RightParenToken
*/
public function getInnerRightParen(): RightParenToken {
return
TypeAssert\instance_of(RightParenToken::class, $this->_inner_right_paren);
}
/**
* @return RightParenToken
*/
public function getInnerRightParenx(): RightParenToken {
return $this->getInnerRightParen();
}
public function getContextsUNTYPED(): ?Node {
return $this->_contexts;
}
public function withContexts(?Contexts $value): this {
if ($value === $this->_contexts) {
return $this;
}
return new static(
$this->_outer_left_paren,
$this->_readonly_keyword,
$this->_function_keyword,
$this->_inner_left_paren,
$this->_parameter_list,
$this->_inner_right_paren,
$value,
$this->_colon,
$this->_readonly_return,
$this->_return_type,
$this->_outer_right_paren,
);
}
public function hasContexts(): bool {
return $this->_contexts !== null;
}
/**
* @return Contexts | null
*/
public function getContexts(): ?Contexts {
return $this->_contexts;
}
/**
* @return Contexts
*/
public function getContextsx(): Contexts {
return TypeAssert\not_null($this->getContexts());
}
public function getColonUNTYPED(): ?Node {
return $this->_colon;
}
public function withColon(ColonToken $value): this {
if ($value === $this->_colon) {
return $this;
}
return new static(
$this->_outer_left_paren,
$this->_readonly_keyword,
$this->_function_keyword,
$this->_inner_left_paren,
$this->_parameter_list,
$this->_inner_right_paren,
$this->_contexts,
$value,
$this->_readonly_return,
$this->_return_type,
$this->_outer_right_paren,
);
}
public function hasColon(): bool {
return true;
}
/**
* @return ColonToken
*/
public function getColon(): ColonToken {
return TypeAssert\instance_of(ColonToken::class, $this->_colon);
}
/**
* @return ColonToken
*/
public function getColonx(): ColonToken {
return $this->getColon();
}
public function getReadonlyReturnUNTYPED(): ?Node {
return $this->_readonly_return;
}
public function withReadonlyReturn(?ReadonlyToken $value): this {
if ($value === $this->_readonly_return) {
return $this;
}
return new static(
$this->_outer_left_paren,
$this->_readonly_keyword,
$this->_function_keyword,
$this->_inner_left_paren,
$this->_parameter_list,
$this->_inner_right_paren,
$this->_contexts,
$this->_colon,
$value,
$this->_return_type,
$this->_outer_right_paren,
);
}
public function hasReadonlyReturn(): bool {
return $this->_readonly_return !== null;
}
/**
* @return null | ReadonlyToken
*/
public function getReadonlyReturn(): ?ReadonlyToken {
return $this->_readonly_return;
}
/**
* @return ReadonlyToken
*/
public function getReadonlyReturnx(): ReadonlyToken {
return TypeAssert\not_null($this->getReadonlyReturn());
}
public function getReturnTypeUNTYPED(): ?Node {
return $this->_return_type;
}
public function withReturnType(ITypeSpecifier $value): this {
if ($value === $this->_return_type) {
return $this;
}
return new static(
$this->_outer_left_paren,
$this->_readonly_keyword,
$this->_function_keyword,
$this->_inner_left_paren,
$this->_parameter_list,
$this->_inner_right_paren,
$this->_contexts,
$this->_colon,
$this->_readonly_return,
$value,
$this->_outer_right_paren,
);
}
public function hasReturnType(): bool {
return true;
}
/**
* @return ClosureTypeSpecifier | GenericTypeSpecifier | LikeTypeSpecifier |
* NullableTypeSpecifier | SimpleTypeSpecifier | VectorTypeSpecifier
*/
public function getReturnType(): ITypeSpecifier {
return TypeAssert\instance_of(ITypeSpecifier::class, $this->_return_type);
}
/**
* @return ClosureTypeSpecifier | GenericTypeSpecifier | LikeTypeSpecifier |
* NullableTypeSpecifier | SimpleTypeSpecifier | VectorTypeSpecifier
*/
public function getReturnTypex(): ITypeSpecifier {
return $this->getReturnType();
}
public function getOuterRightParenUNTYPED(): ?Node {
return $this->_outer_right_paren;
}
public function withOuterRightParen(RightParenToken $value): this {
if ($value === $this->_outer_right_paren) {
return $this;
}
return new static(
$this->_outer_left_paren,
$this->_readonly_keyword,
$this->_function_keyword,
$this->_inner_left_paren,
$this->_parameter_list,
$this->_inner_right_paren,
$this->_contexts,
$this->_colon,
$this->_readonly_return,
$this->_return_type,
$value,
);
}
public function hasOuterRightParen(): bool {
return true;
}
/**
* @return RightParenToken
*/
public function getOuterRightParen(): RightParenToken {
return
TypeAssert\instance_of(RightParenToken::class, $this->_outer_right_paren);
}
/**
* @return RightParenToken
*/
public function getOuterRightParenx(): RightParenToken {
return $this->getOuterRightParen();
}
}