| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent c24c7ac commit f961ab5
179 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,5 +1,5 @@ | |||
| 1 | 1 | // | |
| 2 | - // Copyright © Microsoft Corporation. All rights reserved. | ||
| 2 | + // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| 3 | 3 | // | |
| 4 | 4 | // Microsoft Public License (MS-PL) | |
| 5 | 5 | // | |
@@ -300,11 +300,11 @@ public ArgInfo(object arg) | |||
| 300 | 300 | return; | |
| 301 | 301 | } | |
| 302 | 302 | ||
| 303 | - var hostIndexer = arg as HostIndexer; | ||
| 304 | - if (hostIndexer != null) | ||
| 303 | + var hostIndexedProperty = arg as HostIndexedProperty; | ||
| 304 | + if (hostIndexedProperty != null) | ||
| 305 | 305 | { | |
| 306 | 306 | kind = ArgKind.ByValue; | |
| 307 | - type = typeof(HostIndexer); | ||
| 307 | + type = typeof(HostIndexedProperty); | ||
| 308 | 308 | return; | |
| 309 | 309 | } | |
| 310 | 310 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,5 +1,5 @@ | |||
| 1 | 1 | // | |
| 2 | - // Copyright © Microsoft Corporation. All rights reserved. | ||
| 2 | + // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| 3 | 3 | // | |
| 4 | 4 | // Microsoft Public License (MS-PL) | |
| 5 | 5 | // | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -86,10 +86,10 @@ | |||
| 86 | 86 | <Compile Include="Windows\WindowsScriptEngineFlags.cs" /> | |
| 87 | 87 | <Compile Include="Util\IDynamic.cs" /> | |
| 88 | 88 | <Compile Include="Util\SpecialMemberNames.cs" /> | |
| 89 | - <Compile Include="Util\SpecialParameterNames.cs" /> | ||
| 89 | + <Compile Include="Util\SpecialParamNames.cs" /> | ||
| 90 | 90 | <Compile Include="V8\V8ScriptEngineFlags.cs" /> | |
| 91 | 91 | <Compile Include="Windows\WindowsScriptItem.cs" /> | |
| 92 | - <Compile Include="HostIndexer.cs" /> | ||
| 92 | + <Compile Include="HostIndexedProperty.cs" /> | ||
| 93 | 93 | <Compile Include="HostMethod.cs" /> | |
| 94 | 94 | <Compile Include="ScriptEngine.cs" /> | |
| 95 | 95 | <Compile Include="Windows\ActiveXWrappers.cs" /> | |
@@ -109,7 +109,7 @@ | |||
| 109 | 109 | <Compile Include="ExtensionMethods.cs" /> | |
| 110 | 110 | <Compile Include="HostFunctions.cs" /> | |
| 111 | 111 | <Compile Include="HostEvent.cs" /> | |
| 112 | - <Compile Include="HostItem.Invoke.cs" /> | ||
| 112 | + <Compile Include="HostItem.InvokeMethod.cs" /> | ||
| 113 | 113 | <Compile Include="HostItem.Members.cs" /> | |
| 114 | 114 | <Compile Include="HostObject.cs" /> | |
| 115 | 115 | <Compile Include="HostTarget.cs" /> | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,5 +1,5 @@ | |||
| 1 | 1 | // | |
| 2 | - // Copyright © Microsoft Corporation. All rights reserved. | ||
| 2 | + // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| 3 | 3 | // | |
| 4 | 4 | // Microsoft Public License (MS-PL) | |
| 5 | 5 | // | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,5 +1,5 @@ | |||
| 1 | 1 | // | |
| 2 | - // Copyright © Microsoft Corporation. All rights reserved. | ||
| 2 | + // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| 3 | 3 | // | |
| 4 | 4 | // Microsoft Public License (MS-PL) | |
| 5 | 5 | // | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,5 +1,5 @@ | |||
| 1 | 1 | // | |
| 2 | - // Copyright © Microsoft Corporation. All rights reserved. | ||
| 2 | + // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| 3 | 3 | // | |
| 4 | 4 | // Microsoft Public License (MS-PL) | |
| 5 | 5 | // | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,5 +1,5 @@ | |||
| 1 | 1 | // | |
| 2 | - // Copyright © Microsoft Corporation. All rights reserved. | ||
| 2 | + // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| 3 | 3 | // | |
| 4 | 4 | // Microsoft Public License (MS-PL) | |
| 5 | 5 | // | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,5 +1,5 @@ | |||
| 1 | 1 | // | |
| 2 | - // Copyright © Microsoft Corporation. All rights reserved. | ||
| 2 | + // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| 3 | 3 | // | |
| 4 | 4 | // Microsoft Public License (MS-PL) | |
| 5 | 5 | // | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,5 +1,5 @@ | |||
| 1 | 1 | // | |
| 2 | - // Copyright © Microsoft Corporation. All rights reserved. | ||
| 2 | + // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| 3 | 3 | // | |
| 4 | 4 | // Microsoft Public License (MS-PL) | |
| 5 | 5 | // | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,5 +1,5 @@ | |||
| 1 | 1 | // | |
| 2 | - // Copyright © Microsoft Corporation. All rights reserved. | ||
| 2 | + // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| 3 | 3 | // | |
| 4 | 4 | // Microsoft Public License (MS-PL) | |
| 5 | 5 | // | |
@@ -63,5 +63,5 @@ | |||
| 63 | 63 | ||
| 64 | 64 | #pragma once | |
| 65 | 65 | ||
| 66 | - #define CLEARSCRIPT_VERSION_STRING "5.3.4.0" | ||
| 67 | - #define CLEARSCRIPT_VERSION_COMMA_SEPARATED 5,3,4,0 | ||
| 66 | + #define CLEARSCRIPT_VERSION_STRING "5.3.5.0" | ||
| 67 | + #define CLEARSCRIPT_VERSION_COMMA_SEPARATED 5,3,5,0 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments