@@ -122,7 +122,7 @@ export abstract class Generator implements IGenerator {
122122 throw new Error ( 'Malformed assembly name. Expecting either <name> or @<scope>/<name>' ) ;
123123 }
124124
125- return `${ name } @${ this . assembly . version } .jsii.tgz`
125+ return `${ name } @${ this . assembly . version } .jsii.tgz` ;
126126 }
127127
128128 /**
@@ -208,9 +208,9 @@ export abstract class Generator implements IGenerator {
208208
209209 protected onBeginMethods ( _cls : spec . ClassType ) { /* noop */ }
210210 protected abstract onMethod ( cls : spec . ClassType , method : spec . Method ) : void ;
211- protected abstract onMethodOverload ( cls : spec . ClassType , overload : spec . Method , originalMethod : spec . Method ) : void
211+ protected abstract onMethodOverload ( cls : spec . ClassType , overload : spec . Method , originalMethod : spec . Method ) : void ;
212212 protected abstract onStaticMethod ( cls : spec . ClassType , method : spec . Method ) : void ;
213- protected abstract onStaticMethodOverload ( cls : spec . ClassType , overload : spec . Method , originalMethod : spec . Method ) : void
213+ protected abstract onStaticMethodOverload ( cls : spec . ClassType , overload : spec . Method , originalMethod : spec . Method ) : void ;
214214 protected onEndMethods ( _cls : spec . ClassType ) { /* noop */ }
215215
216216 //
@@ -240,8 +240,8 @@ export abstract class Generator implements IGenerator {
240240 const visitChildren = ( ) => {
241241 Object . keys ( node . children ) . sort ( ) . forEach ( name => {
242242 this . visit ( node . children [ name ] , names . concat ( name ) ) ;
243- } )
244- }
243+ } ) ;
244+ } ;
245245
246246 if ( node . fqn ) {
247247 const type = this . assembly . types && this . assembly . types [ node . fqn ] ;
@@ -262,7 +262,7 @@ export abstract class Generator implements IGenerator {
262262 this . onEndClass ( classSpec ) ;
263263 break ;
264264 case spec . TypeKind . Enum :
265- const enumSpec = type as spec . EnumType
265+ const enumSpec = type as spec . EnumType ;
266266 this . onBeginEnum ( enumSpec ) ;
267267 this . visitEnum ( enumSpec ) ;
268268 visitChildren ( ) ;
@@ -331,7 +331,7 @@ export abstract class Generator implements IGenerator {
331331 //
332332
333333 const remaining : spec . Parameter [ ] = clone ( method . parameters ) ;
334- let next : spec . Parameter | undefined
334+ let next : spec . Parameter | undefined ;
335335
336336 next = remaining . pop ( ) ;
337337 // Parameter is optional if it's type is optional, and all subsequent parameters are optional/variadic
@@ -352,7 +352,7 @@ export abstract class Generator implements IGenerator {
352352 if ( ifc . properties ) {
353353 ifc . properties . forEach ( prop => {
354354 this . onInterfaceProperty ( ifc , prop ) ;
355- } )
355+ } ) ;
356356 }
357357
358358 if ( ifc . methods ) {
@@ -406,7 +406,7 @@ export abstract class Generator implements IGenerator {
406406 if ( this . hasField ( cls , prop ) ) {
407407 this . onField ( cls , prop , spec . isUnionTypeReference ( prop . type ) ? prop . type : undefined ) ;
408408 }
409- } )
409+ } ) ;
410410
411411 cls . properties . forEach ( prop => {
412412 if ( ! spec . isUnionTypeReference ( prop . type ) ) {
0 commit comments