tree-sitter-ucode 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -4
- package/grammar.js +26 -59
- package/package.json +5 -2
- package/prebuilds/darwin-arm64/tree-sitter-ucode.node +0 -0
- package/prebuilds/linux-arm64/tree-sitter-ucode.node +0 -0
- package/prebuilds/linux-x64/tree-sitter-ucode.node +0 -0
- package/prebuilds/win32-x64/tree-sitter-ucode.node +0 -0
- package/queries/highlights.scm +0 -5
- package/queries/locals.scm +2 -7
- package/queries/tags.scm +0 -13
- package/src/grammar.json +139 -229
- package/src/node-types.json +0 -55
- package/src/parser.c +19226 -20672
- package/src/scanner.c +6 -5
- package/tmpl/grammar.js +1 -1
- package/tmpl/src/parser.c +1 -1
- package/tree-sitter-ucode.wasm +0 -0
- package/tree-sitter-ucode_tmpl.wasm +0 -0
- package/tree-sitter.json +1 -1
package/src/grammar.json
CHANGED
|
@@ -88,8 +88,8 @@
|
|
|
88
88
|
}
|
|
89
89
|
},
|
|
90
90
|
{
|
|
91
|
-
"type": "
|
|
92
|
-
"
|
|
91
|
+
"type": "STRING",
|
|
92
|
+
"value": ";"
|
|
93
93
|
}
|
|
94
94
|
]
|
|
95
95
|
}
|
|
@@ -221,23 +221,12 @@
|
|
|
221
221
|
"type": "SYMBOL",
|
|
222
222
|
"name": "function_declaration"
|
|
223
223
|
},
|
|
224
|
-
{
|
|
225
|
-
"type": "SYMBOL",
|
|
226
|
-
"name": "function_forward_declaration"
|
|
227
|
-
},
|
|
228
224
|
{
|
|
229
225
|
"type": "SYMBOL",
|
|
230
226
|
"name": "lexical_declaration"
|
|
231
227
|
}
|
|
232
228
|
]
|
|
233
229
|
},
|
|
234
|
-
"import": {
|
|
235
|
-
"type": "TOKEN",
|
|
236
|
-
"content": {
|
|
237
|
-
"type": "STRING",
|
|
238
|
-
"value": "import"
|
|
239
|
-
}
|
|
240
|
-
},
|
|
241
230
|
"import_statement": {
|
|
242
231
|
"type": "SEQ",
|
|
243
232
|
"members": [
|
|
@@ -862,96 +851,101 @@
|
|
|
862
851
|
"type": "SEQ",
|
|
863
852
|
"members": [
|
|
864
853
|
{
|
|
865
|
-
"type": "
|
|
866
|
-
"value": "for"
|
|
867
|
-
},
|
|
868
|
-
{
|
|
869
|
-
"type": "STRING",
|
|
870
|
-
"value": "("
|
|
871
|
-
},
|
|
872
|
-
{
|
|
873
|
-
"type": "CHOICE",
|
|
854
|
+
"type": "SEQ",
|
|
874
855
|
"members": [
|
|
875
856
|
{
|
|
876
|
-
"type": "
|
|
877
|
-
"
|
|
878
|
-
"content": {
|
|
879
|
-
"type": "SYMBOL",
|
|
880
|
-
"name": "lexical_declaration"
|
|
881
|
-
}
|
|
857
|
+
"type": "STRING",
|
|
858
|
+
"value": "for"
|
|
882
859
|
},
|
|
883
860
|
{
|
|
884
|
-
"type": "
|
|
861
|
+
"type": "STRING",
|
|
862
|
+
"value": "("
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
"type": "CHOICE",
|
|
885
866
|
"members": [
|
|
886
867
|
{
|
|
887
868
|
"type": "FIELD",
|
|
888
869
|
"name": "initializer",
|
|
889
870
|
"content": {
|
|
890
871
|
"type": "SYMBOL",
|
|
891
|
-
"name": "
|
|
872
|
+
"name": "lexical_declaration"
|
|
892
873
|
}
|
|
893
874
|
},
|
|
894
875
|
{
|
|
895
|
-
"type": "
|
|
896
|
-
"
|
|
876
|
+
"type": "SEQ",
|
|
877
|
+
"members": [
|
|
878
|
+
{
|
|
879
|
+
"type": "FIELD",
|
|
880
|
+
"name": "initializer",
|
|
881
|
+
"content": {
|
|
882
|
+
"type": "SYMBOL",
|
|
883
|
+
"name": "_expressions"
|
|
884
|
+
}
|
|
885
|
+
},
|
|
886
|
+
{
|
|
887
|
+
"type": "STRING",
|
|
888
|
+
"value": ";"
|
|
889
|
+
}
|
|
890
|
+
]
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
"type": "FIELD",
|
|
894
|
+
"name": "initializer",
|
|
895
|
+
"content": {
|
|
896
|
+
"type": "SYMBOL",
|
|
897
|
+
"name": "empty_statement"
|
|
898
|
+
}
|
|
897
899
|
}
|
|
898
900
|
]
|
|
899
901
|
},
|
|
900
902
|
{
|
|
901
903
|
"type": "FIELD",
|
|
902
|
-
"name": "
|
|
904
|
+
"name": "condition",
|
|
903
905
|
"content": {
|
|
904
|
-
"type": "
|
|
905
|
-
"
|
|
906
|
+
"type": "CHOICE",
|
|
907
|
+
"members": [
|
|
908
|
+
{
|
|
909
|
+
"type": "SEQ",
|
|
910
|
+
"members": [
|
|
911
|
+
{
|
|
912
|
+
"type": "SYMBOL",
|
|
913
|
+
"name": "_expressions"
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
"type": "STRING",
|
|
917
|
+
"value": ";"
|
|
918
|
+
}
|
|
919
|
+
]
|
|
920
|
+
},
|
|
921
|
+
{
|
|
922
|
+
"type": "SYMBOL",
|
|
923
|
+
"name": "empty_statement"
|
|
924
|
+
}
|
|
925
|
+
]
|
|
906
926
|
}
|
|
907
|
-
}
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
"content": {
|
|
914
|
-
"type": "CHOICE",
|
|
915
|
-
"members": [
|
|
916
|
-
{
|
|
917
|
-
"type": "SEQ",
|
|
927
|
+
},
|
|
928
|
+
{
|
|
929
|
+
"type": "FIELD",
|
|
930
|
+
"name": "increment",
|
|
931
|
+
"content": {
|
|
932
|
+
"type": "CHOICE",
|
|
918
933
|
"members": [
|
|
919
934
|
{
|
|
920
935
|
"type": "SYMBOL",
|
|
921
936
|
"name": "_expressions"
|
|
922
937
|
},
|
|
923
938
|
{
|
|
924
|
-
"type": "
|
|
925
|
-
"value": ";"
|
|
939
|
+
"type": "BLANK"
|
|
926
940
|
}
|
|
927
941
|
]
|
|
928
|
-
},
|
|
929
|
-
{
|
|
930
|
-
"type": "SYMBOL",
|
|
931
|
-
"name": "empty_statement"
|
|
932
942
|
}
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
"content": {
|
|
940
|
-
"type": "CHOICE",
|
|
941
|
-
"members": [
|
|
942
|
-
{
|
|
943
|
-
"type": "SYMBOL",
|
|
944
|
-
"name": "_expressions"
|
|
945
|
-
},
|
|
946
|
-
{
|
|
947
|
-
"type": "BLANK"
|
|
948
|
-
}
|
|
949
|
-
]
|
|
950
|
-
}
|
|
951
|
-
},
|
|
952
|
-
{
|
|
953
|
-
"type": "STRING",
|
|
954
|
-
"value": ")"
|
|
943
|
+
},
|
|
944
|
+
{
|
|
945
|
+
"type": "STRING",
|
|
946
|
+
"value": ")"
|
|
947
|
+
}
|
|
948
|
+
]
|
|
955
949
|
},
|
|
956
950
|
{
|
|
957
951
|
"type": "FIELD",
|
|
@@ -967,96 +961,101 @@
|
|
|
967
961
|
"type": "SEQ",
|
|
968
962
|
"members": [
|
|
969
963
|
{
|
|
970
|
-
"type": "
|
|
971
|
-
"value": "for"
|
|
972
|
-
},
|
|
973
|
-
{
|
|
974
|
-
"type": "STRING",
|
|
975
|
-
"value": "("
|
|
976
|
-
},
|
|
977
|
-
{
|
|
978
|
-
"type": "CHOICE",
|
|
964
|
+
"type": "SEQ",
|
|
979
965
|
"members": [
|
|
980
966
|
{
|
|
981
|
-
"type": "
|
|
982
|
-
"
|
|
983
|
-
"content": {
|
|
984
|
-
"type": "SYMBOL",
|
|
985
|
-
"name": "lexical_declaration"
|
|
986
|
-
}
|
|
967
|
+
"type": "STRING",
|
|
968
|
+
"value": "for"
|
|
987
969
|
},
|
|
988
970
|
{
|
|
989
|
-
"type": "
|
|
971
|
+
"type": "STRING",
|
|
972
|
+
"value": "("
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
"type": "CHOICE",
|
|
990
976
|
"members": [
|
|
991
977
|
{
|
|
992
978
|
"type": "FIELD",
|
|
993
979
|
"name": "initializer",
|
|
994
980
|
"content": {
|
|
995
981
|
"type": "SYMBOL",
|
|
996
|
-
"name": "
|
|
982
|
+
"name": "lexical_declaration"
|
|
997
983
|
}
|
|
998
984
|
},
|
|
999
985
|
{
|
|
1000
|
-
"type": "
|
|
1001
|
-
"
|
|
986
|
+
"type": "SEQ",
|
|
987
|
+
"members": [
|
|
988
|
+
{
|
|
989
|
+
"type": "FIELD",
|
|
990
|
+
"name": "initializer",
|
|
991
|
+
"content": {
|
|
992
|
+
"type": "SYMBOL",
|
|
993
|
+
"name": "_expressions"
|
|
994
|
+
}
|
|
995
|
+
},
|
|
996
|
+
{
|
|
997
|
+
"type": "STRING",
|
|
998
|
+
"value": ";"
|
|
999
|
+
}
|
|
1000
|
+
]
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
"type": "FIELD",
|
|
1004
|
+
"name": "initializer",
|
|
1005
|
+
"content": {
|
|
1006
|
+
"type": "SYMBOL",
|
|
1007
|
+
"name": "empty_statement"
|
|
1008
|
+
}
|
|
1002
1009
|
}
|
|
1003
1010
|
]
|
|
1004
1011
|
},
|
|
1005
1012
|
{
|
|
1006
1013
|
"type": "FIELD",
|
|
1007
|
-
"name": "
|
|
1014
|
+
"name": "condition",
|
|
1008
1015
|
"content": {
|
|
1009
|
-
"type": "
|
|
1010
|
-
"
|
|
1016
|
+
"type": "CHOICE",
|
|
1017
|
+
"members": [
|
|
1018
|
+
{
|
|
1019
|
+
"type": "SEQ",
|
|
1020
|
+
"members": [
|
|
1021
|
+
{
|
|
1022
|
+
"type": "SYMBOL",
|
|
1023
|
+
"name": "_expressions"
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
"type": "STRING",
|
|
1027
|
+
"value": ";"
|
|
1028
|
+
}
|
|
1029
|
+
]
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
"type": "SYMBOL",
|
|
1033
|
+
"name": "empty_statement"
|
|
1034
|
+
}
|
|
1035
|
+
]
|
|
1011
1036
|
}
|
|
1012
|
-
}
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
"content": {
|
|
1019
|
-
"type": "CHOICE",
|
|
1020
|
-
"members": [
|
|
1021
|
-
{
|
|
1022
|
-
"type": "SEQ",
|
|
1037
|
+
},
|
|
1038
|
+
{
|
|
1039
|
+
"type": "FIELD",
|
|
1040
|
+
"name": "increment",
|
|
1041
|
+
"content": {
|
|
1042
|
+
"type": "CHOICE",
|
|
1023
1043
|
"members": [
|
|
1024
1044
|
{
|
|
1025
1045
|
"type": "SYMBOL",
|
|
1026
1046
|
"name": "_expressions"
|
|
1027
1047
|
},
|
|
1028
1048
|
{
|
|
1029
|
-
"type": "
|
|
1030
|
-
"value": ";"
|
|
1049
|
+
"type": "BLANK"
|
|
1031
1050
|
}
|
|
1032
1051
|
]
|
|
1033
|
-
},
|
|
1034
|
-
{
|
|
1035
|
-
"type": "SYMBOL",
|
|
1036
|
-
"name": "empty_statement"
|
|
1037
1052
|
}
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
"content": {
|
|
1045
|
-
"type": "CHOICE",
|
|
1046
|
-
"members": [
|
|
1047
|
-
{
|
|
1048
|
-
"type": "SYMBOL",
|
|
1049
|
-
"name": "_expressions"
|
|
1050
|
-
},
|
|
1051
|
-
{
|
|
1052
|
-
"type": "BLANK"
|
|
1053
|
-
}
|
|
1054
|
-
]
|
|
1055
|
-
}
|
|
1056
|
-
},
|
|
1057
|
-
{
|
|
1058
|
-
"type": "STRING",
|
|
1059
|
-
"value": ")"
|
|
1053
|
+
},
|
|
1054
|
+
{
|
|
1055
|
+
"type": "STRING",
|
|
1056
|
+
"value": ")"
|
|
1057
|
+
}
|
|
1058
|
+
]
|
|
1060
1059
|
},
|
|
1061
1060
|
{
|
|
1062
1061
|
"type": "STRING",
|
|
@@ -1680,10 +1679,6 @@
|
|
|
1680
1679
|
{
|
|
1681
1680
|
"type": "SYMBOL",
|
|
1682
1681
|
"name": "update_expression"
|
|
1683
|
-
},
|
|
1684
|
-
{
|
|
1685
|
-
"type": "SYMBOL",
|
|
1686
|
-
"name": "import_expression"
|
|
1687
1682
|
}
|
|
1688
1683
|
]
|
|
1689
1684
|
},
|
|
@@ -1769,35 +1764,6 @@
|
|
|
1769
1764
|
}
|
|
1770
1765
|
]
|
|
1771
1766
|
},
|
|
1772
|
-
"import_expression": {
|
|
1773
|
-
"type": "PREC",
|
|
1774
|
-
"value": "call",
|
|
1775
|
-
"content": {
|
|
1776
|
-
"type": "SEQ",
|
|
1777
|
-
"members": [
|
|
1778
|
-
{
|
|
1779
|
-
"type": "SYMBOL",
|
|
1780
|
-
"name": "import"
|
|
1781
|
-
},
|
|
1782
|
-
{
|
|
1783
|
-
"type": "STRING",
|
|
1784
|
-
"value": "("
|
|
1785
|
-
},
|
|
1786
|
-
{
|
|
1787
|
-
"type": "FIELD",
|
|
1788
|
-
"name": "source",
|
|
1789
|
-
"content": {
|
|
1790
|
-
"type": "SYMBOL",
|
|
1791
|
-
"name": "expression"
|
|
1792
|
-
}
|
|
1793
|
-
},
|
|
1794
|
-
{
|
|
1795
|
-
"type": "STRING",
|
|
1796
|
-
"value": ")"
|
|
1797
|
-
}
|
|
1798
|
-
]
|
|
1799
|
-
}
|
|
1800
|
-
},
|
|
1801
1767
|
"object": {
|
|
1802
1768
|
"type": "PREC",
|
|
1803
1769
|
"value": "object",
|
|
@@ -3462,27 +3428,6 @@
|
|
|
3462
3428
|
]
|
|
3463
3429
|
}
|
|
3464
3430
|
},
|
|
3465
|
-
"function_forward_declaration": {
|
|
3466
|
-
"type": "SEQ",
|
|
3467
|
-
"members": [
|
|
3468
|
-
{
|
|
3469
|
-
"type": "STRING",
|
|
3470
|
-
"value": "function"
|
|
3471
|
-
},
|
|
3472
|
-
{
|
|
3473
|
-
"type": "FIELD",
|
|
3474
|
-
"name": "name",
|
|
3475
|
-
"content": {
|
|
3476
|
-
"type": "SYMBOL",
|
|
3477
|
-
"name": "identifier"
|
|
3478
|
-
}
|
|
3479
|
-
},
|
|
3480
|
-
{
|
|
3481
|
-
"type": "STRING",
|
|
3482
|
-
"value": ";"
|
|
3483
|
-
}
|
|
3484
|
-
]
|
|
3485
|
-
},
|
|
3486
3431
|
"arrow_function": {
|
|
3487
3432
|
"type": "SEQ",
|
|
3488
3433
|
"members": [
|
|
@@ -3774,7 +3719,7 @@
|
|
|
3774
3719
|
},
|
|
3775
3720
|
{
|
|
3776
3721
|
"type": "PATTERN",
|
|
3777
|
-
"value": "
|
|
3722
|
+
"value": "\\r[\\n\\u2028\\u2029]"
|
|
3778
3723
|
}
|
|
3779
3724
|
]
|
|
3780
3725
|
}
|
|
@@ -4656,10 +4601,6 @@
|
|
|
4656
4601
|
{
|
|
4657
4602
|
"type": "STRING",
|
|
4658
4603
|
"value": "set"
|
|
4659
|
-
},
|
|
4660
|
-
{
|
|
4661
|
-
"type": "STRING",
|
|
4662
|
-
"value": "let"
|
|
4663
4604
|
}
|
|
4664
4605
|
]
|
|
4665
4606
|
},
|
|
@@ -4688,19 +4629,6 @@
|
|
|
4688
4629
|
}
|
|
4689
4630
|
],
|
|
4690
4631
|
"conflicts": [
|
|
4691
|
-
[
|
|
4692
|
-
"primary_expression",
|
|
4693
|
-
"_property_name"
|
|
4694
|
-
],
|
|
4695
|
-
[
|
|
4696
|
-
"primary_expression",
|
|
4697
|
-
"arrow_function"
|
|
4698
|
-
],
|
|
4699
|
-
[
|
|
4700
|
-
"primary_expression",
|
|
4701
|
-
"arrow_function",
|
|
4702
|
-
"_property_name"
|
|
4703
|
-
],
|
|
4704
4632
|
[
|
|
4705
4633
|
"primary_expression",
|
|
4706
4634
|
"formal_parameters"
|
|
@@ -4720,14 +4648,6 @@
|
|
|
4720
4648
|
[
|
|
4721
4649
|
"labeled_statement",
|
|
4722
4650
|
"_property_name"
|
|
4723
|
-
],
|
|
4724
|
-
[
|
|
4725
|
-
"computed_property_name",
|
|
4726
|
-
"array"
|
|
4727
|
-
],
|
|
4728
|
-
[
|
|
4729
|
-
"binary_expression",
|
|
4730
|
-
"_initializer"
|
|
4731
4651
|
]
|
|
4732
4652
|
],
|
|
4733
4653
|
"precedences": [
|
|
@@ -4764,10 +4684,6 @@
|
|
|
4764
4684
|
"type": "STRING",
|
|
4765
4685
|
"value": "binary_shift"
|
|
4766
4686
|
},
|
|
4767
|
-
{
|
|
4768
|
-
"type": "STRING",
|
|
4769
|
-
"value": "binary_compare"
|
|
4770
|
-
},
|
|
4771
4687
|
{
|
|
4772
4688
|
"type": "STRING",
|
|
4773
4689
|
"value": "binary_relation"
|
|
@@ -4857,16 +4773,6 @@
|
|
|
4857
4773
|
"value": "object"
|
|
4858
4774
|
}
|
|
4859
4775
|
],
|
|
4860
|
-
[
|
|
4861
|
-
{
|
|
4862
|
-
"type": "SYMBOL",
|
|
4863
|
-
"name": "import_statement"
|
|
4864
|
-
},
|
|
4865
|
-
{
|
|
4866
|
-
"type": "SYMBOL",
|
|
4867
|
-
"name": "import"
|
|
4868
|
-
}
|
|
4869
|
-
],
|
|
4870
4776
|
[
|
|
4871
4777
|
{
|
|
4872
4778
|
"type": "SYMBOL",
|
|
@@ -4999,6 +4905,10 @@
|
|
|
4999
4905
|
"type": "STRING",
|
|
5000
4906
|
"value": "in"
|
|
5001
4907
|
},
|
|
4908
|
+
{
|
|
4909
|
+
"type": "STRING",
|
|
4910
|
+
"value": "let"
|
|
4911
|
+
},
|
|
5002
4912
|
{
|
|
5003
4913
|
"type": "STRING",
|
|
5004
4914
|
"value": "null"
|
package/src/node-types.json
CHANGED
|
@@ -7,10 +7,6 @@
|
|
|
7
7
|
"type": "function_declaration",
|
|
8
8
|
"named": true
|
|
9
9
|
},
|
|
10
|
-
{
|
|
11
|
-
"type": "function_forward_declaration",
|
|
12
|
-
"named": true
|
|
13
|
-
},
|
|
14
10
|
{
|
|
15
11
|
"type": "lexical_declaration",
|
|
16
12
|
"named": true
|
|
@@ -33,10 +29,6 @@
|
|
|
33
29
|
"type": "binary_expression",
|
|
34
30
|
"named": true
|
|
35
31
|
},
|
|
36
|
-
{
|
|
37
|
-
"type": "import_expression",
|
|
38
|
-
"named": true
|
|
39
|
-
},
|
|
40
32
|
{
|
|
41
33
|
"type": "primary_expression",
|
|
42
34
|
"named": true
|
|
@@ -1229,22 +1221,6 @@
|
|
|
1229
1221
|
}
|
|
1230
1222
|
}
|
|
1231
1223
|
},
|
|
1232
|
-
{
|
|
1233
|
-
"type": "function_forward_declaration",
|
|
1234
|
-
"named": true,
|
|
1235
|
-
"fields": {
|
|
1236
|
-
"name": {
|
|
1237
|
-
"multiple": false,
|
|
1238
|
-
"required": true,
|
|
1239
|
-
"types": [
|
|
1240
|
-
{
|
|
1241
|
-
"type": "identifier",
|
|
1242
|
-
"named": true
|
|
1243
|
-
}
|
|
1244
|
-
]
|
|
1245
|
-
}
|
|
1246
|
-
}
|
|
1247
|
-
},
|
|
1248
1224
|
{
|
|
1249
1225
|
"type": "if_alt_statement",
|
|
1250
1226
|
"named": true,
|
|
@@ -1327,11 +1303,6 @@
|
|
|
1327
1303
|
}
|
|
1328
1304
|
}
|
|
1329
1305
|
},
|
|
1330
|
-
{
|
|
1331
|
-
"type": "import",
|
|
1332
|
-
"named": true,
|
|
1333
|
-
"fields": {}
|
|
1334
|
-
},
|
|
1335
1306
|
{
|
|
1336
1307
|
"type": "import_clause",
|
|
1337
1308
|
"named": true,
|
|
@@ -1355,32 +1326,6 @@
|
|
|
1355
1326
|
]
|
|
1356
1327
|
}
|
|
1357
1328
|
},
|
|
1358
|
-
{
|
|
1359
|
-
"type": "import_expression",
|
|
1360
|
-
"named": true,
|
|
1361
|
-
"fields": {
|
|
1362
|
-
"source": {
|
|
1363
|
-
"multiple": false,
|
|
1364
|
-
"required": true,
|
|
1365
|
-
"types": [
|
|
1366
|
-
{
|
|
1367
|
-
"type": "expression",
|
|
1368
|
-
"named": true
|
|
1369
|
-
}
|
|
1370
|
-
]
|
|
1371
|
-
}
|
|
1372
|
-
},
|
|
1373
|
-
"children": {
|
|
1374
|
-
"multiple": false,
|
|
1375
|
-
"required": true,
|
|
1376
|
-
"types": [
|
|
1377
|
-
{
|
|
1378
|
-
"type": "import",
|
|
1379
|
-
"named": true
|
|
1380
|
-
}
|
|
1381
|
-
]
|
|
1382
|
-
}
|
|
1383
|
-
},
|
|
1384
1329
|
{
|
|
1385
1330
|
"type": "import_specifier",
|
|
1386
1331
|
"named": true,
|