You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Version 7.4.5: [V8] Added AddPerformanceObject and SetTimerResolution to V8ScriptEngineFlags (GitHub Discussion #568); [V8] Enhanced execution and termination transitions, fixing GitHub Issue #560; optimized document code for string documents (GitHub Discussion #567); switched to Clang and C++20 on all platforms; added .NET 8 targets to test projects; updated API and build documentation. Tested with V8 12.3.219.12.
Copy file name to clipboardExpand all lines: ClearScript/IScriptEngine.cs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -886,7 +886,7 @@ public interface IScriptEngine : IDisposable
886
886
/// <summary>
887
887
/// Executes script code with an associated document name.
888
888
/// </summary>
889
-
/// <param name="documentName">A document name for the script code. Currently this name is used only as a label in presentation contexts such as debugger user interfaces.</param>
889
+
/// <param name="documentName">A document name for the script code. Currently, this name is used only as a label in presentation contexts such as debugger user interfaces.</param>
890
890
/// <param name="code">The script code to execute.</param>
891
891
/// <remarks>
892
892
/// <para>
@@ -904,7 +904,7 @@ public interface IScriptEngine : IDisposable
904
904
/// <summary>
905
905
/// Executes script code with an associated document name, optionally discarding the document after execution.
906
906
/// </summary>
907
-
/// <param name="documentName">A document name for the script code. Currently this name is used only as a label in presentation contexts such as debugger user interfaces.</param>
907
+
/// <param name="documentName">A document name for the script code. Currently, this name is used only as a label in presentation contexts such as debugger user interfaces.</param>
908
908
/// <param name="discard"><c>True</c> to discard the script document after execution, <c>false</c> otherwise.</param>
909
909
/// <param name="code">The script code to execute.</param>
910
910
/// <remarks>
@@ -1009,7 +1009,7 @@ public interface IScriptEngine : IDisposable
1009
1009
/// <summary>
1010
1010
/// Evaluates script code with an associated document name.
1011
1011
/// </summary>
1012
-
/// <param name="documentName">A document name for the script code. Currently this name is used only as a label in presentation contexts such as debugger user interfaces.</param>
1012
+
/// <param name="documentName">A document name for the script code. Currently, this name is used only as a label in presentation contexts such as debugger user interfaces.</param>
1013
1013
/// <param name="code">The script code to evaluate.</param>
1014
1014
/// <returns>The result value.</returns>
1015
1015
/// <remarks>
@@ -1032,7 +1032,7 @@ public interface IScriptEngine : IDisposable
1032
1032
/// <summary>
1033
1033
/// Evaluates script code with an associated document name, optionally discarding the document after execution.
1034
1034
/// </summary>
1035
-
/// <param name="documentName">A document name for the script code. Currently this name is used only as a label in presentation contexts such as debugger user interfaces.</param>
1035
+
/// <param name="documentName">A document name for the script code. Currently, this name is used only as a label in presentation contexts such as debugger user interfaces.</param>
1036
1036
/// <param name="discard"><c>True</c> to discard the script document after execution, <c>false</c> otherwise.</param>
1037
1037
/// <param name="code">The script code to evaluate.</param>
Copy file name to clipboardExpand all lines: ClearScript/ScriptEngine.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ public abstract class ScriptEngine : IScriptEngine, IHostContext
37
37
/// <summary>
38
38
/// Initializes a new script engine instance.
39
39
/// </summary>
40
-
/// <param name="name">A name to associate with the instance. Currently this name is used only as a label in presentation contexts such as debugger user interfaces.</param>
40
+
/// <param name="name">A name to associate with the instance. Currently, this name is used only as a label in presentation contexts such as debugger user interfaces.</param>
/// Initializes a new script engine instance with the specified list of supported file name extensions.
49
49
/// </summary>
50
-
/// <param name="name">A name to associate with the instance. Currently this name is used only as a label in presentation contexts such as debugger user interfaces.</param>
50
+
/// <param name="name">A name to associate with the instance. Currently, this name is used only as a label in presentation contexts such as debugger user interfaces.</param>
51
51
/// <param name="fileNameExtensions">A semicolon-delimited list of supported file name extensions.</param>
0 commit comments