├── CONTRIBUTING.md ├── COPYING.txt ├── README.md ├── autoload └── youcompleteme.vim ├── doc └── youcompleteme.txt ├── plugin └── youcompleteme.vim ├── python ├── test_requirements.txt └── ycm │ ├── __init__.py │ ├── base.py │ ├── client │ ├── __init__.py │ ├── base_request.py │ ├── command_request.py │ ├── completion_request.py │ ├── event_notification.py │ ├── omni_completion_request.py │ └── ycmd_keepalive.py │ ├── diagnostic_interface.py │ ├── omni_completer.py │ ├── syntax_parse.py │ ├── test_utils.py │ ├── tests │ ├── base_test.py │ ├── syntax_parse_test.py │ └── testdata │ │ ├── cpp_syntax │ │ ├── java_syntax │ │ ├── php_syntax │ │ └── python_syntax │ ├── unsafe_thread_pool_executor.py │ ├── vimsupport.py │ └── youcompleteme.py └── third_party ├── pythonfutures ├── CHANGES ├── LICENSE ├── concurrent │ ├── __init__.py │ └── futures │ │ ├── __init__.py │ │ ├── _base.py │ │ ├── _compat.py │ │ ├── process.py │ │ └── thread.py ├── crawl.py ├── docs │ ├── conf.py │ ├── index.rst │ └── make.bat ├── futures │ ├── __init__.py │ ├── process.py │ └── thread.py ├── primes.py ├── setup.cfg ├── setup.py ├── test_futures.py └── tox.ini ├── requests-futures ├── LICENSE ├── MANIFEST.in ├── README.rst ├── requests_futures │ ├── __init__.py │ └── sessions.py ├── requirements-python-2.7.txt ├── requirements-python-3.2.txt ├── setup.py └── test_requests_futures.py ├── requests ├── AUTHORS.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── NOTICE ├── README.rst ├── docs │ ├── MANIFEST.in │ ├── Makefile │ ├── _static │ │ └── requests-sidebar.png │ ├── _templates │ │ ├── sidebarintro.html │ │ └── sidebarlogo.html │ ├── _themes │ │ ├── LICENSE │ │ ├── README.rst │ │ ├── flask_theme_support.py │ │ ├── kr │ │ │ ├── layout.html │ │ │ ├── relations.html │ │ │ ├── static │ │ │ │ └── flasky.css_t │ │ │ └── theme.conf │ │ └── kr_small │ │ │ ├── layout.html │ │ │ ├── static │ │ │ └── flasky.css_t │ │ │ └── theme.conf │ ├── api.rst │ ├── community │ │ ├── faq.rst │ │ ├── out-there.rst │ │ ├── support.rst │ │ └── updates.rst │ ├── conf.py │ ├── dev │ │ ├── authors.rst │ │ ├── internals.rst │ │ ├── philosophy.rst │ │ └── todo.rst │ ├── index.rst │ ├── make.bat │ ├── requirements.txt │ └── user │ │ ├── advanced.rst │ │ ├── authentication.rst │ │ ├── install.rst │ │ ├── intro.rst │ │ └── quickstart.rst ├── ext │ └── requests-logo.ai ├── requests │ ├── __init__.py │ ├── adapters.py │ ├── api.py │ ├── auth.py │ ├── cacert.pem │ ├── certs.py │ ├── compat.py │ ├── cookies.py │ ├── exceptions.py │ ├── hooks.py │ ├── models.py │ ├── packages │ │ ├── README.rst │ │ ├── __init__.py │ │ ├── chardet │ │ │ ├── __init__.py │ │ │ ├── big5freq.py │ │ │ ├── big5prober.py │ │ │ ├── chardetect.py │ │ │ ├── chardistribution.py │ │ │ ├── charsetgroupprober.py │ │ │ ├── charsetprober.py │ │ │ ├── codingstatemachine.py │ │ │ ├── compat.py │ │ │ ├── constants.py │ │ │ ├── cp949prober.py │ │ │ ├── escprober.py │ │ │ ├── escsm.py │ │ │ ├── eucjpprober.py │ │ │ ├── euckrfreq.py │ │ │ ├── euckrprober.py │ │ │ ├── euctwfreq.py │ │ │ ├── euctwprober.py │ │ │ ├── gb2312freq.py │ │ │ ├── gb2312prober.py │ │ │ ├── hebrewprober.py │ │ │ ├── jisfreq.py │ │ │ ├── jpcntx.py │ │ │ ├── langbulgarianmodel.py │ │ │ ├── langcyrillicmodel.py │ │ │ ├── langgreekmodel.py │ │ │ ├── langhebrewmodel.py │ │ │ ├── langhungarianmodel.py │ │ │ ├── langthaimodel.py │ │ │ ├── latin1prober.py │ │ │ ├── mbcharsetprober.py │ │ │ ├── mbcsgroupprober.py │ │ │ ├── mbcssm.py │ │ │ ├── sbcharsetprober.py │ │ │ ├── sbcsgroupprober.py │ │ │ ├── sjisprober.py │ │ │ ├── universaldetector.py │ │ │ └── utf8prober.py │ │ └── urllib3 │ │ │ ├── __init__.py │ │ │ ├── _collections.py │ │ │ ├── connection.py │ │ │ ├── connectionpool.py │ │ │ ├── contrib │ │ │ ├── __init__.py │ │ │ ├── ntlmpool.py │ │ │ └── pyopenssl.py │ │ │ ├── exceptions.py │ │ │ ├── fields.py │ │ │ ├── filepost.py │ │ │ ├── packages │ │ │ ├── __init__.py │ │ │ ├── ordered_dict.py │ │ │ ├── six.py │ │ │ └── ssl_match_hostname │ │ │ │ ├── __init__.py │ │ │ │ └── _implementation.py │ │ │ ├── poolmanager.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── util.py │ ├── sessions.py │ ├── status_codes.py │ ├── structures.py │ └── utils.py ├── requirements.txt ├── setup.cfg ├── setup.py └── test_requests.py ├── retries └── retries.py └── ycmd ├── CONTRIBUTING.md ├── COPYING.txt ├── README.md ├── clang_includes ├── Intrin.h ├── __wmmintrin_aes.h ├── __wmmintrin_pclmul.h ├── altivec.h ├── ammintrin.h ├── avx2intrin.h ├── avxintrin.h ├── bmi2intrin.h ├── bmiintrin.h ├── cpuid.h ├── emmintrin.h ├── f16cintrin.h ├── float.h ├── fma4intrin.h ├── fmaintrin.h ├── immintrin.h ├── iso646.h ├── limits.h ├── lzcntintrin.h ├── mm3dnow.h ├── mm_malloc.h ├── mmintrin.h ├── module.map ├── nmmintrin.h ├── pmmintrin.h ├── popcntintrin.h ├── prfchwintrin.h ├── rdseedintrin.h ├── rtmintrin.h ├── shaintrin.h ├── smmintrin.h ├── stdalign.h ├── stdarg.h ├── stdbool.h ├── stddef.h ├── stdint.h ├── stdnoreturn.h ├── tbmintrin.h ├── tgmath.h ├── tmmintrin.h ├── unwind.h ├── varargs.h ├── wmmintrin.h ├── x86intrin.h ├── xmmintrin.h └── xopintrin.h ├── libclang.dll ├── third_party ├── OmniSharpServer │ ├── .nuget │ │ ├── NuGet.Config │ │ ├── NuGet.exe │ │ └── NuGet.targets │ ├── LICENSE.md │ ├── Microsoft.Build.Evaluation │ │ ├── Microsoft.Build.Evaluation.csproj │ │ ├── Project.cs │ │ ├── ProjectItem.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── NRefactory │ │ ├── ICSharpCode.NRefactory.CSharp.AstVerifier │ │ │ ├── AssemblyInfo.cs │ │ │ ├── ICSharpCode.NRefactory.CSharp.AstVerifier.csproj │ │ │ └── Main.cs │ │ ├── ICSharpCode.NRefactory.CSharp.Refactoring │ │ │ ├── CodeActions │ │ │ │ ├── AbstractAndVirtualConversionAction.cs │ │ │ │ ├── AddAnotherAccessorAction.cs │ │ │ │ ├── AddArgumentNameAction.cs │ │ │ │ ├── AddBracesAction.cs │ │ │ │ ├── AddCatchTypeAction.cs │ │ │ │ ├── AddExceptionDescriptionAction.cs │ │ │ │ ├── AddOptionalParameterToInvocationAction.cs │ │ │ │ ├── AddUsingAction.cs │ │ │ │ ├── AutoLinqSumAction.cs │ │ │ │ ├── CS1105ExtensionMethodMustBeDeclaredStaticAction.cs │ │ │ │ ├── CS1520MethodMustHaveAReturnTypeAction.cs │ │ │ │ ├── ChangeAccessModifierAction.cs │ │ │ │ ├── CheckIfParameterIsNullAction.cs │ │ │ │ ├── ComputeConstantValueAction.cs │ │ │ │ ├── ConvertAnonymousDelegateToLambdaAction.cs │ │ │ │ ├── ConvertAsToCastAction.cs │ │ │ │ ├── ConvertAssignmentToIfAction.cs │ │ │ │ ├── ConvertBitwiseFlagComparisonToHasFlagsAction.cs │ │ │ │ ├── ConvertCastToAsAction.cs │ │ │ │ ├── ConvertDecToHexAction.cs │ │ │ │ ├── ConvertDoWhileToWhileLoopAction.cs │ │ │ │ ├── ConvertEqualityOperatorToEqualsAction.cs │ │ │ │ ├── ConvertEqualsToEqualityOperatorAction.cs │ │ │ │ ├── ConvertExplicitToImplicitImplementationAction.cs │ │ │ │ ├── ConvertForToWhileAction.cs │ │ │ │ ├── ConvertForeachToForAction.cs │ │ │ │ ├── ConvertHasFlagsToBitwiseFlagComparisonAction.cs │ │ │ │ ├── ConvertHexToDecAction.cs │ │ │ │ ├── ConvertIfStatementToConditionalTernaryExpressionAction.cs │ │ │ │ ├── ConvertIfStatementToNullCoalescingExpressionAction.cs │ │ │ │ ├── ConvertIfStatementToReturnStatementAction.cs │ │ │ │ ├── ConvertIfStatementToSwitchStatementAction.cs │ │ │ │ ├── ConvertImplicitToExplicitImplementationAction.cs │ │ │ │ ├── ConvertLambdaBodyExpressionToStatementAction.cs │ │ │ │ ├── ConvertLambdaBodyStatementToExpressionAction.cs │ │ │ │ ├── ConvertLambdaToAnonymousDelegateAction.cs │ │ │ │ ├── ConvertMethodGroupToAnonymousMethodAction.cs │ │ │ │ ├── ConvertMethodGroupToLambdaAction.cs │ │ │ │ ├── ConvertMultiplyToShiftAction.cs │ │ │ │ ├── ConvertNullCoalescingToConditionalExpressionAction.cs │ │ │ │ ├── ConvertReturnStatementToIfAction.cs │ │ │ │ ├── ConvertShiftToMultiplyAction.cs │ │ │ │ ├── ConvertSwitchToIfAction.cs │ │ │ │ ├── ConvertToInitializer │ │ │ │ │ ├── AccessPath.cs │ │ │ │ │ ├── ConvertInitializerToExplicitInitializationsAction.cs │ │ │ │ │ ├── ConvertToInitializerAction.cs │ │ │ │ │ └── StatementsToInitializerConverter.cs │ │ │ │ ├── ConvertWhileToDoWhileLoopAction.cs │ │ │ │ ├── CopyCommentsFromBase.cs │ │ │ │ ├── CopyCommentsFromInterface.cs │ │ │ │ ├── CreateBackingStoreAction.cs │ │ │ │ ├── CreateChangedEventAction.cs │ │ │ │ ├── CreateClassDeclarationAction.cs │ │ │ │ ├── CreateConstructorDeclarationAction.cs │ │ │ │ ├── CreateCustomEventImplementationAction.cs │ │ │ │ ├── CreateDelegateAction.cs │ │ │ │ ├── CreateEnumValue.cs │ │ │ │ ├── CreateEventInvocatorAction.cs │ │ │ │ ├── CreateFieldAction.cs │ │ │ │ ├── CreateIndexerAction.cs │ │ │ │ ├── CreateLocalVariableAction.cs │ │ │ │ ├── CreateMethodDeclarationAction.cs │ │ │ │ ├── CreateOverloadWithoutParameterAction.cs │ │ │ │ ├── CreatePropertyAction.cs │ │ │ │ ├── DeclareLocalVariableAction.cs │ │ │ │ ├── ExtensionMethodInvocationToStaticMethodInvocationAction.cs │ │ │ │ ├── ExtractAnonymousMethodAction.cs │ │ │ │ ├── ExtractFieldAction.cs │ │ │ │ ├── ExtractMethod │ │ │ │ │ ├── ExtractMethodAction.cs │ │ │ │ │ ├── StaticVisitor.cs │ │ │ │ │ ├── VariableLookupVisitor.cs │ │ │ │ │ └── VariableUsageAnalyzation.cs │ │ │ │ ├── ExtractWhileConditionToInternalIfStatementAction.cs │ │ │ │ ├── FlipEqualsTargetAndArgumentAction.cs │ │ │ │ ├── FlipOperatorArgumentsAction.cs │ │ │ │ ├── GenerateGetterAction.cs │ │ │ │ ├── GeneratePropertyAction.cs │ │ │ │ ├── GenerateSwitchLabelsAction.cs │ │ │ │ ├── ImplementAbstractMembersAction.cs │ │ │ │ ├── ImplementInterfaceAction.cs │ │ │ │ ├── ImplementInterfaceExplicitAction.cs │ │ │ │ ├── ImplementNotImplementedProperty.cs │ │ │ │ ├── InlineLocalVariableAction.cs │ │ │ │ ├── InsertAnonymousMethodSignatureAction.cs │ │ │ │ ├── IntroduceConstantAction.cs │ │ │ │ ├── IntroduceFormatItemAction.cs │ │ │ │ ├── InvertConditionalOperatorAction.cs │ │ │ │ ├── InvertIfAction.cs │ │ │ │ ├── InvertIfAndSimplify.cs │ │ │ │ ├── InvertLogicalExpressionAction.cs │ │ │ │ ├── IterateViaForeachAction.cs │ │ │ │ ├── JoinDeclarationAndAssignmentAction.cs │ │ │ │ ├── JoinStringAction.cs │ │ │ │ ├── LinqFluentToQueryAction.cs │ │ │ │ ├── LinqQueryToFluentAction.cs │ │ │ │ ├── MergeNestedIfAction.cs │ │ │ │ ├── MoveToOuterScopeAction.cs │ │ │ │ ├── NegateIsExpressionAction.cs │ │ │ │ ├── NegateRelationalExpressionAction.cs │ │ │ │ ├── PutInsideUsingAction.cs │ │ │ │ ├── RemoveBackingStoreAction.cs │ │ │ │ ├── RemoveBracesAction.cs │ │ │ │ ├── RemoveRedundantCatchTypeAction.cs │ │ │ │ ├── RemoveRegionAction.cs │ │ │ │ ├── ReplaceAssignmentWithPostfixExpressionAction.cs │ │ │ │ ├── ReplaceEmptyStringAction.cs │ │ │ │ ├── ReplaceOperatorAssignmentWithAssignmentAction.cs │ │ │ │ ├── ReplacePostfixExpressionWithAssignmentAction.cs │ │ │ │ ├── ReplaceWithOperatorAssignmentAction.cs │ │ │ │ ├── ReverseDirectionForForLoopAction.cs │ │ │ │ ├── SimplifyIfFlowAction.cs │ │ │ │ ├── SimplifyIfInLoopsFlowAction.cs │ │ │ │ ├── SortUsingsAction.cs │ │ │ │ ├── SpecializedCodeAction.cs │ │ │ │ ├── SplitDeclarationAndAssignmentAction.cs │ │ │ │ ├── SplitDeclarationListAction.cs │ │ │ │ ├── SplitIfAction.cs │ │ │ │ ├── SplitStringAction.cs │ │ │ │ ├── UseAsAndNullCheckAction.cs │ │ │ │ ├── UseExplicitTypeAction.cs │ │ │ │ ├── UseStringFormatAction.cs │ │ │ │ └── UseVarKeywordAction.cs │ │ │ ├── CodeIssues │ │ │ │ ├── Custom │ │ │ │ │ ├── AdditionalOfTypeIssues.cs │ │ │ │ │ ├── BaseMethodParameterNameMismatchIssue.cs │ │ │ │ │ ├── CallToObjectEqualsViaBaseIssue.cs │ │ │ │ │ ├── CastExpressionOfIncompatibleTypeIssue.cs │ │ │ │ │ ├── CheckNamespaceIssue.cs │ │ │ │ │ ├── CompilerErrors │ │ │ │ │ │ ├── CS0029InvalidConversionIssue.cs │ │ │ │ │ │ ├── CS0126ReturnMustBeFollowedByAnyExpression.cs │ │ │ │ │ │ ├── CS0127ReturnMustNotBeFollowedByAnyExpression.cs │ │ │ │ │ │ ├── CS0152DuplicateCaseLabelValueIssue.cs │ │ │ │ │ │ ├── CS0169FieldIsNeverUsedIssue.cs │ │ │ │ │ │ ├── CS0618UsageOfObsoleteMemberIssue.cs │ │ │ │ │ │ ├── CS0659OverrideEqualWithoutGetHashCode.cs │ │ │ │ │ │ ├── CS0759RedundantPartialMethodIssue.cs │ │ │ │ │ │ ├── CS1729TypeHasNoConstructorWithNArgumentsIssue.cs │ │ │ │ │ │ ├── ExpressionIsNeverOfProvidedTypeIssue.cs │ │ │ │ │ │ ├── MissingInterfaceMemberImplementationIssue.cs │ │ │ │ │ │ └── StaticConstructorParameterIssue.cs │ │ │ │ │ ├── ConstantConditionIssue.cs │ │ │ │ │ ├── ConvertIfToAndExpressionIssue.cs │ │ │ │ │ ├── LockThisIssue.cs │ │ │ │ │ ├── MixedUseOfFieldsAndGettersIssue.cs │ │ │ │ │ ├── NegativeRelationalExpressionIssue.cs │ │ │ │ │ ├── NotImplementedExceptionIssue.cs │ │ │ │ │ ├── ParameterOnlyAssignedIssue.cs │ │ │ │ │ ├── RedundantAssignmentIssue.cs │ │ │ │ │ ├── RedundantInternalIssue.cs │ │ │ │ │ ├── RedundantPrivateIssue.cs │ │ │ │ │ ├── StaticEventSubscriptionIssue.cs │ │ │ │ │ ├── UnreachableCodeIssue.cs │ │ │ │ │ ├── VariableOnlyAssignedIssue.cs │ │ │ │ │ └── XmlDocIssue.cs │ │ │ │ ├── GatherVisitorBase.cs │ │ │ │ ├── IssueCategories.cs │ │ │ │ ├── NotWorking │ │ │ │ │ ├── AccessToClosureIssues │ │ │ │ │ │ ├── AccessToClosureIssue.cs │ │ │ │ │ │ ├── AccessToDisposedClosureIssue.cs │ │ │ │ │ │ ├── AccessToModifiedClosureIssue.cs │ │ │ │ │ │ └── LocalVariableNamePicker.cs │ │ │ │ │ ├── DuplicateBodyMethodIssue.cs │ │ │ │ │ ├── DuplicateExpressionsInConditionsIssue.cs │ │ │ │ │ ├── DuplicateIfInIfChainIssue.cs │ │ │ │ │ ├── ParameterCanBeIEnumerableIssue.cs │ │ │ │ │ └── VariableDeclaredInWideScopeIssue.cs │ │ │ │ ├── RefactoringExtensions.cs │ │ │ │ ├── Synced │ │ │ │ │ ├── CodeQuality │ │ │ │ │ │ ├── BaseMethodCallWithDefaultParameterIssue.cs │ │ │ │ │ │ ├── BitwiseOperatorOnEnumWithoutFlagsIssue.cs │ │ │ │ │ │ ├── CanBeReplacedWithTryCastAndCheckForNullIssue.cs │ │ │ │ │ │ ├── CompareNonConstrainedGenericWithNullIssue.cs │ │ │ │ │ │ ├── CompareOfFloatsByEqualityOperatorIssue.cs │ │ │ │ │ │ ├── ConditionalTernaryEqualBranchIssue.cs │ │ │ │ │ │ ├── DelegateSubtractionIssue.cs │ │ │ │ │ │ ├── DoNotCallOverridableMethodsInConstructorIssue.cs │ │ │ │ │ │ ├── EmptyGeneralCatchClauseIssue.cs │ │ │ │ │ │ ├── EqualExpressionComparisonIssue.cs │ │ │ │ │ │ ├── EventUnsubscriptionViaAnonymousDelegateIssue.cs │ │ │ │ │ │ ├── ForControlVariableIsNeverModifiedIssue.cs │ │ │ │ │ │ ├── FormatStringProblemIssue.cs │ │ │ │ │ │ ├── FunctionNeverReturnsIssue.cs │ │ │ │ │ │ ├── LocalVariableHidesMemberIssue.cs │ │ │ │ │ │ ├── LongLiteralEndingLowerLIssue.cs │ │ │ │ │ │ ├── MemberHidesStaticFromOuterClassIssue.cs │ │ │ │ │ │ ├── MethodOverloadWithOptionalParameterIssue.cs │ │ │ │ │ │ ├── NonReadonlyReferencedInGetHashCodeIssue.cs │ │ │ │ │ │ ├── NotResolvedInTextIssue.cs │ │ │ │ │ │ ├── ObjectCreationAsStatementIssue.cs │ │ │ │ │ │ ├── OperatorIsCanBeUsedIssue.cs │ │ │ │ │ │ ├── OptionalParameterHierarchyMismatchIssue.cs │ │ │ │ │ │ ├── OptionalParameterRefOutIssue.cs │ │ │ │ │ │ ├── ParameterHidesMemberIssue.cs │ │ │ │ │ │ ├── PartialMethodParameterNameMismatchIssue.cs │ │ │ │ │ │ ├── PolymorphicFieldLikeEventInvocationIssue.cs │ │ │ │ │ │ ├── PossibleAssignmentToReadonlyFieldIssue.cs │ │ │ │ │ │ ├── PossibleMultipleEnumerationIssue.cs │ │ │ │ │ │ ├── StaticFieldInGenericTypeIssue.cs │ │ │ │ │ │ ├── ThreadStaticAtInstanceFieldIssue.cs │ │ │ │ │ │ └── ValueParameterNotUsedIssue.cs │ │ │ │ │ ├── CompilerErrors │ │ │ │ │ │ └── ProhibitedModifiersIssue.cs │ │ │ │ │ ├── CompilerWarnings │ │ │ │ │ │ ├── CS0183ExpressionIsAlwaysOfProvidedTypeIssue.cs │ │ │ │ │ │ ├── CS1573ParameterHasNoMatchingParamTagIssue.cs │ │ │ │ │ │ ├── CS1717AssignmentMadeToSameVariableIssue.cs │ │ │ │ │ │ └── UnassignedReadonlyFieldIssue.cs │ │ │ │ │ ├── ConstraintViolations │ │ │ │ │ │ └── InconsistentNamingIssue │ │ │ │ │ │ │ ├── AffectedEntity.cs │ │ │ │ │ │ │ ├── DefaultRules.cs │ │ │ │ │ │ │ ├── InconsistentNamingIssue.cs │ │ │ │ │ │ │ ├── NamingConventionService.cs │ │ │ │ │ │ │ ├── NamingRule.cs │ │ │ │ │ │ │ └── NamingStyle.cs │ │ │ │ │ ├── NUnit │ │ │ │ │ │ └── NonPublicMethodWithTestAttributeIssue.cs │ │ │ │ │ ├── Opportunities │ │ │ │ │ │ ├── ConvertClosureToMethodGroupIssue.cs │ │ │ │ │ │ ├── ConvertConditionalTernaryToNullCoalescingIssue.cs │ │ │ │ │ │ ├── ConvertIfStatementToConditionalTernaryExpressionIssue.cs │ │ │ │ │ │ ├── ConvertIfStatementToNullCoalescingExpressionIssue.cs │ │ │ │ │ │ ├── ConvertIfStatementToSwitchStatementIssue.cs │ │ │ │ │ │ ├── ConvertNullableToShortFormIssue.cs │ │ │ │ │ │ ├── ConvertToAutoPropertyIssue.cs │ │ │ │ │ │ ├── ConvertToLambdaExpressionIssue.cs │ │ │ │ │ │ ├── ConvertToStaticTypeIssue.cs │ │ │ │ │ │ ├── ForCanBeConvertedToForeachIssue.cs │ │ │ │ │ │ ├── InvokeAsExtensionMethodIssue.cs │ │ │ │ │ │ ├── RewriteIfReturnToReturnIssue.cs │ │ │ │ │ │ └── SuggestUseVarKeywordEvidentIssue.cs │ │ │ │ │ ├── PracticesAndImprovements │ │ │ │ │ │ ├── AccessToStaticMemberViaDerivedTypeIssue.cs │ │ │ │ │ │ ├── BaseMemberHasParamsIssue.cs │ │ │ │ │ │ ├── ConvertIfDoToWhileIssue.cs │ │ │ │ │ │ ├── ConvertIfToOrExpressionIssue.cs │ │ │ │ │ │ ├── ConvertToConstantIssue.cs │ │ │ │ │ │ ├── EmptyEmbeddedStatementIssue.cs │ │ │ │ │ │ ├── FieldCanBeMadeReadOnlyIssue.cs │ │ │ │ │ │ ├── MemberCanBeMadeStaticIssue.cs │ │ │ │ │ │ ├── ParameterCanBeDeclaredWithBaseTypeIssue.cs │ │ │ │ │ │ ├── PossibleMistakenCallToGetTypeIssue.cs │ │ │ │ │ │ ├── PublicConstructorInAbstractClass.cs │ │ │ │ │ │ ├── ReferenceEqualsWithValueTypeIssue.cs │ │ │ │ │ │ ├── ReplaceWithFirstOrDefaultIssue.cs │ │ │ │ │ │ ├── ReplaceWithLastOrDefaultIssue.cs │ │ │ │ │ │ ├── ReplaceWithOfTypeAny.cs │ │ │ │ │ │ ├── ReplaceWithOfTypeCountIssue.cs │ │ │ │ │ │ ├── ReplaceWithOfTypeFirstIssue.cs │ │ │ │ │ │ ├── ReplaceWithOfTypeFirstOrDefaultIssue.cs │ │ │ │ │ │ ├── ReplaceWithOfTypeIssue.cs │ │ │ │ │ │ ├── ReplaceWithOfTypeLastIssue.cs │ │ │ │ │ │ ├── ReplaceWithOfTypeLastOrDefaultIssue.cs │ │ │ │ │ │ ├── ReplaceWithOfTypeLongCountIssue.cs │ │ │ │ │ │ ├── ReplaceWithOfTypeSingleIssue.cs │ │ │ │ │ │ ├── ReplaceWithOfTypeSingleOrDefaultIssue.cs │ │ │ │ │ │ ├── ReplaceWithOfTypeWhereIssue.cs │ │ │ │ │ │ ├── ReplaceWithSimpleAssignmentIssue.cs │ │ │ │ │ │ ├── ReplaceWithSingleCallToAnyIssue.cs │ │ │ │ │ │ ├── ReplaceWithSingleCallToAverageIssue.cs │ │ │ │ │ │ ├── ReplaceWithSingleCallToCountIssue.cs │ │ │ │ │ │ ├── ReplaceWithSingleCallToFirstIssue.cs │ │ │ │ │ │ ├── ReplaceWithSingleCallToFirstOrDefaultIssue.cs │ │ │ │ │ │ ├── ReplaceWithSingleCallToLastIssue.cs │ │ │ │ │ │ ├── ReplaceWithSingleCallToLastOrDefaultIssue.cs │ │ │ │ │ │ ├── ReplaceWithSingleCallToLongCountIssue.cs │ │ │ │ │ │ ├── ReplaceWithSingleCallToMaxIssue.cs │ │ │ │ │ │ ├── ReplaceWithSingleCallToMinIssue.cs │ │ │ │ │ │ ├── ReplaceWithSingleCallToSingleIssue.cs │ │ │ │ │ │ ├── ReplaceWithSingleCallToSingleOrDefaultIssue.cs │ │ │ │ │ │ ├── ReplaceWithSingleCallToSumIssue.cs │ │ │ │ │ │ ├── ReplaceWithStringIsNullOrEmptyIssue.cs │ │ │ │ │ │ ├── SimplifyConditionalTernaryExpressionIssue.cs │ │ │ │ │ │ ├── SimplifyLinqExpressionIssue.cs │ │ │ │ │ │ ├── StringCompareIsCultureSpecificIssue.cs │ │ │ │ │ │ ├── StringCompareToIsCultureSpecificIssue.cs │ │ │ │ │ │ ├── StringEndsWithIsCultureSpecificIssue.cs │ │ │ │ │ │ ├── StringIndexOfIsCultureSpecificIssue.cs │ │ │ │ │ │ ├── StringLastIndexOfIsCultureSpecificIssue.cs │ │ │ │ │ │ ├── StringStartsWithIsCultureSpecificIssue.cs │ │ │ │ │ │ ├── UseArrayCreationExpressionIssue.cs │ │ │ │ │ │ ├── UseIsOperatorIssue.cs │ │ │ │ │ │ ├── UseMethodAnyIssue.cs │ │ │ │ │ │ └── UseMethodIsInstanceOfTypeIssue.cs │ │ │ │ │ ├── RedundanciesInCode │ │ │ │ │ │ ├── ArrayCreationCanBeReplacedWithArrayInitializerIssue.cs │ │ │ │ │ │ ├── ConditionIsAlwaysTrueOrFalseIssue.cs │ │ │ │ │ │ ├── ConstantNullCoalescingConditionIssue.cs │ │ │ │ │ │ ├── DoubleNegationOperatorIssue.cs │ │ │ │ │ │ ├── EmptyStatementIssue.cs │ │ │ │ │ │ ├── ForStatementConditionIsTrueIssue.cs │ │ │ │ │ │ ├── RedundantAnonymousTypePropertyNameIssue.cs │ │ │ │ │ │ ├── RedundantArgumentDefaultValueIssue.cs │ │ │ │ │ │ ├── RedundantArgumentNameIssue.cs │ │ │ │ │ │ ├── RedundantAttributeParenthesesIssue.cs │ │ │ │ │ │ ├── RedundantBaseQualifierIssue.cs │ │ │ │ │ │ ├── RedundantBoolCompareIssue.cs │ │ │ │ │ │ ├── RedundantCaseLabelIssue.cs │ │ │ │ │ │ ├── RedundantCastIssue.cs │ │ │ │ │ │ ├── RedundantCatchClauseIssue.cs │ │ │ │ │ │ ├── RedundantCheckBeforeAssignmentIssue.cs │ │ │ │ │ │ ├── RedundantCommaInArrayInitializerIssue.cs │ │ │ │ │ │ ├── RedundantComparisonWithNullIssue.cs │ │ │ │ │ │ ├── RedundantDelegateCreationIssue.cs │ │ │ │ │ │ ├── RedundantEmptyDefaultSwitchBranchIssue.cs │ │ │ │ │ │ ├── RedundantEmptyFinallyBlockIssue.cs │ │ │ │ │ │ ├── RedundantEmptyObjectCreationArgumentListssue.cs │ │ │ │ │ │ ├── RedundantEnumerableCastCallIssue.cs │ │ │ │ │ │ ├── RedundantExplicitArrayCreationIssue.cs │ │ │ │ │ │ ├── RedundantExplicitArraySizeIssue.cs │ │ │ │ │ │ ├── RedundantExplicitNullableCreationIssue.cs │ │ │ │ │ │ ├── RedundantExtendsListEntryIssue.cs │ │ │ │ │ │ ├── RedundantIfElseBlockIssue.cs │ │ │ │ │ │ ├── RedundantLambdaParameterTypeIssue.cs │ │ │ │ │ │ ├── RedundantLambdaSignatureParenthesesIssue.cs │ │ │ │ │ │ ├── RedundantLogicalConditionalExpressionOperandIssue.cs │ │ │ │ │ │ ├── RedundantNameQualifierIssue.cs │ │ │ │ │ │ ├── RedundantObjectOrCollectionInitializerIssue.cs │ │ │ │ │ │ ├── RedundantStringToCharArrayCallIssue.cs │ │ │ │ │ │ ├── RedundantTernaryExpressionIssue.cs │ │ │ │ │ │ ├── RedundantThisQualifierIssue.cs │ │ │ │ │ │ ├── RedundantToStringCallForValueTypesIssue.cs │ │ │ │ │ │ ├── RedundantToStringCallIssue.cs │ │ │ │ │ │ ├── RedundantUnsafeContextIssue.cs │ │ │ │ │ │ ├── RedundantUsingDirectiveIssue.cs │ │ │ │ │ │ ├── RemoveRedundantOrStatementIssue.cs │ │ │ │ │ │ └── UnusedAnonymousMethodSignatureIssue.cs │ │ │ │ │ └── RedundanciesInDeclaration │ │ │ │ │ │ ├── EmptyConstructorIssue.cs │ │ │ │ │ │ ├── EmptyDestructorIssue.cs │ │ │ │ │ │ ├── EmptyNamespaceIssue.cs │ │ │ │ │ │ ├── EnumUnderlyingTypeIsIntIssue.cs │ │ │ │ │ │ ├── LocalVariableNotUsedIssue.cs │ │ │ │ │ │ ├── PartialTypeWithSinglePartIssue.cs │ │ │ │ │ │ ├── RedundantBaseConstructorCallIssue.cs │ │ │ │ │ │ ├── RedundantDefaultFieldInitializerIssue.cs │ │ │ │ │ │ ├── RedundantOverridenMemberIssue.cs │ │ │ │ │ │ ├── RedundantParamsIssue.cs │ │ │ │ │ │ ├── SealedMemberInSealedClassIssue.cs │ │ │ │ │ │ ├── UnusedLabelIssue.cs │ │ │ │ │ │ ├── UnusedParameterIssue.cs │ │ │ │ │ │ └── UnusedTypeParameterIssue.cs │ │ │ │ ├── TODO │ │ │ │ │ ├── ConvertTailRecursiveCallToLoopIssue.cs │ │ │ │ │ ├── LoopCanBeConvertedToQueryIssue.cs │ │ │ │ │ ├── PartOfBodyCanBeConvertedToQueryIssue.cs │ │ │ │ │ └── RedundantTypeArgumentsOfMethodIssue.cs │ │ │ │ └── Uncategorized │ │ │ │ │ ├── AutoAsyncIssue.cs │ │ │ │ │ ├── DisposeMethodInNonIDisposableTypeIssue.cs │ │ │ │ │ ├── DontUseLinqWhenItsVerboseAndInefficientIssue.cs │ │ │ │ │ ├── DuplicatedLinqToListOrArrayIssue.cs │ │ │ │ │ ├── ExceptionRethrowIssue.cs │ │ │ │ │ ├── ExplicitConversionInForEachIssue.cs │ │ │ │ │ ├── IncorrectCallToObjectGetHashCodeIssue.cs │ │ │ │ │ ├── RedundantBlockInDifferentBranchesIssue.cs │ │ │ │ │ ├── RedundantNotNullAttributeInNonNullableTypeIssue.cs │ │ │ │ │ ├── ResultOfAsyncCallShouldNotBeIgnoredIssue.cs │ │ │ │ │ ├── SameGuardConditionExpressionInIfelseBranchesIssue.cs │ │ │ │ │ ├── UnmatchedSizeSpecificationInArrayCreationIssue.cs │ │ │ │ │ └── UseOfMemberOfNullReference.cs │ │ │ ├── ICSharpCode.NRefactory.CSharp.Refactoring.csproj │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── ICSharpCode.NRefactory.CSharp │ │ │ ├── Analysis │ │ │ │ ├── AnnotationNames.cs │ │ │ │ ├── ControlFlow.cs │ │ │ │ ├── DeclarationSpace │ │ │ │ │ ├── LocalDeclarationSpace.cs │ │ │ │ │ └── LocalDeclarationSpaceVisitor.cs │ │ │ │ ├── DefiniteAssignmentAnalysis.cs │ │ │ │ ├── NullValueAnalysis.cs │ │ │ │ ├── NullValueStatus.cs │ │ │ │ ├── ReachabilityAnalysis.cs │ │ │ │ └── SemanticHighlightingVisitor.cs │ │ │ ├── Ast │ │ │ │ ├── AstNode.cs │ │ │ │ ├── AstNodeCollection.cs │ │ │ │ ├── AstType.cs │ │ │ │ ├── CSharpModifierToken.cs │ │ │ │ ├── CSharpTokenNode.cs │ │ │ │ ├── CSharpUtil.cs │ │ │ │ ├── ComposedType.cs │ │ │ │ ├── DepthFirstAstVisitor.cs │ │ │ │ ├── DocumentationReference.cs │ │ │ │ ├── ErrorNode.cs │ │ │ │ ├── Expressions │ │ │ │ │ ├── AnonymousMethodExpression.cs │ │ │ │ │ ├── AnonymousTypeCreateExpression.cs │ │ │ │ │ ├── ArrayCreateExpression.cs │ │ │ │ │ ├── ArrayInitializerExpression.cs │ │ │ │ │ ├── AsExpression.cs │ │ │ │ │ ├── AssignmentExpression.cs │ │ │ │ │ ├── BaseReferenceExpression.cs │ │ │ │ │ ├── BinaryOperatorExpression.cs │ │ │ │ │ ├── CastExpression.cs │ │ │ │ │ ├── CheckedExpression.cs │ │ │ │ │ ├── ConditionalExpression.cs │ │ │ │ │ ├── DefaultValueExpression.cs │ │ │ │ │ ├── DirectionExpression.cs │ │ │ │ │ ├── ErrorExpression.cs │ │ │ │ │ ├── Expression.cs │ │ │ │ │ ├── IdentifierExpression.cs │ │ │ │ │ ├── IndexerExpression.cs │ │ │ │ │ ├── InvocationExpression.cs │ │ │ │ │ ├── IsExpression.cs │ │ │ │ │ ├── LambdaExpression.cs │ │ │ │ │ ├── MemberReferenceExpression.cs │ │ │ │ │ ├── NamedArgumentExpression.cs │ │ │ │ │ ├── NamedExpression.cs │ │ │ │ │ ├── NullReferenceExpression.cs │ │ │ │ │ ├── ObjectCreateExpression.cs │ │ │ │ │ ├── ParenthesizedExpression.cs │ │ │ │ │ ├── PointerReferenceExpression.cs │ │ │ │ │ ├── PrimitiveExpression.cs │ │ │ │ │ ├── QueryExpression.cs │ │ │ │ │ ├── SizeOfExpression.cs │ │ │ │ │ ├── StackAllocExpression.cs │ │ │ │ │ ├── ThisReferenceExpression.cs │ │ │ │ │ ├── TypeOfExpression.cs │ │ │ │ │ ├── TypeReferenceExpression.cs │ │ │ │ │ ├── UnaryOperatorExpression.cs │ │ │ │ │ ├── UncheckedExpression.cs │ │ │ │ │ └── UndocumentedExpression.cs │ │ │ │ ├── GeneralScope │ │ │ │ │ ├── Attribute.cs │ │ │ │ │ ├── AttributeSection.cs │ │ │ │ │ ├── Comment.cs │ │ │ │ │ ├── Constraint.cs │ │ │ │ │ ├── DelegateDeclaration.cs │ │ │ │ │ ├── ExternAliasDeclaration.cs │ │ │ │ │ ├── NamespaceDeclaration.cs │ │ │ │ │ ├── NewLineNode.cs │ │ │ │ │ ├── PreProcessorDirective.cs │ │ │ │ │ ├── TextNode.cs │ │ │ │ │ ├── TypeDeclaration.cs │ │ │ │ │ ├── TypeParameterDeclaration.cs │ │ │ │ │ ├── UsingAliasDeclaration.cs │ │ │ │ │ ├── UsingDeclaration.cs │ │ │ │ │ └── WhitespaceNode.cs │ │ │ │ ├── IAstVisitor.cs │ │ │ │ ├── Identifier.cs │ │ │ │ ├── IdentifierExpressionBackreference.cs │ │ │ │ ├── MemberType.cs │ │ │ │ ├── Modifiers.cs │ │ │ │ ├── NodeType.cs │ │ │ │ ├── ObservableAstVisitor.cs │ │ │ │ ├── PrimitiveType.cs │ │ │ │ ├── Roles.cs │ │ │ │ ├── SimpleType.cs │ │ │ │ ├── Statements │ │ │ │ │ ├── BlockStatement.cs │ │ │ │ │ ├── BreakStatement.cs │ │ │ │ │ ├── CheckedStatement.cs │ │ │ │ │ ├── ContinueStatement.cs │ │ │ │ │ ├── DoWhileStatement.cs │ │ │ │ │ ├── EmptyStatement.cs │ │ │ │ │ ├── ExpressionStatement.cs │ │ │ │ │ ├── FixedStatement.cs │ │ │ │ │ ├── ForStatement.cs │ │ │ │ │ ├── ForeachStatement.cs │ │ │ │ │ ├── GotoStatement.cs │ │ │ │ │ ├── IfElseStatement.cs │ │ │ │ │ ├── LabelStatement.cs │ │ │ │ │ ├── LockStatement.cs │ │ │ │ │ ├── ReturnStatement.cs │ │ │ │ │ ├── Statement.cs │ │ │ │ │ ├── SwitchStatement.cs │ │ │ │ │ ├── ThrowStatement.cs │ │ │ │ │ ├── TryCatchStatement.cs │ │ │ │ │ ├── UncheckedStatement.cs │ │ │ │ │ ├── UnsafeStatement.cs │ │ │ │ │ ├── UsingStatement.cs │ │ │ │ │ ├── VariableDeclarationStatement.cs │ │ │ │ │ ├── WhileStatement.cs │ │ │ │ │ ├── YieldBreakStatement.cs │ │ │ │ │ └── YieldReturnStatement.cs │ │ │ │ ├── SyntaxExtensions.cs │ │ │ │ ├── SyntaxTree.cs │ │ │ │ ├── TokenRole.cs │ │ │ │ └── TypeMembers │ │ │ │ │ ├── Accessor.cs │ │ │ │ │ ├── ConstructorDeclaration.cs │ │ │ │ │ ├── DestructorDeclaration.cs │ │ │ │ │ ├── EntityDeclaration.cs │ │ │ │ │ ├── EnumMemberDeclaration.cs │ │ │ │ │ ├── EventDeclaration.cs │ │ │ │ │ ├── FieldDeclaration.cs │ │ │ │ │ ├── FixedFieldDeclaration.cs │ │ │ │ │ ├── FixedVariableInitializer.cs │ │ │ │ │ ├── IndexerDeclaration.cs │ │ │ │ │ ├── MethodDeclaration.cs │ │ │ │ │ ├── OperatorDeclaration.cs │ │ │ │ │ ├── ParameterDeclaration.cs │ │ │ │ │ ├── PropertyDeclaration.cs │ │ │ │ │ └── VariableInitializer.cs │ │ │ ├── CSharpProjectContent.cs │ │ │ ├── CombineQueryExpressions.cs │ │ │ ├── Completion │ │ │ │ ├── CSharpCompletionEngine.cs │ │ │ │ ├── CSharpCompletionEngineBase.cs │ │ │ │ ├── CSharpParameterCompletionEngine.cs │ │ │ │ ├── CompletionDataWrapper.cs │ │ │ │ ├── ICompletionContextProvider.cs │ │ │ │ ├── ICompletionDataFactory.cs │ │ │ │ └── IParameterCompletionDataFactory.cs │ │ │ ├── Formatter │ │ │ │ ├── CSharpFormatter.cs │ │ │ │ ├── CSharpFormattingOptions.cs │ │ │ │ ├── ConstructFixer.cs │ │ │ │ ├── FormattingChanges.cs │ │ │ │ ├── FormattingOptionsFactory.cs │ │ │ │ ├── FormattingVisitor.cs │ │ │ │ ├── FormattingVisitor_Expressions.cs │ │ │ │ ├── FormattingVisitor_Global.cs │ │ │ │ ├── FormattingVisitor_Query.cs │ │ │ │ ├── FormattingVisitor_Statements.cs │ │ │ │ ├── FormattingVisitor_TypeMembers.cs │ │ │ │ ├── GeneratedCodeSettings.cs │ │ │ │ ├── Indent.cs │ │ │ │ └── TextEditorOptions.cs │ │ │ ├── ICSharpCode.NRefactory.CSharp.csproj │ │ │ ├── IndentEngine │ │ │ │ ├── CSharpIndentEngine.cs │ │ │ │ ├── CacheIndentEngine.cs │ │ │ │ ├── IDocumentIndentEngine.cs │ │ │ │ ├── IStateMachineIndentEngine.cs │ │ │ │ ├── IndentState.cs │ │ │ │ ├── NullIStateMachineIndentEngine.cs │ │ │ │ └── TextPasteIndentEngine.cs │ │ │ ├── IntroduceQueryExpressions.cs │ │ │ ├── NameLookupMode.cs │ │ │ ├── OutputVisitor │ │ │ │ ├── CSharpAmbience.cs │ │ │ │ ├── CSharpOutputVisitor.cs │ │ │ │ ├── CodeDomConvertVisitor.cs │ │ │ │ ├── ITokenWriter.cs │ │ │ │ ├── InsertMissingTokensDecorator.cs │ │ │ │ ├── InsertParenthesesVisitor.cs │ │ │ │ ├── InsertRequiredSpacesDecorator.cs │ │ │ │ ├── InsertSpecialsDecorator.cs │ │ │ │ └── TextWriterOutputFormatter.cs │ │ │ ├── Parser │ │ │ │ ├── CSharpParser.cs │ │ │ │ ├── CompilerSettings.cs │ │ │ │ ├── SeekableStreamReader.cs │ │ │ │ └── mcs │ │ │ │ │ ├── CryptoConvert.cs │ │ │ │ │ ├── MonoSymbolFile.cs │ │ │ │ │ ├── MonoSymbolTable.cs │ │ │ │ │ ├── MonoSymbolWriter.cs │ │ │ │ │ ├── SourceMethodBuilder.cs │ │ │ │ │ ├── anonymous.cs │ │ │ │ │ ├── argument.cs │ │ │ │ │ ├── assembly.cs │ │ │ │ │ ├── assign.cs │ │ │ │ │ ├── async.cs │ │ │ │ │ ├── attribute.cs │ │ │ │ │ ├── cfold.cs │ │ │ │ │ ├── class.cs │ │ │ │ │ ├── codegen.cs │ │ │ │ │ ├── complete.cs │ │ │ │ │ ├── const.cs │ │ │ │ │ ├── constant.cs │ │ │ │ │ ├── context.cs │ │ │ │ │ ├── convert.cs │ │ │ │ │ ├── cs-parser.cs │ │ │ │ │ ├── cs-parser.jay │ │ │ │ │ ├── cs-tokenizer.cs │ │ │ │ │ ├── decl.cs │ │ │ │ │ ├── delegate.cs │ │ │ │ │ ├── doc.cs │ │ │ │ │ ├── driver.cs │ │ │ │ │ ├── dynamic.cs │ │ │ │ │ ├── ecore.cs │ │ │ │ │ ├── enum.cs │ │ │ │ │ ├── eval.cs │ │ │ │ │ ├── expression.cs │ │ │ │ │ ├── field.cs │ │ │ │ │ ├── flowanalysis.cs │ │ │ │ │ ├── generic.cs │ │ │ │ │ ├── import.cs │ │ │ │ │ ├── iterators.cs │ │ │ │ │ ├── lambda.cs │ │ │ │ │ ├── linq.cs │ │ │ │ │ ├── literal.cs │ │ │ │ │ ├── location.cs │ │ │ │ │ ├── membercache.cs │ │ │ │ │ ├── method.cs │ │ │ │ │ ├── modifiers.cs │ │ │ │ │ ├── module.cs │ │ │ │ │ ├── namespace.cs │ │ │ │ │ ├── nullable.cs │ │ │ │ │ ├── outline.cs │ │ │ │ │ ├── parameter.cs │ │ │ │ │ ├── pending.cs │ │ │ │ │ ├── property.cs │ │ │ │ │ ├── reflection.cs │ │ │ │ │ ├── report.cs │ │ │ │ │ ├── settings.cs │ │ │ │ │ ├── statement.cs │ │ │ │ │ ├── support.cs │ │ │ │ │ ├── symbolwriter.cs │ │ │ │ │ ├── typemanager.cs │ │ │ │ │ ├── typespec.cs │ │ │ │ │ └── visit.cs │ │ │ ├── PatternMatching │ │ │ │ └── AnyType.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── QueryExpressionExpander.cs │ │ │ ├── Refactoring │ │ │ │ ├── BaseRefactoringContext.cs │ │ │ │ ├── CodeAction.cs │ │ │ │ ├── CodeActionProvider.cs │ │ │ │ ├── CodeActions │ │ │ │ │ └── RemoveFieldRefactoryActionRefactoringAction.cs │ │ │ │ ├── CodeGenerationService.cs │ │ │ │ ├── CodeIssue.cs │ │ │ │ ├── CodeIssueProvider.cs │ │ │ │ ├── CodeIssues │ │ │ │ │ └── Uncategorized │ │ │ │ │ │ └── .DS_Store │ │ │ │ ├── CommonSubIssues.cs │ │ │ │ ├── ContextActionAttribute.cs │ │ │ │ ├── DocumentScript.cs │ │ │ │ ├── FormatStringHelper.cs │ │ │ │ ├── IssueAttribute.cs │ │ │ │ ├── LambdaHelper.cs │ │ │ │ ├── LocalReferenceFinder.cs │ │ │ │ ├── NamingHelper.cs │ │ │ │ ├── PatternHelper.cs │ │ │ │ ├── RefactoringAstHelper.cs │ │ │ │ ├── RefactoringContext.cs │ │ │ │ ├── Script.cs │ │ │ │ ├── TypeGuessing.cs │ │ │ │ ├── TypeSystemAstBuilder.cs │ │ │ │ ├── UsingHelper.cs │ │ │ │ ├── VariableReferenceGraph.cs │ │ │ │ └── WordParser.cs │ │ │ ├── Resolver │ │ │ │ ├── AliasNamespaceResolveResult.cs │ │ │ │ ├── AliasTypeResolveResult.cs │ │ │ │ ├── AwaitResolveResult.cs │ │ │ │ ├── CSharpAstResolver.cs │ │ │ │ ├── CSharpConversions.cs │ │ │ │ ├── CSharpInvocationResolveResult.cs │ │ │ │ ├── CSharpOperators.cs │ │ │ │ ├── CSharpResolver.cs │ │ │ │ ├── CastResolveResult.cs │ │ │ │ ├── CompositeResolveVisitorNavigator.cs │ │ │ │ ├── DetectSkippableNodesNavigator.cs │ │ │ │ ├── DynamicInvocationResolveResult.cs │ │ │ │ ├── DynamicMemberResolveResult.cs │ │ │ │ ├── FindReferenceSearchScope.cs │ │ │ │ ├── FindReferencedEntities.cs │ │ │ │ ├── FindReferences.cs │ │ │ │ ├── IResolveVisitorNavigator.cs │ │ │ │ ├── LambdaResolveResult.cs │ │ │ │ ├── Log.cs │ │ │ │ ├── MemberLookup.cs │ │ │ │ ├── MethodGroupResolveResult.cs │ │ │ │ ├── NodeListResolveVisitorNavigator.cs │ │ │ │ ├── OverloadResolution.cs │ │ │ │ ├── OverloadResolutionErrors.cs │ │ │ │ ├── ReducedExtensionMethod.cs │ │ │ │ ├── RenameCallbackArguments.cs │ │ │ │ ├── ResolveAtLocation.cs │ │ │ │ ├── ResolveVisitor.cs │ │ │ │ └── TypeInference.cs │ │ │ ├── TypeSystem │ │ │ │ ├── AliasNamespaceReference.cs │ │ │ │ ├── AttributeTypeReference.cs │ │ │ │ ├── CSharpAssembly.cs │ │ │ │ ├── CSharpAttribute.cs │ │ │ │ ├── CSharpDocumentationComment.cs │ │ │ │ ├── CSharpTypeResolveContext.cs │ │ │ │ ├── CSharpUnresolvedFile.cs │ │ │ │ ├── CSharpUnresolvedTypeDefinition.cs │ │ │ │ ├── ConstantValues.cs │ │ │ │ ├── MemberTypeOrNamespaceReference.cs │ │ │ │ ├── MethodTypeParameterWithInheritedConstraints.cs │ │ │ │ ├── ResolvedUsingScope.cs │ │ │ │ ├── SimpleTypeOrNamespaceReference.cs │ │ │ │ ├── TypeOrNamespaceReference.cs │ │ │ │ ├── TypeSystemConvertVisitor.cs │ │ │ │ └── UsingScope.cs │ │ │ └── Util │ │ │ │ └── CloneableStack.cs │ │ ├── ICSharpCode.NRefactory.Cecil │ │ │ ├── CecilLoader.cs │ │ │ ├── ICSharpCode.NRefactory.Cecil.csproj │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── ICSharpCode.NRefactory.ConsistencyCheck │ │ │ ├── CSharpFile.cs │ │ │ ├── CSharpProject.cs │ │ │ ├── FindReferencesConsistencyCheck.cs │ │ │ ├── ICSharpCode.NRefactory.ConsistencyCheck.csproj │ │ │ ├── PatternMatchingTest.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── RandomizedOrderResolverTest.cs │ │ │ ├── Readme.txt │ │ │ ├── ResolverTest.cs │ │ │ ├── RoundtripTest.cs │ │ │ ├── Solution.cs │ │ │ ├── TypeSystemTests.cs │ │ │ ├── VisitorBenchmark.cs │ │ │ ├── Xml │ │ │ │ ├── IncrementalXmlParserTests.cs │ │ │ │ └── XmlReaderTest.cs │ │ │ └── app.config │ │ ├── ICSharpCode.NRefactory.Demo │ │ │ ├── CSDemo.Designer.cs │ │ │ ├── CSDemo.cs │ │ │ ├── CSDemo.resx │ │ │ ├── ICSharpCode.NRefactory.Demo.csproj │ │ │ ├── MainForm.Designer.cs │ │ │ ├── MainForm.cs │ │ │ ├── MainForm.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── SemanticTreeDialog.Designer.cs │ │ │ ├── SemanticTreeDialog.cs │ │ │ ├── SemanticTreeDialog.resx │ │ │ ├── VBAstView.Designer.cs │ │ │ ├── VBAstView.cs │ │ │ ├── VBAstView.resx │ │ │ ├── VBDemo.Designer.cs │ │ │ ├── VBDemo.cs │ │ │ ├── VBDemo.resx │ │ │ ├── VBEditDialog.Designer.cs │ │ │ ├── VBEditDialog.cs │ │ │ └── VBEditDialog.resx │ │ ├── ICSharpCode.NRefactory.GtkDemo │ │ │ ├── AssemblyInfo.cs │ │ │ ├── CSharpDemo.cs │ │ │ ├── ICSharpCode.NRefactory.GtkDemo.csproj │ │ │ ├── Main.cs │ │ │ ├── MainWindow.cs │ │ │ ├── gtk-gui │ │ │ │ ├── ICSharpCode.NRefactory.GtkDemo.MainWindow.cs │ │ │ │ ├── generated.cs │ │ │ │ └── gui.stetic │ │ │ └── pixbuf │ │ │ │ ├── comment.png │ │ │ │ ├── element-class-16.png │ │ │ │ ├── element-field-16.png │ │ │ │ ├── element-literal-16.png │ │ │ │ ├── element-method-16.png │ │ │ │ └── element-namespace-16.png │ │ ├── ICSharpCode.NRefactory.IKVM │ │ │ ├── ICSharpCode.NRefactory.IKVM.csproj │ │ │ ├── IkvmLoader.cs │ │ │ ├── IntConstantValue.cs │ │ │ ├── NonFrozenInterningProvider.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── ShortConstantValue.cs │ │ │ ├── StringConstantValue.cs │ │ │ └── StructConstantValue.cs │ │ ├── ICSharpCode.NRefactory.Tests │ │ │ ├── Analysis │ │ │ │ ├── AbiComparerTests.cs │ │ │ │ └── SymbolCollectorTests.cs │ │ │ ├── CSharp │ │ │ │ ├── Analysis │ │ │ │ │ ├── DeclarationSpace │ │ │ │ │ │ ├── LocalDeclarationSpaceTests.cs │ │ │ │ │ │ └── LocalDeclarationSpaceVisitorTests.cs │ │ │ │ │ ├── DefiniteAssignmentTests.cs │ │ │ │ │ ├── NullValueAnalysisTests.cs │ │ │ │ │ └── SemanticHighlightingTests.cs │ │ │ │ ├── AstStructureTests.cs │ │ │ │ ├── AstTests.cs │ │ │ │ ├── CSharpAmbienceTests.cs │ │ │ │ ├── CSharpOutputVisitorTests.cs │ │ │ │ ├── CodeActions │ │ │ │ │ ├── AbstractAndVirtualConversionActionTests.cs │ │ │ │ │ ├── AddAnotherAccessorTests.cs │ │ │ │ │ ├── AddArgumentNameTests.cs │ │ │ │ │ ├── AddBracesActionTests.cs │ │ │ │ │ ├── AddCatchTypeTests.cs │ │ │ │ │ ├── AddExceptionDescriptionActionTests.cs │ │ │ │ │ ├── AddOptionalParameterToInvocationTests.cs │ │ │ │ │ ├── AddUsing │ │ │ │ │ │ ├── AddUsingActionAlphabeticalTests.cs │ │ │ │ │ │ ├── AddUsingActionInsideNamespaceTests.cs │ │ │ │ │ │ ├── AddUsingActionTests.cs │ │ │ │ │ │ └── AddUsingRunActionTests.cs │ │ │ │ │ ├── AutoLinqSumTests.cs │ │ │ │ │ ├── CS1105ExtensionMethodMustBeDeclaredStaticActionTests.cs │ │ │ │ │ ├── CS1520MethodMustHaveAReturnTypeTests.cs │ │ │ │ │ ├── ChangeAccessModifierTests.cs │ │ │ │ │ ├── CheckIfParameterIsNullTests.cs │ │ │ │ │ ├── ComputeConstantValueTests.cs │ │ │ │ │ ├── ContextActionTestBase.cs │ │ │ │ │ ├── ConvertAnonymousDelegateToLambdaTests.cs │ │ │ │ │ ├── ConvertAsToCastTests.cs │ │ │ │ │ ├── ConvertAssignmentToIfActionTests.cs │ │ │ │ │ ├── ConvertBitwiseFlagComparisonToHasFlagsActionTests.cs │ │ │ │ │ ├── ConvertCastToAsTests.cs │ │ │ │ │ ├── ConvertDecToHexTests.cs │ │ │ │ │ ├── ConvertDoWhileToWhileLoopTests.cs │ │ │ │ │ ├── ConvertEqualityOperatorToEqualsActionTests.cs │ │ │ │ │ ├── ConvertEqualsToEqualityOperatorActionTests.cs │ │ │ │ │ ├── ConvertExplicitToImplicitImplementationTests.cs │ │ │ │ │ ├── ConvertForToWhileActionTests.cs │ │ │ │ │ ├── ConvertForeachToForTests.cs │ │ │ │ │ ├── ConvertHasFlagsToBitwiseFlagComparisonActionTests.cs │ │ │ │ │ ├── ConvertHexToDecTests.cs │ │ │ │ │ ├── ConvertIfStatementToConditionalTernaryExpressionActionTests.cs │ │ │ │ │ ├── ConvertIfStatementToNullCoalescingExpressionActionTests.cs │ │ │ │ │ ├── ConvertIfStatementToReturnStatementActionTests.cs │ │ │ │ │ ├── ConvertIfStatementToSwitchStatementActionTests.cs │ │ │ │ │ ├── ConvertImplicitToExplicittImplementationTests.cs │ │ │ │ │ ├── ConvertLambdaBodyExpressionToStatementTests.cs │ │ │ │ │ ├── ConvertLambdaBodyStatementToExpressionTests.cs │ │ │ │ │ ├── ConvertLamdaToAnonymousDelegateTests.cs │ │ │ │ │ ├── ConvertMethodGroupToAnonymousMethodActionTests.cs │ │ │ │ │ ├── ConvertMethodGroupToLambdaActionTests.cs │ │ │ │ │ ├── ConvertMultiplyToShiftActionTests.cs │ │ │ │ │ ├── ConvertNullCoalescingToConditionalExpressionActionTests.cs │ │ │ │ │ ├── ConvertReturnStatementToIfActionTests.cs │ │ │ │ │ ├── ConvertShiftToMultiplyActionTests.cs │ │ │ │ │ ├── ConvertSwitchToIfTests.cs │ │ │ │ │ ├── ConvertToInitializer │ │ │ │ │ │ ├── ConvertInitializerToExplicitIntializationsTests.cs │ │ │ │ │ │ └── ConvertToInitializerTests.cs │ │ │ │ │ ├── ConvertWhileToDoWhileLoopTests.cs │ │ │ │ │ ├── CopyCommentsFromBaseTests.cs │ │ │ │ │ ├── CopyCommentsFromIntefaceTests.cs │ │ │ │ │ ├── CreateBackingStoreTests.cs │ │ │ │ │ ├── CreateChangedEventTests.cs │ │ │ │ │ ├── CreateClassDeclarationTests.cs │ │ │ │ │ ├── CreateConstructorDeclarationTests.cs │ │ │ │ │ ├── CreateCustomEventImplementationTests.cs │ │ │ │ │ ├── CreateDelegateTests.cs │ │ │ │ │ ├── CreateEnumValueTests.cs │ │ │ │ │ ├── CreateEventInvocatorTests.cs │ │ │ │ │ ├── CreateFieldTests.cs │ │ │ │ │ ├── CreateIndexerTests.cs │ │ │ │ │ ├── CreateLocalVariableTests.cs │ │ │ │ │ ├── CreateMethodDeclarationTests.cs │ │ │ │ │ ├── CreateOverloadWithoutParameterTests.cs │ │ │ │ │ ├── CreatePropertyTests.cs │ │ │ │ │ ├── DeclareLocalVariableTests.cs │ │ │ │ │ ├── ExtensionMethodInvocationToStaticMethodInvocationTests.cs │ │ │ │ │ ├── ExtractAnonymousMethodTests.cs │ │ │ │ │ ├── ExtractFieldTests.cs │ │ │ │ │ ├── ExtractMethodTests.cs │ │ │ │ │ ├── ExtractWhileConditionToInternalIfStatementActionTests.cs │ │ │ │ │ ├── FlipEqualsTargetAndArgumentActionTests.cs │ │ │ │ │ ├── FlipOperatorArgumentsTests.cs │ │ │ │ │ ├── GenerateGetterTests.cs │ │ │ │ │ ├── GeneratePropertyTests.cs │ │ │ │ │ ├── GenerateSwitchLabelsTests.cs │ │ │ │ │ ├── ImplementAbstractMembersTest.cs │ │ │ │ │ ├── ImplementInterfaceExplicitTests.cs │ │ │ │ │ ├── ImplementInterfaceTests.cs │ │ │ │ │ ├── ImplementNotImplementedPropertyTests.cs │ │ │ │ │ ├── InlineLocalVariableTests.cs │ │ │ │ │ ├── InsertAnonymousMethodSignatureTests.cs │ │ │ │ │ ├── IntroduceConstantTests.cs │ │ │ │ │ ├── IntroduceFormatItemTests.cs │ │ │ │ │ ├── InvertConditionalOperatorActionTests.cs │ │ │ │ │ ├── InvertIfAndSimplifyTests.cs │ │ │ │ │ ├── InvertIfTests.cs │ │ │ │ │ ├── InvertLogicalExpressionTests.cs │ │ │ │ │ ├── IterateViaForeachTests.cs │ │ │ │ │ ├── JoinDeclarationAndAssignmentTests.cs │ │ │ │ │ ├── JoinStringTests.cs │ │ │ │ │ ├── LinqFluentToQueryTests.cs │ │ │ │ │ ├── LinqQueryToFluentTests.cs │ │ │ │ │ ├── MergeNestedIfTests.cs │ │ │ │ │ ├── MetaTests.cs │ │ │ │ │ ├── MoveToOuterScopeTests.cs │ │ │ │ │ ├── NegateIsExpressionActionTests.cs │ │ │ │ │ ├── NegateRelationalExpressionTests.cs │ │ │ │ │ ├── PutInsideUsingTests.cs │ │ │ │ │ ├── RemoveBackingStoreTests.cs │ │ │ │ │ ├── RemoveBracesTests.cs │ │ │ │ │ ├── RemoveFieldRefactoryActionTests.cs │ │ │ │ │ ├── RemoveRedundantCatchTypeTests.cs │ │ │ │ │ ├── RemoveRegionTests.cs │ │ │ │ │ ├── ReplaceAssignmentWithPostfixExpressionActionTests.cs │ │ │ │ │ ├── ReplaceEmptyStringTests.cs │ │ │ │ │ ├── ReplaceOperatorAssignmentWithAssignmentActionTests.cs │ │ │ │ │ ├── ReplacePostfixExpressionWithAssignmentActionTests.cs │ │ │ │ │ ├── ReplaceWithOperatorAssignmentActionTests.cs │ │ │ │ │ ├── ReverseDirectionForForLoopTests.cs │ │ │ │ │ ├── SimplifyIfFlowInLoopsTests.cs │ │ │ │ │ ├── SimplifyIfFlowTests.cs │ │ │ │ │ ├── SortUsingsTests.cs │ │ │ │ │ ├── SplitDeclarationAndAssignmentTests.cs │ │ │ │ │ ├── SplitDeclarationListTests.cs │ │ │ │ │ ├── SplitIfActionTests.cs │ │ │ │ │ ├── SplitStringTests.cs │ │ │ │ │ ├── TestRefactoringContext.cs │ │ │ │ │ ├── UseAsAndNullCheckActionTests.cs │ │ │ │ │ ├── UseExplicitTypeTests.cs │ │ │ │ │ ├── UseStringFormatTests.cs │ │ │ │ │ └── UseVarKeywordTests.cs │ │ │ │ ├── CodeCompletion │ │ │ │ │ ├── BrowsableAttributeTests.cs │ │ │ │ │ ├── CodeCompletionAccessibleTests.cs │ │ │ │ │ ├── CodeCompletionBugTests.cs │ │ │ │ │ ├── CodeCompletionCSharp3Tests.cs │ │ │ │ │ ├── CodeCompletionCSharpTests.cs │ │ │ │ │ ├── CodeCompletionOperatorTests.cs │ │ │ │ │ ├── CompletionDataList.cs │ │ │ │ │ ├── DelegateContextTests.cs │ │ │ │ │ ├── DocumentationContextTests.cs │ │ │ │ │ ├── EnumContextTests.cs │ │ │ │ │ ├── FormatItemTests.cs │ │ │ │ │ ├── GetCurrentParameterIndexTests.cs │ │ │ │ │ ├── ImportCompletionTests.cs │ │ │ │ │ ├── KeywordTests.cs │ │ │ │ │ ├── NameContextTests.cs │ │ │ │ │ ├── ObjectInitializerTests.cs │ │ │ │ │ ├── ParameterCompletionTests.cs │ │ │ │ │ ├── PreProcessorTests.cs │ │ │ │ │ ├── TestBase.cs │ │ │ │ │ └── VariableDeclarationStatementTests.cs │ │ │ │ ├── CodeDomConvertVisitorTests.cs │ │ │ │ ├── CodeIssues │ │ │ │ │ ├── AccessToDisposedClosureTests.cs │ │ │ │ │ ├── AccessToModifiedClosureTests.cs │ │ │ │ │ ├── AccessToStaticMemberViaDerivedTypeIssueTests.cs │ │ │ │ │ ├── AdditionalOfTypeIssuesTests.cs │ │ │ │ │ ├── ArrayCreationCanBeReplacedWithArrayInitializerIssueTests.cs │ │ │ │ │ ├── AutoAsyncTests.cs │ │ │ │ │ ├── BaseMemberHasParamsIssueTests.cs │ │ │ │ │ ├── BaseMethodCallWithDefaultParameterIssueTests.cs │ │ │ │ │ ├── BaseMethodParameterNameMismatchIssueTests.cs │ │ │ │ │ ├── BitwiseOperatorOnEnumWithoutFlagsIssueTests.cs │ │ │ │ │ ├── CS0029InvalidConversionIssueTests.cs │ │ │ │ │ ├── CS0126ReturnMustBeFollowedByAnyExpressionTestes.cs │ │ │ │ │ ├── CS0127ReturnMustNotBeFollowedByAnyExpressionTests.cs │ │ │ │ │ ├── CS0152DuplicateCaseLabelValueIssueTests.cs │ │ │ │ │ ├── CS0169FieldIsNeverUsedIssueTests.cs │ │ │ │ │ ├── CS0183ExpressionIsAlwaysOfProvidedTypeIssueTests.cs │ │ │ │ │ ├── CS0618UsageOfObsoleteMemberIssueTests.cs │ │ │ │ │ ├── CS0659OverrideEqualsWithoutGetHashCodeTests.cs │ │ │ │ │ ├── CS0759RedundantPartialMethodIssueTests.cs │ │ │ │ │ ├── CS1573ParameterHasNoMatchingParamTagIssueTests.cs │ │ │ │ │ ├── CS1717AssignmentMadeToSameVariableIssueTests.cs │ │ │ │ │ ├── CS1729TypeHasNoConstructorWithNArgumentsIssueTests.cs │ │ │ │ │ ├── CallToObjectEqualsViaBaseTests.cs │ │ │ │ │ ├── CanBeReplacedWithTryCastAndCheckForNullIssueTests.cs │ │ │ │ │ ├── CastExpressionOfIncompatibleTypeIssueTests.cs │ │ │ │ │ ├── CheckNamespaceIssueTests.cs │ │ │ │ │ ├── CompareNonConstrainedGenericWithNullIssueTests.cs │ │ │ │ │ ├── CompareOfFloatsByEqualityOperatorIssueTests.cs │ │ │ │ │ ├── ConditionIsAlwaysTrueOrFalseIssueTests.cs │ │ │ │ │ ├── ConditionalTernaryEqualBranchTests.cs │ │ │ │ │ ├── ConstantConditionIssueTests.cs │ │ │ │ │ ├── ConstantNullCoalescingConditionIssueTests.cs │ │ │ │ │ ├── ConvertClosureToMethodGroupIssueTests.cs │ │ │ │ │ ├── ConvertConditionalTernaryToNullCoalescingIssueTests.cs │ │ │ │ │ ├── ConvertIfDoToWhileIssueTests.cs │ │ │ │ │ ├── ConvertIfStatementToConditionalTernaryExpressionIssueTests.cs │ │ │ │ │ ├── ConvertIfStatementToNullCoalescingExpressionIssueTests.cs │ │ │ │ │ ├── ConvertIfStatementToSwitchStatementIssueTests.cs │ │ │ │ │ ├── ConvertIfToAndExpressionIssueTests.cs │ │ │ │ │ ├── ConvertIfToOrExpressionIssueTests.cs │ │ │ │ │ ├── ConvertNullableToShortFormIssueTests.cs │ │ │ │ │ ├── ConvertTailRecursiveCallToLoopIssueTests.cs │ │ │ │ │ ├── ConvertToAutoPropertyIssueTests.cs │ │ │ │ │ ├── ConvertToConstantIssueTests.cs │ │ │ │ │ ├── ConvertToLambdaExpressionIssueTests.cs │ │ │ │ │ ├── ConvertToStaticTypeTests.cs │ │ │ │ │ ├── DelegateSubtractionIssueTests.cs │ │ │ │ │ ├── DisposeMethodInNonIDisposableTypeTests.cs │ │ │ │ │ ├── DoNotCallOverridableMethodsInConstructorIssueTests.cs │ │ │ │ │ ├── DontUseLinqWhenItsVerboseAndInefficientTests.cs │ │ │ │ │ ├── DoubleNegationOperatorIssueTests.cs │ │ │ │ │ ├── DuplicateBodyMethodIssueTests.cs │ │ │ │ │ ├── DuplicateExpressionsInConditionsIssueTests.cs │ │ │ │ │ ├── DuplicateIfInIfChainIssueTests.cs │ │ │ │ │ ├── DuplicatedLinqToListOrArrayTests.cs │ │ │ │ │ ├── EmptyConstructorIssueTests.cs │ │ │ │ │ ├── EmptyDestructorTests.cs │ │ │ │ │ ├── EmptyEmbeddedStatementIssueTests.cs │ │ │ │ │ ├── EmptyGeneralCatchClauseTests.cs │ │ │ │ │ ├── EmptyNamespaceTests.cs │ │ │ │ │ ├── EmptyStatementIssueTests.cs │ │ │ │ │ ├── EnumUnderlyingTypeIsIntTests.cs │ │ │ │ │ ├── EqualExpressionComparisonIssueTests.cs │ │ │ │ │ ├── EventUnsubscriptionViaAnonymousDelegateIssueTests.cs │ │ │ │ │ ├── ExceptionRethrowTests.cs │ │ │ │ │ ├── ExplicitConversionInForEachIssueTests.cs │ │ │ │ │ ├── ExpressionIsNeverOfProvidedTypeIssueTests.cs │ │ │ │ │ ├── FieldCanBeMadeReadOnlyIssueTests.cs │ │ │ │ │ ├── ForCanBeConvertedToForeachIssueTests.cs │ │ │ │ │ ├── ForControlVariableIsNeverModifiedIssueTests.cs │ │ │ │ │ ├── ForStatementConditionIsTrueTests.cs │ │ │ │ │ ├── FormatStringProblemIssueTests.cs │ │ │ │ │ ├── FunctionNeverReturnsIssueTests.cs │ │ │ │ │ ├── InconsistentNamingTests.cs │ │ │ │ │ ├── IncorrectCallToGetHashCodeTests.cs │ │ │ │ │ ├── InspectionActionTestBase.cs │ │ │ │ │ ├── InvokeAsExtensionMethodIssueTests.cs │ │ │ │ │ ├── LocalVariableHidesMemberIssueTests.cs │ │ │ │ │ ├── LocalVariableNotUsedIssueTests.cs │ │ │ │ │ ├── LockThisTests.cs │ │ │ │ │ ├── LongLiteralEndingLowerLIssueTests.cs │ │ │ │ │ ├── LoopCanBeConvertedToQueryIssueTests.cs │ │ │ │ │ ├── MemberCanBeMadeStaticIssueTests.cs │ │ │ │ │ ├── MemberHidesStaticFromOuterClassIssueTests.cs │ │ │ │ │ ├── MethodOverloadWithOptionalParameterIssueTests.cs │ │ │ │ │ ├── MissingInterfaceMemberImplementationIssueTests.cs │ │ │ │ │ ├── NegativeRelationalExpressionIssueTests.cs │ │ │ │ │ ├── NonPublicMethodWithTestAttributeIssueTests.cs │ │ │ │ │ ├── NonReadonlyReferencedInGetHashCodeTests.cs │ │ │ │ │ ├── NonReadonlyReferencedInGetHashCodeTetsts.cs │ │ │ │ │ ├── NotImplementedExceptionInspectorTests.cs │ │ │ │ │ ├── NotResolvedInTextIssueTests.cs │ │ │ │ │ ├── ObjectCreationAsStatementIssueTests.cs │ │ │ │ │ ├── OperatorIsCanBeUsedIssueTests.cs │ │ │ │ │ ├── OptionalParameterHierarchyMismatchIssueTests.cs │ │ │ │ │ ├── OptionalParameterRefOutIssueTests.cs │ │ │ │ │ ├── ParameterCanBeDemotedIssue │ │ │ │ │ │ ├── IsTypeCriterionTests.cs │ │ │ │ │ │ ├── ParameterCanBeDeclaredWithBaseTypeIssueTests.cs │ │ │ │ │ │ ├── ParameterCanBeIEnumerableTests.cs │ │ │ │ │ │ └── SupportsIndexingCriterionTests.cs │ │ │ │ │ ├── ParameterHidesMemberIssueTests.cs │ │ │ │ │ ├── ParameterOnlyAssignedIssueTests.cs │ │ │ │ │ ├── PartOfBodyCanBeConvertedToQueryIssueTests.cs │ │ │ │ │ ├── PartialMethodParameterNameMismatchIssueTests.cs │ │ │ │ │ ├── PartialTypeWithSinglePartIssueTests.cs │ │ │ │ │ ├── PolymorphicFieldLikeEventInvocationIssueTests.cs │ │ │ │ │ ├── PossibleAssignmentToReadonlyFieldIssueTests.cs │ │ │ │ │ ├── PossibleMistakenCallToGetTypeIssueTests.cs │ │ │ │ │ ├── PossibleMultipleEnumerationIssueTests.cs │ │ │ │ │ ├── ProhibitedModifiersIssueTests.cs │ │ │ │ │ ├── PublicConstructorInAbstractClassIssueTest.cs │ │ │ │ │ ├── RedundantAnonymousTypePropertyNameIssueTests.cs │ │ │ │ │ ├── RedundantArgumentDefaultValueIssueTests.cs │ │ │ │ │ ├── RedundantArgumentNameTests.cs │ │ │ │ │ ├── RedundantAssignmentIssueTests.cs │ │ │ │ │ ├── RedundantAttributeParenthesesIssueTests.cs │ │ │ │ │ ├── RedundantBaseConstructorIssueTests.cs │ │ │ │ │ ├── RedundantBaseQualifierTests.cs │ │ │ │ │ ├── RedundantBlockInDifferentBranchesTests.cs │ │ │ │ │ ├── RedundantBoolCompareIssueTests.cs │ │ │ │ │ ├── RedundantCaseLabelIssueTests.cs │ │ │ │ │ ├── RedundantCastIssueTests.cs │ │ │ │ │ ├── RedundantCatchClauseIssueTests.cs │ │ │ │ │ ├── RedundantCheckBeforeAssignmentTests.cs │ │ │ │ │ ├── RedundantCommaInArrayInitializerIssueTests.cs │ │ │ │ │ ├── RedundantComparisonWithNullIssueTests.cs │ │ │ │ │ ├── RedundantDefaultFieldInitializerIssueTests.cs │ │ │ │ │ ├── RedundantDelegateCreationIssueTests.cs │ │ │ │ │ ├── RedundantEmptyDefaultSwitchBranchIssueTests.cs │ │ │ │ │ ├── RedundantEmptyFinallyBlockIssueTests.cs │ │ │ │ │ ├── RedundantEnumerableCastCallIssueTests.cs │ │ │ │ │ ├── RedundantExplicitArrayCreationIssueTests.cs │ │ │ │ │ ├── RedundantExplicitArraySizeIssueTests.cs │ │ │ │ │ ├── RedundantExplicitNullableCreationIssueTests.cs │ │ │ │ │ ├── RedundantExtendsListEntryIssueTests.cs │ │ │ │ │ ├── RedundantIfElseBlockIssueTests.cs │ │ │ │ │ ├── RedundantInternalInspectorTests.cs │ │ │ │ │ ├── RedundantLambdaParameterTypeTests.cs │ │ │ │ │ ├── RedundantLambdaSignatureParenthesesIssueTests.cs │ │ │ │ │ ├── RedundantLogicalConditionalExpressionOperandIssueTests.cs │ │ │ │ │ ├── RedundantNameQualifierIssueTests.cs │ │ │ │ │ ├── RedundantNotNullAttributeInNonNullableTypeTests.cs │ │ │ │ │ ├── RedundantObjectCreationArgumentListIssueTests.cs │ │ │ │ │ ├── RedundantObjectOrCollectionInitializerIssueTests.cs │ │ │ │ │ ├── RedundantOverridenMemberTests.cs │ │ │ │ │ ├── RedundantParamsIssueTests.cs │ │ │ │ │ ├── RedundantPrivateInspectorTests.cs │ │ │ │ │ ├── RedundantStringToCharArrayCallIssueTests.cs │ │ │ │ │ ├── RedundantTernaryExpressionIssueTests.cs │ │ │ │ │ ├── RedundantThisQualifierIssueTests.cs │ │ │ │ │ ├── RedundantToStringCallForValueTypesIssue.cs │ │ │ │ │ ├── RedundantToStringCallIssueTests.cs │ │ │ │ │ ├── RedundantTypeArgumentsOfMethodIssueTests.cs │ │ │ │ │ ├── RedundantUnsafeContextIssueTests.cs │ │ │ │ │ ├── RedundantUsingDirectiveIssueTests.cs │ │ │ │ │ ├── RedundantWhereWithPredicateIssueTests.cs │ │ │ │ │ ├── ReferenceEqualsWithValueTypeIssueTests.cs │ │ │ │ │ ├── RemoveRedundantOrStatementIssueTests.cs │ │ │ │ │ ├── ReplaceWithFirstOrDefaultIssueTests.cs │ │ │ │ │ ├── ReplaceWithLastOrDefaultIssueTests.cs │ │ │ │ │ ├── ReplaceWithOfTypeAnyIssueTests.cs │ │ │ │ │ ├── ReplaceWithOfTypeCountIssueTests.cs │ │ │ │ │ ├── ReplaceWithOfTypeFirstIssueTests.cs │ │ │ │ │ ├── ReplaceWithOfTypeFirstOrDefaultIssueTests.cs │ │ │ │ │ ├── ReplaceWithOfTypeIssueTests.cs │ │ │ │ │ ├── ReplaceWithOfTypeLastIssueTests.cs │ │ │ │ │ ├── ReplaceWithOfTypeLastOrDefaultIssueTests.cs │ │ │ │ │ ├── ReplaceWithOfTypeLongCountIssueTests.cs │ │ │ │ │ ├── ReplaceWithOfTypeSingleIssueTests.cs │ │ │ │ │ ├── ReplaceWithOfTypeSingleOrDefaultIssueTests.cs │ │ │ │ │ ├── ReplaceWithOfTypeWhereIssueTests.cs │ │ │ │ │ ├── ReplaceWithSimpleAssignmentIssueTests.cs │ │ │ │ │ ├── ReplaceWithSingleCallToAverageIssueTests.cs │ │ │ │ │ ├── ReplaceWithSingleCallToCountIssueTests.cs │ │ │ │ │ ├── ReplaceWithSingleCallToFirstIssueTests.cs │ │ │ │ │ ├── ReplaceWithSingleCallToFirstOrDefaultIssueTests.cs │ │ │ │ │ ├── ReplaceWithSingleCallToLastIssueTests.cs │ │ │ │ │ ├── ReplaceWithSingleCallToLastOrDefaultIssueTests.cs │ │ │ │ │ ├── ReplaceWithSingleCallToLongCountIssueTests.cs │ │ │ │ │ ├── ReplaceWithSingleCallToMaxIssueTests.cs │ │ │ │ │ ├── ReplaceWithSingleCallToMinIssueTests.cs │ │ │ │ │ ├── ReplaceWithSingleCallToSingleIssueTests.cs │ │ │ │ │ ├── ReplaceWithSingleCallToSingleOrDefaultIssueTests.cs │ │ │ │ │ ├── ReplaceWithSingleCallToSumIssueTests.cs │ │ │ │ │ ├── ReplaceWithStringIsNullOrEmptyIssueTests.cs │ │ │ │ │ ├── RewriteIfReturnToReturnIssueTests.cs │ │ │ │ │ ├── SameGuardConditionExpressionInIfElseBranchesTests.cs │ │ │ │ │ ├── SealedMemberInSealedClassIssueTests.cs │ │ │ │ │ ├── SimplifyConditionalTernaryExpressionIssueTests.cs │ │ │ │ │ ├── SimplifyLinqExpressionIssueTests.cs │ │ │ │ │ ├── StaticConstructorParameterIssueTests.cs │ │ │ │ │ ├── StaticEventSubscriptionIssueTests.cs │ │ │ │ │ ├── StaticFieldInGenericTypeTests.cs │ │ │ │ │ ├── StringCompareIsCultureSpecificIssueTests.cs │ │ │ │ │ ├── StringCompareToIsCultureSpecificIssueTests.cs │ │ │ │ │ ├── StringEndsWithIsCultureSpecificIssueTest.cs │ │ │ │ │ ├── StringIndexOfIsCultureSpecificIssueTest.cs │ │ │ │ │ ├── StringLastIndexOfIsCultureSpecificIssueTest.cs │ │ │ │ │ ├── StringStartsWithIsCultureSpecificIssueTest.cs │ │ │ │ │ ├── SuggestUseVarKeywordEvidentTests.cs │ │ │ │ │ ├── ThreadStaticAtInstanceFieldTests.cs │ │ │ │ │ ├── UnassignedReadonlyFieldIssueTests.cs │ │ │ │ │ ├── UnmatchedSizeSpeicificationInArrayCreationTests.cs │ │ │ │ │ ├── UnreachableCodeIssueTests.cs │ │ │ │ │ ├── UnusedAnonymousMethodSignatureIssueTests.cs │ │ │ │ │ ├── UnusedLabelIssueTests.cs │ │ │ │ │ ├── UnusedParameterIssueTests.cs │ │ │ │ │ ├── UnusedTypeParameterIssueTests.cs │ │ │ │ │ ├── UseArrayCreationExpressionIssueTests.cs │ │ │ │ │ ├── UseIsOperatorIssueTests.cs │ │ │ │ │ ├── UseMethodAnyIssueTests.cs │ │ │ │ │ ├── UseMethodIsInstanceOfTypeIssueTests.cs │ │ │ │ │ ├── UseOfMemberOfNullReferenceTests.cs │ │ │ │ │ ├── ValueParameterNotUsedIssueTests.cs │ │ │ │ │ ├── VariableDeclaredInWideScopeTests.cs │ │ │ │ │ └── XmlDocIssueIssueTests.cs │ │ │ │ ├── DepthFirstVisitorTests.cs │ │ │ │ ├── InsertMissingTokensDecoratorTests.cs │ │ │ │ ├── InsertParenthesesVisitorTests.cs │ │ │ │ ├── Inspector │ │ │ │ │ └── InconsistentNamingIssueTests.cs │ │ │ │ ├── Parser │ │ │ │ │ ├── Bugs │ │ │ │ │ │ └── ParserBugTests.cs │ │ │ │ │ ├── ConsistencyChecker.cs │ │ │ │ │ ├── Expression │ │ │ │ │ │ ├── AnonymousMethodExpressionTests.cs │ │ │ │ │ │ ├── AnonymousTypeCreateExpressionTests.cs │ │ │ │ │ │ ├── ArrayCreateExpressionTests.cs │ │ │ │ │ │ ├── AssignmentExpressionTests.cs │ │ │ │ │ │ ├── BaseReferenceExpressionTests.cs │ │ │ │ │ │ ├── BinaryOperatorExpressionTests.cs │ │ │ │ │ │ ├── CastExpressionTests.cs │ │ │ │ │ │ ├── CheckedExpressionTests.cs │ │ │ │ │ │ ├── ConditionalExpressionTests.cs │ │ │ │ │ │ ├── DefaultValueExpressionTests.cs │ │ │ │ │ │ ├── IdentifierExpressionTests.cs │ │ │ │ │ │ ├── IndexerExpressionTests.cs │ │ │ │ │ │ ├── InvocationExpressionTests.cs │ │ │ │ │ │ ├── IsExpressionTests.cs │ │ │ │ │ │ ├── LambdaExpressionTests.cs │ │ │ │ │ │ ├── MemberReferenceExpressionTests.cs │ │ │ │ │ │ ├── ObjectCreateExpressionTests.cs │ │ │ │ │ │ ├── ParenthesizedExpressionTests.cs │ │ │ │ │ │ ├── PointerReferenceExpressionTests.cs │ │ │ │ │ │ ├── PrimitiveExpressionTests.cs │ │ │ │ │ │ ├── QueryExpressionTests.cs │ │ │ │ │ │ ├── SizeOfExpressionTests.cs │ │ │ │ │ │ ├── StackAllocExpressionTests.cs │ │ │ │ │ │ ├── ThisReferenceExpressionTests.cs │ │ │ │ │ │ ├── TypeOfExpressionTests.cs │ │ │ │ │ │ ├── TypeReferenceExpressionTests.cs │ │ │ │ │ │ ├── UnaryOperatorExpressionTests.cs │ │ │ │ │ │ └── UndocumentedExpressionTests.cs │ │ │ │ │ ├── GeneralScope │ │ │ │ │ │ ├── AttributeSectionTests.cs │ │ │ │ │ │ ├── CommentTests.cs │ │ │ │ │ │ ├── DelegateDeclarationTests.cs │ │ │ │ │ │ ├── NamespaceDeclarationTests.cs │ │ │ │ │ │ ├── PreprocessorDirectiveTests.cs │ │ │ │ │ │ ├── TypeDeclarationTests.cs │ │ │ │ │ │ └── UsingDeclarationTests.cs │ │ │ │ │ ├── ParseSelfTests.cs │ │ │ │ │ ├── ParseUtil.cs │ │ │ │ │ ├── Statements │ │ │ │ │ │ ├── BlockStatementTests.cs │ │ │ │ │ │ ├── CheckedStatementTests.cs │ │ │ │ │ │ ├── EmptyStatementTests.cs │ │ │ │ │ │ ├── ExpressionStatementTests.cs │ │ │ │ │ │ ├── FixedStatementTests.cs │ │ │ │ │ │ ├── ForStatementTests.cs │ │ │ │ │ │ ├── GotoStatementTests.cs │ │ │ │ │ │ ├── IfElseStatementTests.cs │ │ │ │ │ │ ├── InvalidStatementsTests.cs │ │ │ │ │ │ ├── LabelStatementTests.cs │ │ │ │ │ │ ├── LockStatementTests.cs │ │ │ │ │ │ ├── ReturnStatementTests.cs │ │ │ │ │ │ ├── SwitchStatementTests.cs │ │ │ │ │ │ ├── ThrowStatementTests.cs │ │ │ │ │ │ ├── TryCatchStatementTests.cs │ │ │ │ │ │ ├── UnsafeStatementTests.cs │ │ │ │ │ │ ├── UsingStatementTests.cs │ │ │ │ │ │ ├── VariableDeclarationStatementTests.cs │ │ │ │ │ │ ├── WhileStatementTests.cs │ │ │ │ │ │ └── YieldStatementTests.cs │ │ │ │ │ ├── TypeMembers │ │ │ │ │ │ ├── ConstructorDeclarationTests.cs │ │ │ │ │ │ ├── DestructorDeclarationTests.cs │ │ │ │ │ │ ├── EventDeclarationTests.cs │ │ │ │ │ │ ├── FieldDeclarationTests.cs │ │ │ │ │ │ ├── IndexerDeclarationTests.cs │ │ │ │ │ │ ├── MethodDeclarationTests.cs │ │ │ │ │ │ ├── OperatorDeclarationTests.cs │ │ │ │ │ │ └── PropertyDeclarationTests.cs │ │ │ │ │ └── TypeSystemConvertVisitorTests.cs │ │ │ │ ├── QueryExpressionExpanderTests.cs │ │ │ │ ├── Refactoring │ │ │ │ │ ├── LambdaHelperTests.cs │ │ │ │ │ ├── NamingHelperTests.cs │ │ │ │ │ ├── RefactoringStructureTests.cs │ │ │ │ │ ├── ScriptTests.cs │ │ │ │ │ └── TypeSystemAstBuilderTests.cs │ │ │ │ └── Resolver │ │ │ │ │ ├── AnonymousTypeTests.cs │ │ │ │ │ ├── ArrayCreateTests.cs │ │ │ │ │ ├── AttributeTests.cs │ │ │ │ │ ├── BinaryOperatorTests.cs │ │ │ │ │ ├── CastTests.cs │ │ │ │ │ ├── ComTests.cs │ │ │ │ │ ├── ConditionalOperatorTests.cs │ │ │ │ │ ├── ConversionsTest.cs │ │ │ │ │ ├── DynamicTests.cs │ │ │ │ │ ├── ExplicitConversionsTest.cs │ │ │ │ │ ├── ExtensionMethodTests.cs │ │ │ │ │ ├── FindReferencesTest.cs │ │ │ │ │ ├── InvocationTests.cs │ │ │ │ │ ├── LambdaTests.cs │ │ │ │ │ ├── LinqTests.cs │ │ │ │ │ ├── LocalTypeInferenceTests.cs │ │ │ │ │ ├── MemberLookupTests.cs │ │ │ │ │ ├── MethodTests.cs │ │ │ │ │ ├── NameLookupTests.cs │ │ │ │ │ ├── ObjectCreationTests.cs │ │ │ │ │ ├── OverloadResolutionTests.cs │ │ │ │ │ ├── ResolveAtLocationTests.cs │ │ │ │ │ ├── ResolverTestBase.cs │ │ │ │ │ ├── SizeOfTests.cs │ │ │ │ │ ├── TypeInferenceTests.cs │ │ │ │ │ ├── UnaryOperatorTests.cs │ │ │ │ │ └── UnsafeCodeTests.cs │ │ │ ├── Documentation │ │ │ │ ├── CSharpCrefLookupTests.cs │ │ │ │ ├── CSharpCrefParserTests.cs │ │ │ │ ├── CSharpDocumentationTests.cs │ │ │ │ └── IDStringTests.cs │ │ │ ├── Editor │ │ │ │ └── ReadOnlyDocumentTests.cs │ │ │ ├── FormattingTests │ │ │ │ ├── ConstructFixerTests.cs │ │ │ │ ├── TestBlankLineFormatting.cs │ │ │ │ ├── TestBraceStlye.cs │ │ │ │ ├── TestExpressionFormatting.cs │ │ │ │ ├── TestFormattingBugs.cs │ │ │ │ ├── TestGlobalLevelFormatting.cs │ │ │ │ ├── TestKeepReformattingRules.cs │ │ │ │ ├── TestLinq.cs │ │ │ │ ├── TestSpacingVisitor.cs │ │ │ │ ├── TestStatementIndentation.cs │ │ │ │ ├── TestTypeLevelIndentation.cs │ │ │ │ ├── TestWrapping.cs │ │ │ │ └── TextEditorTestAdapter.cs │ │ │ ├── ICSharpCode.NRefactory.Tests.csproj │ │ │ ├── IndentationTests │ │ │ │ ├── AlignmentTests.cs │ │ │ │ ├── AllInOneTests.cs │ │ │ │ ├── BlockTest.cs │ │ │ │ ├── CommentTests.cs │ │ │ │ ├── GeneralTests.cs │ │ │ │ ├── Helper.cs │ │ │ │ ├── PreProcessorTests.cs │ │ │ │ ├── StringTests.cs │ │ │ │ ├── TestFiles │ │ │ │ │ ├── CSharpParser.cs │ │ │ │ │ ├── Comments.cs │ │ │ │ │ ├── IndentEngine.cs │ │ │ │ │ ├── IndentState.cs │ │ │ │ │ ├── InheritStatements.cs │ │ │ │ │ ├── PreProcessorDirectives.cs │ │ │ │ │ ├── Simple.cs │ │ │ │ │ ├── Strings.cs │ │ │ │ │ ├── SwitchCase.cs │ │ │ │ │ └── TextArea.cs │ │ │ │ └── TextPasteIndentEngineTests.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── TypeSystem │ │ │ │ ├── BinaryLoaderTests.cs │ │ │ │ ├── BlobLoaderTests.cs │ │ │ │ ├── CecilLoaderTests.cs │ │ │ │ ├── CyclicProjectDependency.cs │ │ │ │ ├── GetAllBaseTypesTest.cs │ │ │ │ ├── GetMembersTests.cs │ │ │ │ ├── IkvmLoaderTests.cs │ │ │ │ ├── InheritanceHelperTests.cs │ │ │ │ ├── LazyLoadedCecilLoaderTests.cs │ │ │ │ ├── ReflectionHelperTests.cs │ │ │ │ ├── SerializedCecilLoaderTests.cs │ │ │ │ ├── SerializedIkvmLoaderTests.cs │ │ │ │ ├── StructureTests.cs │ │ │ │ ├── TestInterningProvider.cs │ │ │ │ ├── TypeParameterTests.cs │ │ │ │ ├── TypeSystemHelper.cs │ │ │ │ ├── TypeSystemTests.TestCase.cs │ │ │ │ └── TypeSystemTests.cs │ │ │ └── Utils │ │ │ │ ├── CSharpPrimitiveCastTests.cs │ │ │ │ ├── CompositeFormatStringParser │ │ │ │ └── CompositeFormatStringParserTests.cs │ │ │ │ └── TreeTraversalTests.cs │ │ ├── ICSharpCode.NRefactory.Xml │ │ │ ├── AXmlAttribute.cs │ │ │ ├── AXmlDocument.cs │ │ │ ├── AXmlElement.cs │ │ │ ├── AXmlObject.cs │ │ │ ├── AXmlParser.cs │ │ │ ├── AXmlReader.cs │ │ │ ├── AXmlTag.cs │ │ │ ├── AXmlText.cs │ │ │ ├── AXmlVisitor.cs │ │ │ ├── DocumentationElement.cs │ │ │ ├── ICSharpCode.NRefactory.Xml.csproj │ │ │ ├── IncrementalParserState.cs │ │ │ ├── InternalDocument.cs │ │ │ ├── Log.cs │ │ │ ├── ObjectIterator.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── ReuseEqualityComparer.cs │ │ │ ├── SyntaxError.cs │ │ │ ├── TagMatchingHeuristics.cs │ │ │ ├── TagReader.cs │ │ │ ├── TextType.cs │ │ │ ├── TokenReader.cs │ │ │ └── XmlSegment.cs │ │ ├── ICSharpCode.NRefactory.snk │ │ ├── ICSharpCode.NRefactory │ │ │ ├── Analysis │ │ │ │ ├── AbiComparer.cs │ │ │ │ ├── SymbolCollector.cs │ │ │ │ ├── TypeGraph.cs │ │ │ │ └── TypeGraphNode.cs │ │ │ ├── Completion │ │ │ │ ├── CompletionCategory.cs │ │ │ │ ├── CompletionExtensionMethods.cs │ │ │ │ ├── DisplayFlags.cs │ │ │ │ ├── FrameworkLookup.cs │ │ │ │ ├── ICompletionData.cs │ │ │ │ ├── IEntityCompletionData.cs │ │ │ │ ├── IParameterDataProvider.cs │ │ │ │ └── IVariableCompletionData.cs │ │ │ ├── Documentation │ │ │ │ ├── DocumentationComment.cs │ │ │ │ ├── GetPotentiallyNestedClassTypeReference.cs │ │ │ │ ├── IDocumentationProvider.cs │ │ │ │ ├── IdStringMemberReference.cs │ │ │ │ ├── IdStringProvider.cs │ │ │ │ └── XmlDocumentationProvider.cs │ │ │ ├── Editor │ │ │ │ ├── IDocument.cs │ │ │ │ ├── IDocumentLine.cs │ │ │ │ ├── ISegment.cs │ │ │ │ ├── ITextAnchor.cs │ │ │ │ ├── ITextPasteHandler.cs │ │ │ │ ├── ITextSource.cs │ │ │ │ ├── ReadOnlyDocument.cs │ │ │ │ ├── StringBuilderDocument.cs │ │ │ │ ├── StringTextSource.cs │ │ │ │ ├── TextChangeEventArgs.cs │ │ │ │ ├── TextSourceVersionProvider.cs │ │ │ │ └── UnicodeNewline.cs │ │ │ ├── IAnnotatable.cs │ │ │ ├── ICSharpCode.NRefactory.csproj │ │ │ ├── PatternMatching │ │ │ │ ├── AnyNode.cs │ │ │ │ ├── AnyNodeOrNull.cs │ │ │ │ ├── Backreference.cs │ │ │ │ ├── BacktrackingInfo.cs │ │ │ │ ├── Choice.cs │ │ │ │ ├── INode.cs │ │ │ │ ├── Match.cs │ │ │ │ ├── NamedNode.cs │ │ │ │ ├── OptionalNode.cs │ │ │ │ ├── Pattern.cs │ │ │ │ └── Repeat.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── GlobalAssemblyInfo.cs │ │ │ ├── Refactoring │ │ │ │ ├── IssueMarker.cs │ │ │ │ └── Severity.cs │ │ │ ├── Role.cs │ │ │ ├── Semantics │ │ │ │ ├── AmbiguousResolveResult.cs │ │ │ │ ├── ArrayAccessResolveResult.cs │ │ │ │ ├── ArrayCreateResolveResult.cs │ │ │ │ ├── ByReferenceResolveResult.cs │ │ │ │ ├── ConstantResolveResult.cs │ │ │ │ ├── Conversion.cs │ │ │ │ ├── ConversionResolveResult.cs │ │ │ │ ├── ErrorResolveResult.cs │ │ │ │ ├── ForEachResolveResult.cs │ │ │ │ ├── InitializedObjectResolveResult.cs │ │ │ │ ├── InvocationResolveResult.cs │ │ │ │ ├── LocalResolveResult.cs │ │ │ │ ├── MemberResolveResult.cs │ │ │ │ ├── NamedArgumentResolveResult.cs │ │ │ │ ├── NamespaceResolveResult.cs │ │ │ │ ├── OperatorResolveResult.cs │ │ │ │ ├── ResolveResult.cs │ │ │ │ ├── SizeOfResolveResult.cs │ │ │ │ ├── ThisResolveResult.cs │ │ │ │ ├── TypeIsResolveResult.cs │ │ │ │ ├── TypeOfResolveResult.cs │ │ │ │ ├── TypeResolveResult.cs │ │ │ │ └── UnknownMemberResolveResult.cs │ │ │ ├── TextLocation.cs │ │ │ ├── TypeSystem │ │ │ │ ├── Accessibility.cs │ │ │ │ ├── AnonymousType.cs │ │ │ │ ├── ArrayType.cs │ │ │ │ ├── AssemblyLoader.cs │ │ │ │ ├── AssemblyQualifiedTypeName.cs │ │ │ │ ├── ByReferenceType.cs │ │ │ │ ├── ComHelper.cs │ │ │ │ ├── DefaultSolutionSnapshot.cs │ │ │ │ ├── DomRegion.cs │ │ │ │ ├── EntityType.cs │ │ │ │ ├── Error.cs │ │ │ │ ├── FullTypeName.cs │ │ │ │ ├── IAmbience.cs │ │ │ │ ├── IAssembly.cs │ │ │ │ ├── IAttribute.cs │ │ │ │ ├── ICodeContext.cs │ │ │ │ ├── ICompilation.cs │ │ │ │ ├── IConstantValue.cs │ │ │ │ ├── IEntity.cs │ │ │ │ ├── IEvent.cs │ │ │ │ ├── IField.cs │ │ │ │ ├── IFreezable.cs │ │ │ │ ├── IInterningProvider.cs │ │ │ │ ├── IMember.cs │ │ │ │ ├── IMethod.cs │ │ │ │ ├── INamedElement.cs │ │ │ │ ├── INamespace.cs │ │ │ │ ├── IParameter.cs │ │ │ │ ├── IParameterizedMember.cs │ │ │ │ ├── IProjectContent.cs │ │ │ │ ├── IProperty.cs │ │ │ │ ├── ISolutionSnapshot.cs │ │ │ │ ├── ISupportsInterning.cs │ │ │ │ ├── ISymbol.cs │ │ │ │ ├── IType.cs │ │ │ │ ├── ITypeDefinition.cs │ │ │ │ ├── ITypeParameter.cs │ │ │ │ ├── ITypeReference.cs │ │ │ │ ├── IUnresolvedFile.cs │ │ │ │ ├── IVariable.cs │ │ │ │ ├── Implementation │ │ │ │ │ ├── AbstractFreezable.cs │ │ │ │ │ ├── AbstractResolvedEntity.cs │ │ │ │ │ ├── AbstractResolvedMember.cs │ │ │ │ │ ├── AbstractResolvedTypeParameter.cs │ │ │ │ │ ├── AbstractType.cs │ │ │ │ │ ├── AbstractUnresolvedEntity.cs │ │ │ │ │ ├── AbstractUnresolvedMember.cs │ │ │ │ │ ├── AccessorOwnerMemberReference.cs │ │ │ │ │ ├── BaseTypeCollector.cs │ │ │ │ │ ├── BlobReader.cs │ │ │ │ │ ├── DefaultAssemblyReference.cs │ │ │ │ │ ├── DefaultAttribute.cs │ │ │ │ │ ├── DefaultMemberReference.cs │ │ │ │ │ ├── DefaultParameter.cs │ │ │ │ │ ├── DefaultResolvedEvent.cs │ │ │ │ │ ├── DefaultResolvedField.cs │ │ │ │ │ ├── DefaultResolvedMethod.cs │ │ │ │ │ ├── DefaultResolvedProperty.cs │ │ │ │ │ ├── DefaultResolvedTypeDefinition.cs │ │ │ │ │ ├── DefaultResolvedTypeParameter.cs │ │ │ │ │ ├── DefaultUnresolvedAssembly.cs │ │ │ │ │ ├── DefaultUnresolvedAttribute.cs │ │ │ │ │ ├── DefaultUnresolvedEvent.cs │ │ │ │ │ ├── DefaultUnresolvedField.cs │ │ │ │ │ ├── DefaultUnresolvedMethod.cs │ │ │ │ │ ├── DefaultUnresolvedParameter.cs │ │ │ │ │ ├── DefaultUnresolvedProperty.cs │ │ │ │ │ ├── DefaultUnresolvedTypeDefinition.cs │ │ │ │ │ ├── DefaultUnresolvedTypeParameter.cs │ │ │ │ │ ├── DefaultVariable.cs │ │ │ │ │ ├── DummyTypeParameter.cs │ │ │ │ │ ├── ExplicitInterfaceImplementationMemberReference.cs │ │ │ │ │ ├── FullNameAndTypeParameterCount.cs │ │ │ │ │ ├── GetClassTypeReference.cs │ │ │ │ │ ├── GetMembersHelper.cs │ │ │ │ │ ├── KnownTypeCache.cs │ │ │ │ │ ├── MergedNamespace.cs │ │ │ │ │ ├── MinimalCorlib.cs │ │ │ │ │ ├── NestedTypeReference.cs │ │ │ │ │ ├── ResolvedAttributeBlob.cs │ │ │ │ │ ├── SimpleCompilation.cs │ │ │ │ │ ├── SimpleConstantValue.cs │ │ │ │ │ ├── SimpleInterningProvider.cs │ │ │ │ │ ├── SpecializedEvent.cs │ │ │ │ │ ├── SpecializedField.cs │ │ │ │ │ ├── SpecializedMember.cs │ │ │ │ │ ├── SpecializedMethod.cs │ │ │ │ │ ├── SpecializedProperty.cs │ │ │ │ │ ├── SpecializingMemberReference.cs │ │ │ │ │ ├── TypeParameterReference.cs │ │ │ │ │ ├── TypeWithElementType.cs │ │ │ │ │ ├── UnknownType.cs │ │ │ │ │ ├── UnresolvedAttributeBlob.cs │ │ │ │ │ ├── UnresolvedSecurityDeclarationBlob.cs │ │ │ │ │ └── VoidTypeDefinition.cs │ │ │ │ ├── InheritanceHelper.cs │ │ │ │ ├── IntersectionType.cs │ │ │ │ ├── KnownTypeReference.cs │ │ │ │ ├── NullableType.cs │ │ │ │ ├── ParameterListComparer.cs │ │ │ │ ├── ParameterizedType.cs │ │ │ │ ├── PointerType.cs │ │ │ │ ├── ProjectReference.cs │ │ │ │ ├── ReflectionHelper.cs │ │ │ │ ├── ReflectionNameParseException.cs │ │ │ │ ├── SimpleTypeResolveContext.cs │ │ │ │ ├── SpecialType.cs │ │ │ │ ├── TaskType.cs │ │ │ │ ├── TopLevelTypeName.cs │ │ │ │ ├── TypeKind.cs │ │ │ │ ├── TypeParameterSubstitution.cs │ │ │ │ ├── TypeSystemExtensions.cs │ │ │ │ └── TypeVisitor.cs │ │ │ └── Utils │ │ │ │ ├── 7BitEncodedInts.cs │ │ │ │ ├── BitVector16.cs │ │ │ │ ├── BusyManager.cs │ │ │ │ ├── CSharpPrimitiveCast.cs │ │ │ │ ├── CacheManager.cs │ │ │ │ ├── CallbackOnDispose.cs │ │ │ │ ├── ComparableList.cs │ │ │ │ ├── CompositeFormatStringParser │ │ │ │ ├── CompositeFormatStringParser.cs │ │ │ │ ├── FormatItem.cs │ │ │ │ ├── FormatStringSegmentBase.cs │ │ │ │ ├── IFormatStringError.cs │ │ │ │ ├── IFormatStringSegment.cs │ │ │ │ └── TextSegment.cs │ │ │ │ ├── EmptyList.cs │ │ │ │ ├── ExtensionMethods.cs │ │ │ │ ├── FastSerializer.cs │ │ │ │ ├── GraphVizGraph.cs │ │ │ │ ├── ImmutableStack.cs │ │ │ │ ├── KeyComparer.cs │ │ │ │ ├── LazyInit.cs │ │ │ │ ├── MultiDictionary.cs │ │ │ │ ├── Platform.cs │ │ │ │ ├── ProjectedList.cs │ │ │ │ ├── ReferenceComparer.cs │ │ │ │ └── TreeTraversal.cs │ │ ├── NRefactory.sln │ │ ├── Packages │ │ │ └── ICSharpCode.NRefactory.nuspec │ │ ├── README │ │ └── doc │ │ │ ├── Pattern Matching.html │ │ │ ├── TODO │ │ │ ├── XML Documentation.html │ │ │ ├── copyright.txt │ │ │ └── license.txt │ ├── OmniSharp.Tests │ │ ├── AutoComplete │ │ │ ├── BugFixTests.cs │ │ │ ├── CompletionTestBase.cs │ │ │ ├── CompletionsSpecBase.cs │ │ │ ├── ConstructorParameterCompletions.cs │ │ │ ├── DerivedTypeCompletions.cs │ │ │ ├── GenericCompletions.cs │ │ │ ├── IntegrationTest.cs │ │ │ └── NamespaceCompletions.cs │ │ ├── Build │ │ │ └── BuildLogParserTests.cs │ │ ├── CodeFormat │ │ │ └── CodeFormatTest.cs │ │ ├── FakeAssembly.cs │ │ ├── FakeFileSystem.cs │ │ ├── FakeProject.cs │ │ ├── FakeSolution.cs │ │ ├── FindUsages │ │ │ └── IntegrationTest.cs │ │ ├── FixUsings │ │ │ └── FixUsingsTests.cs │ │ ├── GoToImplementation │ │ │ └── GoToImplementation.cs │ │ ├── ObjectExtensions.cs │ │ ├── OmniSharp.Tests.csproj │ │ ├── ProjectManipulation │ │ │ ├── AddReference │ │ │ │ ├── AddFileReferenceTests.cs │ │ │ │ ├── AddGacReferenceTests.cs │ │ │ │ ├── AddProjectReferenceTests.cs │ │ │ │ ├── AddReferenceTestsBase.cs │ │ │ │ └── AddToProjectProcessoryFactoryTests.cs │ │ │ ├── AddToProject │ │ │ │ └── AddToProjectTests.cs │ │ │ └── RemoveFromProject │ │ │ │ └── RemoveFromProjectTests.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Rename │ │ │ ├── Buffer.cs │ │ │ ├── FakeSolutionBuilder.cs │ │ │ ├── MultiFileRenameTests.cs │ │ │ └── SimpleRenameTests.cs │ │ ├── Solution │ │ │ ├── SolutionTest.cs │ │ │ └── minimal │ │ │ │ ├── minimal.sln │ │ │ │ └── minimal │ │ │ │ ├── MyClass.cs │ │ │ │ └── minimal.csproj │ │ ├── TestHelpers.cs │ │ ├── TypeLookup │ │ │ ├── EmptyResults.cs │ │ │ ├── IntegrationTest.cs │ │ │ ├── LocalVariables.cs │ │ │ ├── MemberVariables.cs │ │ │ ├── Methods.cs │ │ │ ├── Properties.cs │ │ │ └── StringExtensions.cs │ │ ├── UnitTesting │ │ │ ├── ContextInformationTests.cs │ │ │ └── UnitTesting.cs │ │ └── packages.config │ ├── OmniSharp.sln │ ├── OmniSharp │ │ ├── AutoComplete │ │ │ ├── AutoCompleteHandler.cs │ │ │ ├── AutoCompleteModule.cs │ │ │ ├── AutoCompleteRequest.cs │ │ │ ├── AutoCompleteResponse.cs │ │ │ ├── BufferContext.cs │ │ │ ├── CompletionData.cs │ │ │ ├── CompletionDataExtensions.cs │ │ │ ├── CompletionDataFactory.cs │ │ │ ├── HelpExtension.cs │ │ │ ├── HelpService.cs │ │ │ ├── MyCompletionCategory.cs │ │ │ └── StringExtensions.cs │ │ ├── Bootstrapper.cs │ │ ├── Build │ │ │ ├── BuildCommandBuilder.cs │ │ │ ├── BuildCommandModule.cs │ │ │ ├── BuildHandler.cs │ │ │ ├── BuildLogParser.cs │ │ │ ├── BuildModule.cs │ │ │ └── BuildResponse.cs │ │ ├── CheckAliveStatus │ │ │ └── CheckAliveStatusModule.cs │ │ ├── CheckReadyStatus │ │ │ └── CheckReadyStatusModule.cs │ │ ├── CodeActions │ │ │ ├── CodeActionProviders.cs │ │ │ ├── FixUsingsHandler.cs │ │ │ ├── FixUsingsModule.cs │ │ │ ├── FixUsingsResponse.cs │ │ │ ├── GetCodeActionRequest.cs │ │ │ ├── GetCodeActionsHandler.cs │ │ │ ├── GetCodeActionsModule.cs │ │ │ ├── GetCodeActionsResponse.cs │ │ │ ├── RunCodeActionModule.cs │ │ │ ├── RunCodeActionRequest.cs │ │ │ └── RunCodeActionsResponse.cs │ │ ├── CodeFormat │ │ │ ├── CodeFormatHandler.cs │ │ │ ├── CodeFormatModule.cs │ │ │ ├── CodeFormatRequest.cs │ │ │ └── CodeFormatResponse.cs │ │ ├── CodeIssues │ │ │ ├── CodeIssueProviders.cs │ │ │ ├── CodeIssuesHandler.cs │ │ │ ├── CodeIssuesModule.cs │ │ │ ├── GetCodeIssuesResponse.cs │ │ │ └── RunCodeIssuesResponse.cs │ │ ├── Common │ │ │ ├── CygPathWrapper.cs │ │ │ ├── FileSystem.cs │ │ │ ├── IFileSystem.cs │ │ │ ├── QuickFix.cs │ │ │ ├── QuickFixResponse.cs │ │ │ └── Request.cs │ │ ├── Configuration │ │ │ ├── OmniSharpConfiguration.cs │ │ │ ├── PathMode.cs │ │ │ ├── PathReplacement.cs │ │ │ └── TestCommands.cs │ │ ├── CurrentFileMembers │ │ │ ├── CurrentFileMembersAsFlatModule.cs │ │ │ ├── CurrentFileMembersAsTreeModule.cs │ │ │ ├── CurrentFileMembersAsTreeResponse.cs │ │ │ ├── CurrentFileMembersHandler.cs │ │ │ ├── CurrentFileMembersRequest.cs │ │ │ ├── CurrentFileTopLevelTypesModule.cs │ │ │ └── Node.cs │ │ ├── Documentation │ │ │ ├── DocumentationConverter.cs │ │ │ ├── DocumentationFetcher.cs │ │ │ ├── MonoDocDocumentationProvider.cs │ │ │ └── XmlDocumentationProviderFactory.cs │ │ ├── Extensions │ │ │ └── NodeExtensions.cs │ │ ├── FindSymbols │ │ │ ├── FindSymbolsHandler.cs │ │ │ └── FindSymbolsModule.cs │ │ ├── FindTypes │ │ │ ├── FindTypesHandler.cs │ │ │ └── FindTypesModule.cs │ │ ├── FindUsages │ │ │ ├── AstNodeExtensions.cs │ │ │ ├── FindUsagesHandler.cs │ │ │ ├── FindUsagesModule.cs │ │ │ ├── FindUsagesRequest.cs │ │ │ └── MemberCollector.cs │ │ ├── GotoDefinition │ │ │ ├── GotoDefinitionHandler.cs │ │ │ ├── GotoDefinitionModule.cs │ │ │ ├── GotoDefinitionRequest.cs │ │ │ └── GotoDefinitionResponse.cs │ │ ├── GotoFile │ │ │ ├── GotoFileHandler.cs │ │ │ └── GotoFileModule.cs │ │ ├── GotoImplementation │ │ │ ├── GotoImplementationHandler.cs │ │ │ ├── GotoImplementationModule.cs │ │ │ ├── GotoImplementationRequest.cs │ │ │ └── Location.cs │ │ ├── GotoRegion │ │ │ ├── GetDirectivesAstVisitor.cs │ │ │ ├── GotoRegionHandler.cs │ │ │ └── GotoRegionModule.cs │ │ ├── Logger.cs │ │ ├── LookupAllTypes │ │ │ ├── LookupAllTypesHandler.cs │ │ │ ├── LookupAllTypesModule.cs │ │ │ ├── LookupAllTypesRequest.cs │ │ │ └── LookupAllTypesResponse.cs │ │ ├── OmniSharp.csproj │ │ ├── Options.cs │ │ ├── Overrides │ │ │ ├── GetOverrideTargetsModule.cs │ │ │ ├── GetOverrideTargetsResponse.cs │ │ │ ├── OverrideContext.cs │ │ │ ├── OverrideHandler.cs │ │ │ ├── RunOverrideTargetModule.cs │ │ │ ├── RunOverrideTargetRequest.cs │ │ │ └── RunOverrideTargetResponse.cs │ │ ├── Parser │ │ │ ├── BufferParser.cs │ │ │ └── ParsedResult.cs │ │ ├── Platform.cs │ │ ├── Program.cs │ │ ├── ProjectManipulation │ │ │ ├── AddReference │ │ │ │ ├── AddFileReferenceProcessor.cs │ │ │ │ ├── AddGacReferenceProcessor.cs │ │ │ │ ├── AddProjectReferenceProcessor.cs │ │ │ │ ├── AddReferenceHandler.cs │ │ │ │ ├── AddReferenceModule.cs │ │ │ │ ├── AddReferenceProcessorFactory.cs │ │ │ │ ├── AddReferenceRequest.cs │ │ │ │ ├── AddReferenceResponse.cs │ │ │ │ ├── IReferenceProcessor.cs │ │ │ │ └── ReferenceProcessorBase.cs │ │ │ ├── AddToProject │ │ │ │ ├── AddToProjectHandler.cs │ │ │ │ ├── AddToProjectModule.cs │ │ │ │ └── AddToProjectRequest.cs │ │ │ ├── ProjectNotFoundException.cs │ │ │ └── RemoveFromProject │ │ │ │ ├── RemoveFromProjectHandler.cs │ │ │ │ ├── RemoveFromProjectModule.cs │ │ │ │ ├── RemoveFromProjectRequest.cs │ │ │ │ └── XDocumentExtensions.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Refactoring │ │ │ ├── OmniSharpRefactoringContext.cs │ │ │ └── OmniSharpScript.cs │ │ ├── ReloadSolution │ │ │ └── ReloadSolutionModule.cs │ │ ├── Rename │ │ │ ├── ModifiedFileResponse.cs │ │ │ ├── RenameHandler.cs │ │ │ ├── RenameModule.cs │ │ │ ├── RenameRequest.cs │ │ │ └── RenameResponse.cs │ │ ├── Solution │ │ │ ├── CSharpFile.cs │ │ │ ├── CSharpFolder.cs │ │ │ ├── CSharpProject.cs │ │ │ ├── CSharpSolution.cs │ │ │ ├── Fusion.cs │ │ │ ├── GacInterop.cs │ │ │ ├── IProject.cs │ │ │ ├── OrphanProject.cs │ │ │ ├── ProjectFinder.cs │ │ │ ├── ProjectReference.cs │ │ │ └── StringExtensions.cs │ │ ├── StopServer │ │ │ └── StopServerModule.cs │ │ ├── SyntaxErrors │ │ │ ├── Error.cs │ │ │ ├── SyntaxErrorsHandler.cs │ │ │ ├── SyntaxErrorsModule.cs │ │ │ └── SyntaxErrorsResponse.cs │ │ ├── TestContextInformation │ │ │ ├── GetContextResponse.cs │ │ │ ├── GetTestContextHandler.cs │ │ │ ├── GetTestContextModule.cs │ │ │ ├── GetTestContextResponse.cs │ │ │ └── TestCommandRequest.cs │ │ ├── TypeLookup │ │ │ ├── TypeLookupHandler.cs │ │ │ ├── TypeLookupModule.cs │ │ │ ├── TypeLookupRequest.cs │ │ │ └── TypeLookupResponse.cs │ │ ├── UpdateBuffer │ │ │ └── UpdateBufferModule.cs │ │ ├── app.config │ │ ├── config-cygwin.json │ │ ├── config.json │ │ └── packages.config │ ├── README.md │ ├── cecil │ │ ├── Mono.Cecil.Cil │ │ │ ├── Code.cs │ │ │ ├── CodeReader.cs │ │ │ ├── CodeWriter.cs │ │ │ ├── Document.cs │ │ │ ├── ExceptionHandler.cs │ │ │ ├── ILProcessor.cs │ │ │ ├── Instruction.cs │ │ │ ├── MethodBody.cs │ │ │ ├── OpCode.cs │ │ │ ├── OpCodes.cs │ │ │ ├── SequencePoint.cs │ │ │ ├── Symbols.cs │ │ │ ├── VariableDefinition.cs │ │ │ └── VariableReference.cs │ │ ├── Mono.Cecil.Metadata │ │ │ ├── BlobHeap.cs │ │ │ ├── Buffers.cs │ │ │ ├── CodedIndex.cs │ │ │ ├── ElementType.cs │ │ │ ├── GuidHeap.cs │ │ │ ├── Heap.cs │ │ │ ├── MetadataToken.cs │ │ │ ├── Row.cs │ │ │ ├── StringHeap.cs │ │ │ ├── TableHeap.cs │ │ │ ├── TokenType.cs │ │ │ ├── UserStringHeap.cs │ │ │ └── Utilities.cs │ │ ├── Mono.Cecil.PE │ │ │ ├── BinaryStreamReader.cs │ │ │ ├── BinaryStreamWriter.cs │ │ │ ├── ByteBuffer.cs │ │ │ ├── ByteBufferEqualityComparer.cs │ │ │ ├── DataDirectory.cs │ │ │ ├── Image.cs │ │ │ ├── ImageReader.cs │ │ │ ├── ImageWriter.cs │ │ │ ├── Section.cs │ │ │ └── TextMap.cs │ │ ├── Mono.Cecil.csproj │ │ ├── Mono.Cecil.nunit │ │ ├── Mono.Cecil.nuspec │ │ ├── Mono.Cecil.sln │ │ ├── Mono.Cecil.sln.DotSettings │ │ ├── Mono.Cecil │ │ │ ├── ArrayType.cs │ │ │ ├── AssemblyDefinition.cs │ │ │ ├── AssemblyFlags.cs │ │ │ ├── AssemblyHashAlgorithm.cs │ │ │ ├── AssemblyInfo.cs │ │ │ ├── AssemblyLinkedResource.cs │ │ │ ├── AssemblyNameDefinition.cs │ │ │ ├── AssemblyNameReference.cs │ │ │ ├── AssemblyReader.cs │ │ │ ├── AssemblyWriter.cs │ │ │ ├── BaseAssemblyResolver.cs │ │ │ ├── CallSite.cs │ │ │ ├── CustomAttribute.cs │ │ │ ├── DefaultAssemblyResolver.cs │ │ │ ├── EmbeddedResource.cs │ │ │ ├── EventAttributes.cs │ │ │ ├── EventDefinition.cs │ │ │ ├── EventReference.cs │ │ │ ├── ExportedType.cs │ │ │ ├── FieldAttributes.cs │ │ │ ├── FieldDefinition.cs │ │ │ ├── FieldReference.cs │ │ │ ├── FileAttributes.cs │ │ │ ├── FunctionPointerType.cs │ │ │ ├── GenericInstanceMethod.cs │ │ │ ├── GenericInstanceType.cs │ │ │ ├── GenericParameter.cs │ │ │ ├── GenericParameterAttributes.cs │ │ │ ├── IConstantProvider.cs │ │ │ ├── ICustomAttributeProvider.cs │ │ │ ├── IGenericInstance.cs │ │ │ ├── IGenericParameterProvider.cs │ │ │ ├── IMarshalInfoProvider.cs │ │ │ ├── IMemberDefinition.cs │ │ │ ├── IMetadataScope.cs │ │ │ ├── IMetadataTokenProvider.cs │ │ │ ├── IMethodSignature.cs │ │ │ ├── Import.cs │ │ │ ├── LinkedResource.cs │ │ │ ├── ManifestResourceAttributes.cs │ │ │ ├── MarshalInfo.cs │ │ │ ├── MemberDefinitionCollection.cs │ │ │ ├── MemberReference.cs │ │ │ ├── MetadataResolver.cs │ │ │ ├── MetadataSystem.cs │ │ │ ├── MethodAttributes.cs │ │ │ ├── MethodCallingConvention.cs │ │ │ ├── MethodDefinition.cs │ │ │ ├── MethodImplAttributes.cs │ │ │ ├── MethodReference.cs │ │ │ ├── MethodReturnType.cs │ │ │ ├── MethodSemanticsAttributes.cs │ │ │ ├── MethodSpecification.cs │ │ │ ├── Modifiers.cs │ │ │ ├── ModuleDefinition.cs │ │ │ ├── ModuleKind.cs │ │ │ ├── ModuleReference.cs │ │ │ ├── NativeType.cs │ │ │ ├── PInvokeAttributes.cs │ │ │ ├── PInvokeInfo.cs │ │ │ ├── ParameterAttributes.cs │ │ │ ├── ParameterDefinition.cs │ │ │ ├── ParameterDefinitionCollection.cs │ │ │ ├── ParameterReference.cs │ │ │ ├── PinnedType.cs │ │ │ ├── PointerType.cs │ │ │ ├── PropertyAttributes.cs │ │ │ ├── PropertyDefinition.cs │ │ │ ├── PropertyReference.cs │ │ │ ├── ReferenceType.cs │ │ │ ├── Resource.cs │ │ │ ├── SecurityDeclaration.cs │ │ │ ├── SentinelType.cs │ │ │ ├── TargetRuntime.cs │ │ │ ├── TypeAttributes.cs │ │ │ ├── TypeDefinition.cs │ │ │ ├── TypeDefinitionCollection.cs │ │ │ ├── TypeParser.cs │ │ │ ├── TypeReference.cs │ │ │ ├── TypeSpecification.cs │ │ │ ├── TypeSystem.cs │ │ │ └── VariantType.cs │ │ ├── Mono.Collections.Generic │ │ │ ├── Collection.cs │ │ │ └── ReadOnlyCollection.cs │ │ ├── Mono.Security.Cryptography │ │ │ ├── CryptoConvert.cs │ │ │ └── CryptoService.cs │ │ ├── Mono │ │ │ ├── Actions.cs │ │ │ ├── Empty.cs │ │ │ └── Funcs.cs │ │ ├── NOTES.txt │ │ ├── System.Runtime.CompilerServices │ │ │ └── ExtensionAttribute.cs │ │ ├── Test │ │ │ ├── Mono.Cecil.Tests.csproj │ │ │ ├── Mono.Cecil.Tests │ │ │ │ ├── Addin.cs │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── AssemblyTests.cs │ │ │ │ ├── BaseTestFixture.cs │ │ │ │ ├── CompilationService.cs │ │ │ │ ├── CustomAttributesTests.cs │ │ │ │ ├── EventTests.cs │ │ │ │ ├── Extensions.cs │ │ │ │ ├── FieldTests.cs │ │ │ │ ├── Formatter.cs │ │ │ │ ├── ILProcessorTests.cs │ │ │ │ ├── ImageReadTests.cs │ │ │ │ ├── ImportCecilTests.cs │ │ │ │ ├── ImportReflectionTests.cs │ │ │ │ ├── Linq.cs │ │ │ │ ├── MethodBodyTests.cs │ │ │ │ ├── MethodTests.cs │ │ │ │ ├── ModuleTests.cs │ │ │ │ ├── NestedTypesTests.cs │ │ │ │ ├── ParameterTests.cs │ │ │ │ ├── PropertyTests.cs │ │ │ │ ├── ResolveTests.cs │ │ │ │ ├── SecurityDeclarationTests.cs │ │ │ │ ├── TypeParserTests.cs │ │ │ │ ├── TypeTests.cs │ │ │ │ └── VariableTests.cs │ │ │ ├── Resources │ │ │ │ ├── assemblies │ │ │ │ │ ├── PortableClassLibrary.dll │ │ │ │ │ ├── boxedoptarg.dll │ │ │ │ │ ├── catch.exe │ │ │ │ │ ├── cppcli.dll │ │ │ │ │ ├── cscgpbug.dll │ │ │ │ │ ├── decsec-att.dll │ │ │ │ │ ├── decsec-xml.dll │ │ │ │ │ ├── decsec1-xml.dll │ │ │ │ │ ├── delay-signed.dll │ │ │ │ │ ├── empty-decsec-att.dll │ │ │ │ │ ├── fptr.exe │ │ │ │ │ ├── gifaceref.exe │ │ │ │ │ ├── hello.anycpu.exe │ │ │ │ │ ├── hello.exe │ │ │ │ │ ├── hello.ia64.exe │ │ │ │ │ ├── hello.x64.exe │ │ │ │ │ ├── hello.x86.exe │ │ │ │ │ ├── hellow.exe │ │ │ │ │ ├── iterator.exe │ │ │ │ │ ├── libhello.dll │ │ │ │ │ ├── libres.dll │ │ │ │ │ ├── marshal.dll │ │ │ │ │ ├── metro.exe │ │ │ │ │ ├── mma.exe │ │ │ │ │ ├── moda.netmodule │ │ │ │ │ ├── modb.netmodule │ │ │ │ │ ├── noblob.dll │ │ │ │ │ ├── pinvoke.exe │ │ │ │ │ ├── switch.exe │ │ │ │ │ ├── text_file.txt │ │ │ │ │ ├── varargs.exe │ │ │ │ │ └── wp7.dll │ │ │ │ ├── cs │ │ │ │ │ ├── CustomAttributes.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── Fields.cs │ │ │ │ │ ├── Generics.cs │ │ │ │ │ ├── Interfaces.cs │ │ │ │ │ ├── Layouts.cs │ │ │ │ │ ├── Methods.cs │ │ │ │ │ ├── NestedTypes.cs │ │ │ │ │ └── Properties.cs │ │ │ │ └── il │ │ │ │ │ ├── explicitthis.il │ │ │ │ │ ├── hello.il │ │ │ │ │ ├── methodspecs.il │ │ │ │ │ ├── others.il │ │ │ │ │ └── types.il │ │ │ └── libs │ │ │ │ └── nunit-2.6.2 │ │ │ │ ├── license.txt │ │ │ │ ├── nunit.core.dll │ │ │ │ ├── nunit.core.interfaces.dll │ │ │ │ └── nunit.framework.dll │ │ ├── dbg │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── dbg.csproj │ │ ├── mono.snk │ │ ├── rocks │ │ │ ├── Mono.Cecil.Rocks.csproj │ │ │ ├── Mono.Cecil.Rocks │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Functional.cs │ │ │ │ ├── ILParser.cs │ │ │ │ ├── MethodBodyRocks.cs │ │ │ │ ├── MethodDefinitionRocks.cs │ │ │ │ ├── ModuleDefinitionRocks.cs │ │ │ │ ├── ParameterReferenceRocks.cs │ │ │ │ ├── SecurityDeclarationRocks.cs │ │ │ │ ├── TypeDefinitionRocks.cs │ │ │ │ └── TypeReferenceRocks.cs │ │ │ └── Test │ │ │ │ ├── Mono.Cecil.Rocks.Tests.csproj │ │ │ │ ├── Mono.Cecil.Tests │ │ │ │ ├── Addin.cs │ │ │ │ ├── MethodDefinitionRocksTests.cs │ │ │ │ ├── ModuleDefinitionRocksTests.cs │ │ │ │ ├── SecurityDeclarationRocksTests.cs │ │ │ │ ├── TypeDefinitionRocksTests.cs │ │ │ │ └── TypeReferenceRocksTests.cs │ │ │ │ └── Resources │ │ │ │ ├── assemblies │ │ │ │ ├── decsec-att.dll │ │ │ │ └── decsec-xml.dll │ │ │ │ └── cs │ │ │ │ └── Types.cs │ │ └── symbols │ │ │ ├── mdb │ │ │ ├── Mono.Cecil.Mdb.csproj │ │ │ ├── Mono.Cecil.Mdb │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── MdbReader.cs │ │ │ │ └── MdbWriter.cs │ │ │ ├── Mono.CompilerServices.SymbolWriter │ │ │ │ ├── MonoSymbolFile.cs │ │ │ │ ├── MonoSymbolTable.cs │ │ │ │ ├── MonoSymbolWriter.cs │ │ │ │ └── SymbolWriterImpl.cs │ │ │ └── Test │ │ │ │ ├── Mono.Cecil.Mdb.Tests.csproj │ │ │ │ ├── Mono.Cecil.Tests │ │ │ │ ├── Addin.cs │ │ │ │ └── MdbTests.cs │ │ │ │ └── Resources │ │ │ │ └── assemblies │ │ │ │ ├── hello.exe │ │ │ │ └── hello.exe.mdb │ │ │ └── pdb │ │ │ ├── Microsoft.Cci.Pdb │ │ │ ├── BitAccess.cs │ │ │ ├── BitSet.cs │ │ │ ├── CvInfo.cs │ │ │ ├── DataStream.cs │ │ │ ├── DbiDbgHdr.cs │ │ │ ├── DbiHeader.cs │ │ │ ├── DbiModuleInfo.cs │ │ │ ├── DbiSecCon.cs │ │ │ ├── IntHashTable.cs │ │ │ ├── Interfaces.cs │ │ │ ├── LICENSE │ │ │ ├── MsfDirectory.cs │ │ │ ├── PdbConstant.cs │ │ │ ├── PdbDebugException.cs │ │ │ ├── PdbException.cs │ │ │ ├── PdbFile.cs │ │ │ ├── PdbFileHeader.cs │ │ │ ├── PdbFunction.cs │ │ │ ├── PdbLine.cs │ │ │ ├── PdbLines.cs │ │ │ ├── PdbReader.cs │ │ │ ├── PdbScope.cs │ │ │ ├── PdbSlot.cs │ │ │ ├── PdbSource.cs │ │ │ ├── PdbTokenLine.cs │ │ │ └── SourceLocationProvider.cs │ │ │ ├── Mono.Cecil.Pdb.csproj │ │ │ ├── Mono.Cecil.Pdb │ │ │ ├── AssemblyInfo.cs │ │ │ ├── ISymUnmanagedDocumentWriter.cs │ │ │ ├── ISymUnmanagedWriter2.cs │ │ │ ├── ModuleMetadata.cs │ │ │ ├── PdbHelper.cs │ │ │ ├── PdbReader.cs │ │ │ ├── PdbWriter.cs │ │ │ ├── SymDocumentWriter.cs │ │ │ └── SymWriter.cs │ │ │ └── Test │ │ │ ├── Mono.Cecil.Pdb.Tests.csproj │ │ │ ├── Mono.Cecil.Tests │ │ │ ├── Addin.cs │ │ │ ├── Linq.cs │ │ │ └── PdbTests.cs │ │ │ └── Resources │ │ │ └── assemblies │ │ │ ├── VBConsApp.exe │ │ │ ├── VBConsApp.pdb │ │ │ ├── fsapp.exe │ │ │ ├── fsapp.pdb │ │ │ ├── test.exe │ │ │ └── test.pdb │ └── packages │ │ ├── .DS_Store │ │ ├── CsQuery.1.3.4 │ │ ├── CsQuery.1.3.4.nupkg │ │ ├── CsQuery.1.3.4.nuspec │ │ └── lib │ │ │ └── net40 │ │ │ ├── CsQuery.XML │ │ │ └── CsQuery.dll │ │ ├── NUnit.2.6.2 │ │ ├── NUnit.2.6.2.nupkg │ │ ├── lib │ │ │ ├── nunit.framework.dll │ │ │ └── nunit.framework.xml │ │ └── license.txt │ │ ├── Nancy.0.22.2 │ │ ├── Nancy.0.22.2.nupkg │ │ └── lib │ │ │ └── net40 │ │ │ ├── Nancy.XML │ │ │ └── Nancy.dll │ │ ├── Nancy.Authentication.Forms.0.22.2 │ │ ├── Nancy.Authentication.Forms.0.22.2.nupkg │ │ └── lib │ │ │ └── net40 │ │ │ ├── Nancy.Authentication.Forms.XML │ │ │ └── Nancy.Authentication.Forms.dll │ │ ├── Nancy.Hosting.Self.0.22.2 │ │ ├── Nancy.Hosting.Self.0.22.2.nupkg │ │ └── lib │ │ │ └── net40 │ │ │ ├── Nancy.Hosting.Self.dll │ │ │ └── Nancy.Hosting.Self.xml │ │ ├── Nancy.Testing.0.22.2 │ │ ├── Nancy.Testing.0.22.2.nupkg │ │ └── lib │ │ │ └── net40 │ │ │ ├── Nancy.Testing.dll │ │ │ └── Nancy.Testing.xml │ │ ├── Should.1.1.12.0 │ │ ├── Should.1.1.12.0.nupkg │ │ └── lib │ │ │ └── Should.dll │ │ ├── monodoc.dll │ │ └── repositories.config ├── argparse │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── NEWS.txt │ ├── README.txt │ ├── argparse.py │ ├── doc │ │ ├── Makefile │ │ ├── make.bat │ │ └── source │ │ │ ├── Python-License.txt │ │ │ ├── argparse.rst │ │ │ ├── conf.py │ │ │ ├── index.rst │ │ │ └── license.rst │ ├── setup.cfg │ ├── setup.py │ └── test │ │ └── test_argparse.py ├── bottle │ ├── .coveragerc │ ├── AUTHORS │ ├── LICENSE │ ├── MANIFEST.in │ ├── Makefile │ ├── README.rst │ ├── bottle.py │ ├── docs │ │ ├── _locale │ │ │ ├── README.txt │ │ │ ├── update.sh │ │ │ └── zh_CN │ │ │ │ ├── api.po │ │ │ │ ├── async.po │ │ │ │ ├── changelog.po │ │ │ │ ├── configuration.po │ │ │ │ ├── contact.po │ │ │ │ ├── deployment.po │ │ │ │ ├── development.po │ │ │ │ ├── faq.po │ │ │ │ ├── index.po │ │ │ │ ├── plugindev.po │ │ │ │ ├── plugins.po │ │ │ │ ├── recipes.po │ │ │ │ ├── routing.po │ │ │ │ ├── stpl.po │ │ │ │ ├── tutorial.po │ │ │ │ └── tutorial_app.po │ │ ├── api.rst │ │ ├── async.rst │ │ ├── changelog.rst │ │ ├── conf.py │ │ ├── configuration.rst │ │ ├── contact.rst │ │ ├── deployment.rst │ │ ├── development.rst │ │ ├── faq.rst │ │ ├── index.rst │ │ ├── plugindev.rst │ │ ├── plugins │ │ │ └── index.rst │ │ ├── recipes.rst │ │ ├── routing.rst │ │ ├── stpl.rst │ │ ├── tutorial.rst │ │ └── tutorial_app.rst │ ├── setup.cfg │ ├── setup.py │ ├── test │ │ ├── .coveragerc │ │ ├── build_python.sh │ │ ├── servertest.py │ │ ├── test_auth.py │ │ ├── test_config.py │ │ ├── test_configdict.py │ │ ├── test_contextlocals.py │ │ ├── test_environ.py │ │ ├── test_fileupload.py │ │ ├── test_formsdict.py │ │ ├── test_importhook.py │ │ ├── test_jinja2.py │ │ ├── test_mako.py │ │ ├── test_mdict.py │ │ ├── test_mount.py │ │ ├── test_outputfilter.py │ │ ├── test_plugins.py │ │ ├── test_resources.py │ │ ├── test_route.py │ │ ├── test_router.py │ │ ├── test_securecookies.py │ │ ├── test_sendfile.py │ │ ├── test_server.py │ │ ├── test_stpl.py │ │ ├── test_wsgi.py │ │ ├── testall.py │ │ ├── tools.py │ │ ├── travis-requirements.txt │ │ ├── travis_setup.sh │ │ └── views │ │ │ ├── jinja2_base.tpl │ │ │ ├── jinja2_inherit.tpl │ │ │ ├── jinja2_simple.tpl │ │ │ ├── mako_base.tpl │ │ │ ├── mako_inherit.tpl │ │ │ ├── mako_simple.tpl │ │ │ ├── stpl_include.tpl │ │ │ ├── stpl_no_vars.tpl │ │ │ ├── stpl_simple.tpl │ │ │ ├── stpl_t2base.tpl │ │ │ ├── stpl_t2inc.tpl │ │ │ ├── stpl_t2main.tpl │ │ │ └── stpl_unicode.tpl │ └── tox.ini ├── frozendict │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── README.md │ ├── README.txt │ ├── frozendict │ │ └── __init__.py │ └── setup.py ├── jedi │ ├── .coveragerc │ ├── AUTHORS.txt │ ├── CHANGELOG.rst │ ├── CONTRIBUTING.md │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── README.rst │ ├── conftest.py │ ├── docs │ │ ├── Makefile │ │ ├── _screenshots │ │ │ ├── screenshot_complete.png │ │ │ ├── screenshot_function.png │ │ │ └── screenshot_pydoc.png │ │ ├── _static │ │ │ ├── logo-src.txt │ │ │ └── logo.png │ │ ├── _templates │ │ │ ├── ghbuttons.html │ │ │ └── sidebarlogo.html │ │ ├── _themes │ │ │ ├── flask │ │ │ │ ├── LICENSE │ │ │ │ ├── layout.html │ │ │ │ ├── relations.html │ │ │ │ ├── static │ │ │ │ │ ├── flasky.css_t │ │ │ │ │ └── small_flask.css │ │ │ │ └── theme.conf │ │ │ └── flask_theme_support.py │ │ ├── conf.py │ │ ├── docs │ │ │ ├── development.rst │ │ │ ├── features.rst │ │ │ ├── installation.rst │ │ │ ├── plugin-api-classes.rst │ │ │ ├── plugin-api.rst │ │ │ ├── settings.rst │ │ │ ├── testing.rst │ │ │ └── usage.rst │ │ ├── global.rst │ │ └── index.rst │ ├── jedi │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _compatibility.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── classes.py │ │ │ ├── helpers.py │ │ │ ├── interpreter.py │ │ │ ├── keywords.py │ │ │ ├── replstartup.py │ │ │ └── usages.py │ │ ├── cache.py │ │ ├── common.py │ │ ├── debug.py │ │ ├── evaluate │ │ │ ├── __init__.py │ │ │ ├── analysis.py │ │ │ ├── cache.py │ │ │ ├── compiled │ │ │ │ ├── __init__.py │ │ │ │ ├── fake.py │ │ │ │ └── fake │ │ │ │ │ ├── _functools.pym │ │ │ │ │ ├── _sqlite3.pym │ │ │ │ │ ├── _sre.pym │ │ │ │ │ ├── _weakref.pym │ │ │ │ │ ├── builtins.pym │ │ │ │ │ ├── datetime.pym │ │ │ │ │ ├── io.pym │ │ │ │ │ └── posix.pym │ │ │ ├── docstrings.py │ │ │ ├── dynamic.py │ │ │ ├── finder.py │ │ │ ├── helpers.py │ │ │ ├── imports.py │ │ │ ├── iterable.py │ │ │ ├── param.py │ │ │ ├── precedence.py │ │ │ ├── recursion.py │ │ │ ├── representation.py │ │ │ ├── stdlib.py │ │ │ └── sys_path.py │ │ ├── parser │ │ │ ├── __init__.py │ │ │ ├── fast.py │ │ │ ├── representation.py │ │ │ ├── tokenize.py │ │ │ └── user_context.py │ │ ├── refactoring.py │ │ ├── settings.py │ │ └── utils.py │ ├── pytest.ini │ ├── scripts │ │ ├── memory_check.py │ │ ├── profile.py │ │ └── wx_check.py │ ├── setup.py │ ├── sith.py │ ├── test │ │ ├── __init__.py │ │ ├── completion │ │ │ ├── __init__.py │ │ │ ├── arrays.py │ │ │ ├── basic.py │ │ │ ├── classes.py │ │ │ ├── complex.py │ │ │ ├── decorators.py │ │ │ ├── definition.py │ │ │ ├── descriptors.py │ │ │ ├── docstring.py │ │ │ ├── dynamic.py │ │ │ ├── functions.py │ │ │ ├── generators.py │ │ │ ├── goto.py │ │ │ ├── import_tree │ │ │ │ ├── __init__.py │ │ │ │ ├── mod1.py │ │ │ │ ├── mod2.py │ │ │ │ ├── pkg │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── mod1.py │ │ │ │ ├── random.py │ │ │ │ ├── recurse_class1.py │ │ │ │ ├── recurse_class2.py │ │ │ │ ├── rename1.py │ │ │ │ └── rename2.py │ │ │ ├── imports.py │ │ │ ├── invalid.py │ │ │ ├── isinstance.py │ │ │ ├── keywords.py │ │ │ ├── lambdas.py │ │ │ ├── named_param.py │ │ │ ├── ordering.py │ │ │ ├── parser.py │ │ │ ├── precedence.py │ │ │ ├── stdlib.py │ │ │ ├── sys_path.py │ │ │ ├── thirdparty │ │ │ │ ├── PyQt4_.py │ │ │ │ ├── django_.py │ │ │ │ ├── jedi_.py │ │ │ │ ├── psycopg2_.py │ │ │ │ └── pylab_.py │ │ │ ├── types.py │ │ │ └── usages.py │ │ ├── conftest.py │ │ ├── helpers.py │ │ ├── refactor.py │ │ ├── refactor │ │ │ ├── extract.py │ │ │ ├── inline.py │ │ │ └── rename.py │ │ ├── run.py │ │ ├── speed │ │ │ └── precedence.py │ │ ├── static_analysis │ │ │ ├── arguments.py │ │ │ ├── attribute_error.py │ │ │ ├── attribute_warnings.py │ │ │ ├── descriptors.py │ │ │ ├── generators.py │ │ │ ├── import_tree │ │ │ │ ├── __init__.py │ │ │ │ ├── a.py │ │ │ │ └── b.py │ │ │ ├── imports.py │ │ │ ├── operations.py │ │ │ ├── star_arguments.py │ │ │ └── try_except.py │ │ ├── test_api │ │ │ ├── __init__.py │ │ │ ├── test_api.py │ │ │ ├── test_api_classes.py │ │ │ ├── test_api_classes_follow_definition.py │ │ │ ├── test_call_signatures.py │ │ │ ├── test_defined_names.py │ │ │ ├── test_full_name.py │ │ │ ├── test_interpreter.py │ │ │ └── test_unicode.py │ │ ├── test_cache.py │ │ ├── test_debug.py │ │ ├── test_evaluate │ │ │ ├── __init__.py │ │ │ ├── absolute_import │ │ │ │ ├── local_module.py │ │ │ │ └── unittest.py │ │ │ ├── buildout_project │ │ │ │ ├── bin │ │ │ │ │ ├── app │ │ │ │ │ └── empty_file │ │ │ │ ├── buildout.cfg │ │ │ │ └── src │ │ │ │ │ └── proj_name │ │ │ │ │ └── module_name.py │ │ │ ├── namespace_package │ │ │ │ ├── ns1 │ │ │ │ │ └── pkg │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── ns1_file.py │ │ │ │ │ │ └── ns1_folder │ │ │ │ │ │ └── __init__.py │ │ │ │ └── ns2 │ │ │ │ │ └── pkg │ │ │ │ │ ├── ns2_file.py │ │ │ │ │ └── ns2_folder │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── nested │ │ │ │ │ └── __init__.py │ │ │ ├── not_in_sys_path │ │ │ │ ├── not_in_sys_path.py │ │ │ │ ├── not_in_sys_path_package │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── module.py │ │ │ │ └── pkg │ │ │ │ │ └── module.py │ │ │ ├── test_absolute_import.py │ │ │ ├── test_buildout_detection.py │ │ │ ├── test_compiled.py │ │ │ ├── test_docstring.py │ │ │ ├── test_extension.py │ │ │ ├── test_imports.py │ │ │ ├── test_namespace_package.py │ │ │ ├── test_precedence.py │ │ │ ├── test_pyc.py │ │ │ └── test_representation.py │ │ ├── test_integration.py │ │ ├── test_integration_import.py │ │ ├── test_integration_keyword.py │ │ ├── test_jedi_system.py │ │ ├── test_parser │ │ │ ├── __init__.py │ │ │ ├── test_fast_parser.py │ │ │ ├── test_get_code.py │ │ │ ├── test_parser.py │ │ │ ├── test_representation.py │ │ │ ├── test_token.py │ │ │ └── test_user_context.py │ │ ├── test_regression.py │ │ ├── test_speed.py │ │ └── test_utils.py │ └── tox.ini └── waitress │ ├── CHANGES.txt │ ├── CONTRIBUTORS.txt │ ├── COPYRIGHT.txt │ ├── LICENSE.txt │ ├── README.rst │ ├── TODO.txt │ ├── docs │ ├── Makefile │ ├── api.rst │ ├── arguments.rst │ ├── conf.py │ ├── design.rst │ ├── differences.rst │ ├── filewrapper.rst │ ├── glossary.rst │ ├── index.rst │ ├── rebuild │ └── runner.rst │ ├── setup.cfg │ ├── setup.py │ ├── tox.ini │ └── waitress │ ├── __init__.py │ ├── adjustments.py │ ├── buffers.py │ ├── channel.py │ ├── compat.py │ ├── parser.py │ ├── receiver.py │ ├── runner.py │ ├── server.py │ ├── task.py │ ├── tests │ ├── __init__.py │ ├── fixtureapps │ │ ├── __init__.py │ │ ├── badcl.py │ │ ├── echo.py │ │ ├── error.py │ │ ├── filewrapper.py │ │ ├── getline.py │ │ ├── groundhog1.jpg │ │ ├── nocl.py │ │ ├── runner.py │ │ ├── sleepy.py │ │ ├── toolarge.py │ │ └── writecb.py │ ├── test_adjustments.py │ ├── test_buffers.py │ ├── test_channel.py │ ├── test_compat.py │ ├── test_functional.py │ ├── test_init.py │ ├── test_parser.py │ ├── test_receiver.py │ ├── test_regression.py │ ├── test_runner.py │ ├── test_server.py │ ├── test_task.py │ ├── test_trigger.py │ └── test_utilities.py │ ├── trigger.py │ └── utilities.py ├── ycm_client_support.pyd ├── ycm_core.pyd └── ycmd ├── __init__.py ├── __main__.py ├── completers ├── __init__.py ├── all │ ├── __init__.py │ ├── identifier_completer.py │ └── tests │ │ ├── __init__.py │ │ └── identifier_completer_test.py ├── c │ └── hook.py ├── completer.py ├── completer_utils.py ├── completer_utils_test.py ├── cpp │ ├── __init__.py │ ├── clang_completer.py │ ├── clang_helpers.py │ ├── flags.py │ ├── hook.py │ └── tests │ │ ├── __init__.py │ │ └── flags_test.py ├── cs │ ├── __init__.py │ ├── cs_completer.py │ ├── hook.py │ └── solutiondetection.py ├── general │ ├── __init__.py │ ├── filename_completer.py │ ├── general_completer_store.py │ ├── tests │ │ ├── __init__.py │ │ ├── filename_completer_test.py │ │ └── testdata │ │ │ └── filename_completer │ │ │ ├── include │ │ │ ├── Qt │ │ │ │ └── QtGui │ │ │ └── QtGui │ │ │ │ ├── QDialog │ │ │ │ └── QWidget │ │ │ ├── test.cpp │ │ │ └── test.hpp │ └── ultisnips_completer.py ├── general_completer.py ├── objc │ └── hook.py ├── objcpp │ └── hook.py └── python │ ├── __init__.py │ ├── hook.py │ └── jedi_completer.py ├── default_settings.json ├── extra_conf_store.py ├── handlers.py ├── hmac_plugin.py ├── identifier_utils.py ├── request_wrap.py ├── responses.py ├── server_state.py ├── server_utils.py ├── tests ├── __init__.py ├── diagnostics_test.py ├── extra_conf_store_test.py ├── get_completions_test.py ├── identifier_utils_test.py ├── misc_handlers_test.py ├── request_wrap_test.py ├── subcommands_test.py ├── test_utils.py └── testdata │ ├── .ycm_extra_conf.py │ ├── basic.cpp │ ├── client_data │ ├── .ycm_extra_conf.py │ └── main.cpp │ ├── noflags │ ├── .ycm_extra_conf.py │ └── basic.cpp │ ├── testy-multiple-solutions │ ├── solution-named-like-folder │ │ ├── not-testy │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── testy.csproj │ │ ├── solution-named-like-folder.sln │ │ ├── testy.sln │ │ ├── testy │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── testy.csproj │ │ └── testy2.sln │ └── solution-not-named-like-folder │ │ ├── extra-conf-abs │ │ ├── .ycm_extra_conf.py │ │ ├── testy │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── testy.csproj │ │ └── testy2.sln │ │ ├── extra-conf-bad │ │ ├── testy │ │ │ ├── .ycm_extra_conf.py │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── testy.csproj │ │ └── testy2.sln │ │ ├── extra-conf-rel │ │ ├── .ycm_extra_conf.py │ │ ├── testy │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── testy.csproj │ │ │ └── testy2.sln │ │ └── testy2.sln │ │ ├── testy │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── testy.csproj │ │ ├── testy1.sln │ │ └── testy2.sln │ └── testy │ ├── GotoTestCase.cs │ ├── ImportTest.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── testy.csproj │ ├── testy.sln │ └── testy.userprefs ├── user_options_store.py ├── utils.py └── watchdog_plugin.py /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/COPYING.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/README.md -------------------------------------------------------------------------------- /autoload/youcompleteme.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/autoload/youcompleteme.vim -------------------------------------------------------------------------------- /doc/youcompleteme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/doc/youcompleteme.txt -------------------------------------------------------------------------------- /plugin/youcompleteme.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/plugin/youcompleteme.vim -------------------------------------------------------------------------------- /python/test_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/python/test_requirements.txt -------------------------------------------------------------------------------- /python/ycm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/ycm/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/python/ycm/base.py -------------------------------------------------------------------------------- /python/ycm/client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/ycm/client/base_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/python/ycm/client/base_request.py -------------------------------------------------------------------------------- /python/ycm/client/command_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/python/ycm/client/command_request.py -------------------------------------------------------------------------------- /python/ycm/client/completion_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/python/ycm/client/completion_request.py -------------------------------------------------------------------------------- /python/ycm/client/event_notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/python/ycm/client/event_notification.py -------------------------------------------------------------------------------- /python/ycm/client/omni_completion_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/python/ycm/client/omni_completion_request.py -------------------------------------------------------------------------------- /python/ycm/client/ycmd_keepalive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/python/ycm/client/ycmd_keepalive.py -------------------------------------------------------------------------------- /python/ycm/diagnostic_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/python/ycm/diagnostic_interface.py -------------------------------------------------------------------------------- /python/ycm/omni_completer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/python/ycm/omni_completer.py -------------------------------------------------------------------------------- /python/ycm/syntax_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/python/ycm/syntax_parse.py -------------------------------------------------------------------------------- /python/ycm/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/python/ycm/test_utils.py -------------------------------------------------------------------------------- /python/ycm/tests/base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/python/ycm/tests/base_test.py -------------------------------------------------------------------------------- /python/ycm/tests/syntax_parse_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/python/ycm/tests/syntax_parse_test.py -------------------------------------------------------------------------------- /python/ycm/tests/testdata/cpp_syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/python/ycm/tests/testdata/cpp_syntax -------------------------------------------------------------------------------- /python/ycm/tests/testdata/java_syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/python/ycm/tests/testdata/java_syntax -------------------------------------------------------------------------------- /python/ycm/tests/testdata/php_syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/python/ycm/tests/testdata/php_syntax -------------------------------------------------------------------------------- /python/ycm/tests/testdata/python_syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/python/ycm/tests/testdata/python_syntax -------------------------------------------------------------------------------- /python/ycm/unsafe_thread_pool_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/python/ycm/unsafe_thread_pool_executor.py -------------------------------------------------------------------------------- /python/ycm/vimsupport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/python/ycm/vimsupport.py -------------------------------------------------------------------------------- /python/ycm/youcompleteme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/python/ycm/youcompleteme.py -------------------------------------------------------------------------------- /third_party/pythonfutures/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/pythonfutures/CHANGES -------------------------------------------------------------------------------- /third_party/pythonfutures/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/pythonfutures/LICENSE -------------------------------------------------------------------------------- /third_party/pythonfutures/concurrent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/pythonfutures/concurrent/__init__.py -------------------------------------------------------------------------------- /third_party/pythonfutures/concurrent/futures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/pythonfutures/concurrent/futures/__init__.py -------------------------------------------------------------------------------- /third_party/pythonfutures/concurrent/futures/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/pythonfutures/concurrent/futures/_base.py -------------------------------------------------------------------------------- /third_party/pythonfutures/concurrent/futures/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/pythonfutures/concurrent/futures/_compat.py -------------------------------------------------------------------------------- /third_party/pythonfutures/concurrent/futures/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/pythonfutures/concurrent/futures/process.py -------------------------------------------------------------------------------- /third_party/pythonfutures/concurrent/futures/thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/pythonfutures/concurrent/futures/thread.py -------------------------------------------------------------------------------- /third_party/pythonfutures/crawl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/pythonfutures/crawl.py -------------------------------------------------------------------------------- /third_party/pythonfutures/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/pythonfutures/docs/conf.py -------------------------------------------------------------------------------- /third_party/pythonfutures/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/pythonfutures/docs/index.rst -------------------------------------------------------------------------------- /third_party/pythonfutures/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/pythonfutures/docs/make.bat -------------------------------------------------------------------------------- /third_party/pythonfutures/futures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/pythonfutures/futures/__init__.py -------------------------------------------------------------------------------- /third_party/pythonfutures/futures/process.py: -------------------------------------------------------------------------------- 1 | from concurrent.futures import ProcessPoolExecutor 2 | -------------------------------------------------------------------------------- /third_party/pythonfutures/futures/thread.py: -------------------------------------------------------------------------------- 1 | from concurrent.futures import ThreadPoolExecutor 2 | -------------------------------------------------------------------------------- /third_party/pythonfutures/primes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/pythonfutures/primes.py -------------------------------------------------------------------------------- /third_party/pythonfutures/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/pythonfutures/setup.cfg -------------------------------------------------------------------------------- /third_party/pythonfutures/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/pythonfutures/setup.py -------------------------------------------------------------------------------- /third_party/pythonfutures/test_futures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/pythonfutures/test_futures.py -------------------------------------------------------------------------------- /third_party/pythonfutures/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/pythonfutures/tox.ini -------------------------------------------------------------------------------- /third_party/requests-futures/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests-futures/LICENSE -------------------------------------------------------------------------------- /third_party/requests-futures/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests-futures/MANIFEST.in -------------------------------------------------------------------------------- /third_party/requests-futures/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests-futures/README.rst -------------------------------------------------------------------------------- /third_party/requests-futures/requests_futures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests-futures/requests_futures/__init__.py -------------------------------------------------------------------------------- /third_party/requests-futures/requests_futures/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests-futures/requests_futures/sessions.py -------------------------------------------------------------------------------- /third_party/requests-futures/requirements-python-2.7.txt: -------------------------------------------------------------------------------- 1 | futures 2 | requests>=1.2.0 3 | -------------------------------------------------------------------------------- /third_party/requests-futures/requirements-python-3.2.txt: -------------------------------------------------------------------------------- 1 | requests>=1.2.0 2 | -------------------------------------------------------------------------------- /third_party/requests-futures/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests-futures/setup.py -------------------------------------------------------------------------------- /third_party/requests-futures/test_requests_futures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests-futures/test_requests_futures.py -------------------------------------------------------------------------------- /third_party/requests/AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/AUTHORS.rst -------------------------------------------------------------------------------- /third_party/requests/HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/HISTORY.rst -------------------------------------------------------------------------------- /third_party/requests/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/LICENSE -------------------------------------------------------------------------------- /third_party/requests/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/MANIFEST.in -------------------------------------------------------------------------------- /third_party/requests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/Makefile -------------------------------------------------------------------------------- /third_party/requests/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/NOTICE -------------------------------------------------------------------------------- /third_party/requests/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/README.rst -------------------------------------------------------------------------------- /third_party/requests/docs/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/MANIFEST.in -------------------------------------------------------------------------------- /third_party/requests/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/Makefile -------------------------------------------------------------------------------- /third_party/requests/docs/_static/requests-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/_static/requests-sidebar.png -------------------------------------------------------------------------------- /third_party/requests/docs/_templates/sidebarintro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/_templates/sidebarintro.html -------------------------------------------------------------------------------- /third_party/requests/docs/_templates/sidebarlogo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/_templates/sidebarlogo.html -------------------------------------------------------------------------------- /third_party/requests/docs/_themes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/_themes/LICENSE -------------------------------------------------------------------------------- /third_party/requests/docs/_themes/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/_themes/README.rst -------------------------------------------------------------------------------- /third_party/requests/docs/_themes/flask_theme_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/_themes/flask_theme_support.py -------------------------------------------------------------------------------- /third_party/requests/docs/_themes/kr/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/_themes/kr/layout.html -------------------------------------------------------------------------------- /third_party/requests/docs/_themes/kr/relations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/_themes/kr/relations.html -------------------------------------------------------------------------------- /third_party/requests/docs/_themes/kr/static/flasky.css_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/_themes/kr/static/flasky.css_t -------------------------------------------------------------------------------- /third_party/requests/docs/_themes/kr/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/_themes/kr/theme.conf -------------------------------------------------------------------------------- /third_party/requests/docs/_themes/kr_small/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/_themes/kr_small/layout.html -------------------------------------------------------------------------------- /third_party/requests/docs/_themes/kr_small/static/flasky.css_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/_themes/kr_small/static/flasky.css_t -------------------------------------------------------------------------------- /third_party/requests/docs/_themes/kr_small/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/_themes/kr_small/theme.conf -------------------------------------------------------------------------------- /third_party/requests/docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/api.rst -------------------------------------------------------------------------------- /third_party/requests/docs/community/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/community/faq.rst -------------------------------------------------------------------------------- /third_party/requests/docs/community/out-there.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/community/out-there.rst -------------------------------------------------------------------------------- /third_party/requests/docs/community/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/community/support.rst -------------------------------------------------------------------------------- /third_party/requests/docs/community/updates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/community/updates.rst -------------------------------------------------------------------------------- /third_party/requests/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/conf.py -------------------------------------------------------------------------------- /third_party/requests/docs/dev/authors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/dev/authors.rst -------------------------------------------------------------------------------- /third_party/requests/docs/dev/internals.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/requests/docs/dev/philosophy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/dev/philosophy.rst -------------------------------------------------------------------------------- /third_party/requests/docs/dev/todo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/dev/todo.rst -------------------------------------------------------------------------------- /third_party/requests/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/index.rst -------------------------------------------------------------------------------- /third_party/requests/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/make.bat -------------------------------------------------------------------------------- /third_party/requests/docs/requirements.txt: -------------------------------------------------------------------------------- 1 | Sphinx==1.1.3 2 | -------------------------------------------------------------------------------- /third_party/requests/docs/user/advanced.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/user/advanced.rst -------------------------------------------------------------------------------- /third_party/requests/docs/user/authentication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/user/authentication.rst -------------------------------------------------------------------------------- /third_party/requests/docs/user/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/user/install.rst -------------------------------------------------------------------------------- /third_party/requests/docs/user/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/user/intro.rst -------------------------------------------------------------------------------- /third_party/requests/docs/user/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/docs/user/quickstart.rst -------------------------------------------------------------------------------- /third_party/requests/ext/requests-logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/ext/requests-logo.ai -------------------------------------------------------------------------------- /third_party/requests/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/__init__.py -------------------------------------------------------------------------------- /third_party/requests/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/adapters.py -------------------------------------------------------------------------------- /third_party/requests/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/api.py -------------------------------------------------------------------------------- /third_party/requests/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/auth.py -------------------------------------------------------------------------------- /third_party/requests/requests/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/cacert.pem -------------------------------------------------------------------------------- /third_party/requests/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/certs.py -------------------------------------------------------------------------------- /third_party/requests/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/compat.py -------------------------------------------------------------------------------- /third_party/requests/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/cookies.py -------------------------------------------------------------------------------- /third_party/requests/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/exceptions.py -------------------------------------------------------------------------------- /third_party/requests/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/hooks.py -------------------------------------------------------------------------------- /third_party/requests/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/models.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/README.rst -------------------------------------------------------------------------------- /third_party/requests/requests/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/__init__.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/__init__.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/big5freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/big5freq.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/big5prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/big5prober.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/chardetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/chardetect.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/chardistribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/chardistribution.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/charsetgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/charsetgroupprober.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/charsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/charsetprober.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/codingstatemachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/codingstatemachine.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/compat.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/constants.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/cp949prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/cp949prober.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/escprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/escprober.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/escsm.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/eucjpprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/eucjpprober.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/euckrfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/euckrfreq.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/euckrprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/euckrprober.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/euctwfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/euctwfreq.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/euctwprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/euctwprober.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/gb2312freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/gb2312freq.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/gb2312prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/gb2312prober.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/hebrewprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/hebrewprober.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/jisfreq.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/jpcntx.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/langbulgarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/langbulgarianmodel.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/langcyrillicmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/langcyrillicmodel.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/langgreekmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/langgreekmodel.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/langhebrewmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/langhebrewmodel.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/langhungarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/langhungarianmodel.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/langthaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/langthaimodel.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/latin1prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/latin1prober.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/mbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/mbcharsetprober.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/mbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/mbcsgroupprober.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/mbcssm.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/sbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/sbcharsetprober.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/sbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/sbcsgroupprober.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/sjisprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/sjisprober.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/universaldetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/universaldetector.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/chardet/utf8prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/chardet/utf8prober.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/urllib3/__init__.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/urllib3/_collections.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/urllib3/connection.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/urllib3/connectionpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/urllib3/connectionpool.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/requests/requests/packages/urllib3/contrib/ntlmpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/urllib3/contrib/ntlmpool.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/urllib3/contrib/pyopenssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/urllib3/contrib/pyopenssl.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/urllib3/exceptions.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/urllib3/fields.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/urllib3/filepost.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/urllib3/packages/__init__.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/urllib3/packages/ordered_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/urllib3/packages/ordered_dict.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/urllib3/packages/six.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/urllib3/poolmanager.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/urllib3/request.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/urllib3/response.py -------------------------------------------------------------------------------- /third_party/requests/requests/packages/urllib3/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/packages/urllib3/util.py -------------------------------------------------------------------------------- /third_party/requests/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/sessions.py -------------------------------------------------------------------------------- /third_party/requests/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/status_codes.py -------------------------------------------------------------------------------- /third_party/requests/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/structures.py -------------------------------------------------------------------------------- /third_party/requests/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requests/utils.py -------------------------------------------------------------------------------- /third_party/requests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/requirements.txt -------------------------------------------------------------------------------- /third_party/requests/setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /third_party/requests/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/setup.py -------------------------------------------------------------------------------- /third_party/requests/test_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/requests/test_requests.py -------------------------------------------------------------------------------- /third_party/retries/retries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/retries/retries.py -------------------------------------------------------------------------------- /third_party/ycmd/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/CONTRIBUTING.md -------------------------------------------------------------------------------- /third_party/ycmd/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/COPYING.txt -------------------------------------------------------------------------------- /third_party/ycmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/README.md -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/Intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/Intrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/__wmmintrin_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/__wmmintrin_aes.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/__wmmintrin_pclmul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/__wmmintrin_pclmul.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/altivec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/altivec.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/ammintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/ammintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/avx2intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/avx2intrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/avxintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/avxintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/bmi2intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/bmi2intrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/bmiintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/bmiintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/cpuid.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/emmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/emmintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/f16cintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/f16cintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/float.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/fma4intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/fma4intrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/fmaintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/fmaintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/immintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/immintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/iso646.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/limits.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/lzcntintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/lzcntintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/mm3dnow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/mm3dnow.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/mm_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/mm_malloc.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/mmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/mmintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/module.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/module.map -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/nmmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/nmmintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/pmmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/pmmintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/popcntintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/popcntintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/prfchwintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/prfchwintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/rdseedintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/rdseedintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/rtmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/rtmintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/shaintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/shaintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/smmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/smmintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/stdalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/stdalign.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/stdarg.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/stdbool.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/stddef.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/stdint.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/stdnoreturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/stdnoreturn.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/tbmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/tbmintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/tgmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/tgmath.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/tmmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/tmmintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/unwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/unwind.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/varargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/varargs.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/wmmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/wmmintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/x86intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/x86intrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/xmmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/xmmintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/xopintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/clang_includes/xopintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/libclang.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/libclang.dll -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/.nuget/NuGet.Config -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/.nuget/NuGet.exe -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/.nuget/NuGet.targets -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/LICENSE.md -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/NRefactory/NRefactory.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/NRefactory/NRefactory.sln -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/NRefactory/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/NRefactory/README -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/NRefactory/doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/NRefactory/doc/TODO -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/NRefactory/doc/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/NRefactory/doc/copyright.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/NRefactory/doc/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/NRefactory/doc/license.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp.Tests/FakeAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp.Tests/FakeAssembly.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp.Tests/FakeFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp.Tests/FakeFileSystem.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp.Tests/FakeProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp.Tests/FakeProject.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp.Tests/FakeSolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp.Tests/FakeSolution.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp.Tests/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp.Tests/ObjectExtensions.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp.Tests/Rename/Buffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp.Tests/Rename/Buffer.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp.Tests/TestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp.Tests/TestHelpers.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp.Tests/packages.config -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp.sln -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Bootstrapper.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Build/BuildHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Build/BuildHandler.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Build/BuildLogParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Build/BuildLogParser.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Build/BuildModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Build/BuildModule.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Build/BuildResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Build/BuildResponse.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Common/CygPathWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Common/CygPathWrapper.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Common/FileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Common/FileSystem.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Common/IFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Common/IFileSystem.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Common/QuickFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Common/QuickFix.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Common/Request.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Common/Request.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Configuration/PathMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Configuration/PathMode.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Logger.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/OmniSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/OmniSharp.csproj -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Options.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Parser/BufferParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Parser/BufferParser.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Parser/ParsedResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Parser/ParsedResult.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Platform.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Program.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Rename/RenameHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Rename/RenameHandler.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Rename/RenameModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Rename/RenameModule.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Rename/RenameRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Rename/RenameRequest.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Rename/RenameResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Rename/RenameResponse.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Solution/CSharpFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Solution/CSharpFile.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Solution/CSharpFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Solution/CSharpFolder.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Solution/Fusion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Solution/Fusion.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Solution/GacInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Solution/GacInterop.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Solution/IProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/Solution/IProject.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/SyntaxErrors/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/SyntaxErrors/Error.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/app.config -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/config-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/config-cygwin.json -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/config.json -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/OmniSharp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/OmniSharp/packages.config -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/README.md -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.Cil/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.Cil/Code.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.Cil/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.Cil/Document.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.Cil/OpCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.Cil/OpCode.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.Cil/OpCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.Cil/OpCodes.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.Cil/Symbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.Cil/Symbols.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.Metadata/Row.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.Metadata/Row.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.PE/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.PE/Image.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.PE/Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.PE/Section.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.PE/TextMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.PE/TextMap.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.csproj -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.nunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.nunit -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.nuspec -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.sln -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil.sln.DotSettings -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/ArrayType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/ArrayType.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/AssemblyInfo.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/CallSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/CallSite.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/ExportedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/ExportedType.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/Import.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/Import.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/MarshalInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/MarshalInfo.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/Modifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/Modifiers.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/ModuleKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/ModuleKind.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/NativeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/NativeType.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/PInvokeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/PInvokeInfo.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/PinnedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/PinnedType.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/PointerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/PointerType.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/Resource.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/SentinelType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/SentinelType.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/TypeParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/TypeParser.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/TypeSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/TypeSystem.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/VariantType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono.Cecil/VariantType.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono/Actions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono/Actions.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono/Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono/Empty.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Mono/Funcs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Mono/Funcs.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/NOTES.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Test/Resources/assemblies/text_file.txt: -------------------------------------------------------------------------------- 1 | Cecil ftw! 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Test/Resources/il/hello.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Test/Resources/il/hello.il -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Test/Resources/il/types.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/Test/Resources/il/types.il -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/dbg/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/dbg/Program.cs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/dbg/dbg.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/dbg/dbg.csproj -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/mono.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/cecil/mono.snk -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/packages/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/packages/.DS_Store -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/packages/NUnit.2.6.2/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/packages/NUnit.2.6.2/license.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/packages/monodoc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/packages/monodoc.dll -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/OmniSharpServer/packages/repositories.config -------------------------------------------------------------------------------- /third_party/ycmd/third_party/argparse/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/argparse/LICENSE.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/argparse/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/argparse/MANIFEST.in -------------------------------------------------------------------------------- /third_party/ycmd/third_party/argparse/NEWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/argparse/NEWS.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/argparse/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/argparse/README.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/argparse/argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/argparse/argparse.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/argparse/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/argparse/doc/Makefile -------------------------------------------------------------------------------- /third_party/ycmd/third_party/argparse/doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/argparse/doc/make.bat -------------------------------------------------------------------------------- /third_party/ycmd/third_party/argparse/doc/source/Python-License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/argparse/doc/source/Python-License.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/argparse/doc/source/argparse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/argparse/doc/source/argparse.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/argparse/doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/argparse/doc/source/conf.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/argparse/doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/argparse/doc/source/index.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/argparse/doc/source/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/argparse/doc/source/license.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/argparse/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/argparse/setup.cfg -------------------------------------------------------------------------------- /third_party/ycmd/third_party/argparse/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/argparse/setup.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/argparse/test/test_argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/argparse/test/test_argparse.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/.coveragerc -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/AUTHORS -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/LICENSE -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/MANIFEST.in -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/Makefile -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/README.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/bottle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/bottle.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/_locale/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/_locale/README.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/_locale/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/_locale/update.sh -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/api.po -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/async.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/async.po -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/changelog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/changelog.po -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/configuration.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/configuration.po -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/contact.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/contact.po -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/deployment.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/deployment.po -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/development.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/development.po -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/faq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/faq.po -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/index.po -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/plugindev.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/plugindev.po -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/plugins.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/plugins.po -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/recipes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/recipes.po -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/routing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/routing.po -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/stpl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/stpl.po -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/tutorial.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/tutorial.po -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/tutorial_app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/_locale/zh_CN/tutorial_app.po -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/api.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/async.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/async.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/changelog.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/conf.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/configuration.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/contact.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/contact.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/deployment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/deployment.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/development.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/faq.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/index.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/plugindev.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/plugindev.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/plugins/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/plugins/index.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/recipes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/recipes.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/routing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/routing.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/stpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/stpl.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/tutorial.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/tutorial_app.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/docs/tutorial_app.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | 4 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/setup.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/.coveragerc -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/build_python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/build_python.sh -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/servertest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/servertest.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/test_auth.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/test_config.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/test_configdict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/test_configdict.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/test_contextlocals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/test_contextlocals.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/test_environ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/test_environ.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/test_fileupload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/test_fileupload.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/test_formsdict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/test_formsdict.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/test_importhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/test_importhook.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/test_jinja2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/test_jinja2.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/test_mako.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/test_mako.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/test_mdict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/test_mdict.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/test_mount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/test_mount.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/test_outputfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/test_outputfilter.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/test_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/test_plugins.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/test_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/test_resources.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/test_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/test_route.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/test_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/test_router.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/test_securecookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/test_securecookies.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/test_sendfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/test_sendfile.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/test_server.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/test_stpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/test_stpl.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/test_wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/test_wsgi.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/testall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/testall.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/tools.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/travis-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/travis-requirements.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/travis_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/travis_setup.sh -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/views/jinja2_base.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/views/jinja2_base.tpl -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/views/jinja2_inherit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/views/jinja2_inherit.tpl -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/views/jinja2_simple.tpl: -------------------------------------------------------------------------------- 1 | start {{var}} end -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/views/mako_base.tpl: -------------------------------------------------------------------------------- 1 | o${self.body()}o 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/views/mako_inherit.tpl: -------------------------------------------------------------------------------- 1 | <%inherit file="mako_base.tpl"/> 2 | c${var}c 3 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/views/mako_simple.tpl: -------------------------------------------------------------------------------- 1 | start ${var} end 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/views/stpl_include.tpl: -------------------------------------------------------------------------------- 1 | before 2 | %include('stpl_simple', var=var) 3 | after 4 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/views/stpl_no_vars.tpl: -------------------------------------------------------------------------------- 1 | hihi -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/views/stpl_simple.tpl: -------------------------------------------------------------------------------- 1 | start {{var}} end 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/views/stpl_t2base.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/views/stpl_t2base.tpl -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/views/stpl_t2inc.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/views/stpl_t2inc.tpl -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/views/stpl_t2main.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/test/views/stpl_t2main.tpl -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/views/stpl_unicode.tpl: -------------------------------------------------------------------------------- 1 | start {{"ñç"}} {{var}} end 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/bottle/tox.ini -------------------------------------------------------------------------------- /third_party/ycmd/third_party/frozendict/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/frozendict/LICENSE.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/frozendict/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include *.txt 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/frozendict/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/frozendict/README.md -------------------------------------------------------------------------------- /third_party/ycmd/third_party/frozendict/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/frozendict/README.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/frozendict/frozendict/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/frozendict/frozendict/__init__.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/frozendict/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/frozendict/setup.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/.coveragerc -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/AUTHORS.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/CHANGELOG.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/CONTRIBUTING.md -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/LICENSE.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/MANIFEST.in -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/README.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/conftest.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/docs/Makefile -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/docs/_screenshots/screenshot_complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/docs/_screenshots/screenshot_complete.png -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/docs/_screenshots/screenshot_function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/docs/_screenshots/screenshot_function.png -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/docs/_screenshots/screenshot_pydoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/docs/_screenshots/screenshot_pydoc.png -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/docs/_static/logo-src.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/docs/_static/logo-src.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/docs/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/docs/_static/logo.png -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/docs/_templates/ghbuttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/docs/_templates/ghbuttons.html -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/docs/_templates/sidebarlogo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/docs/_templates/sidebarlogo.html -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/docs/_themes/flask/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/docs/_themes/flask/LICENSE -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/docs/_themes/flask/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/docs/_themes/flask/layout.html -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/docs/_themes/flask/relations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/docs/_themes/flask/relations.html -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/docs/_themes/flask/static/flasky.css_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/docs/_themes/flask/static/flasky.css_t -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/docs/_themes/flask/static/small_flask.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/docs/_themes/flask/static/small_flask.css -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/docs/_themes/flask/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/docs/_themes/flask/theme.conf -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/docs/_themes/flask_theme_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/docs/_themes/flask_theme_support.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/docs/conf.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/docs/docs/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/docs/docs/development.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/docs/docs/features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/docs/docs/features.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/docs/docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/docs/docs/installation.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/docs/docs/plugin-api-classes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/docs/docs/plugin-api-classes.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/docs/docs/plugin-api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/docs/docs/plugin-api.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/docs/docs/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/docs/docs/settings.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/docs/docs/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/docs/docs/testing.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/docs/docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/docs/docs/usage.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/docs/global.rst: -------------------------------------------------------------------------------- 1 | :orphan: 2 | 3 | .. |jedi| replace:: *Jedi* 4 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/docs/index.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/__init__.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/__main__.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/_compatibility.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/api/__init__.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/api/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/api/classes.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/api/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/api/helpers.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/api/interpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/api/interpreter.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/api/keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/api/keywords.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/api/replstartup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/api/replstartup.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/api/usages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/api/usages.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/cache.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/common.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/debug.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/evaluate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/evaluate/__init__.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/evaluate/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/evaluate/analysis.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/evaluate/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/evaluate/cache.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/evaluate/compiled/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/evaluate/compiled/__init__.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/evaluate/compiled/fake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/evaluate/compiled/fake.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/evaluate/compiled/fake/_functools.pym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/evaluate/compiled/fake/_functools.pym -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/evaluate/compiled/fake/_sqlite3.pym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/evaluate/compiled/fake/_sqlite3.pym -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/evaluate/compiled/fake/_sre.pym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/evaluate/compiled/fake/_sre.pym -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/evaluate/compiled/fake/_weakref.pym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/evaluate/compiled/fake/_weakref.pym -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/evaluate/compiled/fake/builtins.pym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/evaluate/compiled/fake/builtins.pym -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/evaluate/compiled/fake/datetime.pym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/evaluate/compiled/fake/datetime.pym -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/evaluate/compiled/fake/io.pym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/evaluate/compiled/fake/io.pym -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/evaluate/compiled/fake/posix.pym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/evaluate/compiled/fake/posix.pym -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/evaluate/docstrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/evaluate/docstrings.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/evaluate/dynamic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/evaluate/dynamic.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/evaluate/finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/evaluate/finder.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/evaluate/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/evaluate/helpers.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/evaluate/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/evaluate/imports.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/evaluate/iterable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/evaluate/iterable.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/evaluate/param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/evaluate/param.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/evaluate/precedence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/evaluate/precedence.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/evaluate/recursion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/evaluate/recursion.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/evaluate/representation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/evaluate/representation.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/evaluate/stdlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/evaluate/stdlib.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/evaluate/sys_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/evaluate/sys_path.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/parser/__init__.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/parser/fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/parser/fast.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/parser/representation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/parser/representation.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/parser/tokenize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/parser/tokenize.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/parser/user_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/parser/user_context.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/refactoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/refactoring.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/settings.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/jedi/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/jedi/utils.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/pytest.ini -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/scripts/memory_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/scripts/memory_check.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/scripts/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/scripts/profile.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/scripts/wx_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/scripts/wx_check.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/setup.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/sith.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/sith.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/__init__.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/arrays.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/basic.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/classes.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/complex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/complex.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/decorators.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/definition.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/descriptors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/descriptors.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/docstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/docstring.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/dynamic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/dynamic.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/functions.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/generators.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/goto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/goto.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/import_tree/__init__.py: -------------------------------------------------------------------------------- 1 | a = '' 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/import_tree/mod1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/import_tree/mod1.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/import_tree/mod2.py: -------------------------------------------------------------------------------- 1 | from . import mod1 as fake 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/import_tree/pkg/__init__.py: -------------------------------------------------------------------------------- 1 | a = list 2 | 3 | from math import * 4 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/import_tree/pkg/mod1.py: -------------------------------------------------------------------------------- 1 | a = 1.0 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/import_tree/random.py: -------------------------------------------------------------------------------- 1 | """ 2 | Here because random is also a builtin module. 3 | """ 4 | a = set 5 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/import_tree/rename1.py: -------------------------------------------------------------------------------- 1 | """ used for renaming tests """ 2 | 3 | abc = 3 4 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/import_tree/rename2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/import_tree/rename2.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/imports.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/invalid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/invalid.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/isinstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/isinstance.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/keywords.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/lambdas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/lambdas.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/named_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/named_param.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/ordering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/ordering.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/parser.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/precedence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/precedence.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/stdlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/stdlib.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/sys_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/sys_path.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/thirdparty/PyQt4_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/thirdparty/PyQt4_.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/thirdparty/django_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/thirdparty/django_.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/thirdparty/jedi_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/thirdparty/jedi_.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/thirdparty/psycopg2_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/thirdparty/psycopg2_.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/thirdparty/pylab_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/thirdparty/pylab_.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/types.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/completion/usages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/completion/usages.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/conftest.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/helpers.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/refactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/refactor.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/refactor/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/refactor/extract.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/refactor/inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/refactor/inline.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/refactor/rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/refactor/rename.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/run.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/speed/precedence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/speed/precedence.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/static_analysis/arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/static_analysis/arguments.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/static_analysis/attribute_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/static_analysis/attribute_error.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/static_analysis/attribute_warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/static_analysis/attribute_warnings.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/static_analysis/descriptors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/static_analysis/descriptors.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/static_analysis/generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/static_analysis/generators.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/static_analysis/import_tree/a.py: -------------------------------------------------------------------------------- 1 | from . import b 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/static_analysis/import_tree/b.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/static_analysis/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/static_analysis/imports.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/static_analysis/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/static_analysis/operations.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/static_analysis/star_arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/static_analysis/star_arguments.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/static_analysis/try_except.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/static_analysis/try_except.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_api/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_api/test_api.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_api/test_api_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_api/test_api_classes.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_api/test_call_signatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_api/test_call_signatures.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_api/test_defined_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_api/test_defined_names.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_api/test_full_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_api/test_full_name.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_api/test_interpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_api/test_interpreter.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_api/test_unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_api/test_unicode.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_cache.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_debug.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_evaluate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_evaluate/buildout_project/bin/app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_evaluate/buildout_project/bin/app -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_evaluate/buildout_project/bin/empty_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_evaluate/buildout_project/buildout.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_evaluate/buildout_project/src/proj_name/module_name.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_evaluate/namespace_package/ns1/pkg/ns1_file.py: -------------------------------------------------------------------------------- 1 | foo = 'ns1_file!' 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_evaluate/namespace_package/ns1/pkg/ns1_folder/__init__.py: -------------------------------------------------------------------------------- 1 | foo = 'ns1_folder!' 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_evaluate/namespace_package/ns2/pkg/ns2_file.py: -------------------------------------------------------------------------------- 1 | foo = 'ns2_file!' 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_evaluate/namespace_package/ns2/pkg/ns2_folder/__init__.py: -------------------------------------------------------------------------------- 1 | foo = 'ns2_folder!' 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_evaluate/namespace_package/ns2/pkg/ns2_folder/nested/__init__.py: -------------------------------------------------------------------------------- 1 | foo = 'nested!' 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_evaluate/not_in_sys_path/not_in_sys_path.py: -------------------------------------------------------------------------------- 1 | value = 3 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_evaluate/not_in_sys_path/not_in_sys_path_package/__init__.py: -------------------------------------------------------------------------------- 1 | value = 'package' 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_evaluate/not_in_sys_path/not_in_sys_path_package/module.py: -------------------------------------------------------------------------------- 1 | value = 'package.module' 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_evaluate/test_absolute_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_evaluate/test_absolute_import.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_evaluate/test_compiled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_evaluate/test_compiled.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_evaluate/test_docstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_evaluate/test_docstring.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_evaluate/test_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_evaluate/test_extension.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_evaluate/test_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_evaluate/test_imports.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_evaluate/test_precedence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_evaluate/test_precedence.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_evaluate/test_pyc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_evaluate/test_pyc.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_evaluate/test_representation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_evaluate/test_representation.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_integration.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_integration_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_integration_import.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_integration_keyword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_integration_keyword.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_jedi_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_jedi_system.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_parser/test_fast_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_parser/test_fast_parser.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_parser/test_get_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_parser/test_get_code.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_parser/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_parser/test_parser.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_parser/test_representation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_parser/test_representation.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_parser/test_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_parser/test_token.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_parser/test_user_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_parser/test_user_context.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_regression.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_speed.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/test/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/test/test_utils.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/jedi/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/jedi/tox.ini -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/CHANGES.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Zope Foundation and Contributors -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/LICENSE.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/README.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/TODO.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/docs/Makefile -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/docs/api.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/docs/arguments.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/docs/arguments.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/docs/conf.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/docs/design.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/docs/design.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/docs/differences.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/docs/differences.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/docs/filewrapper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/docs/filewrapper.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/docs/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/docs/glossary.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/docs/index.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/docs/rebuild: -------------------------------------------------------------------------------- 1 | make clean html SPHINXBUILD=../env26/bin/sphinx-build 2 | 3 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/docs/runner.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/docs/runner.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/setup.cfg -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/setup.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/tox.ini -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/__init__.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/adjustments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/adjustments.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/buffers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/buffers.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/channel.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/compat.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/parser.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/receiver.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/runner.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/server.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/task.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/tests/__init__.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/tests/fixtureapps/__init__.py: -------------------------------------------------------------------------------- 1 | # package (for -m) 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/tests/fixtureapps/badcl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/tests/fixtureapps/badcl.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/tests/fixtureapps/echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/tests/fixtureapps/echo.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/tests/fixtureapps/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/tests/fixtureapps/error.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/tests/fixtureapps/getline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/tests/fixtureapps/getline.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/tests/fixtureapps/nocl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/tests/fixtureapps/nocl.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/tests/fixtureapps/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/tests/fixtureapps/runner.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/tests/fixtureapps/sleepy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/tests/fixtureapps/sleepy.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/tests/fixtureapps/toolarge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/tests/fixtureapps/toolarge.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/tests/fixtureapps/writecb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/tests/fixtureapps/writecb.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/tests/test_adjustments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/tests/test_adjustments.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/tests/test_buffers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/tests/test_buffers.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/tests/test_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/tests/test_channel.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/tests/test_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/tests/test_compat.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/tests/test_functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/tests/test_functional.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/tests/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/tests/test_init.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/tests/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/tests/test_parser.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/tests/test_receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/tests/test_receiver.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/tests/test_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/tests/test_regression.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/tests/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/tests/test_runner.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/tests/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/tests/test_server.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/tests/test_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/tests/test_task.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/tests/test_trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/tests/test_trigger.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/tests/test_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/tests/test_utilities.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/trigger.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/third_party/waitress/waitress/utilities.py -------------------------------------------------------------------------------- /third_party/ycmd/ycm_client_support.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycm_client_support.pyd -------------------------------------------------------------------------------- /third_party/ycmd/ycm_core.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycm_core.pyd -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/__main__.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/all/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/all/identifier_completer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/completers/all/identifier_completer.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/all/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/all/tests/identifier_completer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/completers/all/tests/identifier_completer_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/c/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/completers/c/hook.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/completer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/completers/completer.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/completer_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/completers/completer_utils.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/completer_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/completers/completer_utils_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/cpp/clang_completer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/completers/cpp/clang_completer.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/cpp/clang_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/completers/cpp/clang_helpers.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/cpp/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/completers/cpp/flags.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/cpp/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/completers/cpp/hook.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/cpp/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/cpp/tests/flags_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/completers/cpp/tests/flags_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/cs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/cs/cs_completer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/completers/cs/cs_completer.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/cs/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/completers/cs/hook.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/cs/solutiondetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/completers/cs/solutiondetection.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/general/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/general/filename_completer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/completers/general/filename_completer.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/general/general_completer_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/completers/general/general_completer_store.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/general/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/general/tests/filename_completer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/completers/general/tests/filename_completer_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/general/tests/testdata/filename_completer/include/Qt/QtGui: -------------------------------------------------------------------------------- 1 | // This file includes all QtGui headers 2 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/general/tests/testdata/filename_completer/include/QtGui/QDialog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/general/tests/testdata/filename_completer/include/QtGui/QWidget: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/general/tests/testdata/filename_completer/test.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/general/ultisnips_completer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/completers/general/ultisnips_completer.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/general_completer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/completers/general_completer.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/objc/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/completers/objc/hook.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/objcpp/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/completers/objcpp/hook.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/python/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/completers/python/hook.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/python/jedi_completer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/completers/python/jedi_completer.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/default_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/default_settings.json -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/extra_conf_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/extra_conf_store.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/handlers.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/hmac_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/hmac_plugin.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/identifier_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/identifier_utils.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/request_wrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/request_wrap.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/responses.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/server_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/server_state.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/server_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/server_utils.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/diagnostics_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/tests/diagnostics_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/extra_conf_store_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/tests/extra_conf_store_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/get_completions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/tests/get_completions_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/identifier_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/tests/identifier_utils_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/misc_handlers_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/tests/misc_handlers_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/request_wrap_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/tests/request_wrap_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/subcommands_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/tests/subcommands_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/tests/test_utils.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/.ycm_extra_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/tests/testdata/.ycm_extra_conf.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/tests/testdata/basic.cpp -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/client_data/.ycm_extra_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/tests/testdata/client_data/.ycm_extra_conf.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/client_data/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/tests/testdata/client_data/main.cpp -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/noflags/.ycm_extra_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/tests/testdata/noflags/.ycm_extra_conf.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/noflags/basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/tests/testdata/noflags/basic.cpp -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/testy-multiple-solutions/solution-not-named-like-folder/extra-conf-rel/.ycm_extra_conf.py: -------------------------------------------------------------------------------- 1 | 2 | def CSharpSolutionFile( path, **kwargs ): 3 | return "testy2.sln" 4 | 5 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/testy/GotoTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/tests/testdata/testy/GotoTestCase.cs -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/testy/ImportTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/tests/testdata/testy/ImportTest.cs -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/testy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/tests/testdata/testy/Program.cs -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/testy/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/tests/testdata/testy/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/testy/testy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/tests/testdata/testy/testy.csproj -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/testy/testy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/tests/testdata/testy/testy.sln -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/testy/testy.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/tests/testdata/testy/testy.userprefs -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/user_options_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/user_options_store.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/utils.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/watchdog_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xleng/YCM_WIN_X86/HEAD/third_party/ycmd/ycmd/watchdog_plugin.py --------------------------------------------------------------------------------