Skip to content

Commit dd12280

Browse files
Version 7.3.6: Fixed host collection iteration with type restriction disabled (GitHub Issue #463); added DocumentFlags.AwaitDebuggerAndPause (GitHub Discussion #452); added AttributeTargets.Constructor to ScriptUsageAttribute and NoScriptAccessAttribute (GitHub Issue #444); updated API documentation. Tested with V8 10.8.168.24.
1 parent 1abd9b1 commit dd12280

File tree

658 files changed

+1245
-740
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

658 files changed

+1245
-740
lines changed

ClearScript/CustomAttributes.NetFramework.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
using System.Reflection;
55
using System.Runtime.CompilerServices;
6-
using Microsoft.ClearScript.Util;
76

87
namespace Microsoft.ClearScript
98
{

ClearScript/DocumentFlags.cs

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,15 @@ public enum DocumentFlags
2020
/// Indicates that the document is temporary and can be discarded after use. Only Windows
2121
/// Script engines honor this attribute.
2222
/// </summary>
23-
IsTransient = 0x00000001
23+
IsTransient = 0x00000001,
24+
25+
/// <summary>
26+
/// Specifies that the script engine is to wait for a debugger connection and schedule a
27+
/// pause before executing the first line of the document. Windows Script engines do not
28+
/// honor this attribute. For it to be effective, debugging features must be enabled, a
29+
/// debugger must not already be connected, and the script engine must not already have
30+
/// waited for a debugger connection.
31+
/// </summary>
32+
AwaitDebuggerAndPause = 0x00000002
2433
}
2534
}

ClearScript/Exports/VersionSymbols.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
#pragma once
77

8-
#define CLEARSCRIPT_VERSION_STRING "7.3.5"
9-
#define CLEARSCRIPT_VERSION_COMMA_SEPARATED 7,3,5
10-
#define CLEARSCRIPT_VERSION_STRING_INFORMATIONAL "7.3.5"
8+
#define CLEARSCRIPT_VERSION_STRING "7.3.6"
9+
#define CLEARSCRIPT_VERSION_COMMA_SEPARATED 7,3,6
10+
#define CLEARSCRIPT_VERSION_STRING_INFORMATIONAL "7.3.6"
1111
#define CLEARSCRIPT_FILE_FLAGS 0L

ClearScript/NoScriptAccessAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Microsoft.ClearScript
1414
/// method that is blocked by this attribute, it will be rejected even if an overload exists
1515
/// that could receive the call.
1616
/// </remarks>
17-
[AttributeUsage(AttributeTargets.Event | AttributeTargets.Field | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Class | AttributeTargets.Enum | AttributeTargets.Interface | AttributeTargets.Struct)]
17+
[AttributeUsage(AttributeTargets.Constructor | AttributeTargets.Event | AttributeTargets.Field | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Class | AttributeTargets.Enum | AttributeTargets.Interface | AttributeTargets.Struct)]
1818
public sealed class NoScriptAccessAttribute : ScriptUsageAttribute
1919
{
2020
/// <summary>

ClearScript/Properties/AssemblyInfo.Core.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
[assembly: InternalsVisibleTo("ClearScriptTest")]
1919

2020
[assembly: ComVisible(false)]
21-
[assembly: AssemblyVersion("7.3.5")]
22-
[assembly: AssemblyFileVersion("7.3.5")]
23-
[assembly: AssemblyInformationalVersion("7.3.5")]
21+
[assembly: AssemblyVersion("7.3.6")]
22+
[assembly: AssemblyFileVersion("7.3.6")]
23+
[assembly: AssemblyInformationalVersion("7.3.6")]
2424

2525
namespace Microsoft.ClearScript.Properties
2626
{
2727
internal static class ClearScriptVersion
2828
{
29-
public const string Triad = "7.3.5";
30-
public const string Informational = "7.3.5";
29+
public const string Triad = "7.3.6";
30+
public const string Informational = "7.3.6";
3131
}
3232
}

ClearScript/Properties/AssemblyInfo.V8.ICUData.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
[assembly: InternalsVisibleTo("ClearScript.V8")]
1616

1717
[assembly: ComVisible(false)]
18-
[assembly: AssemblyVersion("7.3.5")]
19-
[assembly: AssemblyFileVersion("7.3.5")]
20-
[assembly: AssemblyInformationalVersion("7.3.5")]
18+
[assembly: AssemblyVersion("7.3.6")]
19+
[assembly: AssemblyFileVersion("7.3.6")]
20+
[assembly: AssemblyInformationalVersion("7.3.6")]

ClearScript/Properties/AssemblyInfo.V8.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
[assembly: InternalsVisibleTo("ClearScriptTest")]
1616

1717
[assembly: ComVisible(false)]
18-
[assembly: AssemblyVersion("7.3.5")]
19-
[assembly: AssemblyFileVersion("7.3.5")]
20-
[assembly: AssemblyInformationalVersion("7.3.5")]
18+
[assembly: AssemblyVersion("7.3.6")]
19+
[assembly: AssemblyFileVersion("7.3.6")]
20+
[assembly: AssemblyInformationalVersion("7.3.6")]

ClearScript/Properties/AssemblyInfo.Windows.Core.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
[assembly: InternalsVisibleTo("ClearScriptTest")]
1717

1818
[assembly: ComVisible(false)]
19-
[assembly: AssemblyVersion("7.3.5")]
20-
[assembly: AssemblyFileVersion("7.3.5")]
21-
[assembly: AssemblyInformationalVersion("7.3.5")]
19+
[assembly: AssemblyVersion("7.3.6")]
20+
[assembly: AssemblyFileVersion("7.3.6")]
21+
[assembly: AssemblyInformationalVersion("7.3.6")]

ClearScript/Properties/AssemblyInfo.Windows.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
[assembly: InternalsVisibleTo("ClearScriptTest")]
1616

1717
[assembly: ComVisible(false)]
18-
[assembly: AssemblyVersion("7.3.5")]
19-
[assembly: AssemblyFileVersion("7.3.5")]
20-
[assembly: AssemblyInformationalVersion("7.3.5")]
18+
[assembly: AssemblyVersion("7.3.6")]
19+
[assembly: AssemblyFileVersion("7.3.6")]
20+
[assembly: AssemblyInformationalVersion("7.3.6")]

ClearScript/ScriptUsageAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace Microsoft.ClearScript
1111
/// <remarks>
1212
/// This attribute is applicable to events, fields, methods, properties, and nested types.
1313
/// </remarks>
14-
[AttributeUsage(AttributeTargets.Event | AttributeTargets.Field | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Class | AttributeTargets.Enum | AttributeTargets.Interface | AttributeTargets.Struct)]
14+
[AttributeUsage(AttributeTargets.Constructor | AttributeTargets.Event | AttributeTargets.Field | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Class | AttributeTargets.Enum | AttributeTargets.Interface | AttributeTargets.Struct)]
1515
public class ScriptUsageAttribute : Attribute
1616
{
1717
/// <summary>

0 commit comments

Comments
 (0)