forked from cdklabs/jsii-srcmak
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcli.test.ts.snap
More file actions
952 lines (857 loc) · 34.8 KB
/
cli.test.ts.snap
File metadata and controls
952 lines (857 loc) · 34.8 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
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`dotnet output 1`] = `
Object {
"MyPackage/.jsii": "{
\\"author\\": {
\\"name\\": \\"generated@generated.com\\",
\\"roles\\": [
\\"author\\"
]
},
\\"description\\": \\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060\\",
\\"homepage\\": \\"http://generated\\",
\\"jsiiVersion\\": \\"1.12.0 (build 5ddc9f2)\\",
\\"license\\": \\"Apache-2.0\\",
\\"name\\": \\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060\\",
\\"repository\\": {
\\"type\\": \\"git\\",
\\"url\\": \\"http://generated\\"
},
\\"schema\\": \\"jsii/0.10.0\\",
\\"targets\\": {
\\"dotnet\\": {
\\"namespace\\": \\"MyPackage\\",
\\"packageId\\": \\"MyPackage\\"
},
\\"js\\": {
\\"npm\\": \\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060\\"
}
},
\\"types\\": {
\\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Calculator\\": {
\\"assembly\\": \\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060\\",
\\"docs\\": {
\\"summary\\": \\"A sophisticaed multi-language calculator.\\"
},
\\"fqn\\": \\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Calculator\\",
\\"initializer\\": {},
\\"kind\\": \\"class\\",
\\"locationInModule\\": {
\\"filename\\": \\"lib/main.ts\\",
\\"line\\": 19
},
\\"methods\\": [
{
\\"docs\\": {
\\"summary\\": \\"Adds the two operands.\\"
},
\\"locationInModule\\": {
\\"filename\\": \\"lib/main.ts\\",
\\"line\\": 24
},
\\"name\\": \\"add\\",
\\"parameters\\": [
{
\\"docs\\": {
\\"summary\\": \\"operands.\\"
},
\\"name\\": \\"ops\\",
\\"type\\": {
\\"fqn\\": \\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Operands\\"
}
}
],
\\"returns\\": {
\\"type\\": {
\\"primitive\\": \\"number\\"
}
}
},
{
\\"docs\\": {
\\"summary\\": \\"Multiplies the two operands.\\"
},
\\"locationInModule\\": {
\\"filename\\": \\"lib/main.ts\\",
\\"line\\": 40
},
\\"name\\": \\"mul\\",
\\"parameters\\": [
{
\\"docs\\": {
\\"summary\\": \\"operands.\\"
},
\\"name\\": \\"ops\\",
\\"type\\": {
\\"fqn\\": \\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Operands\\"
}
}
],
\\"returns\\": {
\\"type\\": {
\\"primitive\\": \\"number\\"
}
}
},
{
\\"docs\\": {
\\"summary\\": \\"Subtracts the two operands.\\"
},
\\"locationInModule\\": {
\\"filename\\": \\"lib/main.ts\\",
\\"line\\": 32
},
\\"name\\": \\"sub\\",
\\"parameters\\": [
{
\\"docs\\": {
\\"summary\\": \\"operands.\\"
},
\\"name\\": \\"ops\\",
\\"type\\": {
\\"fqn\\": \\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Operands\\"
}
}
],
\\"returns\\": {
\\"type\\": {
\\"primitive\\": \\"number\\"
}
}
}
],
\\"name\\": \\"Calculator\\"
},
\\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Operands\\": {
\\"assembly\\": \\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060\\",
\\"datatype\\": true,
\\"docs\\": {
\\"summary\\": \\"Math operands.\\"
},
\\"fqn\\": \\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Operands\\",
\\"kind\\": \\"interface\\",
\\"locationInModule\\": {
\\"filename\\": \\"lib/main.ts\\",
\\"line\\": 4
},
\\"name\\": \\"Operands\\",
\\"properties\\": [
{
\\"abstract\\": true,
\\"docs\\": {
\\"summary\\": \\"Left-hand side operand.\\"
},
\\"immutable\\": true,
\\"locationInModule\\": {
\\"filename\\": \\"lib/main.ts\\",
\\"line\\": 8
},
\\"name\\": \\"lhs\\",
\\"type\\": {
\\"primitive\\": \\"number\\"
}
},
{
\\"abstract\\": true,
\\"docs\\": {
\\"summary\\": \\"Right-hand side operand.\\"
},
\\"immutable\\": true,
\\"locationInModule\\": {
\\"filename\\": \\"lib/main.ts\\",
\\"line\\": 13
},
\\"name\\": \\"rhs\\",
\\"type\\": {
\\"primitive\\": \\"number\\"
}
}
]
}
},
\\"version\\": \\"0.0.0\\",
\\"fingerprint\\": \\"F2Ja2YDGjKNYeGATUA/z5rZjbzgcQStHaXQMJ2VJRjg=\\"
}
",
"MyPackage/4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060-0.0.0.tgz": "� �Z[s�:�g~��}�����BRSu�$� � �u�-)X���2���߶��:!����=Ė�j}��%ԭ�
�)��L]J��c
���|�K���_,A[�P��X����b �?�N�\\\\�8 �{�������)�8.�xL���9Ԡn*�ZzBL�(����od�ϑ�c����Ս���;�}Ә�ȡ6��(ͣ�Z(UR\\"b�/��J�3!�˥B�\\"����E$^QʊB���(W*��\\"���,��กF�1�<�]c�$���]
+d1�sT��+\`�ʏ��HT���n���V�F��h�Sq��-�2��7d3ߎȦ,&�s�D�֔���P���,��0x�0w�[�$l]_�䂝�M�>�V�C�}��n{����8uw4��IH��X�P�e����\\\\):�t�m�z൮KU�O6�+��6E��y���3���\\\\�֨�(R�Og���f&��������$�h���njRF�.IH�f�5Cg@:����-��Z6��t�k�#�I�|t�f
����.<3h�f����p[���=�c�c�ؓ�Y6,!�kBwF;n�
�6J̿8T�&d�3�<��Z;���2�$$�} h�e�[�٤;�?ޭ� M�T�}�:�0�1\\\\��iۡ��<4���8��ڼo���c3X�N�/��<�+a7z�ʿ�Wv=�9
b��)s�Q�t=��)�jN��}M���c�Ty:j~��Naʊ/�x�m羦´�v��ݚ��5a�<g����������N�������ִ�p2��L7�#�����K1�9eO���1E��'�8Eo�i���������M^��V����\\"�C'��1�B�(�Ωi���T\\\\�\\"��&�z�?RsBPn��+b]G���mkD���������r��]VS��f]��;���t�9u���*�Ϯٜ��P�S^���yQ(������{������\\\\��@a�HݩS�X�Lr�����-�����w�6?srsE�H�������Vn����-�9�\\"���)�}�ޚ� �l*�7p[�u�
�K������C\\"|v����~3?@�ǭ����.��o�K\\\\�6�{k����o� �#���J\`�V0G@|��<ۛ
�x��0ٞ�HS�m��z�����tU�F�}v�Z慪����L��8֗ʠ��Skٸ��\`��;U[��oȗ]�l��>��s5צwT� �Ts}$����VeCДA�õ&v��jT�xؤw:� �FC�IL�W��n鎯H��
<���R�W��^-Z�������J]��fr�n���=\\\\��u���������O�K��M���Fv���_Ԡ�ָiI�^3�_}�r��+����m���^��n�@g��[���ڝ ��U�mg��@~��P.�mٺ��R�\\\\<���Bl��a��� .�M�Q�>پ;�B�����t���~~�I�=k�c�c�~-�'�IJ������\\\\5;�j�?�.m�ַa5?��Rk4�Xr�����Fg}/#���Q���+��\\"c�����!'�{�ך\\",<��r~Km��ˉ|eM�}_ �hP�ɵ�=��&jܧ�G�A}m\\\\-{jm6Q���Jt<�K�j!���B�or�n�E�o4�ڞ Q����U��a�X����2SłK���ԚE�Z�A]GS�TS@�� /��l���#����$�^�
.�7�b�x��\`1��~����������\\\\c���Tf����r��S��-H���.Q�������\\\\m���uW4'�Agvrhimϗc�v�7�Ά������_�*��kG�s���)�յQ���p�c�l3ϵ�Z�]�4��\\"�I��|�֧jU��#��Q0_7[o�Rieo�7<�q�
�x'��jM�G�P���þ�����&^�5<O�V���F��H���+I{�>�d��?߯��g�zٺ�k}_����\\\\�\\\\�u���p��է��_����g&�5>�����R�?8�
����g�������ɱ��^���t��D�S7�s�i�q����}ҍ�K��$����:���7,�a�!�YwܻzO�|?~�~�> 6�Llbbb�(�]ۦmB�����������'��� �s��?�������w�a�Ew�:_��I��<9\`:D����Ē�\\\\�A����B:1Y������.�L���?%�p�&��D�,���N�>H�4i���^��{y/'.�0U� . ",
"MyPackage/AssemblyInfo.cs": "using Amazon.JSII.Runtime.Deputy;
[assembly: JsiiAssembly(\\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060\\", \\"0.0.0\\", \\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060-0.0.0.tgz\\")]
",
"MyPackage/MyPackage.csproj": "<Project Sdk=\\"Microsoft.NET.Sdk\\">
<PropertyGroup>
<!-- Package Identification -->
<Description>4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060</Description>
<PackageId>MyPackage</PackageId>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageVersion>0.0.0</PackageVersion>
<!-- Additional Metadata -->
<Authors>generated@generated.com</Authors>
<Language>en-US</Language>
<ProjectUrl>http://generated</ProjectUrl>
<RepositoryUrl>http://generated</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<!-- Build Configuration -->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<IncludeSource>true</IncludeSource>
<Nullable>enable</Nullable>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include=\\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060-0.0.0.tgz\\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include=\\"Amazon.JSII.Runtime\\" Version=\\"[1.12.0,2.0.0)\\" />
</ItemGroup>
<PropertyGroup>
<NoWarn>0612,0618</NoWarn>
</PropertyGroup>
</Project>
",
"MyPackage/MyPackage/Calculator.cs": "using Amazon.JSII.Runtime.Deputy;
#pragma warning disable CS0672,CS0809,CS1591
namespace MyPackage
{
/// <summary>A sophisticaed multi-language calculator.</summary>
[JsiiClass(nativeType: typeof(MyPackage.Calculator), fullyQualifiedName: \\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Calculator\\")]
public class Calculator : DeputyBase
{
public Calculator(): base(new DeputyProps(System.Array.Empty<object>()))
{
}
/// <summary>Used by jsii to construct an instance of this class from a Javascript-owned object reference</summary>
/// <param name=\\"reference\\">The Javascript-owned object reference</param>
[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
protected Calculator(ByRefValue reference): base(reference)
{
}
/// <summary>Used by jsii to construct an instance of this class from DeputyProps</summary>
/// <param name=\\"props\\">The deputy props</param>
[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
protected Calculator(DeputyProps props): base(props)
{
}
/// <summary>Adds the two operands.</summary>
/// <param name=\\"ops\\">operands.</param>
[JsiiMethod(name: \\"add\\", returnsJson: \\"{\\\\\\"type\\\\\\":{\\\\\\"primitive\\\\\\":\\\\\\"number\\\\\\"}}\\", parametersJson: \\"[{\\\\\\"docs\\\\\\":{\\\\\\"summary\\\\\\":\\\\\\"operands.\\\\\\"},\\\\\\"name\\\\\\":\\\\\\"ops\\\\\\",\\\\\\"type\\\\\\":{\\\\\\"fqn\\\\\\":\\\\\\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Operands\\\\\\"}}]\\")]
public virtual double Add(MyPackage.IOperands ops)
{
return InvokeInstanceMethod<double>(new System.Type[]{typeof(MyPackage.IOperands)}, new object[]{ops});
}
/// <summary>Multiplies the two operands.</summary>
/// <param name=\\"ops\\">operands.</param>
[JsiiMethod(name: \\"mul\\", returnsJson: \\"{\\\\\\"type\\\\\\":{\\\\\\"primitive\\\\\\":\\\\\\"number\\\\\\"}}\\", parametersJson: \\"[{\\\\\\"docs\\\\\\":{\\\\\\"summary\\\\\\":\\\\\\"operands.\\\\\\"},\\\\\\"name\\\\\\":\\\\\\"ops\\\\\\",\\\\\\"type\\\\\\":{\\\\\\"fqn\\\\\\":\\\\\\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Operands\\\\\\"}}]\\")]
public virtual double Mul(MyPackage.IOperands ops)
{
return InvokeInstanceMethod<double>(new System.Type[]{typeof(MyPackage.IOperands)}, new object[]{ops});
}
/// <summary>Subtracts the two operands.</summary>
/// <param name=\\"ops\\">operands.</param>
[JsiiMethod(name: \\"sub\\", returnsJson: \\"{\\\\\\"type\\\\\\":{\\\\\\"primitive\\\\\\":\\\\\\"number\\\\\\"}}\\", parametersJson: \\"[{\\\\\\"docs\\\\\\":{\\\\\\"summary\\\\\\":\\\\\\"operands.\\\\\\"},\\\\\\"name\\\\\\":\\\\\\"ops\\\\\\",\\\\\\"type\\\\\\":{\\\\\\"fqn\\\\\\":\\\\\\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Operands\\\\\\"}}]\\")]
public virtual double Sub(MyPackage.IOperands ops)
{
return InvokeInstanceMethod<double>(new System.Type[]{typeof(MyPackage.IOperands)}, new object[]{ops});
}
}
}
",
"MyPackage/MyPackage/IOperands.cs": "using Amazon.JSII.Runtime.Deputy;
#pragma warning disable CS0672,CS0809,CS1591
namespace MyPackage
{
/// <summary>Math operands.</summary>
[JsiiInterface(nativeType: typeof(IOperands), fullyQualifiedName: \\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Operands\\")]
public interface IOperands
{
/// <summary>Left-hand side operand.</summary>
[JsiiProperty(name: \\"lhs\\", typeJson: \\"{\\\\\\"primitive\\\\\\":\\\\\\"number\\\\\\"}\\")]
double Lhs
{
get;
}
/// <summary>Right-hand side operand.</summary>
[JsiiProperty(name: \\"rhs\\", typeJson: \\"{\\\\\\"primitive\\\\\\":\\\\\\"number\\\\\\"}\\")]
double Rhs
{
get;
}
}
}
",
"MyPackage/MyPackage/Internal/DependencyResolution/Anchor.cs": "#pragma warning disable CS0672,CS0809,CS1591
namespace MyPackage.Internal.DependencyResolution
{
public sealed class Anchor
{
public Anchor()
{
}
}
}
",
"MyPackage/MyPackage/Operands.cs": "using Amazon.JSII.Runtime.Deputy;
#pragma warning disable CS0672,CS0809,CS1591
namespace MyPackage
{
#pragma warning disable CS8618
/// <summary>Math operands.</summary>
[JsiiByValue(fqn: \\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Operands\\")]
public class Operands : MyPackage.IOperands
{
/// <summary>Left-hand side operand.</summary>
[JsiiProperty(name: \\"lhs\\", typeJson: \\"{\\\\\\"primitive\\\\\\":\\\\\\"number\\\\\\"}\\", isOverride: true)]
public double Lhs
{
get;
set;
}
/// <summary>Right-hand side operand.</summary>
[JsiiProperty(name: \\"rhs\\", typeJson: \\"{\\\\\\"primitive\\\\\\":\\\\\\"number\\\\\\"}\\", isOverride: true)]
public double Rhs
{
get;
set;
}
}
}
",
"MyPackage/MyPackage/OperandsProxy.cs": "using Amazon.JSII.Runtime.Deputy;
#pragma warning disable CS0672,CS0809,CS1591
namespace MyPackage
{
/// <summary>Math operands.</summary>
[JsiiTypeProxy(nativeType: typeof(IOperands), fullyQualifiedName: \\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Operands\\")]
internal sealed class OperandsProxy : DeputyBase, MyPackage.IOperands
{
private OperandsProxy(ByRefValue reference): base(reference)
{
}
/// <summary>Left-hand side operand.</summary>
[JsiiProperty(name: \\"lhs\\", typeJson: \\"{\\\\\\"primitive\\\\\\":\\\\\\"number\\\\\\"}\\")]
public double Lhs
{
get => GetInstanceProperty<double>();
}
/// <summary>Right-hand side operand.</summary>
[JsiiProperty(name: \\"rhs\\", typeJson: \\"{\\\\\\"primitive\\\\\\":\\\\\\"number\\\\\\"}\\")]
public double Rhs
{
get => GetInstanceProperty<double>();
}
}
}
",
}
`;
exports[`java output 1`] = `
Object {
"src/main/java/mypackage/$Module.java": "package mypackage;
import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.IOException;
import java.io.Reader;
import java.io.UncheckedIOException;
import java.nio.charset.StandardCharsets;
import java.util.HashMap;
import java.util.Map;
import software.amazon.jsii.JsiiModule;
public final class $Module extends JsiiModule {
private static final Map<String, String> MODULE_TYPES = load();
private static Map<String, String> load() {
final Map<String, String> result = new HashMap<>();
final ClassLoader cl = $Module.class.getClassLoader();
try (final InputStream is = cl.getResourceAsStream(\\"mypackage/$Module.txt\\");
final Reader rd = new InputStreamReader(is, StandardCharsets.UTF_8);
final BufferedReader br = new BufferedReader(rd)) {
br.lines()
.filter(line -> !line.trim().isEmpty())
.forEach(line -> {
final String[] parts = line.split(\\"=\\", 2);
final String fqn = parts[0];
final String className = parts[1];
result.put(fqn, className);
});
}
catch (final IOException exception) {
throw new UncheckedIOException(exception);
}
return result;
}
private final Map<String, Class<?>> cache = new HashMap<>();
public $Module() {
super(\\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060\\", \\"0.0.0\\", $Module.class, \\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060@0.0.0.jsii.tgz\\");
}
@Override
protected Class<?> resolveClass(final String fqn) throws ClassNotFoundException {
if (!MODULE_TYPES.containsKey(fqn)) {
throw new ClassNotFoundException(\\"Unknown JSII type: \\" + fqn);
}
String className = MODULE_TYPES.get(fqn);
if (!this.cache.containsKey(className)) {
this.cache.put(className, this.findClass(className));
}
return this.cache.get(className);
}
private Class<?> findClass(final String binaryName) {
try {
return Class.forName(binaryName);
}
catch (final ClassNotFoundException exception) {
throw new RuntimeException(exception);
}
}
}
",
"src/main/java/mypackage/Calculator.java": "package mypackage;
/**
* A sophisticaed multi-language calculator.
*/
@software.amazon.jsii.Jsii(module = mypackage.$Module.class, fqn = \\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Calculator\\")
public class Calculator extends software.amazon.jsii.JsiiObject {
protected Calculator(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
}
protected Calculator(final software.amazon.jsii.JsiiObject.InitializationMode initializationMode) {
super(initializationMode);
}
public Calculator() {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
software.amazon.jsii.JsiiEngine.getInstance().createNewObject(this);
}
/**
* Adds the two operands.
* <p>
* @param ops operands. This parameter is required.
*/
public @org.jetbrains.annotations.NotNull java.lang.Number add(final @org.jetbrains.annotations.NotNull mypackage.Operands ops) {
return this.jsiiCall(\\"add\\", java.lang.Number.class, new Object[] { java.util.Objects.requireNonNull(ops, \\"ops is required\\") });
}
/**
* Multiplies the two operands.
* <p>
* @param ops operands. This parameter is required.
*/
public @org.jetbrains.annotations.NotNull java.lang.Number mul(final @org.jetbrains.annotations.NotNull mypackage.Operands ops) {
return this.jsiiCall(\\"mul\\", java.lang.Number.class, new Object[] { java.util.Objects.requireNonNull(ops, \\"ops is required\\") });
}
/**
* Subtracts the two operands.
* <p>
* @param ops operands. This parameter is required.
*/
public @org.jetbrains.annotations.NotNull java.lang.Number sub(final @org.jetbrains.annotations.NotNull mypackage.Operands ops) {
return this.jsiiCall(\\"sub\\", java.lang.Number.class, new Object[] { java.util.Objects.requireNonNull(ops, \\"ops is required\\") });
}
}
",
"src/main/java/mypackage/Operands.java": "package mypackage;
/**
* Math operands.
*/
@software.amazon.jsii.Jsii(module = mypackage.$Module.class, fqn = \\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Operands\\")
@software.amazon.jsii.Jsii.Proxy(Operands.Jsii$Proxy.class)
public interface Operands extends software.amazon.jsii.JsiiSerializable {
/**
* Left-hand side operand.
*/
@org.jetbrains.annotations.NotNull java.lang.Number getLhs();
/**
* Right-hand side operand.
*/
@org.jetbrains.annotations.NotNull java.lang.Number getRhs();
/**
* @return a {@link Builder} of {@link Operands}
*/
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link Operands}
*/
public static final class Builder implements software.amazon.jsii.Builder<Operands> {
private java.lang.Number lhs;
private java.lang.Number rhs;
/**
* Sets the value of {@link Operands#getLhs}
* @param lhs Left-hand side operand. This parameter is required.
* @return {@code this}
*/
public Builder lhs(java.lang.Number lhs) {
this.lhs = lhs;
return this;
}
/**
* Sets the value of {@link Operands#getRhs}
* @param rhs Right-hand side operand. This parameter is required.
* @return {@code this}
*/
public Builder rhs(java.lang.Number rhs) {
this.rhs = rhs;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link Operands}
* @throws NullPointerException if any required attribute was not provided
*/
@Override
public Operands build() {
return new Jsii$Proxy(lhs, rhs);
}
}
/**
* An implementation for {@link Operands}
*/
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements Operands {
private final java.lang.Number lhs;
private final java.lang.Number rhs;
/**
* Constructor that initializes the object based on values retrieved from the JsiiObject.
* @param objRef Reference to the JSII managed object.
*/
protected Jsii$Proxy(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
this.lhs = this.jsiiGet(\\"lhs\\", java.lang.Number.class);
this.rhs = this.jsiiGet(\\"rhs\\", java.lang.Number.class);
}
/**
* Constructor that initializes the object based on literal property values passed by the {@link Builder}.
*/
private Jsii$Proxy(final java.lang.Number lhs, final java.lang.Number rhs) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
this.lhs = java.util.Objects.requireNonNull(lhs, \\"lhs is required\\");
this.rhs = java.util.Objects.requireNonNull(rhs, \\"rhs is required\\");
}
@Override
public java.lang.Number getLhs() {
return this.lhs;
}
@Override
public java.lang.Number getRhs() {
return this.rhs;
}
@Override
public com.fasterxml.jackson.databind.JsonNode $jsii$toJson() {
final com.fasterxml.jackson.databind.ObjectMapper om = software.amazon.jsii.JsiiObjectMapper.INSTANCE;
final com.fasterxml.jackson.databind.node.ObjectNode data = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
data.set(\\"lhs\\", om.valueToTree(this.getLhs()));
data.set(\\"rhs\\", om.valueToTree(this.getRhs()));
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set(\\"fqn\\", om.valueToTree(\\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Operands\\"));
struct.set(\\"data\\", data);
final com.fasterxml.jackson.databind.node.ObjectNode obj = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
obj.set(\\"$jsii.struct\\", struct);
return obj;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Operands.Jsii$Proxy that = (Operands.Jsii$Proxy) o;
if (!lhs.equals(that.lhs)) return false;
return this.rhs.equals(that.rhs);
}
@Override
public int hashCode() {
int result = this.lhs.hashCode();
result = 31 * result + (this.rhs.hashCode());
return result;
}
}
}
",
"src/main/resources/mypackage/$Module.txt": "4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Calculator=mypackage.Calculator
4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Operands=mypackage.Operands
",
}
`;
exports[`jsii output 1`] = `
Object {
"author": Object {
"name": "generated@generated.com",
"roles": Array [
"author",
],
},
"description": "4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060",
"fingerprint": "GAmRv1ds0Lcc72nvT3AuuvD/obato2ikspSVJqx4TVE=",
"homepage": "http://generated",
"jsiiVersion": "1.12.0 (build 5ddc9f2)",
"license": "Apache-2.0",
"name": "4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060",
"repository": Object {
"type": "git",
"url": "http://generated",
},
"schema": "jsii/0.10.0",
"targets": Object {
"js": Object {
"npm": "4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060",
},
},
"types": Object {
"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Calculator": Object {
"assembly": "4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060",
"docs": Object {
"summary": "A sophisticaed multi-language calculator.",
},
"fqn": "4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Calculator",
"initializer": Object {},
"kind": "class",
"locationInModule": Object {
"filename": "lib/main.ts",
"line": 19,
},
"methods": Array [
Object {
"docs": Object {
"summary": "Adds the two operands.",
},
"locationInModule": Object {
"filename": "lib/main.ts",
"line": 24,
},
"name": "add",
"parameters": Array [
Object {
"docs": Object {
"summary": "operands.",
},
"name": "ops",
"type": Object {
"fqn": "4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Operands",
},
},
],
"returns": Object {
"type": Object {
"primitive": "number",
},
},
},
Object {
"docs": Object {
"summary": "Multiplies the two operands.",
},
"locationInModule": Object {
"filename": "lib/main.ts",
"line": 40,
},
"name": "mul",
"parameters": Array [
Object {
"docs": Object {
"summary": "operands.",
},
"name": "ops",
"type": Object {
"fqn": "4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Operands",
},
},
],
"returns": Object {
"type": Object {
"primitive": "number",
},
},
},
Object {
"docs": Object {
"summary": "Subtracts the two operands.",
},
"locationInModule": Object {
"filename": "lib/main.ts",
"line": 32,
},
"name": "sub",
"parameters": Array [
Object {
"docs": Object {
"summary": "operands.",
},
"name": "ops",
"type": Object {
"fqn": "4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Operands",
},
},
],
"returns": Object {
"type": Object {
"primitive": "number",
},
},
},
],
"name": "Calculator",
},
"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Operands": Object {
"assembly": "4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060",
"datatype": true,
"docs": Object {
"summary": "Math operands.",
},
"fqn": "4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Operands",
"kind": "interface",
"locationInModule": Object {
"filename": "lib/main.ts",
"line": 4,
},
"name": "Operands",
"properties": Array [
Object {
"abstract": true,
"docs": Object {
"summary": "Left-hand side operand.",
},
"immutable": true,
"locationInModule": Object {
"filename": "lib/main.ts",
"line": 8,
},
"name": "lhs",
"type": Object {
"primitive": "number",
},
},
Object {
"abstract": true,
"docs": Object {
"summary": "Right-hand side operand.",
},
"immutable": true,
"locationInModule": Object {
"filename": "lib/main.ts",
"line": 13,
},
"name": "rhs",
"type": Object {
"primitive": "number",
},
},
],
},
},
"version": "0.0.0",
}
`;
exports[`python output 1`] = `
Object {
"my/python/module/__init__.py": "import abc
import builtins
import datetime
import enum
import typing
import jsii
import publication
import typing_extensions
from ._jsii import *
class Calculator(
metaclass=jsii.JSIIMeta,
jsii_type=\\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Calculator\\",
):
\\"\\"\\"A sophisticaed multi-language calculator.\\"\\"\\"
def __init__(self) -> None:
jsii.create(Calculator, self, [])
@jsii.member(jsii_name=\\"add\\")
def add(self, *, lhs: jsii.Number, rhs: jsii.Number) -> jsii.Number:
\\"\\"\\"Adds the two operands.
:param lhs: Left-hand side operand.
:param rhs: Right-hand side operand.
\\"\\"\\"
ops = Operands(lhs=lhs, rhs=rhs)
return jsii.invoke(self, \\"add\\", [ops])
@jsii.member(jsii_name=\\"mul\\")
def mul(self, *, lhs: jsii.Number, rhs: jsii.Number) -> jsii.Number:
\\"\\"\\"Multiplies the two operands.
:param lhs: Left-hand side operand.
:param rhs: Right-hand side operand.
\\"\\"\\"
ops = Operands(lhs=lhs, rhs=rhs)
return jsii.invoke(self, \\"mul\\", [ops])
@jsii.member(jsii_name=\\"sub\\")
def sub(self, *, lhs: jsii.Number, rhs: jsii.Number) -> jsii.Number:
\\"\\"\\"Subtracts the two operands.
:param lhs: Left-hand side operand.
:param rhs: Right-hand side operand.
\\"\\"\\"
ops = Operands(lhs=lhs, rhs=rhs)
return jsii.invoke(self, \\"sub\\", [ops])
@jsii.data_type(
jsii_type=\\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060.Operands\\",
jsii_struct_bases=[],
name_mapping={\\"lhs\\": \\"lhs\\", \\"rhs\\": \\"rhs\\"},
)
class Operands:
def __init__(self, *, lhs: jsii.Number, rhs: jsii.Number) -> None:
\\"\\"\\"Math operands.
:param lhs: Left-hand side operand.
:param rhs: Right-hand side operand.
\\"\\"\\"
self._values: typing.Dict[str, typing.Any] = {
\\"lhs\\": lhs,
\\"rhs\\": rhs,
}
@builtins.property
def lhs(self) -> jsii.Number:
\\"\\"\\"Left-hand side operand.\\"\\"\\"
result = self._values.get(\\"lhs\\")
assert result is not None, \\"Required property 'lhs' is missing\\"
return result
@builtins.property
def rhs(self) -> jsii.Number:
\\"\\"\\"Right-hand side operand.\\"\\"\\"
result = self._values.get(\\"rhs\\")
assert result is not None, \\"Required property 'rhs' is missing\\"
return result
def __eq__(self, rhs: typing.Any) -> builtins.bool:
return isinstance(rhs, self.__class__) and rhs._values == self._values
def __ne__(self, rhs: typing.Any) -> builtins.bool:
return not (rhs == self)
def __repr__(self) -> str:
return \\"Operands(%s)\\" % \\", \\".join(
k + \\"=\\" + repr(v) for k, v in self._values.items()
)
__all__ = [
\\"Calculator\\",
\\"Operands\\",
]
publication.publish()
",
"my/python/module/_jsii/__init__.py": "import abc
import builtins
import datetime
import enum
import typing
import jsii
import publication
import typing_extensions
__jsii_assembly__ = jsii.JSIIAssembly.load(
\\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060\\",
\\"0.0.0\\",
__name__[0:-6],
\\"4c6b576fbe7e27053874813d9754cb2e46811d806c1e0aa9aae8add4c3763060@0.0.0.jsii.tgz\\",
)
__all__ = [
\\"__jsii_assembly__\\",
]
publication.publish()
",
"my/python/module/py.typed": "
",
}
`;