File tree Expand file tree Collapse file tree 4 files changed +67
-37
lines changed Expand file tree Collapse file tree 4 files changed +67
-37
lines changed Original file line number Diff line number Diff line change 8
8
" assemblyscript" ,
9
9
" wasm"
10
10
],
11
- "version" : " 0.9.1 " ,
11
+ "version" : " 0.9.2 " ,
12
12
"author" :
" Daniel Wirtz <[email protected] >" ,
13
13
"contributors" : [],
14
14
"license" : " Apache-2.0" ,
21
21
"url" : " https://github.com/AssemblyScript/assemblyscript/issues"
22
22
},
23
23
"dependencies" : {
24
- "binaryen" : " 90.0.0-nightly.20200208 " ,
24
+ "binaryen" : " 90.0.0-nightly.20200214 " ,
25
25
"long" : " ^4.0.0" ,
26
26
"source-map-support" : " ^0.5.16" ,
27
27
"ts-node" : " ^6.2.0"
28
28
},
29
29
"devDependencies" : {
30
- "@types/node" : " ^13.5 .1" ,
30
+ "@types/node" : " ^13.7 .1" ,
31
31
"browser-process-hrtime" : " ^1.0.0" ,
32
32
"diff" : " ^4.0.2" ,
33
33
"glob" : " ^7.1.6" ,
37
37
"ts-node" : " ^6.2.0" ,
38
38
"tslint" : " ^5.20.1" ,
39
39
"typescript" : " ^3.7.5" ,
40
- "webpack" : " ^4.41.5 " ,
41
- "webpack-cli" : " ^3.3.10 "
40
+ "webpack" : " ^4.41.6 " ,
41
+ "webpack-cli" : " ^3.3.11 "
42
42
},
43
43
"main" : " index.js" ,
44
44
"types" : " index.d.ts" ,
Original file line number Diff line number Diff line change @@ -804,5 +804,11 @@ export declare function _BinaryenSetLowMemoryUnused(on: bool): void;
804
804
export declare function _BinaryenGetPassArgument ( key : usize ) : usize ;
805
805
export declare function _BinaryenSetPassArgument ( key : usize , value : usize ) : void ;
806
806
export declare function _BinaryenClearPassArguments ( ) : void ;
807
+ export declare function _BinaryenGetAlwaysInlineMaxSize ( ) : BinaryenIndex ;
808
+ export declare function _BinaryenSetAlwaysInlineMaxSize ( size : BinaryenIndex ) : void ;
809
+ export declare function _BinaryenGetFlexibleInlineMaxSize ( ) : BinaryenIndex ;
810
+ export declare function _BinaryenSetFlexibleInlineMaxSize ( size : BinaryenIndex ) : void ;
811
+ export declare function _BinaryenGetOneCallerInlineMaxSize ( ) : BinaryenIndex ;
812
+ export declare function _BinaryenSetOneCallerInlineMaxSize ( size : BinaryenIndex ) : void ;
807
813
808
814
export declare function _BinaryenSetAPITracing ( on : bool ) : void ;
Original file line number Diff line number Diff line change @@ -1333,6 +1333,30 @@ export class Module {
1333
1333
binaryen . _BinaryenClearPassArguments ( ) ;
1334
1334
}
1335
1335
1336
+ getAlwaysInlineMaxSize ( ) : Index {
1337
+ return binaryen . _BinaryenGetAlwaysInlineMaxSize ( ) ;
1338
+ }
1339
+
1340
+ setAlwaysInlineMaxSize ( size : Index ) : void {
1341
+ binaryen . _BinaryenSetAlwaysInlineMaxSize ( size ) ;
1342
+ }
1343
+
1344
+ getFlexibleInlineMaxSize ( ) : Index {
1345
+ return binaryen . _BinaryenGetFlexibleInlineMaxSize ( ) ;
1346
+ }
1347
+
1348
+ setFlexibleInlineMaxSize ( size : Index ) : void {
1349
+ binaryen . _BinaryenSetFlexibleInlineMaxSize ( size ) ;
1350
+ }
1351
+
1352
+ getOneCallerInlineMaxSize ( ) : Index {
1353
+ return binaryen . _BinaryenGetOneCallerInlineMaxSize ( ) ;
1354
+ }
1355
+
1356
+ setOneCallerInlineMaxSize ( size : Index ) : void {
1357
+ binaryen . _BinaryenSetOneCallerInlineMaxSize ( size ) ;
1358
+ }
1359
+
1336
1360
// meta (module)
1337
1361
1338
1362
getFeatures ( ) : FeatureFlags {
You can’t perform that action at this time.
0 commit comments