├── .config └── dotnet-tools.json ├── .devcontainer ├── Dockerfile ├── README.md └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── devskim.yml │ ├── gh-sync.yml │ └── qdk-sync.yml ├── .gitignore ├── .gitmodules ├── .sscignore ├── .vscode └── extensions.json ├── CONTRIBUTING.md ├── LICENSE.txt ├── NOTICE.txt ├── NuGet.config ├── PRIVACY.md ├── QsCompiler.sln ├── QsFmt.sln ├── README.md ├── SECURITY.md ├── VisualStudioExtension.sln ├── bootstrap.ps1 ├── examples ├── CompilerExtensions │ ├── CompilerExtensions.sln │ ├── CustomExtension │ │ ├── CustomExtension.csproj │ │ ├── Display.cs │ │ ├── ListIdentifiers.cs │ │ ├── Optimize.cs │ │ └── Utils.cs │ ├── Demo │ │ ├── Demo.csproj │ │ └── Program.qs │ └── ExtensionPackage │ │ ├── CompilerExtension.props │ │ ├── CustomExtension.Package.csproj │ │ ├── CustomExtension.Package.nuspec │ │ └── README.md └── QIR │ ├── Development │ ├── Development.csproj │ ├── Program.qs │ └── README.md │ ├── Emission │ ├── Emission.csproj │ ├── Program.qs │ └── README.md │ ├── JITCompilation │ ├── Hello.ll │ ├── QIRinit.cpp │ ├── README.md │ └── qir-jit.py │ ├── Optimization │ ├── Hello │ │ ├── Hello.csproj │ │ ├── Main.cpp │ │ ├── Program.qs │ │ └── qir │ │ │ ├── Hello-dce-inline.ll │ │ │ ├── Hello-dce.ll │ │ │ ├── Hello-o3.ll │ │ │ └── Hello.ll │ └── README.md │ ├── QIR.sln │ └── Simulation │ ├── README.md │ ├── SimulatorTemplate.cpp │ ├── StateSimulator │ ├── README.md │ ├── RuntimeManagement.cpp │ ├── StateSimulation.cpp │ ├── StateSimulator.hpp │ └── include │ │ └── Eigen │ │ └── README.md │ └── TraceSimulator │ ├── QubitManager.hpp │ ├── README.md │ ├── RuntimeManagement.cpp │ ├── TraceSimulation.cpp │ └── TraceSimulator.hpp ├── fsharplint.json ├── global.json ├── llvm-build ├── GenerateLLVM.rsp ├── Microsoft.Quantum.LlvmBindings.Native.nuspec ├── header.txt ├── libllvm.ps1 ├── llvm.cmake ├── llvm.ps1 ├── llvm.tag.txt ├── manylinux.Dockerfile ├── utils.ps1 └── vcvars.ps1 ├── omnisharp.json └── src ├── Common ├── AssemblyCommon.cs.v.template ├── AssemblyCommon.props ├── DelaySign.props └── stylecop.json ├── Directory.Build.props ├── Documentation ├── DocumentationGenerator │ ├── DocumentationGeneration.cs │ ├── DocumentationGenerator.csproj │ ├── DocumentationGenerator.props │ ├── DocumentationWriter.cs │ ├── Extensions.cs │ └── ProcessDocComments.cs ├── DocumentationParser │ ├── DocBuilder.cs │ ├── DocCallable.cs │ ├── DocComment.cs │ ├── DocItem.cs │ ├── DocNamespace.cs │ ├── DocUdt.cs │ ├── DocumentationParser.csproj │ └── Utils.cs ├── Summarizer │ ├── README.md │ ├── requirements.txt │ └── summarize_documentation.py └── Tests.DocGenerator │ ├── DocParsingTests.cs │ ├── DocWritingTests.cs │ ├── Tests.DocGenerator.csproj │ └── Utils.cs ├── ProjectTemplates ├── Microsoft.Quantum.ProjectTemplates.nuspec ├── Quantum.App1 │ ├── .template.config │ │ └── template.json.v.template │ ├── Program.qs │ └── Quantum.App1.csproj.v.template ├── Quantum.Honeywell.App1 │ ├── .template.config │ │ └── template.json.v.template │ ├── Program.qs │ └── Quantum.Honeywell.App1.csproj.v.template ├── Quantum.IonQ.App1 │ ├── .template.config │ │ └── template.json.v.template │ ├── Program.qs │ └── Quantum.IonQ.App1.csproj.v.template ├── Quantum.Library1 │ ├── .template.config │ │ └── template.json.v.template │ ├── Library.qs │ └── Quantum.Library1.csproj.v.template ├── Quantum.Quantinuum.App1 │ ├── .template.config │ │ └── template.json.v.template │ ├── Program.qs │ └── Quantum.Quantinuum.App1.csproj.v.template ├── Quantum.Test1 │ ├── .template.config │ │ └── template.json.v.template │ ├── Quantum.Test1.csproj.v.template │ └── Tests.qs └── README.md ├── QsCompiler ├── .gitignore ├── BondSchemas │ ├── BondSchemaTranslator.cs │ ├── BondSchemas.csproj │ ├── CompilerDataStructures.bond │ ├── CompilerObjectTranslator.cs │ ├── Generated │ │ └── CompilerDataStructures.cs │ └── Protocols.cs ├── CSharpGeneration │ ├── .gitignore │ ├── CSharpGeneration.fsproj │ ├── CSharpGeneration.nuspec.template │ ├── Context.fs │ ├── EntryPoint.fs │ ├── FindNuspecReferences.ps1 │ ├── RewriteStep.fs │ ├── RewriteStep.props │ └── SimulationCode.fs ├── CommandLineTool │ ├── App.config │ ├── CommandLineTool.csproj │ ├── Commands │ │ ├── Build.cs │ │ ├── Diagnose.cs │ │ └── Format.cs │ ├── CompilationTracker.cs │ ├── LoadContext.cs │ ├── Logging.cs │ ├── Options.cs │ └── Program.cs ├── CompilationManager │ ├── AssemblyLoader.cs │ ├── CompilationManager.csproj │ ├── CompilationUnit.cs │ ├── CompilationUnitManager.cs │ ├── ContextBuilder.cs │ ├── DataStructures.cs │ ├── DiagnosticTools.cs │ ├── Diagnostics.cs │ ├── EditorSupport │ │ ├── CodeActions.cs │ │ ├── CodeCompletion.cs │ │ ├── EditorCommands.cs │ │ ├── SymbolInfo.cs │ │ └── SyntaxUtils.cs │ ├── FileContentException.cs │ ├── FileContentManager.cs │ ├── PerformanceTracking.cs │ ├── Process.cs │ ├── ProcessingQueue.cs │ ├── ProjectManager.cs │ ├── ScopeTracking.cs │ ├── TextProcessor.cs │ ├── TypeChecking.cs │ └── Utils.cs ├── Compiler │ ├── CompilationLoader.cs │ ├── Compiler.csproj │ ├── Compiler.nuspec.template │ ├── FindNuspecReferences.ps1 │ ├── FunctorGeneration.cs │ ├── LoadedStep.cs │ ├── Logging.cs │ ├── MetadataGeneration.cs │ ├── PluginInterface.cs │ └── RewriteSteps │ │ ├── AbstractRewriteStepsLoader.cs │ │ ├── AssemblyRewriteStepsLoader.cs │ │ ├── CapabilityInference.cs │ │ ├── ClassicallyControlled.cs │ │ ├── ConjugationInlining.cs │ │ ├── ExternalRewriteStepsManager.cs │ │ ├── FullPreEvaluation.cs │ │ ├── FunctorGeneration.cs │ │ ├── InstanceRewriteStepsLoader.cs │ │ ├── IntrinsicResolution.cs │ │ ├── LiftLambdas.cs │ │ ├── Monomorphization.cs │ │ ├── SyntaxTreeTrimming.cs │ │ └── TypeRewriteStepsLoader.cs ├── Core │ ├── AssemblyInfo.fs │ ├── ConstructorExtensions.fs │ ├── Core.fsproj │ ├── DeclarationHeaders.fs │ ├── Dependencies.fs │ ├── SymbolResolution.fs │ ├── SymbolTable │ │ ├── Namespace.fs │ │ ├── NamespaceManager.fs │ │ ├── PartialNamespace.fs │ │ └── SymbolNotFoundException.fs │ ├── SyntaxGenerator.fs │ ├── SyntaxTreeExtensions.fs │ ├── Transformations │ │ ├── CommonTransformation.fs │ │ ├── ExpressionTransformation.fs │ │ ├── NamespaceTransformation.fs │ │ ├── StatementTransformation.fs │ │ ├── SyntaxTreeTransformation.fs │ │ ├── TransformationOptions.fs │ │ └── TypeTransformation.fs │ └── Utils.fs ├── DataStructures │ ├── Capability.fs │ ├── Capability.fsi │ ├── DataStructures.fsproj │ ├── DataTypes.fs │ ├── Diagnostics.fs │ ├── Documentation.fs │ ├── ErrorHandling.fs │ ├── ReservedKeywords.fs │ ├── Serialization.fs │ ├── SymbolInformation.fs │ ├── SyntaxTokens.fs │ └── SyntaxTree.fs ├── LanguageServer │ ├── .editorconfig │ ├── Communication.cs │ ├── EditorState.cs │ ├── EventQueues.cs │ ├── FileSystemWatcher.cs │ ├── LanguageServer.cs │ ├── LanguageServer.csproj │ ├── Program.cs │ ├── ProjectLoader.cs │ ├── SynchronizationContext.cs │ ├── Utils.cs │ └── global.language-server.json ├── LlvmBindings │ ├── BitcodeModule.cs │ ├── Context.cs │ ├── DataLayout.cs │ ├── DebugInfo │ │ ├── DIBasicType.cs │ │ ├── DICompileUnit.cs │ │ ├── DICompositeType.cs │ │ ├── DICompositeTypeArray.cs │ │ ├── DIDerivedType.cs │ │ ├── DIEnumerator.cs │ │ ├── DIExpression.cs │ │ ├── DIFile.cs │ │ ├── DIGlobalVariable.cs │ │ ├── DIGlobalVariableExpression.cs │ │ ├── DIGlobalVariableExpressionArray.cs │ │ ├── DIImportedEntity.cs │ │ ├── DIImportedEntityArray.cs │ │ ├── DILexicalBlock.cs │ │ ├── DILexicalBlockBase.cs │ │ ├── DILexicalBlockFile.cs │ │ ├── DILocalScope.cs │ │ ├── DILocalVariable.cs │ │ ├── DILocalVariableArray.cs │ │ ├── DILocation.cs │ │ ├── DIMacro.cs │ │ ├── DIMacroFile.cs │ │ ├── DIMacroNode.cs │ │ ├── DIMacroNodeArray.cs │ │ ├── DIModule.cs │ │ ├── DINamespace.cs │ │ ├── DINode.cs │ │ ├── DINodeArray.cs │ │ ├── DIObjCProperty.cs │ │ ├── DIScope.cs │ │ ├── DIScopeArray.cs │ │ ├── DISubProgram.cs │ │ ├── DISubRange.cs │ │ ├── DISubroutineType.cs │ │ ├── DITemplateParameter.cs │ │ ├── DITemplateParameterArray.cs │ │ ├── DITemplateTypeParameter.cs │ │ ├── DITemplateValueParameter.cs │ │ ├── DIType.cs │ │ ├── DITypeArray.cs │ │ ├── DIVariable.cs │ │ ├── DebugArrayType.cs │ │ ├── DebugBasicType.cs │ │ ├── DebugFunctionType.cs │ │ ├── DebugInfoBuilder.cs │ │ ├── DebugMemberInfo.cs │ │ ├── DebugMemberLayout.cs │ │ ├── DebugPointerType.cs │ │ ├── DebugStructType.cs │ │ ├── DebugType.cs │ │ ├── DebugUnionType.cs │ │ ├── DwarfEnumerations.cs │ │ ├── GenericDINode.cs │ │ └── TupleTypedArrayWrapper.cs │ ├── DisposableObject.cs │ ├── ExtensiblePropertyContainer.cs │ ├── Extensions │ │ ├── LLVMDIBuilderRefExtensions.cs │ │ ├── LLVMMCJITCompilerOptionsExtensions.cs │ │ ├── LLVMMemoryBufferRefExtensions.cs │ │ ├── LLVMMetadataRefExtensions.cs │ │ ├── LLVMModuleFlagEntryExtensions.cs │ │ ├── LLVMModuleRefExtensions.cs │ │ ├── LLVMNamedMDNodeRefExtensions.cs │ │ ├── LLVMTargetDataRefExtensions.cs │ │ ├── LLVMUseRefExtensions.cs │ │ ├── LLVMValueMetadataEntryRef.cs │ │ ├── LLVMValueRefExtensions.cs │ │ ├── MarshaledString.cs │ │ ├── MarshaledStringArray.cs │ │ ├── SpanExtensions.cs │ │ └── StringExtensions.cs │ ├── HandleInterningMap.cs │ ├── IBitcodeModuleFactory.cs │ ├── IExtensiblePropertyContainer.cs │ ├── IHandleInterning.cs │ ├── ILibLlvm.cs │ ├── IOperandCollection.cs │ ├── Instructions │ │ ├── AddressSpaceCast.cs │ │ ├── Alloca.cs │ │ ├── BinaryOperator.cs │ │ ├── BitCast.cs │ │ ├── Branch.cs │ │ ├── CallInstruction.cs │ │ ├── Cast.cs │ │ ├── CatchSwitch.cs │ │ ├── Cmp.cs │ │ ├── DebugDeclare.cs │ │ ├── DebugInfoIntrinsic.cs │ │ ├── ExtractElement.cs │ │ ├── ExtractValue.cs │ │ ├── FCmp.cs │ │ ├── FPExt.cs │ │ ├── FPToSI.cs │ │ ├── FPToUI.cs │ │ ├── FPTrunc.cs │ │ ├── Fence.cs │ │ ├── GetElementPtr.cs │ │ ├── IndirectBranch.cs │ │ ├── InsertElement.cs │ │ ├── InsertValue.cs │ │ ├── Instruction.cs │ │ ├── InstructionBuilder.cs │ │ ├── InstructionExtensions.cs │ │ ├── IntCmp.cs │ │ ├── IntToPointer.cs │ │ ├── Intrinsic.cs │ │ ├── Load.cs │ │ ├── MemCpy.cs │ │ ├── MemIntrinsic.cs │ │ ├── MemMove.cs │ │ ├── MemSet.cs │ │ ├── PhiNode.cs │ │ ├── PointerToInt.cs │ │ ├── Predicates.cs │ │ ├── ReturnInstruction.cs │ │ ├── SIToFP.cs │ │ ├── SelectInstruction.cs │ │ ├── ShuffleVector.cs │ │ ├── SignExtend.cs │ │ ├── Store.cs │ │ ├── SuccessorBlockCollection.cs │ │ ├── Terminator.cs │ │ ├── Trunc.cs │ │ ├── UIToFP.cs │ │ ├── UnaryInstruction.cs │ │ ├── UnaryOperator.cs │ │ ├── Unreachable.cs │ │ ├── UserOp1.cs │ │ ├── UserOp2.cs │ │ ├── VAArg.cs │ │ └── ZeroExtend.cs │ ├── InternalCodeGeneratorException.cs │ ├── Interop │ │ ├── LLVM.Manual.cs │ │ ├── LLVMAttributeIndex.cs │ │ ├── LLVMAttributeRef.cs │ │ ├── LLVMBasicBlockRef.cs │ │ ├── LLVMBinaryRef.cs │ │ ├── LLVMBuilderRef.cs │ │ ├── LLVMComdatRef.cs │ │ ├── LLVMContextRef.cs │ │ ├── LLVMDIBuilderRef.cs │ │ ├── LLVMDiagnosticInfoRef.cs │ │ ├── LLVMDisasmContextRef.cs │ │ ├── LLVMErrorRef.cs │ │ ├── LLVMErrorTypeId.cs │ │ ├── LLVMExecutionEngineRef.cs │ │ ├── LLVMGenericValueRef.cs │ │ ├── LLVMMemoryBufferRef.cs │ │ ├── LLVMMetadataKind.cs │ │ ├── LLVMMetadataRef.cs │ │ ├── LLVMModuleFlagEntry.cs │ │ ├── LLVMModuleProviderRef.cs │ │ ├── LLVMModuleRef.cs │ │ ├── LLVMNamedMDNodeRef.cs │ │ ├── LLVMObjectFileRef.cs │ │ ├── LLVMPassRegistryRef.cs │ │ ├── LLVMRelocationIteratorRef.cs │ │ ├── LLVMSectionIteratorRef.cs │ │ ├── LLVMSymbolIteratorRef.cs │ │ ├── LLVMTargetDataRef.cs │ │ ├── LLVMTargetLibraryInfoRef.cs │ │ ├── LLVMTargetMachineRef.cs │ │ ├── LLVMTargetRef.cs │ │ ├── LLVMTypeRef.cs │ │ ├── LLVMUseRef.cs │ │ └── LLVMValueRef.cs │ ├── Library.cs │ ├── LlvmBindings.csproj │ ├── MemoryBuffer.cs │ ├── Metadata │ │ ├── ConstantAsMetadata.cs │ │ ├── LlvmMetadata.cs │ │ ├── LocalAsMetadata.cs │ │ ├── MDNode.cs │ │ ├── MDString.cs │ │ ├── MDTuple.cs │ │ ├── MetadataAsValue.cs │ │ ├── MetadataOperandCollection.cs │ │ ├── ModuleFlag.cs │ │ ├── NamedMDNode.cs │ │ ├── OperandBundleNames.cs │ │ └── ValueAsMetadata.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── README.md │ ├── ThreadContextCache.cs │ ├── Types │ │ ├── ArrayType.cs │ │ ├── FunctionType.cs │ │ ├── ITypeRef.cs │ │ ├── PointerType.cs │ │ ├── SequenceType.cs │ │ ├── StructType.cs │ │ ├── TypeRef.cs │ │ └── VectorType.cs │ ├── Values │ │ ├── Argument.cs │ │ ├── AttributeContainerMixins.cs │ │ ├── AttributeKindExtensions.cs │ │ ├── AttributeValue.cs │ │ ├── BasicBlock.cs │ │ ├── BasicBlockCollection.cs │ │ ├── Constant.cs │ │ ├── ConstantAggregate.cs │ │ ├── ConstantArray.cs │ │ ├── ConstantData.cs │ │ ├── ConstantDataArray.cs │ │ ├── ConstantDataSequential.cs │ │ ├── ConstantFP.cs │ │ ├── ConstantInt.cs │ │ ├── FunctionParameterList.cs │ │ ├── GlobalAlias.cs │ │ ├── GlobalIndirectSymbol.cs │ │ ├── GlobalObject.cs │ │ ├── GlobalValue.cs │ │ ├── GlobalVariable.cs │ │ ├── IAttributeAccessor.cs │ │ ├── IAttributeDictionary.cs │ │ ├── IrFunction.cs │ │ ├── Use.cs │ │ ├── User.cs │ │ ├── Value.cs │ │ ├── ValueAttributeCollection.cs │ │ ├── ValueAttributeDictionary.cs │ │ ├── ValueExtensions.cs │ │ └── ValueOperandListCollection.cs │ ├── WrappedNativeCallback.cs │ ├── WriteOnce.cs │ ├── cgmanifest.json │ └── stylecop.json ├── Optimizations │ ├── Optimizations.fsproj │ ├── OptimizingTransformations │ │ ├── CallableInlining.fs │ │ ├── ConstantPropagation.fs │ │ ├── LoopUnrolling.fs │ │ ├── StatementGrouping.fs │ │ ├── StatementRemoving.fs │ │ ├── TransformationBase.fs │ │ └── VariableRemoving.fs │ ├── PreEvaluation.fs │ ├── PureCircuitAPI.fs │ ├── PureCircuitFinding.fs │ └── Utils │ │ ├── ComputationExpressions.fs │ │ ├── Evaluation.fs │ │ ├── HelperFunctions.fs │ │ ├── OptimizationTools.fs │ │ └── VariableRenaming.fs ├── QirGeneration │ ├── AddOutputRecording.cs │ ├── BondSchemas │ │ ├── Execution.bond │ │ ├── Execution.cs │ │ ├── Extensions.cs │ │ └── Protocols.cs │ ├── CompilationSteps.cs │ ├── Context.cs │ ├── FindNuspecReferences.ps1 │ ├── FunctionLibrary.cs │ ├── Generator.cs │ ├── Interop.cs │ ├── NameGeneration.cs │ ├── QIR │ │ ├── DataStructures.cs │ │ ├── Functions.cs │ │ ├── RuntimeLibrary.cs │ │ ├── Types.cs │ │ └── Values.cs │ ├── QirGeneration.csproj │ ├── QirGeneration.nuspec.template │ ├── QirGeneration.props │ ├── README.md │ ├── RewriteSteps.cs │ ├── ScopeManager.cs │ └── Subtransformations │ │ ├── ExpressionKindTransformation.cs │ │ ├── ExpressionTransformation.cs │ │ ├── NamespaceTransformation.cs │ │ ├── StatementKindTransformation.cs │ │ └── TypeTransformation.cs ├── RoslynWrapper │ ├── App.config │ ├── AutoPropertyDeclaration.fs │ ├── ClassDeclaration.fs │ ├── CodeGenerator.fs │ ├── Common.fs │ ├── CompilationUnit.fs │ ├── ConstructorDeclaration.fs │ ├── Conversion.fs │ ├── Equality.fs │ ├── ExpressionStatement.fs │ ├── FieldDeclaration.fs │ ├── ForeachStatement.fs │ ├── GenericName.fs │ ├── IfStatement.fs │ ├── InterfaceDeclaration.fs │ ├── Invocation.fs │ ├── Literals.fs │ ├── LocalDeclaration.fs │ ├── MethodDeclaration.fs │ ├── NamespaceDeclaration.fs │ ├── ObjectCreation.fs │ ├── README.txt │ ├── RoslynWrapper.fsproj │ ├── TryStatement.fs │ ├── WhileStatement.fs │ ├── WhiteNoise.fs │ └── cgmanifest.json ├── SyntaxProcessor │ ├── CapabilityInference │ │ ├── Analyzer.fs │ │ ├── Analyzer.fsi │ │ ├── CallAnalyzer.fs │ │ ├── CallAnalyzer.fsi │ │ ├── Capabilities.fs │ │ ├── Capabilities.fsi │ │ ├── ConstAnalyzer.fs │ │ ├── ConstAnalyzer.fsi │ │ ├── FeatureAnalyzer.fs │ │ ├── FeatureAnalyzer.fsi │ │ ├── ResultAnalyzer.fs │ │ ├── ResultAnalyzer.fsi │ │ ├── TypeAnalyzer.fs │ │ └── TypeAnalyzer.fsi │ ├── ContextVerification.fs │ ├── DeclarationVerification.fs │ ├── ExpressionVerification.fs │ ├── ScopeContext.fs │ ├── StatementVerification.fs │ ├── SymbolOccurrence.fs │ ├── SymbolOccurrence.fsi │ ├── SymbolTracker.fs │ ├── SyntaxExtensions.fs │ ├── SyntaxProcessor.fsproj │ ├── TreeVerification.fs │ ├── TypeInference │ │ ├── Constraint.fs │ │ ├── Constraint.fsi │ │ ├── Diagnostic.fs │ │ ├── Diagnostic.fsi │ │ ├── InferenceContext.fs │ │ ├── InferenceContext.fsi │ │ └── README.md │ └── VerificationTools.fs ├── TestProjects │ ├── README.md │ ├── TestProjects.sln │ ├── test1 │ │ ├── Program.cs │ │ └── test1.csproj │ ├── test10 │ │ ├── Operation10.qs │ │ └── test10.csproj │ ├── test11 │ │ ├── Driver.cs │ │ ├── Operation11.qs │ │ ├── README.md │ │ └── test11.csproj │ ├── test12 │ │ ├── Operation12a.qs │ │ ├── Operation12b.qs │ │ ├── README.md │ │ ├── format │ │ │ ├── Formatted.qs │ │ │ └── Unformatted.qs │ │ ├── sub1 │ │ │ ├── Operation12b.qs │ │ │ └── sub2 │ │ │ │ └── Operation12a.qs │ │ └── test12.csproj │ ├── test13 │ │ ├── Driver.cs │ │ ├── Operation13.qs │ │ └── test13.csproj │ ├── test14 │ │ ├── README.md │ │ ├── Teleport.qs │ │ └── test14.csproj │ ├── test15 │ │ ├── README.md │ │ ├── format │ │ │ ├── Formatted.qs │ │ │ └── Unformatted.qs │ │ └── test15.csproj │ ├── test16 │ │ ├── Lambda.qs │ │ └── test16.csproj │ ├── test17 │ │ ├── MeasureBell.qs │ │ ├── README.md │ │ └── test17.csproj │ ├── test2 │ │ ├── Class1.cs │ │ └── test2.csproj │ ├── test3 │ │ ├── Operation3a.qs │ │ ├── Operation3b.qs │ │ ├── sub1 │ │ │ ├── Operation3b.qs │ │ │ └── sub2 │ │ │ │ └── Operation3a.qs │ │ └── test3.csproj │ ├── test4 │ │ ├── Driver.cs │ │ ├── Operation4.qs │ │ └── test4.csproj │ ├── test5 │ │ ├── Operation5.qs │ │ ├── TestSuiteRunner.cs │ │ ├── Tests5.qs │ │ ├── test.folder │ │ │ └── Operation5.qs │ │ └── test5.csproj │ ├── test6 │ │ ├── Operation6a.qs │ │ ├── sub1 │ │ │ └── Operation6a.qs │ │ └── test6.csproj │ ├── test7 │ │ ├── Operation.qs │ │ └── test7.csproj │ ├── test8 │ │ ├── Class1.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── test8.csproj │ └── test9 │ │ ├── Driver.cs │ │ ├── Operation9.qs │ │ └── test9.csproj ├── TestTargets │ ├── Libraries │ │ ├── Library1 │ │ │ ├── AccessModifiers.qs │ │ │ ├── Capability.qs │ │ │ ├── Library1.csproj │ │ │ ├── Logging.qs │ │ │ └── Types.qs │ │ ├── Library2 │ │ │ ├── Library.qs │ │ │ └── Library2.csproj │ │ └── build │ │ │ ├── Library.props │ │ │ └── Library.targets │ └── Simulation │ │ ├── Example │ │ ├── Example.csproj │ │ └── Main.qs │ │ └── Target │ │ ├── Driver.cs │ │ ├── QirExecution.cs │ │ ├── RewriteStep.cs │ │ └── Simulation.csproj ├── Tests.CSharpGeneration │ ├── Circuits │ │ ├── CodegenTests.qs │ │ ├── Core.qs │ │ ├── EmptyElements.qs │ │ ├── EmptyElements.txt │ │ ├── HelloWorld.qs │ │ ├── HelloWorld.txt │ │ ├── Intrinsic.qs │ │ ├── Intrinsic.txt │ │ ├── Intrinsic_dll.txt │ │ ├── LineNumbers.qs │ │ ├── LineNumbers.txt │ │ ├── SubDirectory │ │ │ ├── HelloOther.qs │ │ │ └── HelloWorld.qs │ │ ├── TargetedExe.qs │ │ ├── TargetedExe.txt │ │ ├── Types.qs │ │ ├── Types.txt │ │ ├── UnitTests.qs │ │ └── UnitTests.txt │ ├── Program.fs │ ├── SimulationCodeTests.fs │ └── Tests.CSharpGeneration.fsproj ├── Tests.Compiler │ ├── AccessModifierTests.fs │ ├── AutoGenerationTests.fs │ ├── CallGraphTests.fs │ ├── CapabilityTests.fs │ ├── ClassicalControlTests.fs │ ├── CommandLineTests.fs │ ├── CompilationLoaderTests.fs │ ├── CompilationTrackerTests.fs │ ├── CompletionParsingTests.fs │ ├── ExecutionTests.fs │ ├── ExternalRewriteStepsManagerTests.fs │ ├── GlobalVerificationTests.fs │ ├── LambdaLiftingTests.fs │ ├── LinkingTests.fs │ ├── LocalVerificationTests.fs │ ├── OpenDirectiveTests.fs │ ├── OptimizationTests.fs │ ├── OutputRecordingTests.fs │ ├── QirTests.fs │ ├── RegexTests.fs │ ├── SerializationTests.fs │ ├── SymbolManagementTests.fs │ ├── SyntaxTests.fs │ ├── TestCases │ │ ├── AccessModifiers.qs │ │ ├── AttributeGeneration.qs │ │ ├── Capabilities.qs │ │ ├── ClassicalControl.qs │ │ ├── CompilationLoader.qs │ │ ├── CycleDetection.qs │ │ ├── CycleValidation.qs │ │ ├── ExecutionTests │ │ │ ├── LoggingBasedTests.qs │ │ │ ├── Packaging.qs │ │ │ ├── QirDataTypeTests.qs │ │ │ ├── QirTargetingTests.qs │ │ │ └── QirTests.qs │ │ ├── FunctorGeneration.qs │ │ ├── General.qs │ │ ├── GlobalVerification.qs │ │ ├── LambdaLifting.qs │ │ ├── LinkingTests │ │ │ ├── Core.qs │ │ │ ├── EntryPointDiagnostics.qs │ │ │ ├── EntryPointSpecializations.qs │ │ │ ├── Generics.qs │ │ │ ├── InternalRenaming.qs │ │ │ ├── IntrinsicResolution.qs │ │ │ ├── InvalidEntryPoints.qs │ │ │ ├── Monomorphization.qs │ │ │ ├── ReferenceLinking.qs │ │ │ ├── SyntaxTreeTrim.qs │ │ │ └── ValidEntryPoints.qs │ │ ├── LocalVerification.qs │ │ ├── OptimizerTests │ │ │ ├── Arithmetic_input.qs │ │ │ ├── Arithmetic_output.txt │ │ │ ├── FunctionEval_input.qs │ │ │ ├── FunctionEval_output.txt │ │ │ ├── Inlining_input.qs │ │ │ ├── Inlining_output.txt │ │ │ ├── LoopUnrolling_input.qs │ │ │ ├── LoopUnrolling_output.txt │ │ │ ├── Miscellaneous_input.qs │ │ │ ├── Miscellaneous_output.txt │ │ │ ├── NoOp_input.qs │ │ │ ├── NoOp_output.txt │ │ │ ├── PartialEval_input.qs │ │ │ ├── PartialEval_output.txt │ │ │ ├── Reordering_input.qs │ │ │ ├── Reordering_output.txt │ │ │ ├── TypedParameters_input.qs │ │ │ └── TypedParameters_output.txt │ │ ├── OutputRecording.qs │ │ ├── PopulateCallGraph.qs │ │ ├── QirTests │ │ │ ├── QirCore.qs │ │ │ ├── QirTarget.qs │ │ │ ├── RepeatArray.ll │ │ │ ├── RepeatArray.qs │ │ │ ├── TestAliasCounts.ll │ │ │ ├── TestAliasCounts.qs │ │ │ ├── TestArrayLoop.ll │ │ │ ├── TestArrayLoop.qs │ │ │ ├── TestArrayUpdate.qs │ │ │ ├── TestArrayUpdate1.ll │ │ │ ├── TestArrayUpdate2.ll │ │ │ ├── TestArrayUpdate3.ll │ │ │ ├── TestArrayUpdate4.ll │ │ │ ├── TestArrayUpdate5.ll │ │ │ ├── TestBigInts.qs │ │ │ ├── TestBigInts1.ll │ │ │ ├── TestBigInts2.ll │ │ │ ├── TestBools.ll │ │ │ ├── TestBools.qs │ │ │ ├── TestBuiltIn.ll │ │ │ ├── TestBuiltIn.qs │ │ │ ├── TestBuiltInIntrinsics.qs │ │ │ ├── TestBuiltInIntrinsics1.ll │ │ │ ├── TestBuiltInIntrinsics2.ll │ │ │ ├── TestCaching.qs │ │ │ ├── TestCaching1.ll │ │ │ ├── TestCaching2.ll │ │ │ ├── TestCaching3.ll │ │ │ ├── TestConditional.qs │ │ │ ├── TestConditional1.ll │ │ │ ├── TestConditional2.ll │ │ │ ├── TestConditional3.ll │ │ │ ├── TestConditional4.ll │ │ │ ├── TestConditional5.ll │ │ │ ├── TestControlled.qs │ │ │ ├── TestControlled1.ll │ │ │ ├── TestControlled2.ll │ │ │ ├── TestDeclarations.qs │ │ │ ├── TestDeclarations1.ll │ │ │ ├── TestDeclarations2.ll │ │ │ ├── TestDeclarations3.ll │ │ │ ├── TestDeclarations4.ll │ │ │ ├── TestDeclarations5.ll │ │ │ ├── TestDeclarations6.ll │ │ │ ├── TestDeconstruct.ll │ │ │ ├── TestDeconstruct.qs │ │ │ ├── TestDeepNesting.ll │ │ │ ├── TestDeepNesting.qs │ │ │ ├── TestDoubles.ll │ │ │ ├── TestDoubles.qs │ │ │ ├── TestEntryPoint.qs │ │ │ ├── TestEntryPoint1.ll │ │ │ ├── TestEntryPoint2.ll │ │ │ ├── TestExpressions.ll │ │ │ ├── TestExpressions.qs │ │ │ ├── TestForLoop.ll │ │ │ ├── TestForLoop.qs │ │ │ ├── TestFunctors.ll │ │ │ ├── TestFunctors.qs │ │ │ ├── TestGenerics.qs │ │ │ ├── TestGenerics1.ll │ │ │ ├── TestGenerics2.ll │ │ │ ├── TestGenerics3.ll │ │ │ ├── TestGenerics4.ll │ │ │ ├── TestInline.ll │ │ │ ├── TestInline.qs │ │ │ ├── TestIntegers.ll │ │ │ ├── TestIntegers.qs │ │ │ ├── TestLibraryGeneration.qs │ │ │ ├── TestLibraryGeneration1.ll │ │ │ ├── TestLibraryGeneration2.ll │ │ │ ├── TestLibraryGeneration3.ll │ │ │ ├── TestLocalCallables.qs │ │ │ ├── TestLocalCallables1.ll │ │ │ ├── TestLocalCallables2.ll │ │ │ ├── TestLocalCallables3.ll │ │ │ ├── TestOpArgument.ll │ │ │ ├── TestOpArgument.qs │ │ │ ├── TestOpCall.qs │ │ │ ├── TestOpCall1.ll │ │ │ ├── TestOpCall2.ll │ │ │ ├── TestPartials.qs │ │ │ ├── TestPartials1.ll │ │ │ ├── TestPartials2.ll │ │ │ ├── TestPartials3.ll │ │ │ ├── TestPartials4.ll │ │ │ ├── TestPartials5.ll │ │ │ ├── TestPartials6.ll │ │ │ ├── TestPartials7.ll │ │ │ ├── TestPaulis.ll │ │ │ ├── TestPaulis.qs │ │ │ ├── TestRange.ll │ │ │ ├── TestRange.qs │ │ │ ├── TestReferenceCounts.qs │ │ │ ├── TestReferenceCounts1.ll │ │ │ ├── TestReferenceCounts2.ll │ │ │ ├── TestReferenceCounts3.ll │ │ │ ├── TestRepeat.qs │ │ │ ├── TestRepeat1.ll │ │ │ ├── TestRepeat2.ll │ │ │ ├── TestResults.ll │ │ │ ├── TestResults.qs │ │ │ ├── TestScoping.ll │ │ │ ├── TestScoping.qs │ │ │ ├── TestShortCircuiting.ll │ │ │ ├── TestShortCircuiting.qs │ │ │ ├── TestStrings.ll │ │ │ ├── TestStrings.qs │ │ │ ├── TestTargeting.ll │ │ │ ├── TestTargeting.qs │ │ │ ├── TestTargetingProfile.ll │ │ │ ├── TestTargetingProfile.qs │ │ │ ├── TestUdt.qs │ │ │ ├── TestUdt1.ll │ │ │ ├── TestUdt2.ll │ │ │ ├── TestUdtAccessor.ll │ │ │ ├── TestUdtAccessor.qs │ │ │ ├── TestUdtArgument.ll │ │ │ ├── TestUdtArgument.qs │ │ │ ├── TestUdtConstruction.ll │ │ │ ├── TestUdtConstruction.qs │ │ │ ├── TestUdtUpdate.qs │ │ │ ├── TestUdtUpdate1.ll │ │ │ ├── TestUdtUpdate2.ll │ │ │ ├── TestUsing.qs │ │ │ ├── TestUsing1.ll │ │ │ ├── TestUsing2.ll │ │ │ ├── TestWhile.ll │ │ │ └── TestWhile.qs │ │ ├── ResultComparison.qs │ │ ├── StringParsingTests │ │ │ ├── StringInterpolation.qs │ │ │ └── StringParsing.qs │ │ ├── Transformation.qs │ │ ├── TypeChecking.qs │ │ ├── TypeParameter.qs │ │ ├── Types.qs │ │ └── WholeFileTests │ │ │ ├── ConflictingAliases.qs │ │ │ ├── DuplicateAndConflictingAliases.qs │ │ │ ├── DuplicateOpens.qs │ │ │ └── OpenWithAlias.qs │ ├── TestUtils │ │ ├── Diagnostics.fs │ │ ├── Signatures.fs │ │ ├── TestUtils.fs │ │ └── Transformations.fs │ ├── Tests.Compiler.fsproj │ ├── TextTests.fs │ ├── TransformationTests.fs │ ├── TypeCheckingTests.fs │ └── TypeParameterTests.fs ├── Tests.LanguageServer │ ├── MsBuildDefaultsRegistration.cs │ ├── ProjectLoaderTests.cs │ ├── TestInput.cs │ ├── TestSetup.cs │ ├── TestUtils.cs │ ├── Tests.LanguageServer.csproj │ └── Tests.cs ├── Tests.RoslynWrapper │ ├── ArrayCreationTests.fs │ ├── AutoPropertyTests.fs │ ├── ClassTests.fs │ ├── Common.fs │ ├── CompilationUnitTests.fs │ ├── ConstructorTests.fs │ ├── ConversionOperatorTests.fs │ ├── EqualityOperatorTests.fs │ ├── FieldTests.fs │ ├── InterfaceTests.fs │ ├── LocalDeclarationTests.fs │ ├── MethodTests.fs │ ├── MiscellaneousTests.fs │ ├── NamespaceTests.fs │ ├── Program.fs │ ├── README.txt │ ├── StatementTests.fs │ ├── Tests.RoslynWrapper.fsproj │ └── TryCatchTests.fs ├── TextProcessor │ ├── CodeCompletion │ │ ├── CodeCompletion.fs │ │ ├── ExpressionParsing.fs │ │ ├── FragmentParsing.fs │ │ ├── ParsingPrimitives.fs │ │ └── TypeParsing.fs │ ├── ParsingPrimitives.fs │ ├── QsExpressionParsing.fs │ ├── QsFragmentParsing.fs │ ├── QsKeywords.fs │ ├── QsTypeParsing.fs │ ├── SyntaxBuilder.fs │ ├── SyntaxExtensions.fs │ ├── TextProcessing.fs │ └── TextProcessor.fsproj └── Transformations │ ├── Attributes.cs │ ├── BasicTransformations.cs │ ├── CallGraph │ ├── CallGraph.cs │ ├── CallGraphBuilder.cs │ ├── CallGraphWalker.cs │ ├── CallGraphWalkerBase.cs │ ├── ConcreteCallGraph.cs │ └── ConcreteCallGraphWalker.cs │ ├── ClassicallyControlled.cs │ ├── CodeTransformations.cs │ ├── Conjugations.cs │ ├── ContentLifting.cs │ ├── FunctorGeneration.cs │ ├── IntrinsicResolution.cs │ ├── LiftLambdas.cs │ ├── Monomorphization.cs │ ├── MonomorphizationValidation.cs │ ├── QsharpCodeOutput.cs │ ├── SearchAndReplace.cs │ ├── SyntaxTreeTrimming.cs │ ├── TargetInstructionInference.cs │ ├── Transformations.csproj │ ├── TypeResolutionCombination.cs │ └── Utils.cs ├── QsFmt ├── .vscode │ ├── launch.json │ └── tasks.json ├── App.Tests │ ├── App.Tests.fsproj │ ├── Examples │ │ ├── Example1.qs │ │ ├── Example2.qs │ │ ├── SubExamples1 │ │ │ ├── SubExample1.qs │ │ │ └── SubExample2.qs │ │ ├── SubExamples2 │ │ │ ├── NestedExamples │ │ │ │ ├── NestedExample1.qs │ │ │ │ └── NestedExample2.qs │ │ │ └── SubExample3.qs │ │ ├── SyntaxError.qs │ │ ├── TestProjects │ │ │ ├── OldApplication │ │ │ │ ├── Driver.cs │ │ │ │ ├── OldApplication.csproj │ │ │ │ └── Operation.qs │ │ │ ├── OldVersion │ │ │ │ ├── OldVersion.csproj │ │ │ │ └── Program.qs │ │ │ ├── ReferenceLibrary │ │ │ │ ├── Library.qs │ │ │ │ └── ReferenceLibrary.csproj │ │ │ ├── SimpleApplication │ │ │ │ ├── Excluded1.qs │ │ │ │ ├── Included1.qs │ │ │ │ ├── Program.qs │ │ │ │ ├── QSharpApplication1.csproj │ │ │ │ ├── SubFolder1 │ │ │ │ │ ├── Excluded2.qs │ │ │ │ │ ├── Included2.qs │ │ │ │ │ └── SubSubFolder │ │ │ │ │ │ ├── Excluded4.qs │ │ │ │ │ │ └── Included4.qs │ │ │ │ └── SubFolder2 │ │ │ │ │ ├── Excluded3.qs │ │ │ │ │ └── Included3.qs │ │ │ ├── SimpleLibrary │ │ │ │ ├── Excluded1.qs │ │ │ │ ├── Included1.qs │ │ │ │ ├── Library.qs │ │ │ │ ├── QSharpLibrary1.csproj │ │ │ │ ├── SubFolder1 │ │ │ │ │ ├── Excluded2.qs │ │ │ │ │ ├── Included2.qs │ │ │ │ │ └── SubSubFolder │ │ │ │ │ │ ├── Excluded4.qs │ │ │ │ │ │ └── Included4.qs │ │ │ │ └── SubFolder2 │ │ │ │ │ ├── Excluded3.qs │ │ │ │ │ └── Included3.qs │ │ │ └── SimpleTestProject │ │ │ │ ├── Excluded1.qs │ │ │ │ ├── Included1.qs │ │ │ │ ├── QSharpTestProject1.csproj │ │ │ │ ├── SubFolder1 │ │ │ │ ├── Excluded2.qs │ │ │ │ ├── Included2.qs │ │ │ │ └── SubSubFolder │ │ │ │ │ ├── Excluded4.qs │ │ │ │ │ └── Included4.qs │ │ │ │ ├── SubFolder2 │ │ │ │ ├── Excluded3.qs │ │ │ │ └── Included3.qs │ │ │ │ └── Tests.qs │ │ └── TestTarget │ │ │ ├── Excluded1.qs │ │ │ ├── Excluded2.qs │ │ │ ├── Included.qs │ │ │ ├── Program.qs │ │ │ └── TestTarget.csproj │ ├── ProjectTests.fs │ └── Tests.fs ├── App │ ├── App.fsproj │ ├── AssemblyInfo.fs │ ├── CommandLineArguments.fs │ ├── CommandLineArguments.fsi │ ├── DesignTimeBuild.fs │ ├── DesignTimeBuild.fsi │ ├── Program.fs │ ├── Program.fsi │ ├── Telemetry.fs │ └── Telemetry.fsi ├── Formatter.Tests │ ├── Discoverer.fs │ ├── Errors.fs │ ├── Examples.fs │ ├── FixedPoints.fs │ ├── Formatter.Tests.fsproj │ └── Tests.fs ├── Formatter │ ├── Errors.fs │ ├── Errors.fsi │ ├── Formatter.fs │ ├── Formatter.fsi │ ├── Formatter.fsproj │ ├── ParseTree │ │ ├── Expression.fs │ │ ├── Expression.fsi │ │ ├── Namespace.fs │ │ ├── Namespace.fsi │ │ ├── Node.fs │ │ ├── Node.fsi │ │ ├── Statement.fs │ │ ├── Statement.fsi │ │ ├── Type.fs │ │ └── Type.fsi │ ├── Printer.fs │ ├── Printer.fsi │ ├── Rules.fs │ ├── Rules.fsi │ ├── SyntaxTree │ │ ├── Expression.fs │ │ ├── Expression.fsi │ │ ├── Namespace.fs │ │ ├── Namespace.fsi │ │ ├── Node.fs │ │ ├── Node.fsi │ │ ├── Reducer.fs │ │ ├── Reducer.fsi │ │ ├── Rewriter.fs │ │ ├── Rewriter.fsi │ │ ├── Statement.fs │ │ ├── Statement.fsi │ │ ├── Type.fs │ │ └── Type.fsi │ ├── Utils.fs │ └── Utils.fsi ├── Parser │ ├── Parser.csproj │ └── Properties │ │ └── AssemblyInfo.cs └── README.md ├── QuantumSdk ├── DefaultItems │ ├── DefaultItems.props.v.template │ └── DefaultItems.targets ├── ProjectSystem │ ├── ProjectSystem.props │ ├── ProjectSystem.targets │ └── Rules │ │ ├── ProjectItemsSchema.xaml │ │ └── QSharpSourceFile.xaml ├── QuantumSdk.nuspec ├── README.md ├── Sdk │ ├── Sdk.props │ └── Sdk.targets └── Tools │ ├── BuildConfiguration │ ├── BuildConfiguration.csproj │ ├── Generate.cs │ ├── Options.cs │ └── Program.cs │ ├── Common │ └── DelaySign.cs │ ├── DefaultEntryPoint │ ├── DefaultEntryPoint.csproj │ └── Program.cs │ └── Tools.sln ├── Telemetry ├── .vscode │ ├── launch.json │ └── tasks.json ├── Build │ ├── Build.ps1 │ ├── Test.ps1 │ ├── test-coverage.ps1 │ └── update-aria-package.ps1 ├── Library │ ├── Commands │ │ ├── CommandBase.cs │ │ ├── CommandType.cs │ │ ├── ICommandProcessor.cs │ │ ├── IOutOfProcessSerializer.cs │ │ ├── LogEventCommand.cs │ │ ├── QuitCommand.cs │ │ ├── SetContextCommand.cs │ │ └── SimpleYamlSerializer.cs │ ├── DataContracts │ │ ├── PiiDataAttribute.cs │ │ ├── SerializeJsonAttribute.cs │ │ ├── TelemetryExceptionRecord.cs │ │ └── TelemetryPropertyType.cs │ ├── DebugConsoleLogger.cs │ ├── ExceptionLoggingHelper.cs │ ├── FSharpOptionHelper.cs │ ├── OutOfProcess │ │ ├── OutOfProcessLogger.cs │ │ └── OutOfProcessServer.cs │ ├── Telemetry.csproj │ ├── TelemetryManager.cs │ ├── TelemetryManagerConfig.cs │ ├── TelemetryManagerConstants.cs │ ├── TelemetryManagerInstance.cs │ └── TypeConversionHelper.cs ├── Samples │ ├── CSharp │ │ ├── CSharp.csproj │ │ └── Program.cs │ └── FSharp │ │ ├── FSharp.fsproj │ │ └── Program.fs ├── Telemetry.sln ├── Tests.OutOfProcessExe │ ├── OutOfProcessExe.csproj │ └── Program.cs ├── Tests │ ├── CommandsTests.cs │ ├── HelpersTests.cs │ ├── OutOfProcess │ │ ├── OutOfProcessCommandsTests.cs │ │ └── SimpleYamlSerializerTests.cs │ ├── TelemetryManagerTests.cs │ ├── TestCommon.cs │ └── Tests.csproj └── readme.md ├── VSCodeExtension ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── .vscodeignore ├── BUILDING.md ├── MS_Quantum_Spot_Dev-200.png ├── README.md ├── language-configuration.json ├── package-lock.json.v.template ├── package.json.v.template ├── snippets │ ├── csharp.json │ └── qsharp.json ├── src │ ├── commands.ts │ ├── decompress-zip.d.ts │ ├── dotnet.ts │ ├── extension.ts │ ├── languageServer.ts │ ├── packageInfo.ts │ ├── sanitize-namespace-name.ts │ ├── telemetry.ts │ └── yeoman-generator.ts ├── syntaxes │ └── qsharp.tmLanguage.json ├── templates │ ├── application │ │ ├── .gitignore │ │ ├── Application.csproj.v.template │ │ └── Program.qs │ ├── ionq │ │ ├── .gitignore │ │ ├── IonQApplication.csproj.v.template │ │ └── Program.qs │ ├── library │ │ ├── .gitignore │ │ ├── Library.csproj.v.template │ │ └── Library.qs │ ├── quantinuum │ │ ├── .gitignore │ │ ├── Program.qs │ │ └── QuantinuumApplication.csproj.v.template │ └── unittest │ │ ├── .gitignore │ │ ├── Test.csproj.v.template │ │ └── Tests.qs ├── test │ ├── README.md │ ├── Run.ps1 │ └── test.ts ├── tsconfig.json └── tslint.json └── VisualStudioExtension ├── .gitignore ├── QSharpAppTemplate ├── AppProjectTemplate.xml.v.template ├── AssemblyInfo.cs ├── MS_Quantum_Spot_Dev-32.png ├── Program.qs ├── Properties │ └── AssemblyInfo.cs ├── QSharpAppTemplate.csproj └── QSharpAppTemplate.vstemplate ├── QSharpFileTemplate ├── MS_Quantum_Spot_Dev-32.png ├── Operation.qs ├── Properties │ └── AssemblyInfo.cs ├── QSharpFileTemplate.csproj └── QSharpFileTemplate.vstemplate ├── QSharpLibTemplate ├── AssemblyInfo.cs ├── LibProjectTemplate.xml.v.template ├── Library.qs ├── MS_Quantum_Spot_Dev-32.png ├── Properties │ └── AssemblyInfo.cs ├── QSharpLibTemplate.csproj └── QSharpLibTemplate.vstemplate ├── QSharpTestTemplate ├── AssemblyInfo.cs ├── MS_Quantum_Spot_Dev-32.png ├── Properties │ └── AssemblyInfo.cs ├── QSharpTestTemplate.csproj ├── QSharpTestTemplate.vstemplate ├── TestProjectTemplate.xml.v.template └── Tests.qs ├── QSharpVsix ├── LICENSE.txt ├── MS_Quantum_Spot_Dev-1024.png ├── MS_Quantum_Spot_Dev-200.png ├── MS_Quantum_Spot_Dev-32.png ├── Properties │ └── AssemblyInfo.cs ├── QSharpVsix.csproj ├── QsContentTypeDefinition.cs ├── QsLanguageClient.cs ├── QsSmartIndent.cs ├── Telemetry.cs ├── source.extension.vsixmanifest.v.template ├── syntax.pkgdef └── tags.txt ├── QsharpIonQAppTemplate ├── AssemblyInfo.cs ├── IonQAppProjectTemplate.xml.v.template ├── MS_Quantum_Spot_Dev-32.png ├── Program.qs ├── Properties │ └── AssemblyInfo.cs ├── QSharpIonQAppTemplate.csproj └── QSharpIonQAppTemplate.vstemplate ├── QsharpQuantinuumAppTemplate ├── AssemblyInfo.cs ├── MS_Quantum_Spot_Dev-32.png ├── Program.qs ├── Properties │ └── AssemblyInfo.cs ├── QSharpQuantinuumAppTemplate.csproj ├── QSharpQuantinuumAppTemplate.vstemplate └── QuantinuumAppProjectTemplate.xml.v.template └── README.md /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/.devcontainer/README.md -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/devskim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/.github/workflows/devskim.yml -------------------------------------------------------------------------------- /.github/workflows/gh-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/.github/workflows/gh-sync.yml -------------------------------------------------------------------------------- /.github/workflows/qdk-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/.github/workflows/qdk-sync.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/.gitmodules -------------------------------------------------------------------------------- /.sscignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/.sscignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/NuGet.config -------------------------------------------------------------------------------- /PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/PRIVACY.md -------------------------------------------------------------------------------- /QsCompiler.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/QsCompiler.sln -------------------------------------------------------------------------------- /QsFmt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/QsFmt.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/SECURITY.md -------------------------------------------------------------------------------- /VisualStudioExtension.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/VisualStudioExtension.sln -------------------------------------------------------------------------------- /bootstrap.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/bootstrap.ps1 -------------------------------------------------------------------------------- /examples/CompilerExtensions/CompilerExtensions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/CompilerExtensions/CompilerExtensions.sln -------------------------------------------------------------------------------- /examples/CompilerExtensions/CustomExtension/Display.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/CompilerExtensions/CustomExtension/Display.cs -------------------------------------------------------------------------------- /examples/CompilerExtensions/CustomExtension/Optimize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/CompilerExtensions/CustomExtension/Optimize.cs -------------------------------------------------------------------------------- /examples/CompilerExtensions/CustomExtension/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/CompilerExtensions/CustomExtension/Utils.cs -------------------------------------------------------------------------------- /examples/CompilerExtensions/Demo/Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/CompilerExtensions/Demo/Demo.csproj -------------------------------------------------------------------------------- /examples/CompilerExtensions/Demo/Program.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/CompilerExtensions/Demo/Program.qs -------------------------------------------------------------------------------- /examples/CompilerExtensions/ExtensionPackage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/CompilerExtensions/ExtensionPackage/README.md -------------------------------------------------------------------------------- /examples/QIR/Development/Development.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/Development/Development.csproj -------------------------------------------------------------------------------- /examples/QIR/Development/Program.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/Development/Program.qs -------------------------------------------------------------------------------- /examples/QIR/Development/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/Development/README.md -------------------------------------------------------------------------------- /examples/QIR/Emission/Emission.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/Emission/Emission.csproj -------------------------------------------------------------------------------- /examples/QIR/Emission/Program.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/Emission/Program.qs -------------------------------------------------------------------------------- /examples/QIR/Emission/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/Emission/README.md -------------------------------------------------------------------------------- /examples/QIR/JITCompilation/Hello.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/JITCompilation/Hello.ll -------------------------------------------------------------------------------- /examples/QIR/JITCompilation/QIRinit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/JITCompilation/QIRinit.cpp -------------------------------------------------------------------------------- /examples/QIR/JITCompilation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/JITCompilation/README.md -------------------------------------------------------------------------------- /examples/QIR/JITCompilation/qir-jit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/JITCompilation/qir-jit.py -------------------------------------------------------------------------------- /examples/QIR/Optimization/Hello/Hello.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/Optimization/Hello/Hello.csproj -------------------------------------------------------------------------------- /examples/QIR/Optimization/Hello/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/Optimization/Hello/Main.cpp -------------------------------------------------------------------------------- /examples/QIR/Optimization/Hello/Program.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/Optimization/Hello/Program.qs -------------------------------------------------------------------------------- /examples/QIR/Optimization/Hello/qir/Hello-dce-inline.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/Optimization/Hello/qir/Hello-dce-inline.ll -------------------------------------------------------------------------------- /examples/QIR/Optimization/Hello/qir/Hello-dce.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/Optimization/Hello/qir/Hello-dce.ll -------------------------------------------------------------------------------- /examples/QIR/Optimization/Hello/qir/Hello-o3.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/Optimization/Hello/qir/Hello-o3.ll -------------------------------------------------------------------------------- /examples/QIR/Optimization/Hello/qir/Hello.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/Optimization/Hello/qir/Hello.ll -------------------------------------------------------------------------------- /examples/QIR/Optimization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/Optimization/README.md -------------------------------------------------------------------------------- /examples/QIR/QIR.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/QIR.sln -------------------------------------------------------------------------------- /examples/QIR/Simulation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/Simulation/README.md -------------------------------------------------------------------------------- /examples/QIR/Simulation/SimulatorTemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/Simulation/SimulatorTemplate.cpp -------------------------------------------------------------------------------- /examples/QIR/Simulation/StateSimulator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/Simulation/StateSimulator/README.md -------------------------------------------------------------------------------- /examples/QIR/Simulation/StateSimulator/StateSimulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/Simulation/StateSimulator/StateSimulation.cpp -------------------------------------------------------------------------------- /examples/QIR/Simulation/StateSimulator/StateSimulator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/Simulation/StateSimulator/StateSimulator.hpp -------------------------------------------------------------------------------- /examples/QIR/Simulation/TraceSimulator/QubitManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/Simulation/TraceSimulator/QubitManager.hpp -------------------------------------------------------------------------------- /examples/QIR/Simulation/TraceSimulator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/Simulation/TraceSimulator/README.md -------------------------------------------------------------------------------- /examples/QIR/Simulation/TraceSimulator/TraceSimulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/Simulation/TraceSimulator/TraceSimulation.cpp -------------------------------------------------------------------------------- /examples/QIR/Simulation/TraceSimulator/TraceSimulator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/examples/QIR/Simulation/TraceSimulator/TraceSimulator.hpp -------------------------------------------------------------------------------- /fsharplint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/fsharplint.json -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/global.json -------------------------------------------------------------------------------- /llvm-build/GenerateLLVM.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/llvm-build/GenerateLLVM.rsp -------------------------------------------------------------------------------- /llvm-build/Microsoft.Quantum.LlvmBindings.Native.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/llvm-build/Microsoft.Quantum.LlvmBindings.Native.nuspec -------------------------------------------------------------------------------- /llvm-build/header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/llvm-build/header.txt -------------------------------------------------------------------------------- /llvm-build/libllvm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/llvm-build/libllvm.ps1 -------------------------------------------------------------------------------- /llvm-build/llvm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/llvm-build/llvm.cmake -------------------------------------------------------------------------------- /llvm-build/llvm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/llvm-build/llvm.ps1 -------------------------------------------------------------------------------- /llvm-build/llvm.tag.txt: -------------------------------------------------------------------------------- 1 | llvmorg-14.0.6 -------------------------------------------------------------------------------- /llvm-build/manylinux.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/llvm-build/manylinux.Dockerfile -------------------------------------------------------------------------------- /llvm-build/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/llvm-build/utils.ps1 -------------------------------------------------------------------------------- /llvm-build/vcvars.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/llvm-build/vcvars.ps1 -------------------------------------------------------------------------------- /omnisharp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/omnisharp.json -------------------------------------------------------------------------------- /src/Common/AssemblyCommon.cs.v.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Common/AssemblyCommon.cs.v.template -------------------------------------------------------------------------------- /src/Common/AssemblyCommon.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Common/AssemblyCommon.props -------------------------------------------------------------------------------- /src/Common/DelaySign.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Common/DelaySign.props -------------------------------------------------------------------------------- /src/Common/stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Common/stylecop.json -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Documentation/DocumentationGenerator/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Documentation/DocumentationGenerator/Extensions.cs -------------------------------------------------------------------------------- /src/Documentation/DocumentationParser/DocBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Documentation/DocumentationParser/DocBuilder.cs -------------------------------------------------------------------------------- /src/Documentation/DocumentationParser/DocCallable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Documentation/DocumentationParser/DocCallable.cs -------------------------------------------------------------------------------- /src/Documentation/DocumentationParser/DocComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Documentation/DocumentationParser/DocComment.cs -------------------------------------------------------------------------------- /src/Documentation/DocumentationParser/DocItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Documentation/DocumentationParser/DocItem.cs -------------------------------------------------------------------------------- /src/Documentation/DocumentationParser/DocNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Documentation/DocumentationParser/DocNamespace.cs -------------------------------------------------------------------------------- /src/Documentation/DocumentationParser/DocUdt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Documentation/DocumentationParser/DocUdt.cs -------------------------------------------------------------------------------- /src/Documentation/DocumentationParser/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Documentation/DocumentationParser/Utils.cs -------------------------------------------------------------------------------- /src/Documentation/Summarizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Documentation/Summarizer/README.md -------------------------------------------------------------------------------- /src/Documentation/Summarizer/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Documentation/Summarizer/requirements.txt -------------------------------------------------------------------------------- /src/Documentation/Summarizer/summarize_documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Documentation/Summarizer/summarize_documentation.py -------------------------------------------------------------------------------- /src/Documentation/Tests.DocGenerator/DocParsingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Documentation/Tests.DocGenerator/DocParsingTests.cs -------------------------------------------------------------------------------- /src/Documentation/Tests.DocGenerator/DocWritingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Documentation/Tests.DocGenerator/DocWritingTests.cs -------------------------------------------------------------------------------- /src/Documentation/Tests.DocGenerator/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Documentation/Tests.DocGenerator/Utils.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/Quantum.App1/Program.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/ProjectTemplates/Quantum.App1/Program.qs -------------------------------------------------------------------------------- /src/ProjectTemplates/Quantum.Honeywell.App1/Program.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/ProjectTemplates/Quantum.Honeywell.App1/Program.qs -------------------------------------------------------------------------------- /src/ProjectTemplates/Quantum.IonQ.App1/Program.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/ProjectTemplates/Quantum.IonQ.App1/Program.qs -------------------------------------------------------------------------------- /src/ProjectTemplates/Quantum.Library1/Library.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/ProjectTemplates/Quantum.Library1/Library.qs -------------------------------------------------------------------------------- /src/ProjectTemplates/Quantum.Quantinuum.App1/Program.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/ProjectTemplates/Quantum.Quantinuum.App1/Program.qs -------------------------------------------------------------------------------- /src/ProjectTemplates/Quantum.Test1/Tests.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/ProjectTemplates/Quantum.Test1/Tests.qs -------------------------------------------------------------------------------- /src/ProjectTemplates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/ProjectTemplates/README.md -------------------------------------------------------------------------------- /src/QsCompiler/.gitignore: -------------------------------------------------------------------------------- 1 | Compiler.nuspec -------------------------------------------------------------------------------- /src/QsCompiler/BondSchemas/BondSchemaTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/BondSchemas/BondSchemaTranslator.cs -------------------------------------------------------------------------------- /src/QsCompiler/BondSchemas/BondSchemas.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/BondSchemas/BondSchemas.csproj -------------------------------------------------------------------------------- /src/QsCompiler/BondSchemas/CompilerDataStructures.bond: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/BondSchemas/CompilerDataStructures.bond -------------------------------------------------------------------------------- /src/QsCompiler/BondSchemas/CompilerObjectTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/BondSchemas/CompilerObjectTranslator.cs -------------------------------------------------------------------------------- /src/QsCompiler/BondSchemas/Protocols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/BondSchemas/Protocols.cs -------------------------------------------------------------------------------- /src/QsCompiler/CSharpGeneration/.gitignore: -------------------------------------------------------------------------------- 1 | CSharpGeneration.nuspec 2 | -------------------------------------------------------------------------------- /src/QsCompiler/CSharpGeneration/CSharpGeneration.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CSharpGeneration/CSharpGeneration.fsproj -------------------------------------------------------------------------------- /src/QsCompiler/CSharpGeneration/Context.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CSharpGeneration/Context.fs -------------------------------------------------------------------------------- /src/QsCompiler/CSharpGeneration/EntryPoint.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CSharpGeneration/EntryPoint.fs -------------------------------------------------------------------------------- /src/QsCompiler/CSharpGeneration/FindNuspecReferences.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CSharpGeneration/FindNuspecReferences.ps1 -------------------------------------------------------------------------------- /src/QsCompiler/CSharpGeneration/RewriteStep.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CSharpGeneration/RewriteStep.fs -------------------------------------------------------------------------------- /src/QsCompiler/CSharpGeneration/RewriteStep.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CSharpGeneration/RewriteStep.props -------------------------------------------------------------------------------- /src/QsCompiler/CSharpGeneration/SimulationCode.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CSharpGeneration/SimulationCode.fs -------------------------------------------------------------------------------- /src/QsCompiler/CommandLineTool/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CommandLineTool/App.config -------------------------------------------------------------------------------- /src/QsCompiler/CommandLineTool/CommandLineTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CommandLineTool/CommandLineTool.csproj -------------------------------------------------------------------------------- /src/QsCompiler/CommandLineTool/Commands/Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CommandLineTool/Commands/Build.cs -------------------------------------------------------------------------------- /src/QsCompiler/CommandLineTool/Commands/Diagnose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CommandLineTool/Commands/Diagnose.cs -------------------------------------------------------------------------------- /src/QsCompiler/CommandLineTool/Commands/Format.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CommandLineTool/Commands/Format.cs -------------------------------------------------------------------------------- /src/QsCompiler/CommandLineTool/CompilationTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CommandLineTool/CompilationTracker.cs -------------------------------------------------------------------------------- /src/QsCompiler/CommandLineTool/LoadContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CommandLineTool/LoadContext.cs -------------------------------------------------------------------------------- /src/QsCompiler/CommandLineTool/Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CommandLineTool/Logging.cs -------------------------------------------------------------------------------- /src/QsCompiler/CommandLineTool/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CommandLineTool/Options.cs -------------------------------------------------------------------------------- /src/QsCompiler/CommandLineTool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CommandLineTool/Program.cs -------------------------------------------------------------------------------- /src/QsCompiler/CompilationManager/AssemblyLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CompilationManager/AssemblyLoader.cs -------------------------------------------------------------------------------- /src/QsCompiler/CompilationManager/CompilationUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CompilationManager/CompilationUnit.cs -------------------------------------------------------------------------------- /src/QsCompiler/CompilationManager/ContextBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CompilationManager/ContextBuilder.cs -------------------------------------------------------------------------------- /src/QsCompiler/CompilationManager/DataStructures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CompilationManager/DataStructures.cs -------------------------------------------------------------------------------- /src/QsCompiler/CompilationManager/DiagnosticTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CompilationManager/DiagnosticTools.cs -------------------------------------------------------------------------------- /src/QsCompiler/CompilationManager/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CompilationManager/Diagnostics.cs -------------------------------------------------------------------------------- /src/QsCompiler/CompilationManager/FileContentException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CompilationManager/FileContentException.cs -------------------------------------------------------------------------------- /src/QsCompiler/CompilationManager/FileContentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CompilationManager/FileContentManager.cs -------------------------------------------------------------------------------- /src/QsCompiler/CompilationManager/PerformanceTracking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CompilationManager/PerformanceTracking.cs -------------------------------------------------------------------------------- /src/QsCompiler/CompilationManager/Process.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CompilationManager/Process.cs -------------------------------------------------------------------------------- /src/QsCompiler/CompilationManager/ProcessingQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CompilationManager/ProcessingQueue.cs -------------------------------------------------------------------------------- /src/QsCompiler/CompilationManager/ProjectManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CompilationManager/ProjectManager.cs -------------------------------------------------------------------------------- /src/QsCompiler/CompilationManager/ScopeTracking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CompilationManager/ScopeTracking.cs -------------------------------------------------------------------------------- /src/QsCompiler/CompilationManager/TextProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CompilationManager/TextProcessor.cs -------------------------------------------------------------------------------- /src/QsCompiler/CompilationManager/TypeChecking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CompilationManager/TypeChecking.cs -------------------------------------------------------------------------------- /src/QsCompiler/CompilationManager/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/CompilationManager/Utils.cs -------------------------------------------------------------------------------- /src/QsCompiler/Compiler/CompilationLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Compiler/CompilationLoader.cs -------------------------------------------------------------------------------- /src/QsCompiler/Compiler/Compiler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Compiler/Compiler.csproj -------------------------------------------------------------------------------- /src/QsCompiler/Compiler/Compiler.nuspec.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Compiler/Compiler.nuspec.template -------------------------------------------------------------------------------- /src/QsCompiler/Compiler/FindNuspecReferences.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Compiler/FindNuspecReferences.ps1 -------------------------------------------------------------------------------- /src/QsCompiler/Compiler/FunctorGeneration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Compiler/FunctorGeneration.cs -------------------------------------------------------------------------------- /src/QsCompiler/Compiler/LoadedStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Compiler/LoadedStep.cs -------------------------------------------------------------------------------- /src/QsCompiler/Compiler/Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Compiler/Logging.cs -------------------------------------------------------------------------------- /src/QsCompiler/Compiler/MetadataGeneration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Compiler/MetadataGeneration.cs -------------------------------------------------------------------------------- /src/QsCompiler/Compiler/PluginInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Compiler/PluginInterface.cs -------------------------------------------------------------------------------- /src/QsCompiler/Compiler/RewriteSteps/FullPreEvaluation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Compiler/RewriteSteps/FullPreEvaluation.cs -------------------------------------------------------------------------------- /src/QsCompiler/Compiler/RewriteSteps/FunctorGeneration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Compiler/RewriteSteps/FunctorGeneration.cs -------------------------------------------------------------------------------- /src/QsCompiler/Compiler/RewriteSteps/LiftLambdas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Compiler/RewriteSteps/LiftLambdas.cs -------------------------------------------------------------------------------- /src/QsCompiler/Compiler/RewriteSteps/Monomorphization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Compiler/RewriteSteps/Monomorphization.cs -------------------------------------------------------------------------------- /src/QsCompiler/Compiler/RewriteSteps/SyntaxTreeTrimming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Compiler/RewriteSteps/SyntaxTreeTrimming.cs -------------------------------------------------------------------------------- /src/QsCompiler/Core/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Core/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/QsCompiler/Core/ConstructorExtensions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Core/ConstructorExtensions.fs -------------------------------------------------------------------------------- /src/QsCompiler/Core/Core.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Core/Core.fsproj -------------------------------------------------------------------------------- /src/QsCompiler/Core/DeclarationHeaders.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Core/DeclarationHeaders.fs -------------------------------------------------------------------------------- /src/QsCompiler/Core/Dependencies.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Core/Dependencies.fs -------------------------------------------------------------------------------- /src/QsCompiler/Core/SymbolResolution.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Core/SymbolResolution.fs -------------------------------------------------------------------------------- /src/QsCompiler/Core/SymbolTable/Namespace.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Core/SymbolTable/Namespace.fs -------------------------------------------------------------------------------- /src/QsCompiler/Core/SymbolTable/NamespaceManager.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Core/SymbolTable/NamespaceManager.fs -------------------------------------------------------------------------------- /src/QsCompiler/Core/SymbolTable/PartialNamespace.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Core/SymbolTable/PartialNamespace.fs -------------------------------------------------------------------------------- /src/QsCompiler/Core/SymbolTable/SymbolNotFoundException.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Core/SymbolTable/SymbolNotFoundException.fs -------------------------------------------------------------------------------- /src/QsCompiler/Core/SyntaxGenerator.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Core/SyntaxGenerator.fs -------------------------------------------------------------------------------- /src/QsCompiler/Core/SyntaxTreeExtensions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Core/SyntaxTreeExtensions.fs -------------------------------------------------------------------------------- /src/QsCompiler/Core/Transformations/TypeTransformation.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Core/Transformations/TypeTransformation.fs -------------------------------------------------------------------------------- /src/QsCompiler/Core/Utils.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Core/Utils.fs -------------------------------------------------------------------------------- /src/QsCompiler/DataStructures/Capability.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/DataStructures/Capability.fs -------------------------------------------------------------------------------- /src/QsCompiler/DataStructures/Capability.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/DataStructures/Capability.fsi -------------------------------------------------------------------------------- /src/QsCompiler/DataStructures/DataStructures.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/DataStructures/DataStructures.fsproj -------------------------------------------------------------------------------- /src/QsCompiler/DataStructures/DataTypes.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/DataStructures/DataTypes.fs -------------------------------------------------------------------------------- /src/QsCompiler/DataStructures/Diagnostics.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/DataStructures/Diagnostics.fs -------------------------------------------------------------------------------- /src/QsCompiler/DataStructures/Documentation.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/DataStructures/Documentation.fs -------------------------------------------------------------------------------- /src/QsCompiler/DataStructures/ErrorHandling.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/DataStructures/ErrorHandling.fs -------------------------------------------------------------------------------- /src/QsCompiler/DataStructures/ReservedKeywords.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/DataStructures/ReservedKeywords.fs -------------------------------------------------------------------------------- /src/QsCompiler/DataStructures/Serialization.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/DataStructures/Serialization.fs -------------------------------------------------------------------------------- /src/QsCompiler/DataStructures/SymbolInformation.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/DataStructures/SymbolInformation.fs -------------------------------------------------------------------------------- /src/QsCompiler/DataStructures/SyntaxTokens.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/DataStructures/SyntaxTokens.fs -------------------------------------------------------------------------------- /src/QsCompiler/DataStructures/SyntaxTree.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/DataStructures/SyntaxTree.fs -------------------------------------------------------------------------------- /src/QsCompiler/LanguageServer/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LanguageServer/.editorconfig -------------------------------------------------------------------------------- /src/QsCompiler/LanguageServer/Communication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LanguageServer/Communication.cs -------------------------------------------------------------------------------- /src/QsCompiler/LanguageServer/EditorState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LanguageServer/EditorState.cs -------------------------------------------------------------------------------- /src/QsCompiler/LanguageServer/EventQueues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LanguageServer/EventQueues.cs -------------------------------------------------------------------------------- /src/QsCompiler/LanguageServer/FileSystemWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LanguageServer/FileSystemWatcher.cs -------------------------------------------------------------------------------- /src/QsCompiler/LanguageServer/LanguageServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LanguageServer/LanguageServer.cs -------------------------------------------------------------------------------- /src/QsCompiler/LanguageServer/LanguageServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LanguageServer/LanguageServer.csproj -------------------------------------------------------------------------------- /src/QsCompiler/LanguageServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LanguageServer/Program.cs -------------------------------------------------------------------------------- /src/QsCompiler/LanguageServer/ProjectLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LanguageServer/ProjectLoader.cs -------------------------------------------------------------------------------- /src/QsCompiler/LanguageServer/SynchronizationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LanguageServer/SynchronizationContext.cs -------------------------------------------------------------------------------- /src/QsCompiler/LanguageServer/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LanguageServer/Utils.cs -------------------------------------------------------------------------------- /src/QsCompiler/LanguageServer/global.language-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LanguageServer/global.language-server.json -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/BitcodeModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/BitcodeModule.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Context.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DataLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DataLayout.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DIBasicType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DIBasicType.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DICompileUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DICompileUnit.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DICompositeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DICompositeType.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DIDerivedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DIDerivedType.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DIEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DIEnumerator.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DIExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DIExpression.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DIFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DIFile.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DIGlobalVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DIGlobalVariable.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DIImportedEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DIImportedEntity.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DILexicalBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DILexicalBlock.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DILocalScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DILocalScope.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DILocalVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DILocalVariable.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DILocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DILocation.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DIMacro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DIMacro.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DIMacroFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DIMacroFile.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DIMacroNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DIMacroNode.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DIMacroNodeArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DIMacroNodeArray.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DIModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DIModule.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DINamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DINamespace.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DINode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DINode.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DINodeArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DINodeArray.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DIObjCProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DIObjCProperty.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DIScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DIScope.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DIScopeArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DIScopeArray.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DISubProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DISubProgram.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DISubRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DISubRange.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DISubroutineType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DISubroutineType.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DIType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DIType.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DITypeArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DITypeArray.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DIVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DIVariable.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DebugArrayType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DebugArrayType.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DebugBasicType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DebugBasicType.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DebugFunctionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DebugFunctionType.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DebugInfoBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DebugInfoBuilder.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DebugMemberInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DebugMemberInfo.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DebugMemberLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DebugMemberLayout.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DebugPointerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DebugPointerType.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DebugStructType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DebugStructType.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DebugType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DebugType.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DebugUnionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DebugUnionType.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/DwarfEnumerations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/DwarfEnumerations.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DebugInfo/GenericDINode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DebugInfo/GenericDINode.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/DisposableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/DisposableObject.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/ExtensiblePropertyContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/ExtensiblePropertyContainer.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Extensions/MarshaledString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Extensions/MarshaledString.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Extensions/SpanExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Extensions/SpanExtensions.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/HandleInterningMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/HandleInterningMap.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/IBitcodeModuleFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/IBitcodeModuleFactory.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/IHandleInterning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/IHandleInterning.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/ILibLlvm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/ILibLlvm.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/IOperandCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/IOperandCollection.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/Alloca.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/Alloca.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/BinaryOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/BinaryOperator.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/BitCast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/BitCast.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/Branch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/Branch.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/Cast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/Cast.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/CatchSwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/CatchSwitch.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/Cmp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/Cmp.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/DebugDeclare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/DebugDeclare.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/ExtractElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/ExtractElement.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/ExtractValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/ExtractValue.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/FCmp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/FCmp.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/FPExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/FPExt.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/FPToSI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/FPToSI.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/FPToUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/FPToUI.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/FPTrunc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/FPTrunc.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/Fence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/Fence.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/GetElementPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/GetElementPtr.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/IndirectBranch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/IndirectBranch.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/InsertElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/InsertElement.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/InsertValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/InsertValue.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/Instruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/Instruction.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/IntCmp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/IntCmp.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/IntToPointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/IntToPointer.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/Intrinsic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/Intrinsic.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/Load.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/Load.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/MemCpy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/MemCpy.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/MemIntrinsic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/MemIntrinsic.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/MemMove.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/MemMove.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/MemSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/MemSet.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/PhiNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/PhiNode.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/PointerToInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/PointerToInt.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/Predicates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/Predicates.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/SIToFP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/SIToFP.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/ShuffleVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/ShuffleVector.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/SignExtend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/SignExtend.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/Store.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/Terminator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/Terminator.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/Trunc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/Trunc.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/UIToFP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/UIToFP.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/UnaryOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/UnaryOperator.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/Unreachable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/Unreachable.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/UserOp1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/UserOp1.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/UserOp2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/UserOp2.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/VAArg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/VAArg.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Instructions/ZeroExtend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Instructions/ZeroExtend.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Interop/LLVM.Manual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Interop/LLVM.Manual.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Interop/LLVMAttributeIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Interop/LLVMAttributeIndex.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Interop/LLVMAttributeRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Interop/LLVMAttributeRef.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Interop/LLVMBasicBlockRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Interop/LLVMBasicBlockRef.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Interop/LLVMBinaryRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Interop/LLVMBinaryRef.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Interop/LLVMBuilderRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Interop/LLVMBuilderRef.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Interop/LLVMComdatRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Interop/LLVMComdatRef.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Interop/LLVMContextRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Interop/LLVMContextRef.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Interop/LLVMDIBuilderRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Interop/LLVMDIBuilderRef.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Interop/LLVMErrorRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Interop/LLVMErrorRef.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Interop/LLVMErrorTypeId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Interop/LLVMErrorTypeId.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Interop/LLVMGenericValueRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Interop/LLVMGenericValueRef.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Interop/LLVMMemoryBufferRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Interop/LLVMMemoryBufferRef.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Interop/LLVMMetadataKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Interop/LLVMMetadataKind.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Interop/LLVMMetadataRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Interop/LLVMMetadataRef.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Interop/LLVMModuleFlagEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Interop/LLVMModuleFlagEntry.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Interop/LLVMModuleRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Interop/LLVMModuleRef.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Interop/LLVMNamedMDNodeRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Interop/LLVMNamedMDNodeRef.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Interop/LLVMObjectFileRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Interop/LLVMObjectFileRef.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Interop/LLVMPassRegistryRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Interop/LLVMPassRegistryRef.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Interop/LLVMTargetDataRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Interop/LLVMTargetDataRef.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Interop/LLVMTargetRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Interop/LLVMTargetRef.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Interop/LLVMTypeRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Interop/LLVMTypeRef.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Interop/LLVMUseRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Interop/LLVMUseRef.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Interop/LLVMValueRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Interop/LLVMValueRef.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Library.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/LlvmBindings.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/LlvmBindings.csproj -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/MemoryBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/MemoryBuffer.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Metadata/ConstantAsMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Metadata/ConstantAsMetadata.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Metadata/LlvmMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Metadata/LlvmMetadata.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Metadata/LocalAsMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Metadata/LocalAsMetadata.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Metadata/MDNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Metadata/MDNode.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Metadata/MDString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Metadata/MDString.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Metadata/MDTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Metadata/MDTuple.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Metadata/MetadataAsValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Metadata/MetadataAsValue.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Metadata/ModuleFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Metadata/ModuleFlag.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Metadata/NamedMDNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Metadata/NamedMDNode.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Metadata/OperandBundleNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Metadata/OperandBundleNames.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Metadata/ValueAsMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Metadata/ValueAsMetadata.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/README.md -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/ThreadContextCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/ThreadContextCache.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Types/ArrayType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Types/ArrayType.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Types/FunctionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Types/FunctionType.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Types/ITypeRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Types/ITypeRef.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Types/PointerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Types/PointerType.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Types/SequenceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Types/SequenceType.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Types/StructType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Types/StructType.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Types/TypeRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Types/TypeRef.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Types/VectorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Types/VectorType.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Values/Argument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Values/Argument.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Values/AttributeValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Values/AttributeValue.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Values/BasicBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Values/BasicBlock.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Values/BasicBlockCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Values/BasicBlockCollection.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Values/Constant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Values/Constant.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Values/ConstantAggregate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Values/ConstantAggregate.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Values/ConstantArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Values/ConstantArray.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Values/ConstantData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Values/ConstantData.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Values/ConstantDataArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Values/ConstantDataArray.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Values/ConstantFP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Values/ConstantFP.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Values/ConstantInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Values/ConstantInt.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Values/GlobalAlias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Values/GlobalAlias.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Values/GlobalIndirectSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Values/GlobalIndirectSymbol.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Values/GlobalObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Values/GlobalObject.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Values/GlobalValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Values/GlobalValue.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Values/GlobalVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Values/GlobalVariable.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Values/IAttributeAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Values/IAttributeAccessor.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Values/IAttributeDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Values/IAttributeDictionary.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Values/IrFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Values/IrFunction.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Values/Use.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Values/Use.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Values/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Values/User.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Values/Value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Values/Value.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/Values/ValueExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/Values/ValueExtensions.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/WrappedNativeCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/WrappedNativeCallback.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/WriteOnce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/WriteOnce.cs -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/cgmanifest.json -------------------------------------------------------------------------------- /src/QsCompiler/LlvmBindings/stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/LlvmBindings/stylecop.json -------------------------------------------------------------------------------- /src/QsCompiler/Optimizations/Optimizations.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Optimizations/Optimizations.fsproj -------------------------------------------------------------------------------- /src/QsCompiler/Optimizations/PreEvaluation.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Optimizations/PreEvaluation.fs -------------------------------------------------------------------------------- /src/QsCompiler/Optimizations/PureCircuitAPI.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Optimizations/PureCircuitAPI.fs -------------------------------------------------------------------------------- /src/QsCompiler/Optimizations/PureCircuitFinding.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Optimizations/PureCircuitFinding.fs -------------------------------------------------------------------------------- /src/QsCompiler/Optimizations/Utils/Evaluation.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Optimizations/Utils/Evaluation.fs -------------------------------------------------------------------------------- /src/QsCompiler/Optimizations/Utils/HelperFunctions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Optimizations/Utils/HelperFunctions.fs -------------------------------------------------------------------------------- /src/QsCompiler/Optimizations/Utils/OptimizationTools.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Optimizations/Utils/OptimizationTools.fs -------------------------------------------------------------------------------- /src/QsCompiler/Optimizations/Utils/VariableRenaming.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Optimizations/Utils/VariableRenaming.fs -------------------------------------------------------------------------------- /src/QsCompiler/QirGeneration/AddOutputRecording.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/QirGeneration/AddOutputRecording.cs -------------------------------------------------------------------------------- /src/QsCompiler/QirGeneration/BondSchemas/Execution.bond: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/QirGeneration/BondSchemas/Execution.bond -------------------------------------------------------------------------------- /src/QsCompiler/QirGeneration/BondSchemas/Execution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/QirGeneration/BondSchemas/Execution.cs -------------------------------------------------------------------------------- /src/QsCompiler/QirGeneration/BondSchemas/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/QirGeneration/BondSchemas/Extensions.cs -------------------------------------------------------------------------------- /src/QsCompiler/QirGeneration/BondSchemas/Protocols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/QirGeneration/BondSchemas/Protocols.cs -------------------------------------------------------------------------------- /src/QsCompiler/QirGeneration/CompilationSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/QirGeneration/CompilationSteps.cs -------------------------------------------------------------------------------- /src/QsCompiler/QirGeneration/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/QirGeneration/Context.cs -------------------------------------------------------------------------------- /src/QsCompiler/QirGeneration/FindNuspecReferences.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/QirGeneration/FindNuspecReferences.ps1 -------------------------------------------------------------------------------- /src/QsCompiler/QirGeneration/FunctionLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/QirGeneration/FunctionLibrary.cs -------------------------------------------------------------------------------- /src/QsCompiler/QirGeneration/Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/QirGeneration/Generator.cs -------------------------------------------------------------------------------- /src/QsCompiler/QirGeneration/Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/QirGeneration/Interop.cs -------------------------------------------------------------------------------- /src/QsCompiler/QirGeneration/NameGeneration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/QirGeneration/NameGeneration.cs -------------------------------------------------------------------------------- /src/QsCompiler/QirGeneration/QIR/DataStructures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/QirGeneration/QIR/DataStructures.cs -------------------------------------------------------------------------------- /src/QsCompiler/QirGeneration/QIR/Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/QirGeneration/QIR/Functions.cs -------------------------------------------------------------------------------- /src/QsCompiler/QirGeneration/QIR/RuntimeLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/QirGeneration/QIR/RuntimeLibrary.cs -------------------------------------------------------------------------------- /src/QsCompiler/QirGeneration/QIR/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/QirGeneration/QIR/Types.cs -------------------------------------------------------------------------------- /src/QsCompiler/QirGeneration/QIR/Values.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/QirGeneration/QIR/Values.cs -------------------------------------------------------------------------------- /src/QsCompiler/QirGeneration/QirGeneration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/QirGeneration/QirGeneration.csproj -------------------------------------------------------------------------------- /src/QsCompiler/QirGeneration/QirGeneration.nuspec.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/QirGeneration/QirGeneration.nuspec.template -------------------------------------------------------------------------------- /src/QsCompiler/QirGeneration/QirGeneration.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/QirGeneration/QirGeneration.props -------------------------------------------------------------------------------- /src/QsCompiler/QirGeneration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/QirGeneration/README.md -------------------------------------------------------------------------------- /src/QsCompiler/QirGeneration/RewriteSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/QirGeneration/RewriteSteps.cs -------------------------------------------------------------------------------- /src/QsCompiler/QirGeneration/ScopeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/QirGeneration/ScopeManager.cs -------------------------------------------------------------------------------- /src/QsCompiler/RoslynWrapper/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/RoslynWrapper/App.config -------------------------------------------------------------------------------- /src/QsCompiler/RoslynWrapper/AutoPropertyDeclaration.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/RoslynWrapper/AutoPropertyDeclaration.fs -------------------------------------------------------------------------------- /src/QsCompiler/RoslynWrapper/ClassDeclaration.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/RoslynWrapper/ClassDeclaration.fs -------------------------------------------------------------------------------- /src/QsCompiler/RoslynWrapper/CodeGenerator.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/RoslynWrapper/CodeGenerator.fs -------------------------------------------------------------------------------- /src/QsCompiler/RoslynWrapper/Common.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/RoslynWrapper/Common.fs -------------------------------------------------------------------------------- /src/QsCompiler/RoslynWrapper/CompilationUnit.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/RoslynWrapper/CompilationUnit.fs -------------------------------------------------------------------------------- /src/QsCompiler/RoslynWrapper/ConstructorDeclaration.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/RoslynWrapper/ConstructorDeclaration.fs -------------------------------------------------------------------------------- /src/QsCompiler/RoslynWrapper/Conversion.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/RoslynWrapper/Conversion.fs -------------------------------------------------------------------------------- /src/QsCompiler/RoslynWrapper/Equality.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/RoslynWrapper/Equality.fs -------------------------------------------------------------------------------- /src/QsCompiler/RoslynWrapper/ExpressionStatement.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/RoslynWrapper/ExpressionStatement.fs -------------------------------------------------------------------------------- /src/QsCompiler/RoslynWrapper/FieldDeclaration.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/RoslynWrapper/FieldDeclaration.fs -------------------------------------------------------------------------------- /src/QsCompiler/RoslynWrapper/ForeachStatement.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/RoslynWrapper/ForeachStatement.fs -------------------------------------------------------------------------------- /src/QsCompiler/RoslynWrapper/GenericName.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/RoslynWrapper/GenericName.fs -------------------------------------------------------------------------------- /src/QsCompiler/RoslynWrapper/IfStatement.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/RoslynWrapper/IfStatement.fs -------------------------------------------------------------------------------- /src/QsCompiler/RoslynWrapper/InterfaceDeclaration.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/RoslynWrapper/InterfaceDeclaration.fs -------------------------------------------------------------------------------- /src/QsCompiler/RoslynWrapper/Invocation.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/RoslynWrapper/Invocation.fs -------------------------------------------------------------------------------- /src/QsCompiler/RoslynWrapper/Literals.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/RoslynWrapper/Literals.fs -------------------------------------------------------------------------------- /src/QsCompiler/RoslynWrapper/LocalDeclaration.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/RoslynWrapper/LocalDeclaration.fs -------------------------------------------------------------------------------- /src/QsCompiler/RoslynWrapper/MethodDeclaration.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/RoslynWrapper/MethodDeclaration.fs -------------------------------------------------------------------------------- /src/QsCompiler/RoslynWrapper/NamespaceDeclaration.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/RoslynWrapper/NamespaceDeclaration.fs -------------------------------------------------------------------------------- /src/QsCompiler/RoslynWrapper/ObjectCreation.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/RoslynWrapper/ObjectCreation.fs -------------------------------------------------------------------------------- /src/QsCompiler/RoslynWrapper/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/RoslynWrapper/README.txt -------------------------------------------------------------------------------- /src/QsCompiler/RoslynWrapper/RoslynWrapper.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/RoslynWrapper/RoslynWrapper.fsproj -------------------------------------------------------------------------------- /src/QsCompiler/RoslynWrapper/TryStatement.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/RoslynWrapper/TryStatement.fs -------------------------------------------------------------------------------- /src/QsCompiler/RoslynWrapper/WhileStatement.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/RoslynWrapper/WhileStatement.fs -------------------------------------------------------------------------------- /src/QsCompiler/RoslynWrapper/WhiteNoise.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/RoslynWrapper/WhiteNoise.fs -------------------------------------------------------------------------------- /src/QsCompiler/RoslynWrapper/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/RoslynWrapper/cgmanifest.json -------------------------------------------------------------------------------- /src/QsCompiler/SyntaxProcessor/ContextVerification.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/SyntaxProcessor/ContextVerification.fs -------------------------------------------------------------------------------- /src/QsCompiler/SyntaxProcessor/DeclarationVerification.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/SyntaxProcessor/DeclarationVerification.fs -------------------------------------------------------------------------------- /src/QsCompiler/SyntaxProcessor/ExpressionVerification.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/SyntaxProcessor/ExpressionVerification.fs -------------------------------------------------------------------------------- /src/QsCompiler/SyntaxProcessor/ScopeContext.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/SyntaxProcessor/ScopeContext.fs -------------------------------------------------------------------------------- /src/QsCompiler/SyntaxProcessor/StatementVerification.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/SyntaxProcessor/StatementVerification.fs -------------------------------------------------------------------------------- /src/QsCompiler/SyntaxProcessor/SymbolOccurrence.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/SyntaxProcessor/SymbolOccurrence.fs -------------------------------------------------------------------------------- /src/QsCompiler/SyntaxProcessor/SymbolOccurrence.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/SyntaxProcessor/SymbolOccurrence.fsi -------------------------------------------------------------------------------- /src/QsCompiler/SyntaxProcessor/SymbolTracker.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/SyntaxProcessor/SymbolTracker.fs -------------------------------------------------------------------------------- /src/QsCompiler/SyntaxProcessor/SyntaxExtensions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/SyntaxProcessor/SyntaxExtensions.fs -------------------------------------------------------------------------------- /src/QsCompiler/SyntaxProcessor/SyntaxProcessor.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/SyntaxProcessor/SyntaxProcessor.fsproj -------------------------------------------------------------------------------- /src/QsCompiler/SyntaxProcessor/TreeVerification.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/SyntaxProcessor/TreeVerification.fs -------------------------------------------------------------------------------- /src/QsCompiler/SyntaxProcessor/TypeInference/Constraint.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/SyntaxProcessor/TypeInference/Constraint.fs -------------------------------------------------------------------------------- /src/QsCompiler/SyntaxProcessor/TypeInference/Diagnostic.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/SyntaxProcessor/TypeInference/Diagnostic.fs -------------------------------------------------------------------------------- /src/QsCompiler/SyntaxProcessor/TypeInference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/SyntaxProcessor/TypeInference/README.md -------------------------------------------------------------------------------- /src/QsCompiler/SyntaxProcessor/VerificationTools.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/SyntaxProcessor/VerificationTools.fs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/README.md -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/TestProjects.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/TestProjects.sln -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test1/Program.cs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test1/test1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test1/test1.csproj -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test10/Operation10.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test10/Operation10.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test10/test10.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test10/test10.csproj -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test11/Driver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test11/Driver.cs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test11/Operation11.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test11/Operation11.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test11/README.md -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test11/test11.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test11/test11.csproj -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test12/Operation12a.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test12/Operation12a.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test12/Operation12b.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test12/Operation12b.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test12/README.md: -------------------------------------------------------------------------------- 1 | This is a valid Q# library app. -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test12/format/Formatted.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test12/format/Formatted.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test12/format/Unformatted.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test12/format/Unformatted.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test12/sub1/Operation12b.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test12/sub1/Operation12b.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test12/test12.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test12/test12.csproj -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test13/Driver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test13/Driver.cs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test13/Operation13.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test13/Operation13.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test13/test13.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test13/test13.csproj -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test14/README.md: -------------------------------------------------------------------------------- 1 | This is a valid Q# app specifying an execution target. 2 | -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test14/Teleport.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test14/Teleport.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test14/test14.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test14/test14.csproj -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test15/README.md: -------------------------------------------------------------------------------- 1 | This is a valid Q# app using the formatter source code. 2 | -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test15/format/Formatted.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test15/format/Formatted.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test15/format/Unformatted.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test15/format/Unformatted.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test15/test15.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test15/test15.csproj -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test16/Lambda.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test16/Lambda.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test16/test16.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test16/test16.csproj -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test17/MeasureBell.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test17/MeasureBell.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test17/README.md: -------------------------------------------------------------------------------- 1 | This is a valid Q# app specifying an execution target. 2 | -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test17/test17.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test17/test17.csproj -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test2/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test2/Class1.cs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test2/test2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test2/test2.csproj -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test3/Operation3a.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test3/Operation3a.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test3/Operation3b.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test3/Operation3b.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test3/sub1/Operation3b.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test3/sub1/Operation3b.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test3/sub1/sub2/Operation3a.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test3/sub1/sub2/Operation3a.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test3/test3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test3/test3.csproj -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test4/Driver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test4/Driver.cs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test4/Operation4.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test4/Operation4.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test4/test4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test4/test4.csproj -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test5/Operation5.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test5/Operation5.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test5/TestSuiteRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test5/TestSuiteRunner.cs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test5/Tests5.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test5/Tests5.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test5/test5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test5/test5.csproj -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test6/Operation6a.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test6/Operation6a.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test6/sub1/Operation6a.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test6/sub1/Operation6a.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test6/test6.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test6/test6.csproj -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test7/Operation.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test7/Operation.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test7/test7.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test7/test7.csproj -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test8/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test8/Class1.cs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test8/test8.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test8/test8.csproj -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test9/Driver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test9/Driver.cs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test9/Operation9.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test9/Operation9.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestProjects/test9/test9.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestProjects/test9/test9.csproj -------------------------------------------------------------------------------- /src/QsCompiler/TestTargets/Libraries/Library1/Logging.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestTargets/Libraries/Library1/Logging.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestTargets/Libraries/Library1/Types.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestTargets/Libraries/Library1/Types.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestTargets/Libraries/Library2/Library.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestTargets/Libraries/Library2/Library.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestTargets/Libraries/build/Library.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestTargets/Libraries/build/Library.props -------------------------------------------------------------------------------- /src/QsCompiler/TestTargets/Libraries/build/Library.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestTargets/Libraries/build/Library.targets -------------------------------------------------------------------------------- /src/QsCompiler/TestTargets/Simulation/Example/Main.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestTargets/Simulation/Example/Main.qs -------------------------------------------------------------------------------- /src/QsCompiler/TestTargets/Simulation/Target/Driver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TestTargets/Simulation/Target/Driver.cs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.CSharpGeneration/Circuits/Core.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.CSharpGeneration/Circuits/Core.qs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.CSharpGeneration/Circuits/Types.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.CSharpGeneration/Circuits/Types.qs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.CSharpGeneration/Circuits/Types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.CSharpGeneration/Circuits/Types.txt -------------------------------------------------------------------------------- /src/QsCompiler/Tests.CSharpGeneration/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.CSharpGeneration/Program.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/AccessModifierTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/AccessModifierTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/AutoGenerationTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/AutoGenerationTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/CallGraphTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/CallGraphTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/CapabilityTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/CapabilityTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/ClassicalControlTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/ClassicalControlTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/CommandLineTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/CommandLineTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/CompilationLoaderTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/CompilationLoaderTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/CompilationTrackerTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/CompilationTrackerTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/CompletionParsingTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/CompletionParsingTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/ExecutionTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/ExecutionTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/GlobalVerificationTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/GlobalVerificationTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/LambdaLiftingTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/LambdaLiftingTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/LinkingTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/LinkingTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/LocalVerificationTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/LocalVerificationTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/OpenDirectiveTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/OpenDirectiveTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/OptimizationTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/OptimizationTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/OutputRecordingTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/OutputRecordingTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/QirTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/QirTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/RegexTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/RegexTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/SerializationTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/SerializationTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/SymbolManagementTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/SymbolManagementTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/SyntaxTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/SyntaxTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/TestCases/AccessModifiers.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/TestCases/AccessModifiers.qs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/TestCases/Capabilities.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/TestCases/Capabilities.qs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/TestCases/CycleDetection.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/TestCases/CycleDetection.qs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/TestCases/CycleValidation.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/TestCases/CycleValidation.qs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/TestCases/General.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/TestCases/General.qs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/TestCases/LambdaLifting.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/TestCases/LambdaLifting.qs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/TestCases/OutputRecording.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/TestCases/OutputRecording.qs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/TestCases/Transformation.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/TestCases/Transformation.qs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/TestCases/TypeChecking.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/TestCases/TypeChecking.qs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/TestCases/TypeParameter.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/TestCases/TypeParameter.qs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/TestCases/Types.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/TestCases/Types.qs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/TestUtils/Diagnostics.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/TestUtils/Diagnostics.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/TestUtils/Signatures.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/TestUtils/Signatures.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/TestUtils/TestUtils.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/TestUtils/TestUtils.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/TestUtils/Transformations.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/TestUtils/Transformations.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/Tests.Compiler.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/Tests.Compiler.fsproj -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/TextTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/TextTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/TransformationTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/TransformationTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/TypeCheckingTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/TypeCheckingTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.Compiler/TypeParameterTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.Compiler/TypeParameterTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.LanguageServer/ProjectLoaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.LanguageServer/ProjectLoaderTests.cs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.LanguageServer/TestInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.LanguageServer/TestInput.cs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.LanguageServer/TestSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.LanguageServer/TestSetup.cs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.LanguageServer/TestUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.LanguageServer/TestUtils.cs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.LanguageServer/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.LanguageServer/Tests.cs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.RoslynWrapper/ArrayCreationTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.RoslynWrapper/ArrayCreationTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.RoslynWrapper/AutoPropertyTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.RoslynWrapper/AutoPropertyTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.RoslynWrapper/ClassTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.RoslynWrapper/ClassTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.RoslynWrapper/Common.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.RoslynWrapper/Common.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.RoslynWrapper/CompilationUnitTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.RoslynWrapper/CompilationUnitTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.RoslynWrapper/ConstructorTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.RoslynWrapper/ConstructorTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.RoslynWrapper/FieldTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.RoslynWrapper/FieldTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.RoslynWrapper/InterfaceTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.RoslynWrapper/InterfaceTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.RoslynWrapper/MethodTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.RoslynWrapper/MethodTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.RoslynWrapper/MiscellaneousTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.RoslynWrapper/MiscellaneousTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.RoslynWrapper/NamespaceTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.RoslynWrapper/NamespaceTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.RoslynWrapper/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.RoslynWrapper/Program.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.RoslynWrapper/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.RoslynWrapper/README.txt -------------------------------------------------------------------------------- /src/QsCompiler/Tests.RoslynWrapper/StatementTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.RoslynWrapper/StatementTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/Tests.RoslynWrapper/TryCatchTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Tests.RoslynWrapper/TryCatchTests.fs -------------------------------------------------------------------------------- /src/QsCompiler/TextProcessor/CodeCompletion/TypeParsing.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TextProcessor/CodeCompletion/TypeParsing.fs -------------------------------------------------------------------------------- /src/QsCompiler/TextProcessor/ParsingPrimitives.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TextProcessor/ParsingPrimitives.fs -------------------------------------------------------------------------------- /src/QsCompiler/TextProcessor/QsExpressionParsing.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TextProcessor/QsExpressionParsing.fs -------------------------------------------------------------------------------- /src/QsCompiler/TextProcessor/QsFragmentParsing.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TextProcessor/QsFragmentParsing.fs -------------------------------------------------------------------------------- /src/QsCompiler/TextProcessor/QsKeywords.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TextProcessor/QsKeywords.fs -------------------------------------------------------------------------------- /src/QsCompiler/TextProcessor/QsTypeParsing.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TextProcessor/QsTypeParsing.fs -------------------------------------------------------------------------------- /src/QsCompiler/TextProcessor/SyntaxBuilder.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TextProcessor/SyntaxBuilder.fs -------------------------------------------------------------------------------- /src/QsCompiler/TextProcessor/SyntaxExtensions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TextProcessor/SyntaxExtensions.fs -------------------------------------------------------------------------------- /src/QsCompiler/TextProcessor/TextProcessing.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TextProcessor/TextProcessing.fs -------------------------------------------------------------------------------- /src/QsCompiler/TextProcessor/TextProcessor.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/TextProcessor/TextProcessor.fsproj -------------------------------------------------------------------------------- /src/QsCompiler/Transformations/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Transformations/Attributes.cs -------------------------------------------------------------------------------- /src/QsCompiler/Transformations/BasicTransformations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Transformations/BasicTransformations.cs -------------------------------------------------------------------------------- /src/QsCompiler/Transformations/CallGraph/CallGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Transformations/CallGraph/CallGraph.cs -------------------------------------------------------------------------------- /src/QsCompiler/Transformations/ClassicallyControlled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Transformations/ClassicallyControlled.cs -------------------------------------------------------------------------------- /src/QsCompiler/Transformations/CodeTransformations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Transformations/CodeTransformations.cs -------------------------------------------------------------------------------- /src/QsCompiler/Transformations/Conjugations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Transformations/Conjugations.cs -------------------------------------------------------------------------------- /src/QsCompiler/Transformations/ContentLifting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Transformations/ContentLifting.cs -------------------------------------------------------------------------------- /src/QsCompiler/Transformations/FunctorGeneration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Transformations/FunctorGeneration.cs -------------------------------------------------------------------------------- /src/QsCompiler/Transformations/IntrinsicResolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Transformations/IntrinsicResolution.cs -------------------------------------------------------------------------------- /src/QsCompiler/Transformations/LiftLambdas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Transformations/LiftLambdas.cs -------------------------------------------------------------------------------- /src/QsCompiler/Transformations/Monomorphization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Transformations/Monomorphization.cs -------------------------------------------------------------------------------- /src/QsCompiler/Transformations/QsharpCodeOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Transformations/QsharpCodeOutput.cs -------------------------------------------------------------------------------- /src/QsCompiler/Transformations/SearchAndReplace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Transformations/SearchAndReplace.cs -------------------------------------------------------------------------------- /src/QsCompiler/Transformations/SyntaxTreeTrimming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Transformations/SyntaxTreeTrimming.cs -------------------------------------------------------------------------------- /src/QsCompiler/Transformations/Transformations.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Transformations/Transformations.csproj -------------------------------------------------------------------------------- /src/QsCompiler/Transformations/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsCompiler/Transformations/Utils.cs -------------------------------------------------------------------------------- /src/QsFmt/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/.vscode/launch.json -------------------------------------------------------------------------------- /src/QsFmt/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/.vscode/tasks.json -------------------------------------------------------------------------------- /src/QsFmt/App.Tests/App.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/App.Tests/App.Tests.fsproj -------------------------------------------------------------------------------- /src/QsFmt/App.Tests/Examples/Example1.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/App.Tests/Examples/Example1.qs -------------------------------------------------------------------------------- /src/QsFmt/App.Tests/Examples/Example2.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/App.Tests/Examples/Example2.qs -------------------------------------------------------------------------------- /src/QsFmt/App.Tests/Examples/SubExamples1/SubExample1.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/App.Tests/Examples/SubExamples1/SubExample1.qs -------------------------------------------------------------------------------- /src/QsFmt/App.Tests/Examples/SubExamples1/SubExample2.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/App.Tests/Examples/SubExamples1/SubExample2.qs -------------------------------------------------------------------------------- /src/QsFmt/App.Tests/Examples/SubExamples2/SubExample3.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/App.Tests/Examples/SubExamples2/SubExample3.qs -------------------------------------------------------------------------------- /src/QsFmt/App.Tests/Examples/SyntaxError.qs: -------------------------------------------------------------------------------- 1 | namespace Foo { invalid syntax; } 2 | -------------------------------------------------------------------------------- /src/QsFmt/App.Tests/Examples/TestTarget/Excluded1.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/App.Tests/Examples/TestTarget/Excluded1.qs -------------------------------------------------------------------------------- /src/QsFmt/App.Tests/Examples/TestTarget/Excluded2.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/App.Tests/Examples/TestTarget/Excluded2.qs -------------------------------------------------------------------------------- /src/QsFmt/App.Tests/Examples/TestTarget/Included.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/App.Tests/Examples/TestTarget/Included.qs -------------------------------------------------------------------------------- /src/QsFmt/App.Tests/Examples/TestTarget/Program.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/App.Tests/Examples/TestTarget/Program.qs -------------------------------------------------------------------------------- /src/QsFmt/App.Tests/ProjectTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/App.Tests/ProjectTests.fs -------------------------------------------------------------------------------- /src/QsFmt/App.Tests/Tests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/App.Tests/Tests.fs -------------------------------------------------------------------------------- /src/QsFmt/App/App.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/App/App.fsproj -------------------------------------------------------------------------------- /src/QsFmt/App/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/App/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/QsFmt/App/CommandLineArguments.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/App/CommandLineArguments.fs -------------------------------------------------------------------------------- /src/QsFmt/App/CommandLineArguments.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/App/CommandLineArguments.fsi -------------------------------------------------------------------------------- /src/QsFmt/App/DesignTimeBuild.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/App/DesignTimeBuild.fs -------------------------------------------------------------------------------- /src/QsFmt/App/DesignTimeBuild.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/App/DesignTimeBuild.fsi -------------------------------------------------------------------------------- /src/QsFmt/App/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/App/Program.fs -------------------------------------------------------------------------------- /src/QsFmt/App/Program.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/App/Program.fsi -------------------------------------------------------------------------------- /src/QsFmt/App/Telemetry.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/App/Telemetry.fs -------------------------------------------------------------------------------- /src/QsFmt/App/Telemetry.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/App/Telemetry.fsi -------------------------------------------------------------------------------- /src/QsFmt/Formatter.Tests/Discoverer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter.Tests/Discoverer.fs -------------------------------------------------------------------------------- /src/QsFmt/Formatter.Tests/Errors.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter.Tests/Errors.fs -------------------------------------------------------------------------------- /src/QsFmt/Formatter.Tests/Examples.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter.Tests/Examples.fs -------------------------------------------------------------------------------- /src/QsFmt/Formatter.Tests/FixedPoints.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter.Tests/FixedPoints.fs -------------------------------------------------------------------------------- /src/QsFmt/Formatter.Tests/Formatter.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter.Tests/Formatter.Tests.fsproj -------------------------------------------------------------------------------- /src/QsFmt/Formatter.Tests/Tests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter.Tests/Tests.fs -------------------------------------------------------------------------------- /src/QsFmt/Formatter/Errors.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/Errors.fs -------------------------------------------------------------------------------- /src/QsFmt/Formatter/Errors.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/Errors.fsi -------------------------------------------------------------------------------- /src/QsFmt/Formatter/Formatter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/Formatter.fs -------------------------------------------------------------------------------- /src/QsFmt/Formatter/Formatter.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/Formatter.fsi -------------------------------------------------------------------------------- /src/QsFmt/Formatter/Formatter.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/Formatter.fsproj -------------------------------------------------------------------------------- /src/QsFmt/Formatter/ParseTree/Expression.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/ParseTree/Expression.fs -------------------------------------------------------------------------------- /src/QsFmt/Formatter/ParseTree/Expression.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/ParseTree/Expression.fsi -------------------------------------------------------------------------------- /src/QsFmt/Formatter/ParseTree/Namespace.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/ParseTree/Namespace.fs -------------------------------------------------------------------------------- /src/QsFmt/Formatter/ParseTree/Namespace.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/ParseTree/Namespace.fsi -------------------------------------------------------------------------------- /src/QsFmt/Formatter/ParseTree/Node.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/ParseTree/Node.fs -------------------------------------------------------------------------------- /src/QsFmt/Formatter/ParseTree/Node.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/ParseTree/Node.fsi -------------------------------------------------------------------------------- /src/QsFmt/Formatter/ParseTree/Statement.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/ParseTree/Statement.fs -------------------------------------------------------------------------------- /src/QsFmt/Formatter/ParseTree/Statement.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/ParseTree/Statement.fsi -------------------------------------------------------------------------------- /src/QsFmt/Formatter/ParseTree/Type.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/ParseTree/Type.fs -------------------------------------------------------------------------------- /src/QsFmt/Formatter/ParseTree/Type.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/ParseTree/Type.fsi -------------------------------------------------------------------------------- /src/QsFmt/Formatter/Printer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/Printer.fs -------------------------------------------------------------------------------- /src/QsFmt/Formatter/Printer.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/Printer.fsi -------------------------------------------------------------------------------- /src/QsFmt/Formatter/Rules.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/Rules.fs -------------------------------------------------------------------------------- /src/QsFmt/Formatter/Rules.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/Rules.fsi -------------------------------------------------------------------------------- /src/QsFmt/Formatter/SyntaxTree/Expression.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/SyntaxTree/Expression.fs -------------------------------------------------------------------------------- /src/QsFmt/Formatter/SyntaxTree/Expression.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/SyntaxTree/Expression.fsi -------------------------------------------------------------------------------- /src/QsFmt/Formatter/SyntaxTree/Namespace.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/SyntaxTree/Namespace.fs -------------------------------------------------------------------------------- /src/QsFmt/Formatter/SyntaxTree/Namespace.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/SyntaxTree/Namespace.fsi -------------------------------------------------------------------------------- /src/QsFmt/Formatter/SyntaxTree/Node.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/SyntaxTree/Node.fs -------------------------------------------------------------------------------- /src/QsFmt/Formatter/SyntaxTree/Node.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/SyntaxTree/Node.fsi -------------------------------------------------------------------------------- /src/QsFmt/Formatter/SyntaxTree/Reducer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/SyntaxTree/Reducer.fs -------------------------------------------------------------------------------- /src/QsFmt/Formatter/SyntaxTree/Reducer.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/SyntaxTree/Reducer.fsi -------------------------------------------------------------------------------- /src/QsFmt/Formatter/SyntaxTree/Rewriter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/SyntaxTree/Rewriter.fs -------------------------------------------------------------------------------- /src/QsFmt/Formatter/SyntaxTree/Rewriter.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/SyntaxTree/Rewriter.fsi -------------------------------------------------------------------------------- /src/QsFmt/Formatter/SyntaxTree/Statement.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/SyntaxTree/Statement.fs -------------------------------------------------------------------------------- /src/QsFmt/Formatter/SyntaxTree/Statement.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/SyntaxTree/Statement.fsi -------------------------------------------------------------------------------- /src/QsFmt/Formatter/SyntaxTree/Type.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/SyntaxTree/Type.fs -------------------------------------------------------------------------------- /src/QsFmt/Formatter/SyntaxTree/Type.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/SyntaxTree/Type.fsi -------------------------------------------------------------------------------- /src/QsFmt/Formatter/Utils.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/Utils.fs -------------------------------------------------------------------------------- /src/QsFmt/Formatter/Utils.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Formatter/Utils.fsi -------------------------------------------------------------------------------- /src/QsFmt/Parser/Parser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Parser/Parser.csproj -------------------------------------------------------------------------------- /src/QsFmt/Parser/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/Parser/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/QsFmt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QsFmt/README.md -------------------------------------------------------------------------------- /src/QuantumSdk/DefaultItems/DefaultItems.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QuantumSdk/DefaultItems/DefaultItems.targets -------------------------------------------------------------------------------- /src/QuantumSdk/ProjectSystem/ProjectSystem.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QuantumSdk/ProjectSystem/ProjectSystem.props -------------------------------------------------------------------------------- /src/QuantumSdk/ProjectSystem/ProjectSystem.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QuantumSdk/ProjectSystem/ProjectSystem.targets -------------------------------------------------------------------------------- /src/QuantumSdk/ProjectSystem/Rules/QSharpSourceFile.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QuantumSdk/ProjectSystem/Rules/QSharpSourceFile.xaml -------------------------------------------------------------------------------- /src/QuantumSdk/QuantumSdk.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QuantumSdk/QuantumSdk.nuspec -------------------------------------------------------------------------------- /src/QuantumSdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QuantumSdk/README.md -------------------------------------------------------------------------------- /src/QuantumSdk/Sdk/Sdk.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QuantumSdk/Sdk/Sdk.props -------------------------------------------------------------------------------- /src/QuantumSdk/Sdk/Sdk.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QuantumSdk/Sdk/Sdk.targets -------------------------------------------------------------------------------- /src/QuantumSdk/Tools/BuildConfiguration/Generate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QuantumSdk/Tools/BuildConfiguration/Generate.cs -------------------------------------------------------------------------------- /src/QuantumSdk/Tools/BuildConfiguration/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QuantumSdk/Tools/BuildConfiguration/Options.cs -------------------------------------------------------------------------------- /src/QuantumSdk/Tools/BuildConfiguration/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QuantumSdk/Tools/BuildConfiguration/Program.cs -------------------------------------------------------------------------------- /src/QuantumSdk/Tools/Common/DelaySign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QuantumSdk/Tools/Common/DelaySign.cs -------------------------------------------------------------------------------- /src/QuantumSdk/Tools/DefaultEntryPoint/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QuantumSdk/Tools/DefaultEntryPoint/Program.cs -------------------------------------------------------------------------------- /src/QuantumSdk/Tools/Tools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/QuantumSdk/Tools/Tools.sln -------------------------------------------------------------------------------- /src/Telemetry/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/.vscode/launch.json -------------------------------------------------------------------------------- /src/Telemetry/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/.vscode/tasks.json -------------------------------------------------------------------------------- /src/Telemetry/Build/Build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Build/Build.ps1 -------------------------------------------------------------------------------- /src/Telemetry/Build/Test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Build/Test.ps1 -------------------------------------------------------------------------------- /src/Telemetry/Build/test-coverage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Build/test-coverage.ps1 -------------------------------------------------------------------------------- /src/Telemetry/Build/update-aria-package.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Build/update-aria-package.ps1 -------------------------------------------------------------------------------- /src/Telemetry/Library/Commands/CommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Library/Commands/CommandBase.cs -------------------------------------------------------------------------------- /src/Telemetry/Library/Commands/CommandType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Library/Commands/CommandType.cs -------------------------------------------------------------------------------- /src/Telemetry/Library/Commands/ICommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Library/Commands/ICommandProcessor.cs -------------------------------------------------------------------------------- /src/Telemetry/Library/Commands/LogEventCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Library/Commands/LogEventCommand.cs -------------------------------------------------------------------------------- /src/Telemetry/Library/Commands/QuitCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Library/Commands/QuitCommand.cs -------------------------------------------------------------------------------- /src/Telemetry/Library/Commands/SetContextCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Library/Commands/SetContextCommand.cs -------------------------------------------------------------------------------- /src/Telemetry/Library/Commands/SimpleYamlSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Library/Commands/SimpleYamlSerializer.cs -------------------------------------------------------------------------------- /src/Telemetry/Library/DataContracts/PiiDataAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Library/DataContracts/PiiDataAttribute.cs -------------------------------------------------------------------------------- /src/Telemetry/Library/DebugConsoleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Library/DebugConsoleLogger.cs -------------------------------------------------------------------------------- /src/Telemetry/Library/ExceptionLoggingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Library/ExceptionLoggingHelper.cs -------------------------------------------------------------------------------- /src/Telemetry/Library/FSharpOptionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Library/FSharpOptionHelper.cs -------------------------------------------------------------------------------- /src/Telemetry/Library/OutOfProcess/OutOfProcessLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Library/OutOfProcess/OutOfProcessLogger.cs -------------------------------------------------------------------------------- /src/Telemetry/Library/OutOfProcess/OutOfProcessServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Library/OutOfProcess/OutOfProcessServer.cs -------------------------------------------------------------------------------- /src/Telemetry/Library/Telemetry.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Library/Telemetry.csproj -------------------------------------------------------------------------------- /src/Telemetry/Library/TelemetryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Library/TelemetryManager.cs -------------------------------------------------------------------------------- /src/Telemetry/Library/TelemetryManagerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Library/TelemetryManagerConfig.cs -------------------------------------------------------------------------------- /src/Telemetry/Library/TelemetryManagerConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Library/TelemetryManagerConstants.cs -------------------------------------------------------------------------------- /src/Telemetry/Library/TelemetryManagerInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Library/TelemetryManagerInstance.cs -------------------------------------------------------------------------------- /src/Telemetry/Library/TypeConversionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Library/TypeConversionHelper.cs -------------------------------------------------------------------------------- /src/Telemetry/Samples/CSharp/CSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Samples/CSharp/CSharp.csproj -------------------------------------------------------------------------------- /src/Telemetry/Samples/CSharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Samples/CSharp/Program.cs -------------------------------------------------------------------------------- /src/Telemetry/Samples/FSharp/FSharp.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Samples/FSharp/FSharp.fsproj -------------------------------------------------------------------------------- /src/Telemetry/Samples/FSharp/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Samples/FSharp/Program.fs -------------------------------------------------------------------------------- /src/Telemetry/Telemetry.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Telemetry.sln -------------------------------------------------------------------------------- /src/Telemetry/Tests.OutOfProcessExe/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Tests.OutOfProcessExe/Program.cs -------------------------------------------------------------------------------- /src/Telemetry/Tests/CommandsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Tests/CommandsTests.cs -------------------------------------------------------------------------------- /src/Telemetry/Tests/HelpersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Tests/HelpersTests.cs -------------------------------------------------------------------------------- /src/Telemetry/Tests/TelemetryManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Tests/TelemetryManagerTests.cs -------------------------------------------------------------------------------- /src/Telemetry/Tests/TestCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Tests/TestCommon.cs -------------------------------------------------------------------------------- /src/Telemetry/Tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/Tests/Tests.csproj -------------------------------------------------------------------------------- /src/Telemetry/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/Telemetry/readme.md -------------------------------------------------------------------------------- /src/VSCodeExtension/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/.gitignore -------------------------------------------------------------------------------- /src/VSCodeExtension/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/.vscode/extensions.json -------------------------------------------------------------------------------- /src/VSCodeExtension/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/.vscode/launch.json -------------------------------------------------------------------------------- /src/VSCodeExtension/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/.vscode/settings.json -------------------------------------------------------------------------------- /src/VSCodeExtension/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/.vscode/tasks.json -------------------------------------------------------------------------------- /src/VSCodeExtension/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/.vscodeignore -------------------------------------------------------------------------------- /src/VSCodeExtension/BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/BUILDING.md -------------------------------------------------------------------------------- /src/VSCodeExtension/MS_Quantum_Spot_Dev-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/MS_Quantum_Spot_Dev-200.png -------------------------------------------------------------------------------- /src/VSCodeExtension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/README.md -------------------------------------------------------------------------------- /src/VSCodeExtension/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/language-configuration.json -------------------------------------------------------------------------------- /src/VSCodeExtension/package-lock.json.v.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/package-lock.json.v.template -------------------------------------------------------------------------------- /src/VSCodeExtension/package.json.v.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/package.json.v.template -------------------------------------------------------------------------------- /src/VSCodeExtension/snippets/csharp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/snippets/csharp.json -------------------------------------------------------------------------------- /src/VSCodeExtension/snippets/qsharp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/snippets/qsharp.json -------------------------------------------------------------------------------- /src/VSCodeExtension/src/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/src/commands.ts -------------------------------------------------------------------------------- /src/VSCodeExtension/src/decompress-zip.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/src/decompress-zip.d.ts -------------------------------------------------------------------------------- /src/VSCodeExtension/src/dotnet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/src/dotnet.ts -------------------------------------------------------------------------------- /src/VSCodeExtension/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/src/extension.ts -------------------------------------------------------------------------------- /src/VSCodeExtension/src/languageServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/src/languageServer.ts -------------------------------------------------------------------------------- /src/VSCodeExtension/src/packageInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/src/packageInfo.ts -------------------------------------------------------------------------------- /src/VSCodeExtension/src/sanitize-namespace-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/src/sanitize-namespace-name.ts -------------------------------------------------------------------------------- /src/VSCodeExtension/src/telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/src/telemetry.ts -------------------------------------------------------------------------------- /src/VSCodeExtension/src/yeoman-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/src/yeoman-generator.ts -------------------------------------------------------------------------------- /src/VSCodeExtension/syntaxes/qsharp.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/syntaxes/qsharp.tmLanguage.json -------------------------------------------------------------------------------- /src/VSCodeExtension/templates/application/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated or copied files 2 | *.csproj 3 | -------------------------------------------------------------------------------- /src/VSCodeExtension/templates/application/Program.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/templates/application/Program.qs -------------------------------------------------------------------------------- /src/VSCodeExtension/templates/ionq/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated or copied files 2 | *.csproj 3 | -------------------------------------------------------------------------------- /src/VSCodeExtension/templates/ionq/Program.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/templates/ionq/Program.qs -------------------------------------------------------------------------------- /src/VSCodeExtension/templates/library/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated or copied files 2 | *.csproj 3 | -------------------------------------------------------------------------------- /src/VSCodeExtension/templates/library/Library.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/templates/library/Library.qs -------------------------------------------------------------------------------- /src/VSCodeExtension/templates/quantinuum/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated or copied files 2 | *.csproj 3 | -------------------------------------------------------------------------------- /src/VSCodeExtension/templates/quantinuum/Program.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/templates/quantinuum/Program.qs -------------------------------------------------------------------------------- /src/VSCodeExtension/templates/unittest/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated or copied files 2 | *.csproj 3 | -------------------------------------------------------------------------------- /src/VSCodeExtension/templates/unittest/Tests.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/templates/unittest/Tests.qs -------------------------------------------------------------------------------- /src/VSCodeExtension/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/test/README.md -------------------------------------------------------------------------------- /src/VSCodeExtension/test/Run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/test/Run.ps1 -------------------------------------------------------------------------------- /src/VSCodeExtension/test/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/test/test.ts -------------------------------------------------------------------------------- /src/VSCodeExtension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/tsconfig.json -------------------------------------------------------------------------------- /src/VSCodeExtension/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VSCodeExtension/tslint.json -------------------------------------------------------------------------------- /src/VisualStudioExtension/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VisualStudioExtension/.gitignore -------------------------------------------------------------------------------- /src/VisualStudioExtension/QSharpAppTemplate/Program.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VisualStudioExtension/QSharpAppTemplate/Program.qs -------------------------------------------------------------------------------- /src/VisualStudioExtension/QSharpLibTemplate/Library.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VisualStudioExtension/QSharpLibTemplate/Library.qs -------------------------------------------------------------------------------- /src/VisualStudioExtension/QSharpTestTemplate/Tests.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VisualStudioExtension/QSharpTestTemplate/Tests.qs -------------------------------------------------------------------------------- /src/VisualStudioExtension/QSharpVsix/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VisualStudioExtension/QSharpVsix/LICENSE.txt -------------------------------------------------------------------------------- /src/VisualStudioExtension/QSharpVsix/QSharpVsix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VisualStudioExtension/QSharpVsix/QSharpVsix.csproj -------------------------------------------------------------------------------- /src/VisualStudioExtension/QSharpVsix/QsLanguageClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VisualStudioExtension/QSharpVsix/QsLanguageClient.cs -------------------------------------------------------------------------------- /src/VisualStudioExtension/QSharpVsix/QsSmartIndent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VisualStudioExtension/QSharpVsix/QsSmartIndent.cs -------------------------------------------------------------------------------- /src/VisualStudioExtension/QSharpVsix/Telemetry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VisualStudioExtension/QSharpVsix/Telemetry.cs -------------------------------------------------------------------------------- /src/VisualStudioExtension/QSharpVsix/syntax.pkgdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VisualStudioExtension/QSharpVsix/syntax.pkgdef -------------------------------------------------------------------------------- /src/VisualStudioExtension/QSharpVsix/tags.txt: -------------------------------------------------------------------------------- 1 | Q# 2 | quantum 3 | qsharp 4 | -------------------------------------------------------------------------------- /src/VisualStudioExtension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/qsharp-compiler/HEAD/src/VisualStudioExtension/README.md --------------------------------------------------------------------------------