├── .gitignore ├── CONTRIBUTING.md ├── Classifications.md ├── CoCo.png ├── CoCo_Preview.png ├── Directory.Build.targets ├── LICENSE.txt ├── README.md ├── ReleaseNotes.md ├── src ├── CoCo.sln ├── common │ ├── AssemblyInfoCommon.cs │ ├── CoCo.Logging │ │ ├── CoCo.Logging.csproj │ │ ├── LogManager.cs │ │ ├── Logger.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── CoCo.MsBuild │ │ ├── CoCo.MsBuild.csproj │ │ ├── MsBuild.cs │ │ ├── MsBuildEngine.cs │ │ ├── ProjectInfo.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── CoCo.Settings │ │ ├── ClassificationSettings.cs │ │ ├── CoCo.Settings.csproj │ │ ├── EditorLanguageSettings.cs │ │ ├── EditorSettings.cs │ │ ├── GeneralLanguageSettings.cs │ │ ├── GeneralSettings.cs │ │ ├── IMigrationService.cs │ │ ├── PresetSettings.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── SettingsManager.cs │ ├── CoCo.UI │ │ ├── CoCo.UI.csproj │ │ ├── Data │ │ │ ├── Classification.cs │ │ │ ├── ClassificationLanguage.cs │ │ │ ├── ClassificationOption.cs │ │ │ ├── GeneralLanguage.cs │ │ │ ├── GeneralOption.cs │ │ │ └── Preset.cs │ │ ├── EditorStateService.cs │ │ ├── FontFamilyService.cs │ │ ├── FontStretchService.cs │ │ ├── FontStyleService.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── QuickInfoStateService.cs │ │ ├── UI │ │ │ ├── ClassificationsControl.xaml │ │ │ ├── ClassificationsControl.xaml.cs │ │ │ ├── ClassificationsOptionControl.xaml │ │ │ ├── ClassificationsOptionControl.xaml.cs │ │ │ ├── Converters │ │ │ │ ├── BaseConverter.cs │ │ │ │ └── NegateConverter.cs │ │ │ ├── FocusExtension.cs │ │ │ ├── GeneralOptionControl.xaml │ │ │ ├── GeneralOptionControl.xaml.cs │ │ │ ├── PresetsControl.xaml │ │ │ ├── PresetsControl.xaml.cs │ │ │ ├── Resources │ │ │ │ ├── Colors.xaml │ │ │ │ ├── ResourceDictionary.xaml │ │ │ │ ├── Styles │ │ │ │ │ ├── Controls.xaml │ │ │ │ │ ├── GridView.xaml │ │ │ │ │ └── ItemsControls.xaml │ │ │ │ └── Templates │ │ │ │ │ ├── Buttons.xaml │ │ │ │ │ └── Controls.xaml │ │ │ ├── VsToolTipControl.xaml │ │ │ └── VsToolTipControl.xaml.cs │ │ └── ViewModels │ │ │ ├── BaseViewModel.cs │ │ │ ├── Classification │ │ │ ├── ClassificationColorViewModel.cs │ │ │ ├── ClassificationLanguageViewModel.cs │ │ │ ├── ClassificationOptionViewModel.cs │ │ │ ├── ClassificationViewModel.cs │ │ │ ├── ClassificationsViewModel.cs │ │ │ ├── FontFamiliesViewModel.cs │ │ │ ├── FontStretchesViewModel.cs │ │ │ ├── FontStylesViewModel.cs │ │ │ ├── IClassificationProvider.cs │ │ │ ├── IResetValuesProvider.cs │ │ │ ├── PresetViewModel.cs │ │ │ └── PresetsViewModel.cs │ │ │ ├── DelegateCommand.cs │ │ │ ├── Extensions.cs │ │ │ ├── General │ │ │ ├── GeneralLanguageViewModel.cs │ │ │ └── GeneralOptionViewModel.cs │ │ │ └── QuickInfo │ │ │ └── VsToolTipViewModel.cs │ └── CoCo.Utils │ │ ├── CoCo.Utils.csproj │ │ ├── CollectionExtensions.cs │ │ ├── ColorHelpers.cs │ │ ├── CommonExtensions.cs │ │ ├── LinqExtensions.cs │ │ ├── PathExtensions.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── StringBuilderCache.cs │ │ └── StringExtensions.cs ├── vs14 │ ├── AssemblyInfoCommon.cs │ ├── CoCo.Analyser_vs14 │ │ ├── Classifications │ │ │ ├── CSharp │ │ │ │ ├── CSharpClassifierService.cs │ │ │ │ └── CSharpNames.cs │ │ │ └── ClassificationHelper.cs │ │ ├── CoCo.Analyser_vs14.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── QuickInfo │ │ │ ├── SymbolDescriptionProvider.Formats.cs │ │ │ └── SymbolDisplayPartHelper.cs │ ├── CoCo.Test.CSharpIdentifiers_vs14 │ │ ├── Access │ │ │ ├── Enums.cs │ │ │ ├── Labels.cs │ │ │ ├── LocalVariables.cs │ │ │ ├── Members.cs │ │ │ ├── Methods.cs │ │ │ ├── Namespaces.cs │ │ │ ├── Parameters.cs │ │ │ └── Types.cs │ │ ├── AnalyzeOptions.cs │ │ ├── CSharpIdentifierTests.cs │ │ ├── CoCo.Test.CSharpIdentifiers_vs14.csproj │ │ ├── Constructions.cs │ │ ├── ControlFlows.cs │ │ ├── Declarations │ │ │ ├── Enum.cs │ │ │ ├── Label.cs │ │ │ ├── Locals.cs │ │ │ ├── Members.cs │ │ │ ├── Methods.cs │ │ │ ├── Namespaces.cs │ │ │ ├── Parameters.cs │ │ │ └── Types.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SimpleTest.cs │ │ ├── XmlDocComment │ │ │ └── XmlNode.cs │ │ └── app.config │ ├── CoCo.Test.Common_vs14 │ │ ├── CoCo.Test.Common_vs14.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Stubs │ │ │ ├── TextBuffer.cs │ │ │ ├── TextImageLine.cs │ │ │ ├── TextSnapshot.cs │ │ │ ├── TextSnapshotLine.cs │ │ │ └── TextVersion.cs │ ├── CoCo.Test.VisualBasicIdentifiers_vs14 │ │ ├── Access │ │ │ ├── Enum.cs │ │ │ ├── LocalVariables.cs │ │ │ ├── Members.cs │ │ │ ├── Methods.cs │ │ │ ├── Namespaces.cs │ │ │ ├── Parameters.cs │ │ │ └── Types.cs │ │ ├── AnalyzeOptions.cs │ │ ├── CoCo.Test.VisualBasicIdentifiers_vs14.csproj │ │ ├── CommonExample.cs │ │ ├── Constructions.cs │ │ ├── ControlFlows.cs │ │ ├── Declarations │ │ │ ├── Enum.cs │ │ │ ├── LocalVariables.cs │ │ │ ├── Members.cs │ │ │ ├── Methods.cs │ │ │ ├── Namespaces.cs │ │ │ ├── Parameters.cs │ │ │ └── Types.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── VisualBasicIdentifierTests.cs │ │ ├── XmlDocComment │ │ │ └── XmlNode.cs │ │ └── app.config │ └── CoCo_vs14 │ │ ├── CoCo_vs14.csproj │ │ ├── Editor │ │ └── PresetService.cs │ │ ├── Guids.cs │ │ ├── Migrations │ │ ├── MigrationService_2_0_0.cs │ │ └── MigrationService_2_3_0.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Providers │ │ └── QuickInfoSourceProvider.cs │ │ ├── QuickInfo │ │ └── QuickInfoSource.cs │ │ ├── app.config │ │ └── source.extension.vsixmanifest ├── vs15 │ ├── AssemblyInfoCommon.cs │ ├── CoCo.Analyser_vs15 │ │ ├── Classifications │ │ │ ├── CSharp │ │ │ │ └── CSharpClassifierService.cs │ │ │ ├── ClassificationHelper.cs │ │ │ └── VisualBasic │ │ │ │ └── VisualBasicClassifierService.cs │ │ ├── CoCo.Analyser_vs15.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── CoCo.Test.CSharpIdentifiers_vs15 │ │ ├── Access │ │ │ ├── Enums.cs │ │ │ ├── Labels.cs │ │ │ ├── LocalVariables.cs │ │ │ ├── Members.cs │ │ │ ├── Methods.cs │ │ │ ├── Namespaces.cs │ │ │ ├── Parameters.cs │ │ │ └── Types.cs │ │ ├── AnalyzeOptions.cs │ │ ├── CSharpIdentifierTests.cs │ │ ├── CoCo.Test.CSharpIdentifiers_vs15.csproj │ │ ├── Constructions.cs │ │ ├── ControlFlows.cs │ │ ├── Declarations │ │ │ ├── Enum.cs │ │ │ ├── Label.cs │ │ │ ├── Locals.cs │ │ │ ├── Members.cs │ │ │ ├── Methods.cs │ │ │ ├── Namespaces.cs │ │ │ ├── Parameters.cs │ │ │ └── Types.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SimpleTest.cs │ │ ├── XmlDocComment │ │ │ └── XmlNode.cs │ │ └── app.config │ ├── CoCo.Test.Common_vs15 │ │ ├── CoCo.Test.Common_vs15.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── CoCo.Test.VisualBasicIdentifiers_vs15 │ │ ├── Access │ │ │ ├── Enum.cs │ │ │ ├── LocalVariables.cs │ │ │ ├── Members.cs │ │ │ ├── Methods.cs │ │ │ ├── Namespaces.cs │ │ │ ├── Parameters.cs │ │ │ └── Types.cs │ │ ├── AnalyzeOptions.cs │ │ ├── CoCo.Test.VisualBasicIdentifiers_vs15.csproj │ │ ├── CommonExample.cs │ │ ├── Constructions.cs │ │ ├── ControlFlows.cs │ │ ├── Declarations │ │ │ ├── Enum.cs │ │ │ ├── LocalVariables.cs │ │ │ ├── Members.cs │ │ │ ├── Methods.cs │ │ │ ├── Namespaces.cs │ │ │ ├── Parameters.cs │ │ │ └── Types.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── VisualBasicIdentifierTests.cs │ │ ├── XmlDocComment │ │ │ └── XmlNode.cs │ │ └── app.config │ └── CoCo_vs15 │ │ ├── CoCo_vs15.csproj │ │ ├── Editor │ │ └── ClassificationManager.Classifications.cs │ │ ├── Guids.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── source.extension.vsixmanifest └── vs16 │ ├── AssemblyInfoCommon.cs │ ├── CoCo.Analyser_vs16 │ ├── Classifications │ │ ├── CSharp │ │ │ ├── CSharpClassifierService.cs │ │ │ ├── CSharpNames.cs │ │ │ └── CSharpSyntaxNodeExtensions.cs │ │ ├── ClassificationHelper.cs │ │ ├── ClassificationInfo.cs │ │ ├── ClassificationService.cs │ │ ├── ClassificationsChangedEventArgs.cs │ │ ├── IClassificationChangingService.cs │ │ ├── ICodeClassifier.cs │ │ ├── Names.cs │ │ └── VisualBasic │ │ │ ├── VisualBasicClassifierService.cs │ │ │ ├── VisualBasicNames.cs │ │ │ └── VisualBasicSyntaxNodeExtensions.cs │ ├── CoCo.Analyser_vs16.csproj │ ├── Editor │ │ ├── CSharpTextBufferClassifier.cs │ │ ├── EditorChangedEventArgs.cs │ │ ├── IEditorChangingService.cs │ │ ├── RoslynTextBufferClassifier.cs │ │ └── VisualBasicTextBufferClassifier.cs │ ├── ImmutableExtensions.cs │ ├── Languages.cs │ ├── Log.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── QuickInfo │ │ ├── CSharp │ │ │ ├── CSharpSemanticProvider.cs │ │ │ └── CSharpSymbolDescriptionProvider.cs │ │ ├── ImageKind.cs │ │ ├── QuickInfoItem.cs │ │ ├── QuickInfoItemProvider.cs │ │ ├── QuickInfoService.cs │ │ ├── SemanticProvider.cs │ │ ├── SymbolDescription.cs │ │ ├── SymbolDescriptionInfo.cs │ │ ├── SymbolDescriptionKind.cs │ │ ├── SymbolDescriptionProvider.Formats.cs │ │ ├── SymbolDescriptionProvider.XmlDocumentParser.cs │ │ ├── SymbolDescriptionProvider.cs │ │ ├── SymbolDisplayPartConverter.cs │ │ ├── SymbolDisplayPartHelper.cs │ │ ├── TaggedText.cs │ │ └── VisualBasic │ │ │ ├── VisualBasicSemanticProvider.cs │ │ │ └── VisualBasicSymbolDescriptionProvider.cs │ ├── RoslynExtensions.cs │ └── VisualStudioExtensions.cs │ ├── CoCo.Test.CSharpIdentifiers_vs16 │ ├── Access │ │ ├── Enums.cs │ │ ├── Labels.cs │ │ ├── LocalVariables.cs │ │ ├── Members.cs │ │ ├── Methods.cs │ │ ├── Namespaces.cs │ │ ├── Parameters.cs │ │ └── Types.cs │ ├── AnalyzeOptions.cs │ ├── CSharpIdentifierTests.cs │ ├── CoCo.Test.CSharpIdentifiers_vs16.csproj │ ├── Constructions.cs │ ├── ControlFlows.cs │ ├── Declarations │ │ ├── Enum.cs │ │ ├── Label.cs │ │ ├── Locals.cs │ │ ├── Members.cs │ │ ├── Methods.cs │ │ ├── Namespaces.cs │ │ ├── Parameters.cs │ │ └── Types.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SimpleTest.cs │ └── XmlDocComment │ │ └── XmlNode.cs │ ├── CoCo.Test.Common_vs16 │ ├── AssertionHelper.cs │ ├── ClassificationComparer.cs │ ├── ClassificationHelper.cs │ ├── ClassificationInfo.cs │ ├── CoCo.Test.Common_vs16.csproj │ ├── CommonTests.cs │ ├── CompilationUnit.cs │ ├── ProgrammingLanguage.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SimplifiedClassificationSpan.cs │ ├── Stubs │ │ ├── ClassificationType.cs │ │ ├── ContentType.cs │ │ ├── LineSeparators.cs │ │ ├── StringOperand.cs │ │ ├── TextBuffer.cs │ │ ├── TextImage.cs │ │ ├── TextImageVersion.cs │ │ ├── TextSnapshot.cs │ │ ├── TextSnapshotLine.cs │ │ ├── TextVersion.cs │ │ └── TrackingPoint.cs │ ├── TestExecutionContext.cs │ └── TestHelper.cs │ ├── CoCo.Test.VisualBasicIdentifiers_vs16 │ ├── Access │ │ ├── Enum.cs │ │ ├── LocalVariables.cs │ │ ├── Members.cs │ │ ├── Methods.cs │ │ ├── Namespaces.cs │ │ ├── Parameters.cs │ │ └── Types.cs │ ├── AnalyzeOptions.cs │ ├── CoCo.Test.VisualBasicIdentifiers_vs16.csproj │ ├── CommonExample.cs │ ├── Constructions.cs │ ├── ControlFlows.cs │ ├── Declarations │ │ ├── Enum.cs │ │ ├── LocalVariables.cs │ │ ├── Members.cs │ │ ├── Methods.cs │ │ ├── Namespaces.cs │ │ ├── Parameters.cs │ │ └── Types.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── VisualBasicIdentifierTests.cs │ └── XmlDocComment │ │ └── XmlNode.cs │ └── CoCo_vs16 │ ├── CoCo_vs16.csproj │ ├── Editor │ ├── ClassificationChangingService.cs │ ├── ClassificationManager.Classifications.cs │ ├── ClassificationManager.cs │ ├── FormattingService.cs │ ├── PresetService.cs │ └── ResetValuesProvider.cs │ ├── Extensions.cs │ ├── GeneralChangedEventArgs.cs │ ├── GeneralChangingService.cs │ ├── Guids.cs │ ├── Migrations │ ├── MigrationService_2_0_0.cs │ ├── MigrationService_2_3_0.cs │ └── MigrationService_3_1_0.cs │ ├── OptionService.cs │ ├── Paths.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Providers │ ├── CSharpClassifierProvider.cs │ ├── QuickInfoProvider.cs │ ├── ToolTipPresenterFactory.cs │ └── VisualBasicClassifierProvider.cs │ ├── QuickInfo │ ├── MouseTrackToolTipPresenter.cs │ ├── QuickInfoSource.cs │ ├── QuickInfoWrapper.cs │ └── ToolTipPresenter.cs │ ├── ServicesProvider.cs │ ├── VsPackage.cs │ └── source.extension.vsixmanifest └── tests ├── AssemblyInfoCommon.cs ├── AssemblyInfoCommon.vb └── Identifiers ├── CSharpIdentifiers ├── Access │ ├── EnumField.cs │ ├── Label.cs │ ├── Locals │ │ ├── DynamicVariable.cs │ │ ├── OutVariable.cs │ │ ├── PatternVariable.cs │ │ └── ValueTupleVariable.cs │ ├── Members │ │ ├── ConstantMember.cs │ │ ├── Event.cs │ │ ├── Field.cs │ │ ├── Property.cs │ │ ├── TypeEvent.cs │ │ ├── TypeField.cs │ │ ├── TypeProperty.cs │ │ └── ValueTupleFields.cs │ ├── Methods │ │ ├── ExtensionMethod.cs │ │ ├── LocalMethod.cs │ │ ├── Method.cs │ │ └── StaticMethod.cs │ ├── Namespaces │ │ ├── ByNamespace.cs │ │ ├── ByNamespaceAlias.cs │ │ └── CustomNamespaces.cs │ ├── Parameters │ │ ├── Delegate.cs │ │ ├── Lambda.cs │ │ ├── Optional.cs │ │ ├── RefInOut.cs │ │ └── Variable.cs │ └── Types │ │ ├── ClassType.cs │ │ ├── DelegateType.cs │ │ ├── EnumType.cs │ │ ├── InterfaceType.cs │ │ ├── StructureType.cs │ │ └── TypeParameter.cs ├── AnalyzeOptions │ ├── AliasNamespace.cs │ ├── LocalVariable.cs │ ├── Member.cs │ ├── Method.cs │ ├── Namespace.cs │ └── Parameter.cs ├── CSharpIdentifiers.csproj ├── Constructions │ ├── CatchVariable.cs │ ├── ForForeachControlVariable.cs │ ├── IfPatternVariable.cs │ ├── Inheritance.cs │ ├── Nameof.cs │ ├── Return.cs │ ├── SwitchPatternVariable.cs │ ├── Throw.cs │ ├── TypeConstraints.cs │ ├── UsingVariable.cs │ └── YieldReturn.cs ├── ControlFlows │ ├── Default.cs │ ├── For.cs │ ├── Foreach.cs │ ├── Goto.cs │ ├── If.cs │ ├── Iterator.cs │ ├── Return.cs │ ├── Switch.cs │ ├── Throw.cs │ └── While.cs ├── Declarations │ ├── EnumDeclaration.cs │ ├── Label.cs │ ├── Locals │ │ ├── CatchVariable.cs │ │ ├── DynamicVariable.cs │ │ ├── ForControlVariable.cs │ │ ├── ForeachControlVariable.cs │ │ ├── OutVariable.cs │ │ ├── PatternVariable.cs │ │ ├── RangeVariable.cs │ │ ├── SimpleVariable.cs │ │ ├── UsingVariable.cs │ │ └── ValueTupleVariable.cs │ ├── Members │ │ ├── ConstantMember.cs │ │ ├── InstanceEvent.cs │ │ ├── InstanceField.cs │ │ ├── InstanceProperty.cs │ │ ├── TypeEvent.cs │ │ ├── TypeField.cs │ │ └── TypeProperty.cs │ ├── Methods │ │ ├── Constructor.cs │ │ ├── Destructor.cs │ │ ├── ExtensionMethod.cs │ │ ├── LocalMethod.cs │ │ ├── Method.cs │ │ ├── StaticConstructor.cs │ │ └── StaticMethod.cs │ ├── Namespaces │ │ ├── Alias.cs │ │ ├── CustomAlias.cs │ │ ├── InsideNamespace.cs │ │ ├── SimpleDeclaration.cs │ │ ├── StaticType.cs │ │ └── TypeAlias.cs │ ├── Parameters │ │ ├── DelegateParameter.cs │ │ ├── LambdaParameter.cs │ │ ├── Optional.cs │ │ ├── RefOutIn.cs │ │ ├── SimpleParameter.cs │ │ └── Variable.cs │ └── Types │ │ ├── ClassType.cs │ │ ├── DelegateType.cs │ │ ├── EnumType.cs │ │ ├── InterfaceType.cs │ │ ├── StructureType.cs │ │ └── TypeParameter.cs ├── Properties │ └── AssemblyInfo.cs ├── SimpleExample.cs └── XmlDocComment │ ├── CrefAttribute.cs │ ├── Exception.cs │ ├── NameAttribute.cs │ ├── Param.cs │ ├── ParamRef.cs │ ├── Permission.cs │ ├── See.cs │ ├── SeeAlso.cs │ ├── Typeparam.cs │ └── Typeparamref.cs ├── Identifiers.sln └── VisualBasicIdentifiers ├── Access ├── EnumAccess.vb ├── Locals │ ├── FunctionVariable.vb │ ├── SimpleVariable.vb │ ├── StaticVariable.vb │ └── ValueTupleVariable.vb ├── Members │ ├── ConstantMember.vb │ ├── InstanceEvent.vb │ ├── InstanceField.vb │ ├── InstanceProperty.vb │ ├── ModuleEvent.vb │ ├── ModuleField.vb │ ├── ModuleProperty.vb │ ├── TypeEvent.vb │ ├── TypeField.vb │ ├── TypeProperty.vb │ └── WithEventsProperty.vb ├── Methods │ ├── ExtensionMethod.vb │ ├── FunctionMethod.vb │ ├── ModuleMethod.vb │ ├── SharedMethod.vb │ └── SubMethod.vb ├── Namespaces │ ├── AliasNamespace.vb │ ├── CustomNamespace.vb │ └── Namespace.vb ├── Parameters │ ├── ByValRef.vb │ ├── DelegateParameter.vb │ ├── OptionalParameter.vb │ └── Variable.vb └── Types │ ├── ClassType.vb │ ├── DelegateType.vb │ ├── EnumType.vb │ ├── InterfaceType.vb │ ├── ModuleType.vb │ ├── StructureType.vb │ └── TypeParameter.vb ├── AnalyzeOptions ├── LocalVariable.vb ├── Member.vb ├── Method.vb ├── Namespace.vb └── ParameterOption.vb ├── Constructions ├── If.vb ├── Nameof.vb ├── Throw.vb ├── TypeConstraints.vb ├── Using.vb └── With.vb ├── ControlFlows ├── DoLoop.vb ├── Exit.vb ├── For.vb ├── ForEach.vb ├── Goto.vb ├── If.vb ├── Iterator.vb ├── Return.vb ├── Select.vb ├── Throw.vb └── While.vb ├── Declarations ├── EnumDeclaration.vb ├── Locals │ ├── CatchVariable.vb │ ├── ForVariable.vb │ ├── ForeachVariable.vb │ ├── FunctionVariable.vb │ ├── RangeVariable.vb │ ├── SimpleVariable.vb │ ├── StaticVariable.vb │ ├── UsingVariable.vb │ ├── ValueTupleVariable.vb │ └── WithVariable.vb ├── Members │ ├── ConstantMember.vb │ ├── CustomEvent.vb │ ├── InstanceEvent.vb │ ├── InstanceField.vb │ ├── InstanceProperty.vb │ ├── ModuleEvent.vb │ ├── ModuleField.vb │ ├── ModuleProperty.vb │ ├── TypeEvent.vb │ ├── TypeField.vb │ ├── TypeProperty.vb │ └── WithEventsProperty.vb ├── Methods │ ├── Constructor.vb │ ├── ExtensionMethod.vb │ ├── FunctionMethod.vb │ ├── ModuleMethod.vb │ ├── SharedMethod.vb │ ├── StaticConstructor.vb │ └── SubMethod.vb ├── Namespaces │ ├── Alias.vb │ ├── CustomAlias.vb │ ├── Simple.vb │ ├── SimpleImport.vb │ ├── StaticType.vb │ └── TypeAlias.vb ├── Parameters │ ├── ByValRef.vb │ ├── DelegateParameter.vb │ ├── OptionalParameter.vb │ ├── SimpleParameter.vb │ ├── TypeCharacter.vb │ └── Variable.vb └── Types │ ├── ClassType.vb │ ├── DelegateType.vb │ ├── EnumType.vb │ ├── InterfaceType.vb │ ├── ModuleType.vb │ ├── StructureType.vb │ └── TypeParameter.vb ├── Example.vb ├── My Project ├── Application.Designer.vb ├── Application.myapp ├── AssemblyInfo.vb ├── Resources.Designer.vb ├── Resources.resx ├── Settings.Designer.vb └── Settings.settings ├── VisualBasicIdentifiers.vbproj └── XmlDocComment ├── CrefAttribute.vb ├── Exception.vb ├── NameAttribute.vb ├── Param.vb ├── ParamRef.vb ├── Permission.vb ├── See.vb ├── SeeAlso.vb ├── TypeParam.vb └── TypeParamRef.vb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Classifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/Classifications.md -------------------------------------------------------------------------------- /CoCo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/CoCo.png -------------------------------------------------------------------------------- /CoCo_Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/CoCo_Preview.png -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/ReleaseNotes.md -------------------------------------------------------------------------------- /src/CoCo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/CoCo.sln -------------------------------------------------------------------------------- /src/common/AssemblyInfoCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/AssemblyInfoCommon.cs -------------------------------------------------------------------------------- /src/common/CoCo.Logging/CoCo.Logging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.Logging/CoCo.Logging.csproj -------------------------------------------------------------------------------- /src/common/CoCo.Logging/LogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.Logging/LogManager.cs -------------------------------------------------------------------------------- /src/common/CoCo.Logging/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.Logging/Logger.cs -------------------------------------------------------------------------------- /src/common/CoCo.Logging/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.Logging/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/common/CoCo.MsBuild/CoCo.MsBuild.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.MsBuild/CoCo.MsBuild.csproj -------------------------------------------------------------------------------- /src/common/CoCo.MsBuild/MsBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.MsBuild/MsBuild.cs -------------------------------------------------------------------------------- /src/common/CoCo.MsBuild/MsBuildEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.MsBuild/MsBuildEngine.cs -------------------------------------------------------------------------------- /src/common/CoCo.MsBuild/ProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.MsBuild/ProjectInfo.cs -------------------------------------------------------------------------------- /src/common/CoCo.MsBuild/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.MsBuild/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/common/CoCo.Settings/ClassificationSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.Settings/ClassificationSettings.cs -------------------------------------------------------------------------------- /src/common/CoCo.Settings/CoCo.Settings.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.Settings/CoCo.Settings.csproj -------------------------------------------------------------------------------- /src/common/CoCo.Settings/EditorLanguageSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.Settings/EditorLanguageSettings.cs -------------------------------------------------------------------------------- /src/common/CoCo.Settings/EditorSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.Settings/EditorSettings.cs -------------------------------------------------------------------------------- /src/common/CoCo.Settings/GeneralLanguageSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.Settings/GeneralLanguageSettings.cs -------------------------------------------------------------------------------- /src/common/CoCo.Settings/GeneralSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.Settings/GeneralSettings.cs -------------------------------------------------------------------------------- /src/common/CoCo.Settings/IMigrationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.Settings/IMigrationService.cs -------------------------------------------------------------------------------- /src/common/CoCo.Settings/PresetSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.Settings/PresetSettings.cs -------------------------------------------------------------------------------- /src/common/CoCo.Settings/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.Settings/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/common/CoCo.Settings/SettingsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.Settings/SettingsManager.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/CoCo.UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/CoCo.UI.csproj -------------------------------------------------------------------------------- /src/common/CoCo.UI/Data/Classification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/Data/Classification.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/Data/ClassificationLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/Data/ClassificationLanguage.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/Data/ClassificationOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/Data/ClassificationOption.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/Data/GeneralLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/Data/GeneralLanguage.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/Data/GeneralOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/Data/GeneralOption.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/Data/Preset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/Data/Preset.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/EditorStateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/EditorStateService.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/FontFamilyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/FontFamilyService.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/FontStretchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/FontStretchService.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/FontStyleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/FontStyleService.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/QuickInfoStateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/QuickInfoStateService.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/UI/ClassificationsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/UI/ClassificationsControl.xaml -------------------------------------------------------------------------------- /src/common/CoCo.UI/UI/ClassificationsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/UI/ClassificationsControl.xaml.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/UI/ClassificationsOptionControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/UI/ClassificationsOptionControl.xaml -------------------------------------------------------------------------------- /src/common/CoCo.UI/UI/ClassificationsOptionControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/UI/ClassificationsOptionControl.xaml.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/UI/Converters/BaseConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/UI/Converters/BaseConverter.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/UI/Converters/NegateConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/UI/Converters/NegateConverter.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/UI/FocusExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/UI/FocusExtension.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/UI/GeneralOptionControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/UI/GeneralOptionControl.xaml -------------------------------------------------------------------------------- /src/common/CoCo.UI/UI/GeneralOptionControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/UI/GeneralOptionControl.xaml.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/UI/PresetsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/UI/PresetsControl.xaml -------------------------------------------------------------------------------- /src/common/CoCo.UI/UI/PresetsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/UI/PresetsControl.xaml.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/UI/Resources/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/UI/Resources/Colors.xaml -------------------------------------------------------------------------------- /src/common/CoCo.UI/UI/Resources/ResourceDictionary.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/UI/Resources/ResourceDictionary.xaml -------------------------------------------------------------------------------- /src/common/CoCo.UI/UI/Resources/Styles/Controls.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/UI/Resources/Styles/Controls.xaml -------------------------------------------------------------------------------- /src/common/CoCo.UI/UI/Resources/Styles/GridView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/UI/Resources/Styles/GridView.xaml -------------------------------------------------------------------------------- /src/common/CoCo.UI/UI/Resources/Styles/ItemsControls.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/UI/Resources/Styles/ItemsControls.xaml -------------------------------------------------------------------------------- /src/common/CoCo.UI/UI/Resources/Templates/Buttons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/UI/Resources/Templates/Buttons.xaml -------------------------------------------------------------------------------- /src/common/CoCo.UI/UI/Resources/Templates/Controls.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/UI/Resources/Templates/Controls.xaml -------------------------------------------------------------------------------- /src/common/CoCo.UI/UI/VsToolTipControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/UI/VsToolTipControl.xaml -------------------------------------------------------------------------------- /src/common/CoCo.UI/UI/VsToolTipControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/UI/VsToolTipControl.xaml.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/ViewModels/Classification/ClassificationColorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/ViewModels/Classification/ClassificationColorViewModel.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/ViewModels/Classification/ClassificationLanguageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/ViewModels/Classification/ClassificationLanguageViewModel.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/ViewModels/Classification/ClassificationOptionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/ViewModels/Classification/ClassificationOptionViewModel.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/ViewModels/Classification/ClassificationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/ViewModels/Classification/ClassificationViewModel.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/ViewModels/Classification/ClassificationsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/ViewModels/Classification/ClassificationsViewModel.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/ViewModels/Classification/FontFamiliesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/ViewModels/Classification/FontFamiliesViewModel.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/ViewModels/Classification/FontStretchesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/ViewModels/Classification/FontStretchesViewModel.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/ViewModels/Classification/FontStylesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/ViewModels/Classification/FontStylesViewModel.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/ViewModels/Classification/IClassificationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/ViewModels/Classification/IClassificationProvider.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/ViewModels/Classification/IResetValuesProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/ViewModels/Classification/IResetValuesProvider.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/ViewModels/Classification/PresetViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/ViewModels/Classification/PresetViewModel.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/ViewModels/Classification/PresetsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/ViewModels/Classification/PresetsViewModel.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/ViewModels/DelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/ViewModels/DelegateCommand.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/ViewModels/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/ViewModels/Extensions.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/ViewModels/General/GeneralLanguageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/ViewModels/General/GeneralLanguageViewModel.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/ViewModels/General/GeneralOptionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/ViewModels/General/GeneralOptionViewModel.cs -------------------------------------------------------------------------------- /src/common/CoCo.UI/ViewModels/QuickInfo/VsToolTipViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.UI/ViewModels/QuickInfo/VsToolTipViewModel.cs -------------------------------------------------------------------------------- /src/common/CoCo.Utils/CoCo.Utils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.Utils/CoCo.Utils.csproj -------------------------------------------------------------------------------- /src/common/CoCo.Utils/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.Utils/CollectionExtensions.cs -------------------------------------------------------------------------------- /src/common/CoCo.Utils/ColorHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.Utils/ColorHelpers.cs -------------------------------------------------------------------------------- /src/common/CoCo.Utils/CommonExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.Utils/CommonExtensions.cs -------------------------------------------------------------------------------- /src/common/CoCo.Utils/LinqExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.Utils/LinqExtensions.cs -------------------------------------------------------------------------------- /src/common/CoCo.Utils/PathExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.Utils/PathExtensions.cs -------------------------------------------------------------------------------- /src/common/CoCo.Utils/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.Utils/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/common/CoCo.Utils/StringBuilderCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.Utils/StringBuilderCache.cs -------------------------------------------------------------------------------- /src/common/CoCo.Utils/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/common/CoCo.Utils/StringExtensions.cs -------------------------------------------------------------------------------- /src/vs14/AssemblyInfoCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/AssemblyInfoCommon.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Analyser_vs14/Classifications/CSharp/CSharpClassifierService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Analyser_vs14/Classifications/CSharp/CSharpClassifierService.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Analyser_vs14/Classifications/CSharp/CSharpNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Analyser_vs14/Classifications/CSharp/CSharpNames.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Analyser_vs14/Classifications/ClassificationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Analyser_vs14/Classifications/ClassificationHelper.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Analyser_vs14/CoCo.Analyser_vs14.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Analyser_vs14/CoCo.Analyser_vs14.csproj -------------------------------------------------------------------------------- /src/vs14/CoCo.Analyser_vs14/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Analyser_vs14/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Analyser_vs14/QuickInfo/SymbolDescriptionProvider.Formats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Analyser_vs14/QuickInfo/SymbolDescriptionProvider.Formats.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Analyser_vs14/QuickInfo/SymbolDisplayPartHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Analyser_vs14/QuickInfo/SymbolDisplayPartHelper.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Access/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Access/Enums.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Access/Labels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Access/Labels.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Access/LocalVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Access/LocalVariables.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Access/Members.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Access/Members.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Access/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Access/Methods.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Access/Namespaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Access/Namespaces.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Access/Parameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Access/Parameters.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Access/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Access/Types.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.CSharpIdentifiers_vs14/AnalyzeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.CSharpIdentifiers_vs14/AnalyzeOptions.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.CSharpIdentifiers_vs14/CSharpIdentifierTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.CSharpIdentifiers_vs14/CSharpIdentifierTests.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.CSharpIdentifiers_vs14/CoCo.Test.CSharpIdentifiers_vs14.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.CSharpIdentifiers_vs14/CoCo.Test.CSharpIdentifiers_vs14.csproj -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Constructions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Constructions.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.CSharpIdentifiers_vs14/ControlFlows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.CSharpIdentifiers_vs14/ControlFlows.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Declarations/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Declarations/Enum.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Declarations/Label.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Declarations/Label.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Declarations/Locals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Declarations/Locals.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Declarations/Members.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Declarations/Members.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Declarations/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Declarations/Methods.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Declarations/Namespaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Declarations/Namespaces.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Declarations/Parameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Declarations/Parameters.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Declarations/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Declarations/Types.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.CSharpIdentifiers_vs14/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.CSharpIdentifiers_vs14/SimpleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.CSharpIdentifiers_vs14/SimpleTest.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.CSharpIdentifiers_vs14/XmlDocComment/XmlNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.CSharpIdentifiers_vs14/XmlDocComment/XmlNode.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.CSharpIdentifiers_vs14/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.CSharpIdentifiers_vs14/app.config -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.Common_vs14/CoCo.Test.Common_vs14.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.Common_vs14/CoCo.Test.Common_vs14.csproj -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.Common_vs14/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.Common_vs14/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.Common_vs14/Stubs/TextBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.Common_vs14/Stubs/TextBuffer.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.Common_vs14/Stubs/TextImageLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.Common_vs14/Stubs/TextImageLine.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.Common_vs14/Stubs/TextSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.Common_vs14/Stubs/TextSnapshot.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.Common_vs14/Stubs/TextSnapshotLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.Common_vs14/Stubs/TextSnapshotLine.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.Common_vs14/Stubs/TextVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.Common_vs14/Stubs/TextVersion.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Access/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Access/Enum.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Access/LocalVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Access/LocalVariables.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Access/Members.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Access/Members.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Access/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Access/Methods.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Access/Namespaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Access/Namespaces.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Access/Parameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Access/Parameters.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Access/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Access/Types.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/AnalyzeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/AnalyzeOptions.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/CoCo.Test.VisualBasicIdentifiers_vs14.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/CoCo.Test.VisualBasicIdentifiers_vs14.csproj -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/CommonExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/CommonExample.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Constructions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Constructions.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/ControlFlows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/ControlFlows.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Declarations/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Declarations/Enum.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Declarations/LocalVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Declarations/LocalVariables.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Declarations/Members.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Declarations/Members.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Declarations/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Declarations/Methods.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Declarations/Namespaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Declarations/Namespaces.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Declarations/Parameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Declarations/Parameters.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Declarations/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Declarations/Types.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/VisualBasicIdentifierTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/VisualBasicIdentifierTests.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/XmlDocComment/XmlNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/XmlDocComment/XmlNode.cs -------------------------------------------------------------------------------- /src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo.Test.VisualBasicIdentifiers_vs14/app.config -------------------------------------------------------------------------------- /src/vs14/CoCo_vs14/CoCo_vs14.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo_vs14/CoCo_vs14.csproj -------------------------------------------------------------------------------- /src/vs14/CoCo_vs14/Editor/PresetService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo_vs14/Editor/PresetService.cs -------------------------------------------------------------------------------- /src/vs14/CoCo_vs14/Guids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo_vs14/Guids.cs -------------------------------------------------------------------------------- /src/vs14/CoCo_vs14/Migrations/MigrationService_2_0_0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo_vs14/Migrations/MigrationService_2_0_0.cs -------------------------------------------------------------------------------- /src/vs14/CoCo_vs14/Migrations/MigrationService_2_3_0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo_vs14/Migrations/MigrationService_2_3_0.cs -------------------------------------------------------------------------------- /src/vs14/CoCo_vs14/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo_vs14/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/vs14/CoCo_vs14/Providers/QuickInfoSourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo_vs14/Providers/QuickInfoSourceProvider.cs -------------------------------------------------------------------------------- /src/vs14/CoCo_vs14/QuickInfo/QuickInfoSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo_vs14/QuickInfo/QuickInfoSource.cs -------------------------------------------------------------------------------- /src/vs14/CoCo_vs14/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo_vs14/app.config -------------------------------------------------------------------------------- /src/vs14/CoCo_vs14/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs14/CoCo_vs14/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/vs15/AssemblyInfoCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/AssemblyInfoCommon.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Analyser_vs15/Classifications/CSharp/CSharpClassifierService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Analyser_vs15/Classifications/CSharp/CSharpClassifierService.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Analyser_vs15/Classifications/ClassificationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Analyser_vs15/Classifications/ClassificationHelper.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Analyser_vs15/Classifications/VisualBasic/VisualBasicClassifierService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Analyser_vs15/Classifications/VisualBasic/VisualBasicClassifierService.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Analyser_vs15/CoCo.Analyser_vs15.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Analyser_vs15/CoCo.Analyser_vs15.csproj -------------------------------------------------------------------------------- /src/vs15/CoCo.Analyser_vs15/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Analyser_vs15/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Access/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Access/Enums.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Access/Labels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Access/Labels.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Access/LocalVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Access/LocalVariables.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Access/Members.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Access/Members.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Access/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Access/Methods.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Access/Namespaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Access/Namespaces.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Access/Parameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Access/Parameters.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Access/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Access/Types.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.CSharpIdentifiers_vs15/AnalyzeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.CSharpIdentifiers_vs15/AnalyzeOptions.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.CSharpIdentifiers_vs15/CSharpIdentifierTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.CSharpIdentifiers_vs15/CSharpIdentifierTests.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.CSharpIdentifiers_vs15/CoCo.Test.CSharpIdentifiers_vs15.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.CSharpIdentifiers_vs15/CoCo.Test.CSharpIdentifiers_vs15.csproj -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Constructions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Constructions.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.CSharpIdentifiers_vs15/ControlFlows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.CSharpIdentifiers_vs15/ControlFlows.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Declarations/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Declarations/Enum.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Declarations/Label.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Declarations/Label.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Declarations/Locals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Declarations/Locals.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Declarations/Members.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Declarations/Members.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Declarations/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Declarations/Methods.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Declarations/Namespaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Declarations/Namespaces.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Declarations/Parameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Declarations/Parameters.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Declarations/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Declarations/Types.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.CSharpIdentifiers_vs15/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.CSharpIdentifiers_vs15/SimpleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.CSharpIdentifiers_vs15/SimpleTest.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.CSharpIdentifiers_vs15/XmlDocComment/XmlNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.CSharpIdentifiers_vs15/XmlDocComment/XmlNode.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.CSharpIdentifiers_vs15/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.CSharpIdentifiers_vs15/app.config -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.Common_vs15/CoCo.Test.Common_vs15.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.Common_vs15/CoCo.Test.Common_vs15.csproj -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.Common_vs15/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.Common_vs15/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Access/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Access/Enum.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Access/LocalVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Access/LocalVariables.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Access/Members.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Access/Members.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Access/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Access/Methods.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Access/Namespaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Access/Namespaces.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Access/Parameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Access/Parameters.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Access/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Access/Types.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/AnalyzeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/AnalyzeOptions.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/CoCo.Test.VisualBasicIdentifiers_vs15.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/CoCo.Test.VisualBasicIdentifiers_vs15.csproj -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/CommonExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/CommonExample.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Constructions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Constructions.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/ControlFlows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/ControlFlows.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Declarations/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Declarations/Enum.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Declarations/LocalVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Declarations/LocalVariables.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Declarations/Members.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Declarations/Members.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Declarations/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Declarations/Methods.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Declarations/Namespaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Declarations/Namespaces.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Declarations/Parameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Declarations/Parameters.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Declarations/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Declarations/Types.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/VisualBasicIdentifierTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/VisualBasicIdentifierTests.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/XmlDocComment/XmlNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/XmlDocComment/XmlNode.cs -------------------------------------------------------------------------------- /src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo.Test.VisualBasicIdentifiers_vs15/app.config -------------------------------------------------------------------------------- /src/vs15/CoCo_vs15/CoCo_vs15.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo_vs15/CoCo_vs15.csproj -------------------------------------------------------------------------------- /src/vs15/CoCo_vs15/Editor/ClassificationManager.Classifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo_vs15/Editor/ClassificationManager.Classifications.cs -------------------------------------------------------------------------------- /src/vs15/CoCo_vs15/Guids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo_vs15/Guids.cs -------------------------------------------------------------------------------- /src/vs15/CoCo_vs15/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo_vs15/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/vs15/CoCo_vs15/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo_vs15/app.config -------------------------------------------------------------------------------- /src/vs15/CoCo_vs15/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs15/CoCo_vs15/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/vs16/AssemblyInfoCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/AssemblyInfoCommon.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/Classifications/CSharp/CSharpClassifierService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/Classifications/CSharp/CSharpClassifierService.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/Classifications/CSharp/CSharpNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/Classifications/CSharp/CSharpNames.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/Classifications/CSharp/CSharpSyntaxNodeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/Classifications/CSharp/CSharpSyntaxNodeExtensions.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/Classifications/ClassificationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/Classifications/ClassificationHelper.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/Classifications/ClassificationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/Classifications/ClassificationInfo.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/Classifications/ClassificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/Classifications/ClassificationService.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/Classifications/ClassificationsChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/Classifications/ClassificationsChangedEventArgs.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/Classifications/IClassificationChangingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/Classifications/IClassificationChangingService.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/Classifications/ICodeClassifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/Classifications/ICodeClassifier.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/Classifications/Names.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/Classifications/Names.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/Classifications/VisualBasic/VisualBasicClassifierService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/Classifications/VisualBasic/VisualBasicClassifierService.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/Classifications/VisualBasic/VisualBasicNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/Classifications/VisualBasic/VisualBasicNames.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/Classifications/VisualBasic/VisualBasicSyntaxNodeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/Classifications/VisualBasic/VisualBasicSyntaxNodeExtensions.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/CoCo.Analyser_vs16.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/CoCo.Analyser_vs16.csproj -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/Editor/CSharpTextBufferClassifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/Editor/CSharpTextBufferClassifier.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/Editor/EditorChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/Editor/EditorChangedEventArgs.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/Editor/IEditorChangingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/Editor/IEditorChangingService.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/Editor/RoslynTextBufferClassifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/Editor/RoslynTextBufferClassifier.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/Editor/VisualBasicTextBufferClassifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/Editor/VisualBasicTextBufferClassifier.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/ImmutableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/ImmutableExtensions.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/Languages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/Languages.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/Log.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/QuickInfo/CSharp/CSharpSemanticProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/QuickInfo/CSharp/CSharpSemanticProvider.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/QuickInfo/CSharp/CSharpSymbolDescriptionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/QuickInfo/CSharp/CSharpSymbolDescriptionProvider.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/QuickInfo/ImageKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/QuickInfo/ImageKind.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/QuickInfo/QuickInfoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/QuickInfo/QuickInfoItem.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/QuickInfo/QuickInfoItemProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/QuickInfo/QuickInfoItemProvider.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/QuickInfo/QuickInfoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/QuickInfo/QuickInfoService.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/QuickInfo/SemanticProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/QuickInfo/SemanticProvider.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/QuickInfo/SymbolDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/QuickInfo/SymbolDescription.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/QuickInfo/SymbolDescriptionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/QuickInfo/SymbolDescriptionInfo.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/QuickInfo/SymbolDescriptionKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/QuickInfo/SymbolDescriptionKind.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/QuickInfo/SymbolDescriptionProvider.Formats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/QuickInfo/SymbolDescriptionProvider.Formats.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/QuickInfo/SymbolDescriptionProvider.XmlDocumentParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/QuickInfo/SymbolDescriptionProvider.XmlDocumentParser.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/QuickInfo/SymbolDescriptionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/QuickInfo/SymbolDescriptionProvider.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/QuickInfo/SymbolDisplayPartConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/QuickInfo/SymbolDisplayPartConverter.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/QuickInfo/SymbolDisplayPartHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/QuickInfo/SymbolDisplayPartHelper.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/QuickInfo/TaggedText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/QuickInfo/TaggedText.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/QuickInfo/VisualBasic/VisualBasicSemanticProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/QuickInfo/VisualBasic/VisualBasicSemanticProvider.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/QuickInfo/VisualBasic/VisualBasicSymbolDescriptionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/QuickInfo/VisualBasic/VisualBasicSymbolDescriptionProvider.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/RoslynExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/RoslynExtensions.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Analyser_vs16/VisualStudioExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Analyser_vs16/VisualStudioExtensions.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Access/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Access/Enums.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Access/Labels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Access/Labels.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Access/LocalVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Access/LocalVariables.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Access/Members.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Access/Members.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Access/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Access/Methods.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Access/Namespaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Access/Namespaces.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Access/Parameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Access/Parameters.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Access/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Access/Types.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.CSharpIdentifiers_vs16/AnalyzeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.CSharpIdentifiers_vs16/AnalyzeOptions.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.CSharpIdentifiers_vs16/CSharpIdentifierTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.CSharpIdentifiers_vs16/CSharpIdentifierTests.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.CSharpIdentifiers_vs16/CoCo.Test.CSharpIdentifiers_vs16.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.CSharpIdentifiers_vs16/CoCo.Test.CSharpIdentifiers_vs16.csproj -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Constructions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Constructions.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.CSharpIdentifiers_vs16/ControlFlows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.CSharpIdentifiers_vs16/ControlFlows.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Declarations/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Declarations/Enum.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Declarations/Label.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Declarations/Label.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Declarations/Locals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Declarations/Locals.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Declarations/Members.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Declarations/Members.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Declarations/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Declarations/Methods.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Declarations/Namespaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Declarations/Namespaces.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Declarations/Parameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Declarations/Parameters.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Declarations/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Declarations/Types.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.CSharpIdentifiers_vs16/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.CSharpIdentifiers_vs16/SimpleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.CSharpIdentifiers_vs16/SimpleTest.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.CSharpIdentifiers_vs16/XmlDocComment/XmlNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.CSharpIdentifiers_vs16/XmlDocComment/XmlNode.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.Common_vs16/AssertionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.Common_vs16/AssertionHelper.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.Common_vs16/ClassificationComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.Common_vs16/ClassificationComparer.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.Common_vs16/ClassificationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.Common_vs16/ClassificationHelper.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.Common_vs16/ClassificationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.Common_vs16/ClassificationInfo.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.Common_vs16/CoCo.Test.Common_vs16.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.Common_vs16/CoCo.Test.Common_vs16.csproj -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.Common_vs16/CommonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.Common_vs16/CommonTests.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.Common_vs16/CompilationUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.Common_vs16/CompilationUnit.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.Common_vs16/ProgrammingLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.Common_vs16/ProgrammingLanguage.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.Common_vs16/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.Common_vs16/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.Common_vs16/SimplifiedClassificationSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.Common_vs16/SimplifiedClassificationSpan.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.Common_vs16/Stubs/ClassificationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.Common_vs16/Stubs/ClassificationType.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.Common_vs16/Stubs/ContentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.Common_vs16/Stubs/ContentType.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.Common_vs16/Stubs/LineSeparators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.Common_vs16/Stubs/LineSeparators.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.Common_vs16/Stubs/StringOperand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.Common_vs16/Stubs/StringOperand.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.Common_vs16/Stubs/TextBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.Common_vs16/Stubs/TextBuffer.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.Common_vs16/Stubs/TextImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.Common_vs16/Stubs/TextImage.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.Common_vs16/Stubs/TextImageVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.Common_vs16/Stubs/TextImageVersion.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.Common_vs16/Stubs/TextSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.Common_vs16/Stubs/TextSnapshot.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.Common_vs16/Stubs/TextSnapshotLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.Common_vs16/Stubs/TextSnapshotLine.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.Common_vs16/Stubs/TextVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.Common_vs16/Stubs/TextVersion.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.Common_vs16/Stubs/TrackingPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.Common_vs16/Stubs/TrackingPoint.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.Common_vs16/TestExecutionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.Common_vs16/TestExecutionContext.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.Common_vs16/TestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.Common_vs16/TestHelper.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Access/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Access/Enum.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Access/LocalVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Access/LocalVariables.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Access/Members.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Access/Members.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Access/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Access/Methods.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Access/Namespaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Access/Namespaces.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Access/Parameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Access/Parameters.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Access/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Access/Types.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/AnalyzeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/AnalyzeOptions.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/CoCo.Test.VisualBasicIdentifiers_vs16.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/CoCo.Test.VisualBasicIdentifiers_vs16.csproj -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/CommonExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/CommonExample.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Constructions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Constructions.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/ControlFlows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/ControlFlows.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Declarations/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Declarations/Enum.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Declarations/LocalVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Declarations/LocalVariables.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Declarations/Members.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Declarations/Members.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Declarations/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Declarations/Methods.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Declarations/Namespaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Declarations/Namespaces.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Declarations/Parameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Declarations/Parameters.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Declarations/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Declarations/Types.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/VisualBasicIdentifierTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/VisualBasicIdentifierTests.cs -------------------------------------------------------------------------------- /src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/XmlDocComment/XmlNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo.Test.VisualBasicIdentifiers_vs16/XmlDocComment/XmlNode.cs -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/CoCo_vs16.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/CoCo_vs16.csproj -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/Editor/ClassificationChangingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/Editor/ClassificationChangingService.cs -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/Editor/ClassificationManager.Classifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/Editor/ClassificationManager.Classifications.cs -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/Editor/ClassificationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/Editor/ClassificationManager.cs -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/Editor/FormattingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/Editor/FormattingService.cs -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/Editor/PresetService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/Editor/PresetService.cs -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/Editor/ResetValuesProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/Editor/ResetValuesProvider.cs -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/Extensions.cs -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/GeneralChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/GeneralChangedEventArgs.cs -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/GeneralChangingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/GeneralChangingService.cs -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/Guids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/Guids.cs -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/Migrations/MigrationService_2_0_0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/Migrations/MigrationService_2_0_0.cs -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/Migrations/MigrationService_2_3_0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/Migrations/MigrationService_2_3_0.cs -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/Migrations/MigrationService_3_1_0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/Migrations/MigrationService_3_1_0.cs -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/OptionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/OptionService.cs -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/Paths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/Paths.cs -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/Providers/CSharpClassifierProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/Providers/CSharpClassifierProvider.cs -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/Providers/QuickInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/Providers/QuickInfoProvider.cs -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/Providers/ToolTipPresenterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/Providers/ToolTipPresenterFactory.cs -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/Providers/VisualBasicClassifierProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/Providers/VisualBasicClassifierProvider.cs -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/QuickInfo/MouseTrackToolTipPresenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/QuickInfo/MouseTrackToolTipPresenter.cs -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/QuickInfo/QuickInfoSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/QuickInfo/QuickInfoSource.cs -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/QuickInfo/QuickInfoWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/QuickInfo/QuickInfoWrapper.cs -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/QuickInfo/ToolTipPresenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/QuickInfo/ToolTipPresenter.cs -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/ServicesProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/ServicesProvider.cs -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/VsPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/VsPackage.cs -------------------------------------------------------------------------------- /src/vs16/CoCo_vs16/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/src/vs16/CoCo_vs16/source.extension.vsixmanifest -------------------------------------------------------------------------------- /tests/AssemblyInfoCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/AssemblyInfoCommon.cs -------------------------------------------------------------------------------- /tests/AssemblyInfoCommon.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/AssemblyInfoCommon.vb -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/EnumField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/EnumField.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Label.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Label.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Locals/DynamicVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Locals/DynamicVariable.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Locals/OutVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Locals/OutVariable.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Locals/PatternVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Locals/PatternVariable.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Locals/ValueTupleVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Locals/ValueTupleVariable.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Members/ConstantMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Members/ConstantMember.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Members/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Members/Event.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Members/Field.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Members/Field.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Members/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Members/Property.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Members/TypeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Members/TypeEvent.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Members/TypeField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Members/TypeField.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Members/TypeProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Members/TypeProperty.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Members/ValueTupleFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Members/ValueTupleFields.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Methods/ExtensionMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Methods/ExtensionMethod.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Methods/LocalMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Methods/LocalMethod.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Methods/Method.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Methods/Method.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Methods/StaticMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Methods/StaticMethod.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Namespaces/ByNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Namespaces/ByNamespace.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Namespaces/ByNamespaceAlias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Namespaces/ByNamespaceAlias.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Namespaces/CustomNamespaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Namespaces/CustomNamespaces.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Parameters/Delegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Parameters/Delegate.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Parameters/Lambda.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Parameters/Lambda.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Parameters/Optional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Parameters/Optional.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Parameters/RefInOut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Parameters/RefInOut.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Parameters/Variable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Parameters/Variable.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Types/ClassType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Types/ClassType.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Types/DelegateType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Types/DelegateType.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Types/EnumType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Types/EnumType.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Types/InterfaceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Types/InterfaceType.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Types/StructureType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Types/StructureType.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Access/Types/TypeParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Access/Types/TypeParameter.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/AnalyzeOptions/AliasNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/AnalyzeOptions/AliasNamespace.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/AnalyzeOptions/LocalVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/AnalyzeOptions/LocalVariable.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/AnalyzeOptions/Member.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/AnalyzeOptions/Member.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/AnalyzeOptions/Method.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/AnalyzeOptions/Method.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/AnalyzeOptions/Namespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/AnalyzeOptions/Namespace.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/AnalyzeOptions/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/AnalyzeOptions/Parameter.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/CSharpIdentifiers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/CSharpIdentifiers.csproj -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Constructions/CatchVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Constructions/CatchVariable.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Constructions/ForForeachControlVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Constructions/ForForeachControlVariable.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Constructions/IfPatternVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Constructions/IfPatternVariable.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Constructions/Inheritance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Constructions/Inheritance.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Constructions/Nameof.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Constructions/Nameof.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Constructions/Return.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Constructions/Return.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Constructions/SwitchPatternVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Constructions/SwitchPatternVariable.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Constructions/Throw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Constructions/Throw.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Constructions/TypeConstraints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Constructions/TypeConstraints.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Constructions/UsingVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Constructions/UsingVariable.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Constructions/YieldReturn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Constructions/YieldReturn.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/ControlFlows/Default.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/ControlFlows/Default.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/ControlFlows/For.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/ControlFlows/For.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/ControlFlows/Foreach.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/ControlFlows/Foreach.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/ControlFlows/Goto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/ControlFlows/Goto.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/ControlFlows/If.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/ControlFlows/If.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/ControlFlows/Iterator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/ControlFlows/Iterator.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/ControlFlows/Return.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/ControlFlows/Return.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/ControlFlows/Switch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/ControlFlows/Switch.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/ControlFlows/Throw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/ControlFlows/Throw.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/ControlFlows/While.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/ControlFlows/While.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/EnumDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/EnumDeclaration.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Label.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Label.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Locals/CatchVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Locals/CatchVariable.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Locals/DynamicVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Locals/DynamicVariable.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Locals/ForControlVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Locals/ForControlVariable.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Locals/ForeachControlVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Locals/ForeachControlVariable.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Locals/OutVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Locals/OutVariable.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Locals/PatternVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Locals/PatternVariable.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Locals/RangeVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Locals/RangeVariable.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Locals/SimpleVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Locals/SimpleVariable.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Locals/UsingVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Locals/UsingVariable.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Locals/ValueTupleVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Locals/ValueTupleVariable.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Members/ConstantMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Members/ConstantMember.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Members/InstanceEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Members/InstanceEvent.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Members/InstanceField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Members/InstanceField.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Members/InstanceProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Members/InstanceProperty.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Members/TypeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Members/TypeEvent.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Members/TypeField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Members/TypeField.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Members/TypeProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Members/TypeProperty.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Methods/Constructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Methods/Constructor.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Methods/Destructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Methods/Destructor.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Methods/ExtensionMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Methods/ExtensionMethod.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Methods/LocalMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Methods/LocalMethod.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Methods/Method.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Methods/Method.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Methods/StaticConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Methods/StaticConstructor.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Methods/StaticMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Methods/StaticMethod.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Namespaces/Alias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Namespaces/Alias.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Namespaces/CustomAlias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Namespaces/CustomAlias.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Namespaces/InsideNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Namespaces/InsideNamespace.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Namespaces/SimpleDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Namespaces/SimpleDeclaration.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Namespaces/StaticType.cs: -------------------------------------------------------------------------------- 1 | using static System.Threading.Barrier; -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Namespaces/TypeAlias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Namespaces/TypeAlias.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Parameters/DelegateParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Parameters/DelegateParameter.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Parameters/LambdaParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Parameters/LambdaParameter.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Parameters/Optional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Parameters/Optional.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Parameters/RefOutIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Parameters/RefOutIn.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Parameters/SimpleParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Parameters/SimpleParameter.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Parameters/Variable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Parameters/Variable.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Types/ClassType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Types/ClassType.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Types/DelegateType.cs: -------------------------------------------------------------------------------- 1 | namespace CSharpIdentifiers.Declarations.Types 2 | { 3 | internal delegate void Handle(); 4 | } -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Types/EnumType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Types/EnumType.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Types/InterfaceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Types/InterfaceType.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Types/StructureType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Types/StructureType.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Declarations/Types/TypeParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Declarations/Types/TypeParameter.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/SimpleExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/SimpleExample.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/XmlDocComment/CrefAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/XmlDocComment/CrefAttribute.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/XmlDocComment/Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/XmlDocComment/Exception.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/XmlDocComment/NameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/XmlDocComment/NameAttribute.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/XmlDocComment/Param.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/XmlDocComment/Param.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/XmlDocComment/ParamRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/XmlDocComment/ParamRef.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/XmlDocComment/Permission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/XmlDocComment/Permission.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/XmlDocComment/See.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/XmlDocComment/See.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/XmlDocComment/SeeAlso.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/XmlDocComment/SeeAlso.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/XmlDocComment/Typeparam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/XmlDocComment/Typeparam.cs -------------------------------------------------------------------------------- /tests/Identifiers/CSharpIdentifiers/XmlDocComment/Typeparamref.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/CSharpIdentifiers/XmlDocComment/Typeparamref.cs -------------------------------------------------------------------------------- /tests/Identifiers/Identifiers.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/Identifiers.sln -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/EnumAccess.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/EnumAccess.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Locals/FunctionVariable.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Locals/FunctionVariable.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Locals/SimpleVariable.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Locals/SimpleVariable.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Locals/StaticVariable.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Locals/StaticVariable.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Locals/ValueTupleVariable.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Locals/ValueTupleVariable.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Members/ConstantMember.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Members/ConstantMember.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Members/InstanceEvent.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Members/InstanceEvent.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Members/InstanceField.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Members/InstanceField.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Members/InstanceProperty.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Members/InstanceProperty.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Members/ModuleEvent.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Members/ModuleEvent.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Members/ModuleField.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Members/ModuleField.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Members/ModuleProperty.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Members/ModuleProperty.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Members/TypeEvent.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Members/TypeEvent.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Members/TypeField.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Members/TypeField.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Members/TypeProperty.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Members/TypeProperty.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Members/WithEventsProperty.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Members/WithEventsProperty.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Methods/ExtensionMethod.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Methods/ExtensionMethod.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Methods/FunctionMethod.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Methods/FunctionMethod.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Methods/ModuleMethod.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Methods/ModuleMethod.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Methods/SharedMethod.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Methods/SharedMethod.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Methods/SubMethod.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Methods/SubMethod.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Namespaces/AliasNamespace.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Namespaces/AliasNamespace.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Namespaces/CustomNamespace.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Namespaces/CustomNamespace.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Namespaces/Namespace.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Namespaces/Namespace.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Parameters/ByValRef.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Parameters/ByValRef.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Parameters/DelegateParameter.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Parameters/DelegateParameter.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Parameters/OptionalParameter.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Parameters/OptionalParameter.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Parameters/Variable.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Parameters/Variable.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Types/ClassType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Types/ClassType.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Types/DelegateType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Types/DelegateType.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Types/EnumType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Types/EnumType.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Types/InterfaceType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Types/InterfaceType.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Types/ModuleType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Types/ModuleType.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Types/StructureType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Types/StructureType.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Access/Types/TypeParameter.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Access/Types/TypeParameter.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/AnalyzeOptions/LocalVariable.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/AnalyzeOptions/LocalVariable.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/AnalyzeOptions/Member.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/AnalyzeOptions/Member.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/AnalyzeOptions/Method.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/AnalyzeOptions/Method.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/AnalyzeOptions/Namespace.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/AnalyzeOptions/Namespace.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/AnalyzeOptions/ParameterOption.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/AnalyzeOptions/ParameterOption.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Constructions/If.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Constructions/If.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Constructions/Nameof.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Constructions/Nameof.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Constructions/Throw.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Constructions/Throw.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Constructions/TypeConstraints.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Constructions/TypeConstraints.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Constructions/Using.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Constructions/Using.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Constructions/With.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Constructions/With.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/ControlFlows/DoLoop.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/ControlFlows/DoLoop.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/ControlFlows/Exit.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/ControlFlows/Exit.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/ControlFlows/For.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/ControlFlows/For.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/ControlFlows/ForEach.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/ControlFlows/ForEach.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/ControlFlows/Goto.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/ControlFlows/Goto.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/ControlFlows/If.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/ControlFlows/If.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/ControlFlows/Iterator.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/ControlFlows/Iterator.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/ControlFlows/Return.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/ControlFlows/Return.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/ControlFlows/Select.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/ControlFlows/Select.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/ControlFlows/Throw.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/ControlFlows/Throw.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/ControlFlows/While.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/ControlFlows/While.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/EnumDeclaration.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/EnumDeclaration.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Locals/CatchVariable.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Locals/CatchVariable.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Locals/ForVariable.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Locals/ForVariable.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Locals/ForeachVariable.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Locals/ForeachVariable.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Locals/FunctionVariable.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Locals/FunctionVariable.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Locals/RangeVariable.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Locals/RangeVariable.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Locals/SimpleVariable.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Locals/SimpleVariable.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Locals/StaticVariable.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Locals/StaticVariable.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Locals/UsingVariable.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Locals/UsingVariable.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Locals/ValueTupleVariable.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Locals/ValueTupleVariable.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Locals/WithVariable.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Locals/WithVariable.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Members/ConstantMember.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Members/ConstantMember.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Members/CustomEvent.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Members/CustomEvent.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Members/InstanceEvent.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Members/InstanceEvent.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Members/InstanceField.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Members/InstanceField.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Members/InstanceProperty.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Members/InstanceProperty.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Members/ModuleEvent.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Members/ModuleEvent.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Members/ModuleField.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Members/ModuleField.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Members/ModuleProperty.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Members/ModuleProperty.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Members/TypeEvent.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Members/TypeEvent.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Members/TypeField.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Members/TypeField.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Members/TypeProperty.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Members/TypeProperty.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Members/WithEventsProperty.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Members/WithEventsProperty.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Methods/Constructor.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Methods/Constructor.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Methods/ExtensionMethod.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Methods/ExtensionMethod.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Methods/FunctionMethod.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Methods/FunctionMethod.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Methods/ModuleMethod.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Methods/ModuleMethod.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Methods/SharedMethod.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Methods/SharedMethod.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Methods/StaticConstructor.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Methods/StaticConstructor.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Methods/SubMethod.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Methods/SubMethod.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Namespaces/Alias.vb: -------------------------------------------------------------------------------- 1 | Imports SI = System.IO 2 | -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Namespaces/CustomAlias.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Namespaces/CustomAlias.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Namespaces/Simple.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Namespaces/Simple.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Namespaces/SimpleImport.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Namespaces/SimpleImport.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Namespaces/StaticType.vb: -------------------------------------------------------------------------------- 1 | Imports System.Math -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Namespaces/TypeAlias.vb: -------------------------------------------------------------------------------- 1 | Imports SM = System.Math 2 | -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Parameters/ByValRef.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Parameters/ByValRef.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Parameters/DelegateParameter.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Parameters/DelegateParameter.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Parameters/OptionalParameter.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Parameters/OptionalParameter.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Parameters/SimpleParameter.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Parameters/SimpleParameter.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Parameters/TypeCharacter.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Parameters/TypeCharacter.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Parameters/Variable.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Parameters/Variable.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Types/ClassType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Types/ClassType.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Types/DelegateType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Types/DelegateType.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Types/EnumType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Types/EnumType.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Types/InterfaceType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Types/InterfaceType.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Types/ModuleType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Types/ModuleType.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Types/StructureType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Types/StructureType.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Declarations/Types/TypeParameter.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Declarations/Types/TypeParameter.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/Example.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/Example.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/My Project/Application.Designer.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/My Project/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/My Project/Application.myapp -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/My Project/Resources.resx -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/My Project/Settings.settings -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/VisualBasicIdentifiers.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/VisualBasicIdentifiers.vbproj -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/XmlDocComment/CrefAttribute.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/XmlDocComment/CrefAttribute.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/XmlDocComment/Exception.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/XmlDocComment/Exception.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/XmlDocComment/NameAttribute.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/XmlDocComment/NameAttribute.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/XmlDocComment/Param.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/XmlDocComment/Param.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/XmlDocComment/ParamRef.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/XmlDocComment/ParamRef.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/XmlDocComment/Permission.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/XmlDocComment/Permission.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/XmlDocComment/See.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/XmlDocComment/See.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/XmlDocComment/SeeAlso.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/XmlDocComment/SeeAlso.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/XmlDocComment/TypeParam.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/XmlDocComment/TypeParam.vb -------------------------------------------------------------------------------- /tests/Identifiers/VisualBasicIdentifiers/XmlDocComment/TypeParamRef.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeAlexandria/CoCo/HEAD/tests/Identifiers/VisualBasicIdentifiers/XmlDocComment/TypeParamRef.vb --------------------------------------------------------------------------------