├── .config └── dotnet-tools.json ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ └── build.yml ├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── launch.json ├── settings.json └── tasks.json ├── CONTRIBUTING.md ├── DarkId.Papyrus.DebugServer.sln ├── DarkId.Papyrus.sln ├── LICENSE ├── README.md ├── dependencies ├── .gitignore ├── MetaStuff │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── JsonCast.h │ │ ├── JsonCast.inl │ │ ├── MovieInfo.h │ │ ├── Person.h │ │ ├── StringCast.cpp │ │ ├── StringCast.h │ │ ├── main.cpp │ │ └── nlohmann_json │ │ │ └── json.hpp │ └── include │ │ ├── Member.h │ │ ├── Member.inl │ │ ├── Meta.h │ │ ├── Meta.inl │ │ └── detail │ │ ├── MetaHolder.h │ │ ├── template_helpers.h │ │ └── template_helpers.inl └── ports │ ├── Champollion │ ├── portfile.cmake │ └── vcpkg.json │ ├── commonlibf4 │ ├── portfile.cmake │ └── vcpkg.json │ ├── commonlibsse-ng │ ├── portfile.cmake │ └── vcpkg.json │ └── cppdap │ ├── portfile.cmake │ └── vcpkg.json ├── src ├── DarkId.Papyrus.Common │ ├── CachedValue.cs │ ├── CoreExtensions.cs │ ├── DarkId.Papyrus.Common.csproj │ ├── Debounce.cs │ ├── DependencyExtensions.cs │ ├── DictionaryExtensions.cs │ ├── EnumerableExtensions.cs │ ├── FileSystemExtensions.cs │ ├── IFileSystem.cs │ ├── LocalFileSystem.cs │ ├── PathUtilities.cs │ ├── Position.cs │ ├── Range.cs │ ├── Scanner.cs │ ├── ScriptText.cs │ ├── ScriptTextChange.cs │ ├── TaskExtensions.cs │ ├── TokenEqualityCachedValue.cs │ └── TreeNode.cs ├── DarkId.Papyrus.DebugAdapterProxy │ ├── DarkId.Papyrus.DebugAdapterProxy.Fallout4.csproj │ ├── DarkId.Papyrus.DebugAdapterProxy.Skyrim.csproj │ └── Program.cs ├── DarkId.Papyrus.DebugServer │ ├── ArrayStateNode.cpp │ ├── ArrayStateNode.h │ ├── BreakpointManager.cpp │ ├── BreakpointManager.h │ ├── ConfigHooks.h │ ├── DarkId.Papyrus.DebugServer.Fallout4.vcxproj │ ├── DarkId.Papyrus.DebugServer.Fallout4.vcxproj.filters │ ├── DarkId.Papyrus.DebugServer.Skyrim.vcxproj │ ├── DarkId.Papyrus.DebugServer.Skyrim.vcxproj.filters │ ├── DebugExecutionManager.cpp │ ├── DebugExecutionManager.h │ ├── DebugServer.cpp │ ├── DebugServer.h │ ├── FormMetadata.h │ ├── FormTypeMacros.cpp │ ├── FormTypeMacros.h │ ├── GameInterfaces.cpp │ ├── GameInterfaces.h │ ├── IdHandleBase.cpp │ ├── IdHandleBase.h │ ├── IdMap.cpp │ ├── IdMap.h │ ├── IdProvider.cpp │ ├── IdProvider.h │ ├── LocalScopeStateNode.cpp │ ├── LocalScopeStateNode.h │ ├── MetaNode.cpp │ ├── MetaNode.h │ ├── ObjectStateNode.cpp │ ├── ObjectStateNode.h │ ├── PapyrusDebugger.cpp │ ├── PapyrusDebugger.h │ ├── Pex.cpp │ ├── Pex.h │ ├── PexCache.cpp │ ├── PexCache.h │ ├── Protocol │ │ ├── debugger.h │ │ ├── struct_extensions.cpp │ │ ├── struct_extensions.h │ │ ├── websocket_impl.h │ │ ├── websocket_reader_writer.cpp │ │ ├── websocket_reader_writer.h │ │ ├── websocket_server.cpp │ │ └── websocket_server.h │ ├── README.md │ ├── RuntimeEvents.cpp │ ├── RuntimeEvents.h │ ├── RuntimeState.cpp │ ├── RuntimeState.h │ ├── StackFrameStateNode.cpp │ ├── StackFrameStateNode.h │ ├── StackStateNode.cpp │ ├── StackStateNode.h │ ├── StateNodeBase.cpp │ ├── StateNodeBase.h │ ├── StructStateNode.cpp │ ├── StructStateNode.h │ ├── Utilities.h │ ├── ValueStateNode.cpp │ ├── ValueStateNode.h │ ├── Window.cpp │ ├── Window.h │ ├── main.cpp │ ├── pdsPCH.cpp │ ├── pdsPCH.h │ ├── version.h │ └── version.rc ├── DarkId.Papyrus.Host │ ├── DarkId.Papyrus.Host.Fallout4.csproj │ ├── DarkId.Papyrus.Host.Skyrim.csproj │ └── Program.cs ├── DarkId.Papyrus.LanguageService │ ├── Configuration │ │ └── CreationKit │ │ │ ├── CreationKitConfig.cs │ │ │ ├── CreationKitConfigInfo.cs │ │ │ ├── CreationKitInisConfigLoader.cs │ │ │ ├── CreationKitInisLocator.cs │ │ │ ├── CreationKitProgramOptionsProvider.cs │ │ │ ├── ICreationKitConfigLoader.cs │ │ │ └── ICreationKitInisLocator.cs │ ├── DarkId.Papyrus.LanguageService.Fallout4.csproj │ ├── DarkId.Papyrus.LanguageService.Skyrim.csproj │ ├── External │ │ ├── AntlrPatch.cs │ │ ├── AstType.cs │ │ ├── CaseInsensitiveStringStream.cs │ │ ├── CompilerExtensions.cs │ │ ├── ErrorEventArgs.cs │ │ ├── IPapyrusFlag.cs │ │ └── PapyrusFlag.cs │ ├── HarmonyPatches.cs │ ├── Program │ │ ├── AntlrExtensions.cs │ │ ├── CompilerTypeTable.cs │ │ ├── Diagnostic.cs │ │ ├── DiagnosticLevel.cs │ │ ├── DiagnosticResult.cs │ │ ├── FileSystemScriptTextProvider.cs │ │ ├── FlagsFile.cs │ │ ├── FlagsFileChangedEventArgs.cs │ │ ├── IScriptTextProvider.cs │ │ ├── ObjectIdentifier.cs │ │ ├── PapyrusProgram.cs │ │ ├── ProgramExtensions.cs │ │ ├── ProgramOptions.cs │ │ ├── ProgramOptionsBuilder.cs │ │ ├── ScriptCompiler.cs │ │ ├── ScriptFile.cs │ │ ├── ScriptFileChangedEventArgs.cs │ │ ├── ScriptTextChangedEventArgs.cs │ │ ├── SemanticExtensions.cs │ │ ├── Symbols │ │ │ ├── DisplayTextEmitter.cs │ │ │ ├── SymbolBinder.cs │ │ │ ├── SymbolBindingVisitor.cs │ │ │ ├── SymbolKinds.cs │ │ │ └── Symbols.cs │ │ ├── Syntax │ │ │ ├── AssignmentOperatorType.cs │ │ │ ├── BinaryOperatorType.cs │ │ │ ├── LanguageFlags.cs │ │ │ ├── NodeBinder.cs │ │ │ ├── NodeKind.cs │ │ │ ├── Nodes.cs │ │ │ ├── ScopeBinder.cs │ │ │ ├── ScopeBindingVisitor.cs │ │ │ ├── SyntaxNodeVisitor.cs │ │ │ └── UnaryOperatorType.cs │ │ ├── SyntaxExtensions.cs │ │ ├── TypeWalker.cs │ │ └── Types │ │ │ ├── TypeChecker.cs │ │ │ ├── TypeEvaluationVisitor.cs │ │ │ └── Types.cs │ └── Projects │ │ ├── FileSystemXmlProjectLoader.cs │ │ ├── FileSystemXmlProjectLocator.cs │ │ ├── IXmlProjectDeserializer.cs │ │ ├── IXmlProjectLoader.cs │ │ ├── IXmlProjectLocator.cs │ │ ├── PapyrusProject.cs │ │ ├── PapyrusProjectInfo.cs │ │ ├── ProgramExtensions.cs │ │ └── XmlProjectDeserializer.cs ├── DarkId.Papyrus.Server │ ├── Constants.cs │ ├── DarkId.Papyrus.Server.Fallout4.csproj │ ├── DarkId.Papyrus.Server.Skyrim.csproj │ ├── Features │ │ ├── CompletionHandler.cs │ │ ├── DefinitionHandler.cs │ │ ├── DocumentAssemblyHandler.cs │ │ ├── DocumentScriptInfoHandler.cs │ │ ├── DocumentSymbolHandler.cs │ │ ├── DocumentSyntaxTreeHandler.cs │ │ ├── HoverHandler.cs │ │ ├── ProjectInfosHandler.cs │ │ ├── ReferencesHandler.cs │ │ ├── RenameHandler.cs │ │ └── SignatureHelpHandler.cs │ ├── IProgramOptionsProvider.cs │ ├── ModelExtensions.cs │ ├── PapyrusLanguageServer.cs │ ├── PapyrusLanguageServerOptions.cs │ ├── ProgramExtensions.cs │ ├── ProjectHost.cs │ ├── ProjectManager.cs │ ├── ProjectProgramOptionsProvider.cs │ ├── Protocol │ │ ├── IDocumentAssemblyHandler.cs │ │ ├── IDocumentScriptInfoHandler.cs │ │ ├── IDocumentSyntaxTreeHandler.cs │ │ └── IProjectInfosHandler.cs │ ├── TextDocumentScriptTextProvider.cs │ └── WorkspaceManager.cs ├── DarkId.Papyrus.Test │ ├── DarkId.Papyrus.Test.Fallout4.csproj │ ├── DarkId.Papyrus.Test.Skyrim.csproj │ ├── LanguageService │ │ ├── Configuration │ │ │ └── CreationKit │ │ │ │ └── CreationKitInisConfigLoaderTests.cs │ │ ├── Program │ │ │ ├── ObjectIdentifierTests.cs │ │ │ ├── ProgramTestBase.cs │ │ │ ├── ProgramTests.cs │ │ │ ├── ProgramUtilitiesTests.cs │ │ │ ├── ScriptFileTests.cs │ │ │ ├── SemanticExtensionsTests.cs │ │ │ └── TestHarness │ │ │ │ ├── ProgramExtensions.cs │ │ │ │ └── ProgramTestHarness.cs │ │ └── Projects │ │ │ └── XmlProjectDeserializerTests.cs │ ├── remotes │ │ └── 5738ebf4 │ │ │ └── fireundubh │ │ │ └── skyui │ │ │ └── dist │ │ │ └── Data │ │ │ └── Scripts │ │ │ └── Source │ │ │ ├── SKI_ActiveEffectsWidget.psc │ │ │ ├── SKI_ConfigBase.psc │ │ │ ├── SKI_ConfigManager.psc │ │ │ ├── SKI_ConfigMenu.psc │ │ │ ├── SKI_FavoritesManager.psc │ │ │ ├── SKI_Main.psc │ │ │ ├── SKI_PlayerLoadGameAlias.psc │ │ │ ├── SKI_QF_ConfigManagerInstance.psc │ │ │ ├── SKI_QuestBase.psc │ │ │ ├── SKI_SettingsManager.psc │ │ │ ├── SKI_WidgetBase.psc │ │ │ └── SKI_WidgetManager.psc │ └── scripts │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .vscode │ │ └── settings.json │ │ ├── Fallout 4 │ │ ├── BaseScript.psc │ │ ├── Fallout4.ppj │ │ ├── Institute_Papyrus_Flags.flg │ │ ├── ScopeTests.psc │ │ └── ScriptObject.psc │ │ ├── Fallout4.ini │ │ ├── Imports.json │ │ ├── Imports │ │ ├── TestSource1 │ │ │ └── Script1.psc │ │ ├── TestSource2 │ │ │ └── scripts │ │ │ │ └── Script2.psc │ │ ├── TestSource3 │ │ │ └── source │ │ │ │ └── Script3.psc │ │ └── TestSource4 │ │ │ └── scripts │ │ │ └── source │ │ │ └── Script4.psc │ │ ├── MoD.ppj │ │ ├── RemoteAddresses.json │ │ ├── Skyrim.ini │ │ └── Skyrim │ │ ├── BaseScript.psc │ │ ├── ScopeTests.psc │ │ ├── ScriptObject.psc │ │ ├── Skyrim_1.ppj │ │ ├── Skyrim_2.ppj │ │ ├── Skyrim_3.ppj │ │ └── TESV_Papyrus_Flags.flg └── papyrus-lang-vscode │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitattributes │ ├── .gitignore │ ├── .prettierignore │ ├── .releaserc │ ├── .vscodeignore │ ├── README.md │ ├── images │ ├── demo-autocomplete.gif │ ├── demo-go-to-peek-definition.gif │ ├── demo-symbol-outlines-breadcrumbs.gif │ ├── icon-small-trimmed.png │ ├── icon-small.png │ └── icon.png │ ├── package-lock.json │ ├── package.json │ ├── resources │ ├── BuildSelection_16x.svg │ ├── BuildSolution_16x.svg │ ├── Class_16x.svg │ ├── Compile_16x.svg │ ├── ExportScript_16x.svg │ ├── JS_16x.svg │ ├── LinkedFolderOpen_16x.svg │ ├── LinkedFolder_16x.svg │ ├── Namespace_16x.svg │ ├── NewScript_16x.svg │ ├── PackageReferences_16x.svg │ ├── Reference_16x.svg │ ├── RefreshScript_16x.svg │ ├── RefreshScript_grey_16x.svg │ ├── ScriptError_16x.svg │ ├── ScriptExclude_16x.svg │ ├── ScriptGroup_16x.svg │ ├── ScriptLink_16x.svg │ ├── ScriptManager_16x.svg │ ├── ScriptPreview_16x.svg │ ├── ScriptWarning_16x.svg │ ├── Script_16x.svg │ ├── TriggerScript_16x.svg │ ├── UpdatedScript_16x.svg │ ├── activitybar-scroll.svg │ ├── fallout4.png │ ├── fo4 │ │ ├── Fallout4.code-workspace │ │ ├── fallout4.ppj │ │ ├── launch.json │ │ └── tasks.json │ ├── icons8-folder.svg │ ├── icons8-git.svg │ ├── skyrim.png │ ├── sse │ │ ├── SkyrimSE.code-workspace │ │ ├── launch.json │ │ ├── skyrimse.ppj │ │ └── tasks.json │ ├── tesv │ │ ├── SkyrimLE.code-workspace │ │ ├── launch.json │ │ ├── skyrimle.ppj │ │ └── tasks.json │ └── welcome │ │ ├── config.jpg │ │ ├── debugging.jpg │ │ ├── index.md │ │ └── menus.jpg │ ├── scripts │ └── generate-version-number.mjs │ ├── snippets │ └── papyrus │ │ ├── papyrus-fallout4.json │ │ └── papyrus.json │ ├── src │ ├── CreationKitInfoProvider.ts │ ├── ExtensionConfigProvider.ts │ ├── PapyrusExtension.ts │ ├── PapyrusGame.ts │ ├── Utilities.ts │ ├── common │ │ ├── PathResolver.ts │ │ ├── Reactive.ts │ │ ├── constants.ts │ │ └── vscode │ │ │ ├── IocDecorators.ts │ │ │ ├── commands │ │ │ ├── CommandBase.ts │ │ │ └── EditorCommandBase.ts │ │ │ ├── editor │ │ │ ├── EditorAttacherBase.ts │ │ │ └── EditorAttachmentBase.ts │ │ │ ├── reactive │ │ │ └── Events.ts │ │ │ └── view │ │ │ ├── ActiveDocTreeDataProviderBase.ts │ │ │ ├── TreeDataNode.ts │ │ │ ├── TreeDataProviderBase.ts │ │ │ └── TreeViewControllerBase.ts │ ├── debugger │ │ ├── DebugSupportInstallService.ts │ │ ├── PapyrusDebugAdapterDescriptorFactory.ts │ │ ├── PapyrusDebugAdapterTracker.ts │ │ ├── PapyrusDebugConfigurationProvider.ts │ │ └── PapyrusDebugSession.ts │ ├── features │ │ ├── AssemblyTextContentProvider.ts │ │ ├── LanguageConfigurations.ts │ │ ├── LanguageServiceStatusItems.ts │ │ ├── PyroTaskDefinition.ts │ │ ├── PyroTaskProvider.ts │ │ ├── ScriptStatusCodeLensProvider.ts │ │ ├── WelcomeHandler.ts │ │ ├── commands │ │ │ ├── AttachDebuggerCommand.ts │ │ │ ├── GameCommandBase.ts │ │ │ ├── GenerateProjectCommand.ts │ │ │ ├── InstallDebugSupportCommand.ts │ │ │ ├── LocateOrDisableGameCommand.ts │ │ │ ├── SearchCreationKitWikiCommand.ts │ │ │ ├── ShowOutputChannelCommand.ts │ │ │ ├── ShowWelcomeCommand.ts │ │ │ └── ViewAssemblyCommand.ts │ │ └── projects │ │ │ ├── ProjectsTreeDataProvider.ts │ │ │ └── ProjectsView.ts │ └── server │ │ ├── LanguageClient.ts │ │ ├── LanguageClientHost.ts │ │ ├── LanguageClientManager.ts │ │ └── messages │ │ ├── DocumentAssembly.ts │ │ ├── DocumentScriptInfo.ts │ │ ├── DocumentSyntaxTree.ts │ │ └── ProjectInfos.ts │ ├── syntaxes │ ├── papyrus-assembly │ │ └── papyrus-assembly.tmLanguage │ ├── papyrus-project │ │ ├── papyrus-project-language-configuration.json │ │ └── papyrus-project.json │ └── papyrus │ │ ├── papyrus-language-configuration.json │ │ └── papyrus.tmLanguage │ ├── tsconfig.json │ ├── typings │ └── ps-list.d.ts │ └── webpack.config.js ├── vcpkg-configuration.json └── vcpkg.json /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DarkId.Papyrus.DebugServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/DarkId.Papyrus.DebugServer.sln -------------------------------------------------------------------------------- /DarkId.Papyrus.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/DarkId.Papyrus.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/README.md -------------------------------------------------------------------------------- /dependencies/.gitignore: -------------------------------------------------------------------------------- 1 | compilers -------------------------------------------------------------------------------- /dependencies/MetaStuff/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/dependencies/MetaStuff/.gitignore -------------------------------------------------------------------------------- /dependencies/MetaStuff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/dependencies/MetaStuff/LICENSE -------------------------------------------------------------------------------- /dependencies/MetaStuff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/dependencies/MetaStuff/README.md -------------------------------------------------------------------------------- /dependencies/MetaStuff/example/JsonCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/dependencies/MetaStuff/example/JsonCast.h -------------------------------------------------------------------------------- /dependencies/MetaStuff/example/JsonCast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/dependencies/MetaStuff/example/JsonCast.inl -------------------------------------------------------------------------------- /dependencies/MetaStuff/example/MovieInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/dependencies/MetaStuff/example/MovieInfo.h -------------------------------------------------------------------------------- /dependencies/MetaStuff/example/Person.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/dependencies/MetaStuff/example/Person.h -------------------------------------------------------------------------------- /dependencies/MetaStuff/example/StringCast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/dependencies/MetaStuff/example/StringCast.cpp -------------------------------------------------------------------------------- /dependencies/MetaStuff/example/StringCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/dependencies/MetaStuff/example/StringCast.h -------------------------------------------------------------------------------- /dependencies/MetaStuff/example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/dependencies/MetaStuff/example/main.cpp -------------------------------------------------------------------------------- /dependencies/MetaStuff/example/nlohmann_json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/dependencies/MetaStuff/example/nlohmann_json/json.hpp -------------------------------------------------------------------------------- /dependencies/MetaStuff/include/Member.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/dependencies/MetaStuff/include/Member.h -------------------------------------------------------------------------------- /dependencies/MetaStuff/include/Member.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/dependencies/MetaStuff/include/Member.inl -------------------------------------------------------------------------------- /dependencies/MetaStuff/include/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/dependencies/MetaStuff/include/Meta.h -------------------------------------------------------------------------------- /dependencies/MetaStuff/include/Meta.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/dependencies/MetaStuff/include/Meta.inl -------------------------------------------------------------------------------- /dependencies/MetaStuff/include/detail/MetaHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/dependencies/MetaStuff/include/detail/MetaHolder.h -------------------------------------------------------------------------------- /dependencies/MetaStuff/include/detail/template_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/dependencies/MetaStuff/include/detail/template_helpers.h -------------------------------------------------------------------------------- /dependencies/MetaStuff/include/detail/template_helpers.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/dependencies/MetaStuff/include/detail/template_helpers.inl -------------------------------------------------------------------------------- /dependencies/ports/Champollion/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/dependencies/ports/Champollion/portfile.cmake -------------------------------------------------------------------------------- /dependencies/ports/Champollion/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/dependencies/ports/Champollion/vcpkg.json -------------------------------------------------------------------------------- /dependencies/ports/commonlibf4/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/dependencies/ports/commonlibf4/portfile.cmake -------------------------------------------------------------------------------- /dependencies/ports/commonlibf4/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/dependencies/ports/commonlibf4/vcpkg.json -------------------------------------------------------------------------------- /dependencies/ports/commonlibsse-ng/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/dependencies/ports/commonlibsse-ng/portfile.cmake -------------------------------------------------------------------------------- /dependencies/ports/commonlibsse-ng/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/dependencies/ports/commonlibsse-ng/vcpkg.json -------------------------------------------------------------------------------- /dependencies/ports/cppdap/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/dependencies/ports/cppdap/portfile.cmake -------------------------------------------------------------------------------- /dependencies/ports/cppdap/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/dependencies/ports/cppdap/vcpkg.json -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Common/CachedValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Common/CachedValue.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Common/CoreExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Common/CoreExtensions.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Common/DarkId.Papyrus.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Common/DarkId.Papyrus.Common.csproj -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Common/Debounce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Common/Debounce.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Common/DependencyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Common/DependencyExtensions.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Common/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Common/DictionaryExtensions.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Common/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Common/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Common/FileSystemExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Common/FileSystemExtensions.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Common/IFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Common/IFileSystem.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Common/LocalFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Common/LocalFileSystem.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Common/PathUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Common/PathUtilities.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Common/Position.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Common/Position.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Common/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Common/Range.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Common/Scanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Common/Scanner.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Common/ScriptText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Common/ScriptText.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Common/ScriptTextChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Common/ScriptTextChange.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Common/TaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Common/TaskExtensions.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Common/TokenEqualityCachedValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Common/TokenEqualityCachedValue.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Common/TreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Common/TreeNode.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugAdapterProxy/DarkId.Papyrus.DebugAdapterProxy.Fallout4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugAdapterProxy/DarkId.Papyrus.DebugAdapterProxy.Fallout4.csproj -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugAdapterProxy/DarkId.Papyrus.DebugAdapterProxy.Skyrim.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugAdapterProxy/DarkId.Papyrus.DebugAdapterProxy.Skyrim.csproj -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugAdapterProxy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugAdapterProxy/Program.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/ArrayStateNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/ArrayStateNode.cpp -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/ArrayStateNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/ArrayStateNode.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/BreakpointManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/BreakpointManager.cpp -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/BreakpointManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/BreakpointManager.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/ConfigHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/ConfigHooks.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/DarkId.Papyrus.DebugServer.Fallout4.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/DarkId.Papyrus.DebugServer.Fallout4.vcxproj -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/DarkId.Papyrus.DebugServer.Fallout4.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/DarkId.Papyrus.DebugServer.Fallout4.vcxproj.filters -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/DarkId.Papyrus.DebugServer.Skyrim.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/DarkId.Papyrus.DebugServer.Skyrim.vcxproj -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/DarkId.Papyrus.DebugServer.Skyrim.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/DarkId.Papyrus.DebugServer.Skyrim.vcxproj.filters -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/DebugExecutionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/DebugExecutionManager.cpp -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/DebugExecutionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/DebugExecutionManager.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/DebugServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/DebugServer.cpp -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/DebugServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/DebugServer.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/FormMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/FormMetadata.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/FormTypeMacros.cpp: -------------------------------------------------------------------------------- 1 | #include "FormTypeMacros.h" 2 | -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/FormTypeMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/FormTypeMacros.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/GameInterfaces.cpp: -------------------------------------------------------------------------------- 1 | #include "GameInterfaces.h" -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/GameInterfaces.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "pdsPCH.h" 3 | -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/IdHandleBase.cpp: -------------------------------------------------------------------------------- 1 | #include "IdHandleBase.h" 2 | -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/IdHandleBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/IdHandleBase.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/IdMap.cpp: -------------------------------------------------------------------------------- 1 | #include "IdMap.h" -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/IdMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/IdMap.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/IdProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/IdProvider.cpp -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/IdProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/IdProvider.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/LocalScopeStateNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/LocalScopeStateNode.cpp -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/LocalScopeStateNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/LocalScopeStateNode.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/MetaNode.cpp: -------------------------------------------------------------------------------- 1 | #include "MetaNode.h" 2 | -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/MetaNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/MetaNode.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/ObjectStateNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/ObjectStateNode.cpp -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/ObjectStateNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/ObjectStateNode.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/PapyrusDebugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/PapyrusDebugger.cpp -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/PapyrusDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/PapyrusDebugger.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/Pex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/Pex.cpp -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/Pex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/Pex.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/PexCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/PexCache.cpp -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/PexCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/PexCache.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/Protocol/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/Protocol/debugger.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/Protocol/struct_extensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/Protocol/struct_extensions.cpp -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/Protocol/struct_extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/Protocol/struct_extensions.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/Protocol/websocket_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/Protocol/websocket_impl.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/Protocol/websocket_reader_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/Protocol/websocket_reader_writer.cpp -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/Protocol/websocket_reader_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/Protocol/websocket_reader_writer.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/Protocol/websocket_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/Protocol/websocket_server.cpp -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/Protocol/websocket_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/Protocol/websocket_server.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/README.md -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/RuntimeEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/RuntimeEvents.cpp -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/RuntimeEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/RuntimeEvents.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/RuntimeState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/RuntimeState.cpp -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/RuntimeState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/RuntimeState.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/StackFrameStateNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/StackFrameStateNode.cpp -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/StackFrameStateNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/StackFrameStateNode.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/StackStateNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/StackStateNode.cpp -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/StackStateNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/StackStateNode.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/StateNodeBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/StateNodeBase.cpp -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/StateNodeBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/StateNodeBase.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/StructStateNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/StructStateNode.cpp -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/StructStateNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/StructStateNode.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/Utilities.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/ValueStateNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/ValueStateNode.cpp -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/ValueStateNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/ValueStateNode.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/Window.cpp -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/Window.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/main.cpp -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/pdsPCH.cpp: -------------------------------------------------------------------------------- 1 | #include "pdsPCH.h" -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/pdsPCH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/pdsPCH.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/version.h -------------------------------------------------------------------------------- /src/DarkId.Papyrus.DebugServer/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.DebugServer/version.rc -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Host/DarkId.Papyrus.Host.Fallout4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Host/DarkId.Papyrus.Host.Fallout4.csproj -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Host/DarkId.Papyrus.Host.Skyrim.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Host/DarkId.Papyrus.Host.Skyrim.csproj -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Host/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Host/Program.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Configuration/CreationKit/CreationKitConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Configuration/CreationKit/CreationKitConfig.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Configuration/CreationKit/CreationKitConfigInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Configuration/CreationKit/CreationKitConfigInfo.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Configuration/CreationKit/CreationKitInisConfigLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Configuration/CreationKit/CreationKitInisConfigLoader.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Configuration/CreationKit/CreationKitInisLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Configuration/CreationKit/CreationKitInisLocator.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Configuration/CreationKit/CreationKitProgramOptionsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Configuration/CreationKit/CreationKitProgramOptionsProvider.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Configuration/CreationKit/ICreationKitConfigLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Configuration/CreationKit/ICreationKitConfigLoader.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Configuration/CreationKit/ICreationKitInisLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Configuration/CreationKit/ICreationKitInisLocator.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/DarkId.Papyrus.LanguageService.Fallout4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/DarkId.Papyrus.LanguageService.Fallout4.csproj -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/DarkId.Papyrus.LanguageService.Skyrim.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/DarkId.Papyrus.LanguageService.Skyrim.csproj -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/External/AntlrPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/External/AntlrPatch.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/External/AstType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/External/AstType.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/External/CaseInsensitiveStringStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/External/CaseInsensitiveStringStream.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/External/CompilerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/External/CompilerExtensions.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/External/ErrorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/External/ErrorEventArgs.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/External/IPapyrusFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/External/IPapyrusFlag.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/External/PapyrusFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/External/PapyrusFlag.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/HarmonyPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/HarmonyPatches.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/AntlrExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/AntlrExtensions.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/CompilerTypeTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/CompilerTypeTable.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/Diagnostic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/Diagnostic.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/DiagnosticLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/DiagnosticLevel.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/DiagnosticResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/DiagnosticResult.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/FileSystemScriptTextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/FileSystemScriptTextProvider.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/FlagsFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/FlagsFile.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/FlagsFileChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/FlagsFileChangedEventArgs.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/IScriptTextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/IScriptTextProvider.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/ObjectIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/ObjectIdentifier.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/PapyrusProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/PapyrusProgram.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/ProgramExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/ProgramExtensions.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/ProgramOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/ProgramOptions.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/ProgramOptionsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/ProgramOptionsBuilder.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/ScriptCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/ScriptCompiler.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/ScriptFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/ScriptFile.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/ScriptFileChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/ScriptFileChangedEventArgs.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/ScriptTextChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/ScriptTextChangedEventArgs.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/SemanticExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/SemanticExtensions.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/Symbols/DisplayTextEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/Symbols/DisplayTextEmitter.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/Symbols/SymbolBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/Symbols/SymbolBinder.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/Symbols/SymbolBindingVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/Symbols/SymbolBindingVisitor.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/Symbols/SymbolKinds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/Symbols/SymbolKinds.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/Symbols/Symbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/Symbols/Symbols.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/Syntax/AssignmentOperatorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/Syntax/AssignmentOperatorType.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/Syntax/BinaryOperatorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/Syntax/BinaryOperatorType.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/Syntax/LanguageFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/Syntax/LanguageFlags.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/Syntax/NodeBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/Syntax/NodeBinder.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/Syntax/NodeKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/Syntax/NodeKind.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/Syntax/Nodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/Syntax/Nodes.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/Syntax/ScopeBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/Syntax/ScopeBinder.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/Syntax/ScopeBindingVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/Syntax/ScopeBindingVisitor.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/Syntax/SyntaxNodeVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/Syntax/SyntaxNodeVisitor.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/Syntax/UnaryOperatorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/Syntax/UnaryOperatorType.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/SyntaxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/SyntaxExtensions.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/TypeWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/TypeWalker.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/Types/TypeChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/Types/TypeChecker.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/Types/TypeEvaluationVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/Types/TypeEvaluationVisitor.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Program/Types/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Program/Types/Types.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Projects/FileSystemXmlProjectLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Projects/FileSystemXmlProjectLoader.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Projects/FileSystemXmlProjectLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Projects/FileSystemXmlProjectLocator.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Projects/IXmlProjectDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Projects/IXmlProjectDeserializer.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Projects/IXmlProjectLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Projects/IXmlProjectLoader.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Projects/IXmlProjectLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Projects/IXmlProjectLocator.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Projects/PapyrusProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Projects/PapyrusProject.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Projects/PapyrusProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Projects/PapyrusProjectInfo.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Projects/ProgramExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Projects/ProgramExtensions.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.LanguageService/Projects/XmlProjectDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.LanguageService/Projects/XmlProjectDeserializer.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/Constants.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/DarkId.Papyrus.Server.Fallout4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/DarkId.Papyrus.Server.Fallout4.csproj -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/DarkId.Papyrus.Server.Skyrim.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/DarkId.Papyrus.Server.Skyrim.csproj -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/Features/CompletionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/Features/CompletionHandler.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/Features/DefinitionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/Features/DefinitionHandler.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/Features/DocumentAssemblyHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/Features/DocumentAssemblyHandler.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/Features/DocumentScriptInfoHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/Features/DocumentScriptInfoHandler.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/Features/DocumentSymbolHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/Features/DocumentSymbolHandler.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/Features/DocumentSyntaxTreeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/Features/DocumentSyntaxTreeHandler.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/Features/HoverHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/Features/HoverHandler.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/Features/ProjectInfosHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/Features/ProjectInfosHandler.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/Features/ReferencesHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/Features/ReferencesHandler.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/Features/RenameHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/Features/RenameHandler.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/Features/SignatureHelpHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/Features/SignatureHelpHandler.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/IProgramOptionsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/IProgramOptionsProvider.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/ModelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/ModelExtensions.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/PapyrusLanguageServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/PapyrusLanguageServer.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/PapyrusLanguageServerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/PapyrusLanguageServerOptions.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/ProgramExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/ProgramExtensions.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/ProjectHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/ProjectHost.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/ProjectManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/ProjectManager.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/ProjectProgramOptionsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/ProjectProgramOptionsProvider.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/Protocol/IDocumentAssemblyHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/Protocol/IDocumentAssemblyHandler.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/Protocol/IDocumentScriptInfoHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/Protocol/IDocumentScriptInfoHandler.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/Protocol/IDocumentSyntaxTreeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/Protocol/IDocumentSyntaxTreeHandler.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/Protocol/IProjectInfosHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/Protocol/IProjectInfosHandler.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/TextDocumentScriptTextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/TextDocumentScriptTextProvider.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Server/WorkspaceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Server/WorkspaceManager.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/DarkId.Papyrus.Test.Fallout4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/DarkId.Papyrus.Test.Fallout4.csproj -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/DarkId.Papyrus.Test.Skyrim.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/DarkId.Papyrus.Test.Skyrim.csproj -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/LanguageService/Configuration/CreationKit/CreationKitInisConfigLoaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/LanguageService/Configuration/CreationKit/CreationKitInisConfigLoaderTests.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/LanguageService/Program/ObjectIdentifierTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/LanguageService/Program/ObjectIdentifierTests.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/LanguageService/Program/ProgramTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/LanguageService/Program/ProgramTestBase.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/LanguageService/Program/ProgramTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/LanguageService/Program/ProgramTests.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/LanguageService/Program/ProgramUtilitiesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/LanguageService/Program/ProgramUtilitiesTests.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/LanguageService/Program/ScriptFileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/LanguageService/Program/ScriptFileTests.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/LanguageService/Program/SemanticExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/LanguageService/Program/SemanticExtensionsTests.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/LanguageService/Program/TestHarness/ProgramExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/LanguageService/Program/TestHarness/ProgramExtensions.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/LanguageService/Program/TestHarness/ProgramTestHarness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/LanguageService/Program/TestHarness/ProgramTestHarness.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/LanguageService/Projects/XmlProjectDeserializerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/LanguageService/Projects/XmlProjectDeserializerTests.cs -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/remotes/5738ebf4/fireundubh/skyui/dist/Data/Scripts/Source/SKI_ActiveEffectsWidget.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/remotes/5738ebf4/fireundubh/skyui/dist/Data/Scripts/Source/SKI_ActiveEffectsWidget.psc -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/remotes/5738ebf4/fireundubh/skyui/dist/Data/Scripts/Source/SKI_ConfigBase.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/remotes/5738ebf4/fireundubh/skyui/dist/Data/Scripts/Source/SKI_ConfigBase.psc -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/remotes/5738ebf4/fireundubh/skyui/dist/Data/Scripts/Source/SKI_ConfigManager.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/remotes/5738ebf4/fireundubh/skyui/dist/Data/Scripts/Source/SKI_ConfigManager.psc -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/remotes/5738ebf4/fireundubh/skyui/dist/Data/Scripts/Source/SKI_ConfigMenu.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/remotes/5738ebf4/fireundubh/skyui/dist/Data/Scripts/Source/SKI_ConfigMenu.psc -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/remotes/5738ebf4/fireundubh/skyui/dist/Data/Scripts/Source/SKI_FavoritesManager.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/remotes/5738ebf4/fireundubh/skyui/dist/Data/Scripts/Source/SKI_FavoritesManager.psc -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/remotes/5738ebf4/fireundubh/skyui/dist/Data/Scripts/Source/SKI_Main.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/remotes/5738ebf4/fireundubh/skyui/dist/Data/Scripts/Source/SKI_Main.psc -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/remotes/5738ebf4/fireundubh/skyui/dist/Data/Scripts/Source/SKI_PlayerLoadGameAlias.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/remotes/5738ebf4/fireundubh/skyui/dist/Data/Scripts/Source/SKI_PlayerLoadGameAlias.psc -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/remotes/5738ebf4/fireundubh/skyui/dist/Data/Scripts/Source/SKI_QF_ConfigManagerInstance.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/remotes/5738ebf4/fireundubh/skyui/dist/Data/Scripts/Source/SKI_QF_ConfigManagerInstance.psc -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/remotes/5738ebf4/fireundubh/skyui/dist/Data/Scripts/Source/SKI_QuestBase.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/remotes/5738ebf4/fireundubh/skyui/dist/Data/Scripts/Source/SKI_QuestBase.psc -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/remotes/5738ebf4/fireundubh/skyui/dist/Data/Scripts/Source/SKI_SettingsManager.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/remotes/5738ebf4/fireundubh/skyui/dist/Data/Scripts/Source/SKI_SettingsManager.psc -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/remotes/5738ebf4/fireundubh/skyui/dist/Data/Scripts/Source/SKI_WidgetBase.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/remotes/5738ebf4/fireundubh/skyui/dist/Data/Scripts/Source/SKI_WidgetBase.psc -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/remotes/5738ebf4/fireundubh/skyui/dist/Data/Scripts/Source/SKI_WidgetManager.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/remotes/5738ebf4/fireundubh/skyui/dist/Data/Scripts/Source/SKI_WidgetManager.psc -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/scripts/.editorconfig: -------------------------------------------------------------------------------- 1 | end_of_line = crlf 2 | -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/scripts/.gitattributes: -------------------------------------------------------------------------------- 1 | * eol=crlf -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/scripts/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "search.useIgnoreFiles": false 3 | } -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/scripts/Fallout 4/BaseScript.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/scripts/Fallout 4/BaseScript.psc -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/scripts/Fallout 4/Fallout4.ppj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/scripts/Fallout 4/Fallout4.ppj -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/scripts/Fallout 4/Institute_Papyrus_Flags.flg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/scripts/Fallout 4/Institute_Papyrus_Flags.flg -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/scripts/Fallout 4/ScopeTests.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/scripts/Fallout 4/ScopeTests.psc -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/scripts/Fallout 4/ScriptObject.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/scripts/Fallout 4/ScriptObject.psc -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/scripts/Fallout4.ini: -------------------------------------------------------------------------------- 1 | [Papyrus] 2 | sScriptSourceFolder="Fallout 4" -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/scripts/Imports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/scripts/Imports.json -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/scripts/Imports/TestSource1/Script1.psc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/scripts/Imports/TestSource2/scripts/Script2.psc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/scripts/Imports/TestSource3/source/Script3.psc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/scripts/Imports/TestSource4/scripts/source/Script4.psc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/scripts/MoD.ppj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/scripts/MoD.ppj -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/scripts/RemoteAddresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/scripts/RemoteAddresses.json -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/scripts/Skyrim.ini: -------------------------------------------------------------------------------- 1 | [Papyrus] 2 | sScriptSourceFolder="Skyrim" -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/scripts/Skyrim/BaseScript.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/scripts/Skyrim/BaseScript.psc -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/scripts/Skyrim/ScopeTests.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/scripts/Skyrim/ScopeTests.psc -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/scripts/Skyrim/ScriptObject.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/scripts/Skyrim/ScriptObject.psc -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/scripts/Skyrim/Skyrim_1.ppj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/scripts/Skyrim/Skyrim_1.ppj -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/scripts/Skyrim/Skyrim_2.ppj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/scripts/Skyrim/Skyrim_2.ppj -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/scripts/Skyrim/Skyrim_3.ppj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/scripts/Skyrim/Skyrim_3.ppj -------------------------------------------------------------------------------- /src/DarkId.Papyrus.Test/scripts/Skyrim/TESV_Papyrus_Flags.flg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/DarkId.Papyrus.Test/scripts/Skyrim/TESV_Papyrus_Flags.flg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/.eslintignore: -------------------------------------------------------------------------------- 1 | ./images 2 | ./node_modules 3 | -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/.eslintrc.js -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/.gitattributes -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/.gitignore -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/.prettierignore -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/.releaserc -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/.vscodeignore -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/README.md -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/images/demo-autocomplete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/images/demo-autocomplete.gif -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/images/demo-go-to-peek-definition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/images/demo-go-to-peek-definition.gif -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/images/demo-symbol-outlines-breadcrumbs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/images/demo-symbol-outlines-breadcrumbs.gif -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/images/icon-small-trimmed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/images/icon-small-trimmed.png -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/images/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/images/icon-small.png -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/images/icon.png -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/package-lock.json -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/package.json -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/BuildSelection_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/BuildSelection_16x.svg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/BuildSolution_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/BuildSolution_16x.svg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/Class_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/Class_16x.svg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/Compile_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/Compile_16x.svg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/ExportScript_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/ExportScript_16x.svg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/JS_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/JS_16x.svg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/LinkedFolderOpen_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/LinkedFolderOpen_16x.svg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/LinkedFolder_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/LinkedFolder_16x.svg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/Namespace_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/Namespace_16x.svg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/NewScript_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/NewScript_16x.svg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/PackageReferences_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/PackageReferences_16x.svg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/Reference_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/Reference_16x.svg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/RefreshScript_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/RefreshScript_16x.svg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/RefreshScript_grey_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/RefreshScript_grey_16x.svg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/ScriptError_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/ScriptError_16x.svg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/ScriptExclude_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/ScriptExclude_16x.svg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/ScriptGroup_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/ScriptGroup_16x.svg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/ScriptLink_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/ScriptLink_16x.svg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/ScriptManager_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/ScriptManager_16x.svg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/ScriptPreview_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/ScriptPreview_16x.svg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/ScriptWarning_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/ScriptWarning_16x.svg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/Script_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/Script_16x.svg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/TriggerScript_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/TriggerScript_16x.svg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/UpdatedScript_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/UpdatedScript_16x.svg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/activitybar-scroll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/activitybar-scroll.svg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/fallout4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/fallout4.png -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/fo4/Fallout4.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/fo4/Fallout4.code-workspace -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/fo4/fallout4.ppj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/fo4/fallout4.ppj -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/fo4/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/fo4/launch.json -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/fo4/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/fo4/tasks.json -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/icons8-folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/icons8-folder.svg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/icons8-git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/icons8-git.svg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/skyrim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/skyrim.png -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/sse/SkyrimSE.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/sse/SkyrimSE.code-workspace -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/sse/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/sse/launch.json -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/sse/skyrimse.ppj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/sse/skyrimse.ppj -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/sse/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/sse/tasks.json -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/tesv/SkyrimLE.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/tesv/SkyrimLE.code-workspace -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/tesv/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/tesv/launch.json -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/tesv/skyrimle.ppj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/tesv/skyrimle.ppj -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/tesv/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/tesv/tasks.json -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/welcome/config.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/welcome/config.jpg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/welcome/debugging.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/welcome/debugging.jpg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/welcome/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/welcome/index.md -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/resources/welcome/menus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/resources/welcome/menus.jpg -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/scripts/generate-version-number.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/scripts/generate-version-number.mjs -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/snippets/papyrus/papyrus-fallout4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/snippets/papyrus/papyrus-fallout4.json -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/snippets/papyrus/papyrus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/snippets/papyrus/papyrus.json -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/CreationKitInfoProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/CreationKitInfoProvider.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/ExtensionConfigProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/ExtensionConfigProvider.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/PapyrusExtension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/PapyrusExtension.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/PapyrusGame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/PapyrusGame.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/Utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/Utilities.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/common/PathResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/common/PathResolver.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/common/Reactive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/common/Reactive.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/common/constants.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/common/vscode/IocDecorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/common/vscode/IocDecorators.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/common/vscode/commands/CommandBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/common/vscode/commands/CommandBase.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/common/vscode/commands/EditorCommandBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/common/vscode/commands/EditorCommandBase.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/common/vscode/editor/EditorAttacherBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/common/vscode/editor/EditorAttacherBase.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/common/vscode/editor/EditorAttachmentBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/common/vscode/editor/EditorAttachmentBase.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/common/vscode/reactive/Events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/common/vscode/reactive/Events.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/common/vscode/view/ActiveDocTreeDataProviderBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/common/vscode/view/ActiveDocTreeDataProviderBase.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/common/vscode/view/TreeDataNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/common/vscode/view/TreeDataNode.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/common/vscode/view/TreeDataProviderBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/common/vscode/view/TreeDataProviderBase.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/common/vscode/view/TreeViewControllerBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/common/vscode/view/TreeViewControllerBase.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/debugger/DebugSupportInstallService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/debugger/DebugSupportInstallService.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/debugger/PapyrusDebugAdapterDescriptorFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/debugger/PapyrusDebugAdapterDescriptorFactory.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/debugger/PapyrusDebugAdapterTracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/debugger/PapyrusDebugAdapterTracker.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/debugger/PapyrusDebugConfigurationProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/debugger/PapyrusDebugConfigurationProvider.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/debugger/PapyrusDebugSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/debugger/PapyrusDebugSession.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/features/AssemblyTextContentProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/features/AssemblyTextContentProvider.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/features/LanguageConfigurations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/features/LanguageConfigurations.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/features/LanguageServiceStatusItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/features/LanguageServiceStatusItems.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/features/PyroTaskDefinition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/features/PyroTaskDefinition.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/features/PyroTaskProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/features/PyroTaskProvider.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/features/ScriptStatusCodeLensProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/features/ScriptStatusCodeLensProvider.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/features/WelcomeHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/features/WelcomeHandler.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/features/commands/AttachDebuggerCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/features/commands/AttachDebuggerCommand.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/features/commands/GameCommandBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/features/commands/GameCommandBase.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/features/commands/GenerateProjectCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/features/commands/GenerateProjectCommand.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/features/commands/InstallDebugSupportCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/features/commands/InstallDebugSupportCommand.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/features/commands/LocateOrDisableGameCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/features/commands/LocateOrDisableGameCommand.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/features/commands/SearchCreationKitWikiCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/features/commands/SearchCreationKitWikiCommand.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/features/commands/ShowOutputChannelCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/features/commands/ShowOutputChannelCommand.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/features/commands/ShowWelcomeCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/features/commands/ShowWelcomeCommand.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/features/commands/ViewAssemblyCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/features/commands/ViewAssemblyCommand.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/features/projects/ProjectsTreeDataProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/features/projects/ProjectsTreeDataProvider.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/features/projects/ProjectsView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/features/projects/ProjectsView.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/server/LanguageClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/server/LanguageClient.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/server/LanguageClientHost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/server/LanguageClientHost.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/server/LanguageClientManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/server/LanguageClientManager.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/server/messages/DocumentAssembly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/server/messages/DocumentAssembly.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/server/messages/DocumentScriptInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/server/messages/DocumentScriptInfo.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/server/messages/DocumentSyntaxTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/server/messages/DocumentSyntaxTree.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/src/server/messages/ProjectInfos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/src/server/messages/ProjectInfos.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/syntaxes/papyrus-assembly/papyrus-assembly.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/syntaxes/papyrus-assembly/papyrus-assembly.tmLanguage -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/syntaxes/papyrus-project/papyrus-project-language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/syntaxes/papyrus-project/papyrus-project-language-configuration.json -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/syntaxes/papyrus-project/papyrus-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/syntaxes/papyrus-project/papyrus-project.json -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/syntaxes/papyrus/papyrus-language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/syntaxes/papyrus/papyrus-language-configuration.json -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/syntaxes/papyrus/papyrus.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/syntaxes/papyrus/papyrus.tmLanguage -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/tsconfig.json -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/typings/ps-list.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/typings/ps-list.d.ts -------------------------------------------------------------------------------- /src/papyrus-lang-vscode/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/src/papyrus-lang-vscode/webpack.config.js -------------------------------------------------------------------------------- /vcpkg-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/vcpkg-configuration.json -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/papyrus-lang/HEAD/vcpkg.json --------------------------------------------------------------------------------