@@ -8,34 +8,34 @@ var LibraryEmbind = {
8
8
9
9
$moduleDefinitions : [ ] ,
10
10
11
- $PrimitiveType : class PrimitiveType {
11
+ $PrimitiveType : class {
12
12
constructor ( typeId , name , destructorType ) {
13
13
this . typeId = typeId ;
14
14
this . name = name ;
15
15
this . destructorType = destructorType ;
16
16
}
17
17
} ,
18
- $IntegerType : class IntegerType {
18
+ $IntegerType : class {
19
19
constructor ( typeId ) {
20
20
this . typeId = typeId ;
21
21
this . destructorType = 'none' ;
22
22
}
23
23
} ,
24
- $Argument : class Argument {
24
+ $Argument : class {
25
25
constructor ( name , type ) {
26
26
this . name = name ;
27
27
this . type = type ;
28
28
}
29
29
} ,
30
- $UserType : class UserType {
30
+ $UserType : class {
31
31
constructor ( typeId , name ) {
32
32
this . typeId = typeId ;
33
33
this . name = name ;
34
34
this . destructorType = 'none' ; // Same as emval.
35
35
}
36
36
} ,
37
37
$FunctionDefinition__deps : [ '$createJsInvoker' ] ,
38
- $FunctionDefinition : class FunctionDefinition {
38
+ $FunctionDefinition : class {
39
39
constructor ( name , returnType , argumentTypes , functionIndex , thisType = null , isAsync = false ) {
40
40
this . name = name ;
41
41
this . returnType = returnType ;
@@ -106,7 +106,7 @@ var LibraryEmbind = {
106
106
) ;
107
107
}
108
108
} ,
109
- $PointerDefinition : class PointerDefinition {
109
+ $PointerDefinition : class {
110
110
constructor ( classType , isConst , isSmartPointer ) {
111
111
this . classType = classType ;
112
112
this . isConst = isConst ;
@@ -117,7 +117,7 @@ var LibraryEmbind = {
117
117
}
118
118
}
119
119
} ,
120
- $ClassDefinition : class ClassDefinition {
120
+ $ClassDefinition : class {
121
121
constructor ( typeId , name , base = null ) {
122
122
this . typeId = typeId ;
123
123
this . name = name ;
@@ -200,7 +200,7 @@ var LibraryEmbind = {
200
200
}
201
201
202
202
} ,
203
- $ClassProperty : class ClassProperty {
203
+ $ClassProperty : class {
204
204
constructor ( type , name , readonly ) {
205
205
this . type = type ;
206
206
this . name = name ;
@@ -211,7 +211,7 @@ var LibraryEmbind = {
211
211
out . push ( `${ this . readonly ? 'readonly ' : '' } ${ this . name } : ${ nameMap ( this . type ) } ` ) ;
212
212
}
213
213
} ,
214
- $ConstantDefinition : class ConstantDefinition {
214
+ $ConstantDefinition : class {
215
215
constructor ( type , name ) {
216
216
this . type = type ;
217
217
this . name = name ;
@@ -221,7 +221,7 @@ var LibraryEmbind = {
221
221
out . push ( ` ${ this . name } : ${ nameMap ( this . type ) } ;\n` ) ;
222
222
}
223
223
} ,
224
- $EnumDefinition : class EnumDefinition {
224
+ $EnumDefinition : class {
225
225
constructor ( typeId , name ) {
226
226
this . typeId = typeId ;
227
227
this . name = name ;
@@ -255,7 +255,7 @@ var LibraryEmbind = {
255
255
out . push ( '};\n' ) ;
256
256
}
257
257
} ,
258
- $ValueArrayDefinition : class ValueArrayDefinition {
258
+ $ValueArrayDefinition : class {
259
259
constructor ( typeId , name ) {
260
260
this . typeId = typeId ;
261
261
this . name = name ;
@@ -274,7 +274,7 @@ var LibraryEmbind = {
274
274
out . push ( ' ];\n\n' ) ;
275
275
}
276
276
} ,
277
- $ValueObjectDefinition : class ValueObjectDefinition {
277
+ $ValueObjectDefinition : class {
278
278
constructor ( typeId , name ) {
279
279
this . typeId = typeId ;
280
280
this . name = name ;
@@ -294,7 +294,7 @@ var LibraryEmbind = {
294
294
out . push ( '\n};\n\n' ) ;
295
295
}
296
296
} ,
297
- $TsPrinter : class TsPrinter {
297
+ $TsPrinter : class {
298
298
constructor ( definitions ) {
299
299
this . definitions = definitions ;
300
300
const jsString = 'ArrayBuffer|Uint8Array|Uint8ClampedArray|Int8Array|string' ;
@@ -360,7 +360,7 @@ var LibraryEmbind = {
360
360
}
361
361
} ,
362
362
363
- $JsPrinter : class JsPrinter {
363
+ $JsPrinter : class {
364
364
constructor ( definitions ) {
365
365
this . definitions = definitions ;
366
366
}
0 commit comments