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()
1275
1275
1276
1276
protected override void InnerCollectGarbage ( )
1277
1277
{
1278
- _dispatcher . Invoke ( ( ) => _jsRuntime . CollectGarbage ( ) ) ;
1278
+ _jsRuntime . CollectGarbage ( ) ;
1279
1279
}
1280
1280
1281
1281
#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
22
22
* JavaScriptEngineSwitcher.ChakraCore.Native.osx-x64</Description >
23
23
<PackageIconUrl >https://raw.githubusercontent.com/Taritsyn/JavaScriptEngineSwitcher/master/Icons/JavaScriptEngineSwitcher_ChakraCore_Logo128x128.png</PackageIconUrl >
24
24
<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 >
26
27
</PropertyGroup >
27
28
28
29
<Import Project =" ../../build/common.props" />
Original file line number Diff line number Diff line change 30
30
=============
31
31
RELEASE NOTES
32
32
=============
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.
35
37
36
38
=============
37
39
DOCUMENTATION
You can’t perform that action at this time.
0 commit comments