├── .gitattributes ├── .gitignore ├── ChakraHost ├── .gitattributes ├── .gitignore ├── Binaries │ └── WebGrease │ │ ├── Antlr3.Runtime.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── WG.exe │ │ └── WebGrease.dll ├── CHANGELOG.md ├── LICENSE.md ├── Licenses │ ├── chakra-host-license.txt │ ├── sass-and-coffee-license.txt │ └── webgrease-license.txt ├── MsieJavaScriptEngine.Tests │ ├── A_Auto │ │ ├── CommonTests.cs │ │ └── Es5Tests.cs │ ├── B_ChakraJsRt │ │ ├── CommonTests.cs │ │ └── Es5Tests.cs │ ├── C_ChakraActiveScript │ │ ├── CommonTests.cs │ │ └── Es5Tests.cs │ ├── CommonTestsBase.cs │ ├── D_Classic │ │ ├── CommonTests.cs │ │ └── Es5Tests.cs │ ├── Es5TestsBase.cs │ ├── MsieJavaScriptEngine.Tests.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── cube.js │ │ ├── power.js │ │ └── square.js │ ├── ValidationTests.cs │ └── packages.config ├── MsieJavaScriptEngine.sln ├── MsieJavaScriptEngine.snk ├── MsieJavaScriptEngine │ ├── ActiveScript │ │ ├── ActiveScriptException.cs │ │ ├── ActiveScriptJsEngineBase.cs │ │ ├── ActiveScriptParseWrapper.cs │ │ ├── ActiveScriptSiteWrapper.cs │ │ ├── ChakraActiveScriptJsEngine.cs │ │ ├── ClassicActiveScriptJsEngine.cs │ │ ├── IActiveScript.cs │ │ ├── IActiveScriptError.cs │ │ ├── IActiveScriptParse32.cs │ │ ├── IActiveScriptParse64.cs │ │ ├── IActiveScriptParseWrapper.cs │ │ ├── IActiveScriptSite.cs │ │ ├── ScriptInfoFlags.cs │ │ ├── ScriptInterruptFlags.cs │ │ ├── ScriptItemFlags.cs │ │ ├── ScriptState.cs │ │ ├── ScriptTextFlags.cs │ │ ├── ScriptThreadState.cs │ │ └── ScriptTypeLibFlags.cs │ ├── Constants │ │ └── JsEngineModeName.cs │ ├── Helpers │ │ ├── ComHelpers.cs │ │ ├── JsErrorHelpers.cs │ │ └── ValidationHelpers.cs │ ├── IInnerJsEngine.cs │ ├── JsEngineLoadException.cs │ ├── JsEngineMode.cs │ ├── JsException.cs │ ├── JsRt │ │ ├── ChakraJsRtJsEngine.cs │ │ ├── JavaScriptBackgroundWorkItemCallback.cs │ │ ├── JavaScriptBeforeCollectCallback.cs │ │ ├── JavaScriptContext.cs │ │ ├── JavaScriptEngineException.cs │ │ ├── JavaScriptErrorCode.cs │ │ ├── JavaScriptException.cs │ │ ├── JavaScriptFatalException.cs │ │ ├── JavaScriptMemoryAllocationCallback.cs │ │ ├── JavaScriptMemoryEventType.cs │ │ ├── JavaScriptNativeFunction.cs │ │ ├── JavaScriptObjectFinalizeCallback.cs │ │ ├── JavaScriptPropertyId.cs │ │ ├── JavaScriptRuntime.cs │ │ ├── JavaScriptRuntimeAttributes.cs │ │ ├── JavaScriptRuntimeVersion.cs │ │ ├── JavaScriptScriptException.cs │ │ ├── JavaScriptSourceContext.cs │ │ ├── JavaScriptThreadServiceCallback.cs │ │ ├── JavaScriptUsageException.cs │ │ ├── JavaScriptValue.cs │ │ ├── JavaScriptValueType.cs │ │ └── Native.cs │ ├── JsRuntimeException.cs │ ├── JsTypeConverter.cs │ ├── MsieJavaScriptEngine.csproj │ ├── MsieJsEngine.cs │ ├── NotSupportedTypeException.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── ES5.js │ │ ├── ES5.min.js │ │ ├── Strings.Designer.cs │ │ ├── Strings.resx │ │ ├── Strings.ru-ru.Designer.cs │ │ ├── Strings.ru-ru.resx │ │ ├── json2.js │ │ └── json2.min.js │ ├── Undefined.cs │ └── Utilities │ │ ├── StringBuilderExtensions.cs │ │ └── Utils.cs ├── NuGet │ ├── MsieJavaScriptEngine.nuspec │ ├── NuGet.exe │ ├── build-package.cmd │ └── readme.txt ├── README.md └── packages │ ├── NUnit.2.6.3 │ ├── NUnit.2.6.3.nuspec │ ├── lib │ │ ├── nunit.framework.dll │ │ └── nunit.framework.xml │ └── license.txt │ └── repositories.config ├── Examples ├── Examples1.ps1 └── TypeScriptExample.ps1 ├── LICENSE.md ├── PSModule ├── PowerShellJS │ ├── MsieJavaScriptEngine.dll │ ├── PowerShellJS.psd1 │ ├── PowerShellJS.psm1 │ ├── TODO.MD │ ├── ru-ru │ │ └── MsieJavaScriptEngine.resources.dll │ └── typescript.js └── TODO.MD ├── README.md ├── Release └── TODO.MD ├── WIPS └── typescriptcompiletest.ps1 ├── playscripts ├── TODO.MD └── playground2.ps1 ├── typescript ├── jquery.d.ts ├── lib.d.ts ├── resources │ ├── cs │ │ ├── cz │ │ │ └── diagnosticMessages.generated.json │ │ └── diagnosticMessages.generated.json │ ├── cz │ │ └── diagnosticMessages.generated.json │ ├── de │ │ └── diagnosticMessages.generated.json │ ├── diagnosticMessages.generated.json │ ├── en │ │ ├── diagnosticMessages.generated.json │ │ └── us │ │ │ └── diagnosticMessages.generated.json │ ├── es │ │ └── diagnosticMessages.generated.json │ ├── fr │ │ └── diagnosticMessages.generated.json │ ├── it │ │ └── diagnosticMessages.generated.json │ ├── ja │ │ ├── diagnosticMessages.generated.json │ │ └── jp │ │ │ └── diagnosticMessages.generated.json │ ├── ko │ │ ├── diagnosticMessages.generated.json │ │ └── kr │ │ │ └── diagnosticMessages.generated.json │ ├── pl │ │ └── diagnosticMessages.generated.json │ ├── pt │ │ ├── br │ │ │ └── diagnosticMessages.generated.json │ │ └── diagnosticMessages.generated.json │ ├── ru │ │ └── diagnosticMessages.generated.json │ ├── tr │ │ └── diagnosticMessages.generated.json │ └── zh │ │ ├── cn │ │ └── diagnosticMessages.generated.json │ │ └── tw │ │ └── diagnosticMessages.generated.json ├── tsc ├── tsc.js ├── typescript.js ├── typescriptServices.js ├── winjs.d.ts └── winrt.d.ts └── unittests └── to-do.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/.gitignore -------------------------------------------------------------------------------- /ChakraHost/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/.gitattributes -------------------------------------------------------------------------------- /ChakraHost/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/.gitignore -------------------------------------------------------------------------------- /ChakraHost/Binaries/WebGrease/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/Binaries/WebGrease/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /ChakraHost/Binaries/WebGrease/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/Binaries/WebGrease/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /ChakraHost/Binaries/WebGrease/WG.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/Binaries/WebGrease/WG.exe -------------------------------------------------------------------------------- /ChakraHost/Binaries/WebGrease/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/Binaries/WebGrease/WebGrease.dll -------------------------------------------------------------------------------- /ChakraHost/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/CHANGELOG.md -------------------------------------------------------------------------------- /ChakraHost/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/LICENSE.md -------------------------------------------------------------------------------- /ChakraHost/Licenses/chakra-host-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/Licenses/chakra-host-license.txt -------------------------------------------------------------------------------- /ChakraHost/Licenses/sass-and-coffee-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/Licenses/sass-and-coffee-license.txt -------------------------------------------------------------------------------- /ChakraHost/Licenses/webgrease-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/Licenses/webgrease-license.txt -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine.Tests/A_Auto/CommonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine.Tests/A_Auto/CommonTests.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine.Tests/A_Auto/Es5Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine.Tests/A_Auto/Es5Tests.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine.Tests/B_ChakraJsRt/CommonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine.Tests/B_ChakraJsRt/CommonTests.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine.Tests/B_ChakraJsRt/Es5Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine.Tests/B_ChakraJsRt/Es5Tests.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine.Tests/C_ChakraActiveScript/CommonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine.Tests/C_ChakraActiveScript/CommonTests.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine.Tests/C_ChakraActiveScript/Es5Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine.Tests/C_ChakraActiveScript/Es5Tests.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine.Tests/CommonTestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine.Tests/CommonTestsBase.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine.Tests/D_Classic/CommonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine.Tests/D_Classic/CommonTests.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine.Tests/D_Classic/Es5Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine.Tests/D_Classic/Es5Tests.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine.Tests/Es5TestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine.Tests/Es5TestsBase.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine.Tests/MsieJavaScriptEngine.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine.Tests/MsieJavaScriptEngine.Tests.csproj -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine.Tests/Resources/cube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine.Tests/Resources/cube.js -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine.Tests/Resources/power.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine.Tests/Resources/power.js -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine.Tests/Resources/square.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine.Tests/Resources/square.js -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine.Tests/ValidationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine.Tests/ValidationTests.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine.Tests/packages.config -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine.sln -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine.snk -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/ActiveScript/ActiveScriptException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/ActiveScript/ActiveScriptException.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/ActiveScript/ActiveScriptJsEngineBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/ActiveScript/ActiveScriptJsEngineBase.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/ActiveScript/ActiveScriptParseWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/ActiveScript/ActiveScriptParseWrapper.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/ActiveScript/ActiveScriptSiteWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/ActiveScript/ActiveScriptSiteWrapper.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/ActiveScript/ChakraActiveScriptJsEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/ActiveScript/ChakraActiveScriptJsEngine.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/ActiveScript/ClassicActiveScriptJsEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/ActiveScript/ClassicActiveScriptJsEngine.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/ActiveScript/IActiveScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/ActiveScript/IActiveScript.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/ActiveScript/IActiveScriptError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/ActiveScript/IActiveScriptError.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/ActiveScript/IActiveScriptParse32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/ActiveScript/IActiveScriptParse32.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/ActiveScript/IActiveScriptParse64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/ActiveScript/IActiveScriptParse64.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/ActiveScript/IActiveScriptParseWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/ActiveScript/IActiveScriptParseWrapper.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/ActiveScript/IActiveScriptSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/ActiveScript/IActiveScriptSite.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/ActiveScript/ScriptInfoFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/ActiveScript/ScriptInfoFlags.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/ActiveScript/ScriptInterruptFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/ActiveScript/ScriptInterruptFlags.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/ActiveScript/ScriptItemFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/ActiveScript/ScriptItemFlags.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/ActiveScript/ScriptState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/ActiveScript/ScriptState.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/ActiveScript/ScriptTextFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/ActiveScript/ScriptTextFlags.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/ActiveScript/ScriptThreadState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/ActiveScript/ScriptThreadState.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/ActiveScript/ScriptTypeLibFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/ActiveScript/ScriptTypeLibFlags.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/Constants/JsEngineModeName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/Constants/JsEngineModeName.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/Helpers/ComHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/Helpers/ComHelpers.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/Helpers/JsErrorHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/Helpers/JsErrorHelpers.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/Helpers/ValidationHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/Helpers/ValidationHelpers.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/IInnerJsEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/IInnerJsEngine.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsEngineLoadException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsEngineLoadException.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsEngineMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsEngineMode.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsException.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsRt/ChakraJsRtJsEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsRt/ChakraJsRtJsEngine.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptBackgroundWorkItemCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptBackgroundWorkItemCallback.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptBeforeCollectCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptBeforeCollectCallback.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptContext.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptEngineException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptEngineException.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptErrorCode.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptException.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptFatalException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptFatalException.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptMemoryAllocationCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptMemoryAllocationCallback.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptMemoryEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptMemoryEventType.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptNativeFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptNativeFunction.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptObjectFinalizeCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptObjectFinalizeCallback.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptPropertyId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptPropertyId.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptRuntime.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptRuntimeAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptRuntimeAttributes.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptRuntimeVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptRuntimeVersion.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptScriptException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptScriptException.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptSourceContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptSourceContext.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptThreadServiceCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptThreadServiceCallback.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptUsageException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptUsageException.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptValue.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsRt/JavaScriptValueType.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsRt/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsRt/Native.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsRuntimeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsRuntimeException.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/JsTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/JsTypeConverter.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/MsieJavaScriptEngine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/MsieJavaScriptEngine.csproj -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/MsieJsEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/MsieJsEngine.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/NotSupportedTypeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/NotSupportedTypeException.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/Resources/ES5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/Resources/ES5.js -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/Resources/ES5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/Resources/ES5.min.js -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/Resources/Strings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/Resources/Strings.Designer.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/Resources/Strings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/Resources/Strings.resx -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/Resources/Strings.ru-ru.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/Resources/Strings.ru-ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/Resources/Strings.ru-ru.resx -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/Resources/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/Resources/json2.js -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/Resources/json2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/Resources/json2.min.js -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/Undefined.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/Undefined.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/Utilities/StringBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/Utilities/StringBuilderExtensions.cs -------------------------------------------------------------------------------- /ChakraHost/MsieJavaScriptEngine/Utilities/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/MsieJavaScriptEngine/Utilities/Utils.cs -------------------------------------------------------------------------------- /ChakraHost/NuGet/MsieJavaScriptEngine.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/NuGet/MsieJavaScriptEngine.nuspec -------------------------------------------------------------------------------- /ChakraHost/NuGet/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/NuGet/NuGet.exe -------------------------------------------------------------------------------- /ChakraHost/NuGet/build-package.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/NuGet/build-package.cmd -------------------------------------------------------------------------------- /ChakraHost/NuGet/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/NuGet/readme.txt -------------------------------------------------------------------------------- /ChakraHost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/README.md -------------------------------------------------------------------------------- /ChakraHost/packages/NUnit.2.6.3/NUnit.2.6.3.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/packages/NUnit.2.6.3/NUnit.2.6.3.nuspec -------------------------------------------------------------------------------- /ChakraHost/packages/NUnit.2.6.3/lib/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/packages/NUnit.2.6.3/lib/nunit.framework.dll -------------------------------------------------------------------------------- /ChakraHost/packages/NUnit.2.6.3/lib/nunit.framework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/packages/NUnit.2.6.3/lib/nunit.framework.xml -------------------------------------------------------------------------------- /ChakraHost/packages/NUnit.2.6.3/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/packages/NUnit.2.6.3/license.txt -------------------------------------------------------------------------------- /ChakraHost/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/ChakraHost/packages/repositories.config -------------------------------------------------------------------------------- /Examples/Examples1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/Examples/Examples1.ps1 -------------------------------------------------------------------------------- /Examples/TypeScriptExample.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/Examples/TypeScriptExample.ps1 -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PSModule/PowerShellJS/MsieJavaScriptEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/PSModule/PowerShellJS/MsieJavaScriptEngine.dll -------------------------------------------------------------------------------- /PSModule/PowerShellJS/PowerShellJS.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/PSModule/PowerShellJS/PowerShellJS.psd1 -------------------------------------------------------------------------------- /PSModule/PowerShellJS/PowerShellJS.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/PSModule/PowerShellJS/PowerShellJS.psm1 -------------------------------------------------------------------------------- /PSModule/PowerShellJS/TODO.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/PSModule/PowerShellJS/TODO.MD -------------------------------------------------------------------------------- /PSModule/PowerShellJS/ru-ru/MsieJavaScriptEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/PSModule/PowerShellJS/ru-ru/MsieJavaScriptEngine.resources.dll -------------------------------------------------------------------------------- /PSModule/PowerShellJS/typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/PSModule/PowerShellJS/typescript.js -------------------------------------------------------------------------------- /PSModule/TODO.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/PSModule/TODO.MD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/README.md -------------------------------------------------------------------------------- /Release/TODO.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/Release/TODO.MD -------------------------------------------------------------------------------- /WIPS/typescriptcompiletest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/WIPS/typescriptcompiletest.ps1 -------------------------------------------------------------------------------- /playscripts/TODO.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/playscripts/TODO.MD -------------------------------------------------------------------------------- /playscripts/playground2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/playscripts/playground2.ps1 -------------------------------------------------------------------------------- /typescript/jquery.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/jquery.d.ts -------------------------------------------------------------------------------- /typescript/lib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/lib.d.ts -------------------------------------------------------------------------------- /typescript/resources/cs/cz/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/resources/cs/cz/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /typescript/resources/cs/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/resources/cs/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /typescript/resources/cz/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/resources/cz/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /typescript/resources/de/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/resources/de/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /typescript/resources/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/resources/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /typescript/resources/en/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/resources/en/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /typescript/resources/en/us/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/resources/en/us/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /typescript/resources/es/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/resources/es/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /typescript/resources/fr/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/resources/fr/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /typescript/resources/it/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/resources/it/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /typescript/resources/ja/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/resources/ja/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /typescript/resources/ja/jp/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/resources/ja/jp/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /typescript/resources/ko/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/resources/ko/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /typescript/resources/ko/kr/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/resources/ko/kr/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /typescript/resources/pl/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/resources/pl/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /typescript/resources/pt/br/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/resources/pt/br/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /typescript/resources/pt/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/resources/pt/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /typescript/resources/ru/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/resources/ru/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /typescript/resources/tr/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/resources/tr/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /typescript/resources/zh/cn/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/resources/zh/cn/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /typescript/resources/zh/tw/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/resources/zh/tw/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /typescript/tsc: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('./tsc.js') 3 | -------------------------------------------------------------------------------- /typescript/tsc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/tsc.js -------------------------------------------------------------------------------- /typescript/typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/typescript.js -------------------------------------------------------------------------------- /typescript/typescriptServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/typescriptServices.js -------------------------------------------------------------------------------- /typescript/winjs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/winjs.d.ts -------------------------------------------------------------------------------- /typescript/winrt.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/typescript/winrt.d.ts -------------------------------------------------------------------------------- /unittests/to-do.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klumsy/PowerShellJS/HEAD/unittests/to-do.md --------------------------------------------------------------------------------