jsii-pacmak 1.41.0 → 1.42.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/lib/targets/dotnet/dotnetdocgenerator.d.ts +3 -3
- package/lib/targets/dotnet/dotnetdocgenerator.js +12 -16
- package/lib/targets/dotnet/dotnetgenerator.js +59 -17
- package/lib/targets/java.d.ts +3 -3
- package/lib/targets/java.js +95 -37
- package/lib/targets/python.d.ts +4 -4
- package/lib/targets/python.js +44 -26
- package/lib/version.d.ts +2 -2
- package/lib/version.js +4 -4
- package/package.json +12 -12
package/lib/targets/java.d.ts
CHANGED
|
@@ -90,7 +90,7 @@ declare class JavaGenerator extends Generator {
|
|
|
90
90
|
protected onStaticMethodOverload(cls: spec.ClassType, overload: spec.Method, _originalMethod: spec.Method): void;
|
|
91
91
|
protected onBeginEnum(enm: spec.EnumType): void;
|
|
92
92
|
protected onEndEnum(enm: spec.EnumType): void;
|
|
93
|
-
protected onEnumMember(
|
|
93
|
+
protected onEnumMember(parentType: spec.EnumType, member: spec.EnumMember): void;
|
|
94
94
|
/**
|
|
95
95
|
* Namespaces are handled implicitly by onBeginClass().
|
|
96
96
|
*
|
|
@@ -100,9 +100,9 @@ declare class JavaGenerator extends Generator {
|
|
|
100
100
|
protected onEndNamespace(_ns: string): void;
|
|
101
101
|
protected onBeginInterface(ifc: spec.InterfaceType): void;
|
|
102
102
|
protected onEndInterface(ifc: spec.InterfaceType): void;
|
|
103
|
-
protected onInterfaceMethod(
|
|
103
|
+
protected onInterfaceMethod(ifc: spec.InterfaceType, method: spec.Method): void;
|
|
104
104
|
protected onInterfaceMethodOverload(ifc: spec.InterfaceType, overload: spec.Method, _originalMethod: spec.Method): void;
|
|
105
|
-
protected onInterfaceProperty(
|
|
105
|
+
protected onInterfaceProperty(ifc: spec.InterfaceType, prop: spec.Property): void;
|
|
106
106
|
/**
|
|
107
107
|
* Emits a local default implementation for optional properties inherited from
|
|
108
108
|
* multiple distinct parent types. This remvoes the default method dispatch
|