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 88 " assemblyscript" ,
99 " wasm"
1010 ],
11- "version" : " 0.9.1 " ,
11+ "version" : " 0.9.2 " ,
1212 "author" : " Daniel Wirtz <dcode+assemblyscript@dcode.io>" ,
1313 "contributors" : [],
1414 "license" : " Apache-2.0" ,
2121 "url" : " https://github.com/AssemblyScript/assemblyscript/issues"
2222 },
2323 "dependencies" : {
24- "binaryen" : " 90.0.0-nightly.20200208 " ,
24+ "binaryen" : " 90.0.0-nightly.20200214 " ,
2525 "long" : " ^4.0.0" ,
2626 "source-map-support" : " ^0.5.16" ,
2727 "ts-node" : " ^6.2.0"
2828 },
2929 "devDependencies" : {
30- "@types/node" : " ^13.5 .1" ,
30+ "@types/node" : " ^13.7 .1" ,
3131 "browser-process-hrtime" : " ^1.0.0" ,
3232 "diff" : " ^4.0.2" ,
3333 "glob" : " ^7.1.6" ,
3737 "ts-node" : " ^6.2.0" ,
3838 "tslint" : " ^5.20.1" ,
3939 "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 "
4242 },
4343 "main" : " index.js" ,
4444 "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;
804804export declare function _BinaryenGetPassArgument ( key : usize ) : usize ;
805805export declare function _BinaryenSetPassArgument ( key : usize , value : usize ) : void ;
806806export 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 ;
807813
808814export declare function _BinaryenSetAPITracing ( on : bool ) : void ;
Original file line number Diff line number Diff line change @@ -1333,6 +1333,30 @@ export class Module {
13331333 binaryen . _BinaryenClearPassArguments ( ) ;
13341334 }
13351335
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+
13361360 // meta (module)
13371361
13381362 getFeatures ( ) : FeatureFlags {
You can’t perform that action at this time.
0 commit comments