File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
src/JavaScriptEngineSwitcher.ChakraCore Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -1275,7 +1275,7 @@ protected override void InnerInterrupt()
12751275
12761276 protected override void InnerCollectGarbage ( )
12771277 {
1278- _dispatcher . Invoke ( ( ) => _jsRuntime . CollectGarbage ( ) ) ;
1278+ _jsRuntime . CollectGarbage ( ) ;
12791279 }
12801280
12811281 #region IJsEngine implementation
Original file line number Diff line number Diff line change @@ -22,7 +22,8 @@ This package does not contain the native implementations of ChakraCore. Therefor
2222 * JavaScriptEngineSwitcher.ChakraCore.Native.osx-x64</Description >
2323 <PackageIconUrl >https://raw.githubusercontent.com/Taritsyn/JavaScriptEngineSwitcher/master/Icons/JavaScriptEngineSwitcher_ChakraCore_Logo128x128.png</PackageIconUrl >
2424 <PackageTags >JavaScriptEngineSwitcher;JavaScript;ECMAScript;ChakraCore</PackageTags >
25- <PackageReleaseNotes >In configuration settings of the ChakraCore JS engine was added one new property - `MemoryLimit`.</PackageReleaseNotes >
25+ <PackageReleaseNotes >1. In configuration settings of the ChakraCore JS engine was added one new property - `MemoryLimit`;
26+ 2. Now during calling of the `CollectGarbage` method is no longer performed blocking.</PackageReleaseNotes >
2627 </PropertyGroup >
2728
2829 <Import Project =" ../../build/common.props" />
Original file line number Diff line number Diff line change 3030 =============
3131 RELEASE NOTES
3232 =============
33- In configuration settings of the ChakraCore JS engine was added one new
34- property - `MemoryLimit`.
33+ 1. In configuration settings of the ChakraCore JS engine was added one new
34+ property - `MemoryLimit`;
35+ 2. Now during calling of the `CollectGarbage` method is no longer performed
36+ blocking.
3537
3638 =============
3739 DOCUMENTATION
You can’t perform that action at this time.
0 commit comments