├── .editorconfig ├── .gitattributes ├── .gitignore ├── README.md ├── icon.png ├── install ├── .gitignore └── resharper-angularjs.nuspec ├── license.txt ├── src ├── resharper-angularjs.sln ├── resharper-angularjs.sln.DotSettings └── resharper-angularjs │ ├── Daemon │ └── AngularJs │ │ └── Stages │ │ ├── AngularJsDaemonStageBase.cs │ │ ├── AngularJsIdentifierHighlighterProcess.cs │ │ └── IdentifierHighlightingStage.cs │ ├── Feature │ └── Services │ │ ├── Caches │ │ ├── AngularJsCache.cs │ │ ├── AngularJsCacheItems.cs │ │ ├── AngularJsCacheItemsBuilder.cs │ │ ├── Directive.cs │ │ ├── DirectiveUtil.cs │ │ ├── Filter.cs │ │ ├── JsDocFileProcessor.cs │ │ ├── JsInvocationProcessor.cs │ │ └── Parameter.cs │ │ ├── CodeCompletion │ │ ├── AbbreviatedItemsProvider.cs │ │ ├── AbbreviatedTextLookupItem.cs │ │ ├── OverriddenAngularJsItemsRemover.cs │ │ └── WrappedDynamicLookupItem.cs │ │ └── Descriptions │ │ └── AngularJsHtmlElementDescriptionProvider.cs │ ├── Hacks │ ├── CodeCompletion │ │ ├── AutomaticTagItemsProvider.cs │ │ └── TemplateWithNonDefaultPrefixesItemsProvider.cs │ └── LiveTemplates │ │ └── Scope │ │ ├── DelegatingScopePoint.cs │ │ ├── JsAllowedPrefixes.cs │ │ ├── NonDefaultPrefixJavaScriptScopeProvider.cs │ │ ├── NonDefaultPrefixWrappingScopeProvider.cs │ │ ├── ReplacingAllowedPrefixCharsScopePoint.cs │ │ └── TypeScriptFilePrefixScopeProvider.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Psi │ ├── AngularJs │ │ ├── AngularJsLanguage.cs │ │ ├── AngularJsLanguageService.cs │ │ ├── CodeStyle │ │ │ ├── AngularJsCodeFormatter.cs │ │ │ ├── AngularJsFormattingInfoProvider.cs │ │ │ └── AngularJsIndentingInfoProvider.cs │ │ ├── InjectedPsiProvider.cs │ │ ├── Parsing │ │ │ ├── Angular.lex │ │ │ ├── AngularJsLexer.cs │ │ │ ├── AngularJsParser.cs │ │ │ ├── AngularJsTokenType.Tokens.xml │ │ │ ├── AngularJsTokenType.cs │ │ │ ├── AngularJsTokenType.generated.cs │ │ │ ├── AngularJsTreeBuilder.cs │ │ │ ├── Angular_lex.cs │ │ │ └── Tree │ │ │ │ ├── AngularJsElementType.cs │ │ │ │ ├── FilterArgumentList.cs │ │ │ │ ├── FilterExpression.8.2.cs │ │ │ │ ├── FilterExpression.9.0.cs │ │ │ │ ├── FilterExpression.cs │ │ │ │ ├── RepeatExpression.8.2.cs │ │ │ │ ├── RepeatExpression.9.0.cs │ │ │ │ └── RepeatExpression.cs │ │ ├── References │ │ │ ├── AngularJsFileLateBoundReference.cs │ │ │ ├── AngularJsFolderLateBoundReference.cs │ │ │ ├── AngularJsIncludeFileReferenceProvider.cs │ │ │ ├── AngularJsReferenceFactoryBase.cs │ │ │ └── IgnoreRootPathFilter.cs │ │ └── Tree │ │ │ ├── AngularJsFileData.cs │ │ │ └── AngularJsNodeTypes.cs │ ├── Html │ │ ├── AngularJsDeclaredElementIconProvider.cs │ │ ├── AngularJsHtmlAttributeDeclaredElement.cs │ │ ├── AngularJsHtmlElementsProvider.cs │ │ ├── AngularJsHtmlTagDeclaredElement.cs │ │ └── IAngularJsDeclaredElement.cs │ └── JavaScript │ │ └── Resolve │ │ └── AngularServiceTypeInfoSupplier.cs │ ├── Resources │ └── Logo │ │ ├── ThemedIcons.Logo.Generated.Xaml │ │ ├── ThemedIcons.Logo.Generated.cs │ │ └── angularjs-logo.xaml │ ├── TreeNodeExtensions.cs │ ├── ZoneMarker.cs │ ├── resharper-angularjs.csproj │ ├── resharper-angularjs.csproj.DotSettings │ └── templates.dotSettings ├── test ├── data │ ├── Caches │ │ ├── CacheDefaultAngularDirectives12.gold │ │ ├── CacheDefaultAngularDirectives13.gold │ │ ├── CacheDefaultAngularDirectives14.gold │ │ ├── CacheDefaultAngularFilters12.gold │ │ ├── CacheDefaultAngularFilters13.gold │ │ ├── CacheDefaultAngularFilters14.gold │ │ ├── DirectiveFromSourceWithInjectedFunction.gold │ │ ├── DirectiveFromSourceWithInjectedFunction.js │ │ ├── DirectiveFromSourceWithRestrictProperty.gold │ │ ├── DirectiveFromSourceWithRestrictProperty.js │ │ ├── SimpleDirectiveFromSource.gold │ │ └── SimpleDirectiveFromSource.js │ ├── CodeCompletion │ │ ├── Double │ │ │ └── List │ │ │ │ ├── ShowAllItemsOnDoubleCompletionWithNoPrefix.html │ │ │ │ ├── ShowAllItemsOnDoubleCompletionWithNoPrefix.html12.gold │ │ │ │ ├── ShowAllItemsOnDoubleCompletionWithNoPrefix.html13.gold │ │ │ │ ├── ShowAllItemsOnDoubleCompletionWithNoPrefix.html14.gold │ │ │ │ ├── ShowMatchingItemsOnDoubleCompletionWithPrefix.html │ │ │ │ ├── ShowMatchingItemsOnDoubleCompletionWithPrefix.html12.gold │ │ │ │ ├── ShowMatchingItemsOnDoubleCompletionWithPrefix.html13.gold │ │ │ │ └── ShowMatchingItemsOnDoubleCompletionWithPrefix.html14.gold │ │ └── List │ │ │ ├── DoesNotIncludeAttributesAlreadyUsed.html │ │ │ ├── DoesNotIncludeAttributesAlreadyUsed.html12.gold │ │ │ ├── DoesNotIncludeAttributesAlreadyUsed.html13.gold │ │ │ ├── DoesNotIncludeAttributesAlreadyUsed.html14.gold │ │ │ ├── ShowAbbreviationsWithMatchingPrefix.html │ │ │ ├── ShowAbbreviationsWithMatchingPrefix.html12.gold │ │ │ ├── ShowAbbreviationsWithMatchingPrefix.html13.gold │ │ │ ├── ShowAbbreviationsWithMatchingPrefix.html14.gold │ │ │ ├── ShowAbbreviationsWithNoPrefix.html │ │ │ ├── ShowAbbreviationsWithNoPrefix.html12.gold │ │ │ ├── ShowAbbreviationsWithNoPrefix.html13.gold │ │ │ ├── ShowAbbreviationsWithNoPrefix.html14.gold │ │ │ ├── ShowItemsWithCaretInMiddleOfCompletionPrefix.html │ │ │ ├── ShowItemsWithCaretInMiddleOfCompletionPrefix.html12.gold │ │ │ ├── ShowItemsWithCaretInMiddleOfCompletionPrefix.html13.gold │ │ │ ├── ShowItemsWithCaretInMiddleOfCompletionPrefix.html14.gold │ │ │ ├── ShowItemsWithExactAbbreviationMatch.html │ │ │ ├── ShowItemsWithExactAbbreviationMatch.html12.gold │ │ │ ├── ShowItemsWithExactAbbreviationMatch.html13.gold │ │ │ ├── ShowItemsWithExactAbbreviationMatch.html14.gold │ │ │ ├── ShowItemsWithPatternAbbreviationMatch.html │ │ │ ├── ShowItemsWithPatternAbbreviationMatch.html12.gold │ │ │ ├── ShowItemsWithPatternAbbreviationMatch.html13.gold │ │ │ ├── ShowItemsWithPatternAbbreviationMatch.html14.gold │ │ │ ├── ShowItemsWithPatternIncludingAbbreviation.html │ │ │ ├── ShowItemsWithPatternIncludingAbbreviation.html12.gold │ │ │ ├── ShowItemsWithPatternIncludingAbbreviation.html13.gold │ │ │ ├── ShowItemsWithPatternIncludingAbbreviation.html14.gold │ │ │ ├── ShowItemsWithPatternNotIncludingAbbreviation.html │ │ │ ├── ShowItemsWithPatternNotIncludingAbbreviation.html12.gold │ │ │ ├── ShowItemsWithPatternNotIncludingAbbreviation.html13.gold │ │ │ └── ShowItemsWithPatternNotIncludingAbbreviation.html14.gold │ ├── angular.1.2.28.js │ ├── angular.1.3.15.js │ ├── angular.1.4.0.js │ ├── nuget.config │ └── psi │ │ ├── Html │ │ └── ElementsProvider │ │ │ ├── GetAllAttributesSymbolTable12.gold │ │ │ ├── GetAllAttributesSymbolTable13.gold │ │ │ ├── GetAllAttributesSymbolTable14.gold │ │ │ ├── GetAllTagsSymbolTable12.gold │ │ │ ├── GetAllTagsSymbolTable13.gold │ │ │ ├── GetAllTagsSymbolTable14.gold │ │ │ ├── GetAttributeInfoForCommonAttributes12.gold │ │ │ ├── GetAttributeInfoForCommonAttributes13.gold │ │ │ ├── GetAttributeInfoForCommonAttributes14.gold │ │ │ ├── GetAttributeInfoForSpecificTag12.gold │ │ │ ├── GetAttributeInfoForSpecificTag13.gold │ │ │ ├── GetAttributeInfoForSpecificTag14.gold │ │ │ ├── GetCommonAttributesSymbolTable12.gold │ │ │ ├── GetCommonAttributesSymbolTable13.gold │ │ │ ├── GetCommonAttributesSymbolTable14.gold │ │ │ ├── GetTagForAngularTag12.gold │ │ │ ├── GetTagForAngularTag13.gold │ │ │ └── GetTagForAngularTag14.gold │ │ ├── JavaScript │ │ └── Resolve │ │ │ └── DependencyInjection │ │ │ ├── InjectBuiltinServices.js │ │ │ ├── InjectBuiltinServices.js.gold │ │ │ ├── InjectBuiltinServicesByStringLiteral.js │ │ │ ├── InjectBuiltinServicesByStringLiteral.js.gold │ │ │ ├── InjectByStringLiteral.js │ │ │ ├── InjectByStringLiteral.js.gold │ │ │ ├── InjectFactory.js │ │ │ ├── InjectFactory.js.gold │ │ │ ├── InjectFunctionConstant.js │ │ │ ├── InjectFunctionConstant.js.gold │ │ │ ├── InjectFunctionValue.js │ │ │ ├── InjectFunctionValue.js.gold │ │ │ ├── InjectIntoAnimation.js │ │ │ ├── InjectIntoAnimation.js.gold │ │ │ ├── InjectIntoConfig.js │ │ │ ├── InjectIntoConfig.js.gold │ │ │ ├── InjectIntoController.js │ │ │ ├── InjectIntoController.js.gold │ │ │ ├── InjectIntoDirective.js │ │ │ ├── InjectIntoDirective.js.gold │ │ │ ├── InjectIntoFactory.js │ │ │ ├── InjectIntoFactory.js.gold │ │ │ ├── InjectIntoFilter.js │ │ │ ├── InjectIntoFilter.js.gold │ │ │ ├── InjectIntoProvider.js │ │ │ ├── InjectIntoProvider.js.gold │ │ │ ├── InjectIntoRun.js │ │ │ ├── InjectIntoRun.js.gold │ │ │ ├── InjectIntoService.js │ │ │ ├── InjectIntoService.js.gold │ │ │ ├── InjectNumberConstant.js │ │ │ ├── InjectNumberConstant.js.gold │ │ │ ├── InjectProvider.js │ │ │ ├── InjectProvider.js.gold │ │ │ ├── InjectProviderValue.js │ │ │ ├── InjectProviderValue.js.gold │ │ │ ├── InjectService.js │ │ │ ├── InjectService.js.gold │ │ │ ├── InjectStringConstant.js │ │ │ ├── InjectStringConstant.js.gold │ │ │ ├── InjectStringValue.js │ │ │ └── InjectStringValue.js.gold │ │ ├── lexing │ │ ├── expression.js │ │ ├── expression.js.gold │ │ ├── identifier.js │ │ ├── identifier.js.gold │ │ ├── key_value.js │ │ ├── key_value.js.gold │ │ ├── keyword.js │ │ ├── keyword.js.gold │ │ ├── number.js │ │ ├── number.js.gold │ │ ├── string.js │ │ └── string.js.gold │ │ └── parsing │ │ ├── array.js │ │ ├── array.js.gold │ │ ├── comparison.js │ │ ├── comparison.js.gold │ │ ├── expressions.js │ │ ├── filters.js │ │ ├── filters.js.gold │ │ ├── in.js │ │ ├── in.js.gold │ │ ├── logical.js │ │ ├── logical.js.gold │ │ ├── object.js │ │ ├── object.js.gold │ │ ├── repeat_expressions.js │ │ ├── repeat_expressions.js.gold │ │ ├── statements.js │ │ ├── statements.js.gold │ │ ├── string.js │ │ ├── string.js.gold │ │ ├── ternary.js │ │ └── ternary.js.gold └── src │ └── test.resharper-angularjs │ ├── AngularJsTestVersions.cs │ ├── Feature │ └── Services │ │ ├── Caches │ │ ├── DirectivesCacheTest.cs │ │ └── FiltersCacheTest.cs │ │ └── CodeCompletion │ │ ├── AngularJsAttributesCompletionListTest.cs │ │ └── AngularJsAttributesDoubleCompletionListTest.cs │ ├── Psi │ ├── AngularJs │ │ ├── AngularJsLanguageTests.cs │ │ └── Parsing │ │ │ ├── AngularJsLexerTest.cs │ │ │ └── AngularJsParserTest.cs │ ├── Html │ │ └── AngularJsHtmlElementsProviderTest.cs │ └── JavaScript │ │ ├── DependencyInjectionTest.cs │ │ └── JavaScriptResolveTestBase.cs │ ├── TestEnvironment.cs │ ├── tests.csproj │ └── tests.csproj.DotSettings └── updates.xslt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/README.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/icon.png -------------------------------------------------------------------------------- /install/.gitignore: -------------------------------------------------------------------------------- 1 | AngularJS*/ 2 | *.zip 3 | *.nupkg 4 | -------------------------------------------------------------------------------- /install/resharper-angularjs.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/install/resharper-angularjs.nuspec -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/license.txt -------------------------------------------------------------------------------- /src/resharper-angularjs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs.sln -------------------------------------------------------------------------------- /src/resharper-angularjs.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs.sln.DotSettings -------------------------------------------------------------------------------- /src/resharper-angularjs/Daemon/AngularJs/Stages/AngularJsDaemonStageBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Daemon/AngularJs/Stages/AngularJsDaemonStageBase.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Daemon/AngularJs/Stages/AngularJsIdentifierHighlighterProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Daemon/AngularJs/Stages/AngularJsIdentifierHighlighterProcess.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Daemon/AngularJs/Stages/IdentifierHighlightingStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Daemon/AngularJs/Stages/IdentifierHighlightingStage.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Feature/Services/Caches/AngularJsCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Feature/Services/Caches/AngularJsCache.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Feature/Services/Caches/AngularJsCacheItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Feature/Services/Caches/AngularJsCacheItems.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Feature/Services/Caches/AngularJsCacheItemsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Feature/Services/Caches/AngularJsCacheItemsBuilder.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Feature/Services/Caches/Directive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Feature/Services/Caches/Directive.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Feature/Services/Caches/DirectiveUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Feature/Services/Caches/DirectiveUtil.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Feature/Services/Caches/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Feature/Services/Caches/Filter.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Feature/Services/Caches/JsDocFileProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Feature/Services/Caches/JsDocFileProcessor.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Feature/Services/Caches/JsInvocationProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Feature/Services/Caches/JsInvocationProcessor.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Feature/Services/Caches/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Feature/Services/Caches/Parameter.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Feature/Services/CodeCompletion/AbbreviatedItemsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Feature/Services/CodeCompletion/AbbreviatedItemsProvider.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Feature/Services/CodeCompletion/AbbreviatedTextLookupItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Feature/Services/CodeCompletion/AbbreviatedTextLookupItem.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Feature/Services/CodeCompletion/OverriddenAngularJsItemsRemover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Feature/Services/CodeCompletion/OverriddenAngularJsItemsRemover.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Feature/Services/CodeCompletion/WrappedDynamicLookupItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Feature/Services/CodeCompletion/WrappedDynamicLookupItem.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Feature/Services/Descriptions/AngularJsHtmlElementDescriptionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Feature/Services/Descriptions/AngularJsHtmlElementDescriptionProvider.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Hacks/CodeCompletion/AutomaticTagItemsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Hacks/CodeCompletion/AutomaticTagItemsProvider.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Hacks/CodeCompletion/TemplateWithNonDefaultPrefixesItemsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Hacks/CodeCompletion/TemplateWithNonDefaultPrefixesItemsProvider.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Hacks/LiveTemplates/Scope/DelegatingScopePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Hacks/LiveTemplates/Scope/DelegatingScopePoint.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Hacks/LiveTemplates/Scope/JsAllowedPrefixes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Hacks/LiveTemplates/Scope/JsAllowedPrefixes.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Hacks/LiveTemplates/Scope/NonDefaultPrefixJavaScriptScopeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Hacks/LiveTemplates/Scope/NonDefaultPrefixJavaScriptScopeProvider.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Hacks/LiveTemplates/Scope/NonDefaultPrefixWrappingScopeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Hacks/LiveTemplates/Scope/NonDefaultPrefixWrappingScopeProvider.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Hacks/LiveTemplates/Scope/ReplacingAllowedPrefixCharsScopePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Hacks/LiveTemplates/Scope/ReplacingAllowedPrefixCharsScopePoint.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Hacks/LiveTemplates/Scope/TypeScriptFilePrefixScopeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Hacks/LiveTemplates/Scope/TypeScriptFilePrefixScopeProvider.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/AngularJsLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/AngularJsLanguage.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/AngularJsLanguageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/AngularJsLanguageService.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/CodeStyle/AngularJsCodeFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/CodeStyle/AngularJsCodeFormatter.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/CodeStyle/AngularJsFormattingInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/CodeStyle/AngularJsFormattingInfoProvider.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/CodeStyle/AngularJsIndentingInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/CodeStyle/AngularJsIndentingInfoProvider.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/InjectedPsiProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/InjectedPsiProvider.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/Parsing/Angular.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/Parsing/Angular.lex -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/Parsing/AngularJsLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/Parsing/AngularJsLexer.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/Parsing/AngularJsParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/Parsing/AngularJsParser.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/Parsing/AngularJsTokenType.Tokens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/Parsing/AngularJsTokenType.Tokens.xml -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/Parsing/AngularJsTokenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/Parsing/AngularJsTokenType.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/Parsing/AngularJsTokenType.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/Parsing/AngularJsTokenType.generated.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/Parsing/AngularJsTreeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/Parsing/AngularJsTreeBuilder.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/Parsing/Angular_lex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/Parsing/Angular_lex.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/Parsing/Tree/AngularJsElementType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/Parsing/Tree/AngularJsElementType.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/Parsing/Tree/FilterArgumentList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/Parsing/Tree/FilterArgumentList.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/Parsing/Tree/FilterExpression.8.2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/Parsing/Tree/FilterExpression.8.2.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/Parsing/Tree/FilterExpression.9.0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/Parsing/Tree/FilterExpression.9.0.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/Parsing/Tree/FilterExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/Parsing/Tree/FilterExpression.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/Parsing/Tree/RepeatExpression.8.2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/Parsing/Tree/RepeatExpression.8.2.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/Parsing/Tree/RepeatExpression.9.0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/Parsing/Tree/RepeatExpression.9.0.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/Parsing/Tree/RepeatExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/Parsing/Tree/RepeatExpression.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/References/AngularJsFileLateBoundReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/References/AngularJsFileLateBoundReference.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/References/AngularJsFolderLateBoundReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/References/AngularJsFolderLateBoundReference.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/References/AngularJsIncludeFileReferenceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/References/AngularJsIncludeFileReferenceProvider.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/References/AngularJsReferenceFactoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/References/AngularJsReferenceFactoryBase.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/References/IgnoreRootPathFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/References/IgnoreRootPathFilter.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/Tree/AngularJsFileData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/Tree/AngularJsFileData.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/AngularJs/Tree/AngularJsNodeTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/AngularJs/Tree/AngularJsNodeTypes.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/Html/AngularJsDeclaredElementIconProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/Html/AngularJsDeclaredElementIconProvider.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/Html/AngularJsHtmlAttributeDeclaredElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/Html/AngularJsHtmlAttributeDeclaredElement.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/Html/AngularJsHtmlElementsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/Html/AngularJsHtmlElementsProvider.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/Html/AngularJsHtmlTagDeclaredElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/Html/AngularJsHtmlTagDeclaredElement.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/Html/IAngularJsDeclaredElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/Html/IAngularJsDeclaredElement.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Psi/JavaScript/Resolve/AngularServiceTypeInfoSupplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Psi/JavaScript/Resolve/AngularServiceTypeInfoSupplier.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Resources/Logo/ThemedIcons.Logo.Generated.Xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Resources/Logo/ThemedIcons.Logo.Generated.Xaml -------------------------------------------------------------------------------- /src/resharper-angularjs/Resources/Logo/ThemedIcons.Logo.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Resources/Logo/ThemedIcons.Logo.Generated.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/Resources/Logo/angularjs-logo.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/Resources/Logo/angularjs-logo.xaml -------------------------------------------------------------------------------- /src/resharper-angularjs/TreeNodeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/TreeNodeExtensions.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/ZoneMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/ZoneMarker.cs -------------------------------------------------------------------------------- /src/resharper-angularjs/resharper-angularjs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/resharper-angularjs.csproj -------------------------------------------------------------------------------- /src/resharper-angularjs/resharper-angularjs.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/resharper-angularjs.csproj.DotSettings -------------------------------------------------------------------------------- /src/resharper-angularjs/templates.dotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/src/resharper-angularjs/templates.dotSettings -------------------------------------------------------------------------------- /test/data/Caches/CacheDefaultAngularDirectives12.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/test/data/Caches/CacheDefaultAngularDirectives12.gold -------------------------------------------------------------------------------- /test/data/Caches/CacheDefaultAngularDirectives13.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/test/data/Caches/CacheDefaultAngularDirectives13.gold -------------------------------------------------------------------------------- /test/data/Caches/CacheDefaultAngularDirectives14.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/test/data/Caches/CacheDefaultAngularDirectives14.gold -------------------------------------------------------------------------------- /test/data/Caches/CacheDefaultAngularFilters12.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/test/data/Caches/CacheDefaultAngularFilters12.gold -------------------------------------------------------------------------------- /test/data/Caches/CacheDefaultAngularFilters13.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/test/data/Caches/CacheDefaultAngularFilters13.gold -------------------------------------------------------------------------------- /test/data/Caches/CacheDefaultAngularFilters14.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/test/data/Caches/CacheDefaultAngularFilters14.gold -------------------------------------------------------------------------------- /test/data/Caches/DirectiveFromSourceWithInjectedFunction.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/test/data/Caches/DirectiveFromSourceWithInjectedFunction.gold -------------------------------------------------------------------------------- /test/data/Caches/DirectiveFromSourceWithInjectedFunction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/test/data/Caches/DirectiveFromSourceWithInjectedFunction.js -------------------------------------------------------------------------------- /test/data/Caches/DirectiveFromSourceWithRestrictProperty.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/test/data/Caches/DirectiveFromSourceWithRestrictProperty.gold -------------------------------------------------------------------------------- /test/data/Caches/DirectiveFromSourceWithRestrictProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/test/data/Caches/DirectiveFromSourceWithRestrictProperty.js -------------------------------------------------------------------------------- /test/data/Caches/SimpleDirectiveFromSource.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/test/data/Caches/SimpleDirectiveFromSource.gold -------------------------------------------------------------------------------- /test/data/Caches/SimpleDirectiveFromSource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/test/data/Caches/SimpleDirectiveFromSource.js -------------------------------------------------------------------------------- /test/data/CodeCompletion/Double/List/ShowAllItemsOnDoubleCompletionWithNoPrefix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/test/data/CodeCompletion/Double/List/ShowAllItemsOnDoubleCompletionWithNoPrefix.html -------------------------------------------------------------------------------- /test/data/CodeCompletion/Double/List/ShowAllItemsOnDoubleCompletionWithNoPrefix.html12.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/test/data/CodeCompletion/Double/List/ShowAllItemsOnDoubleCompletionWithNoPrefix.html12.gold -------------------------------------------------------------------------------- /test/data/CodeCompletion/Double/List/ShowAllItemsOnDoubleCompletionWithNoPrefix.html13.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/test/data/CodeCompletion/Double/List/ShowAllItemsOnDoubleCompletionWithNoPrefix.html13.gold -------------------------------------------------------------------------------- /test/data/CodeCompletion/Double/List/ShowAllItemsOnDoubleCompletionWithNoPrefix.html14.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/test/data/CodeCompletion/Double/List/ShowAllItemsOnDoubleCompletionWithNoPrefix.html14.gold -------------------------------------------------------------------------------- /test/data/CodeCompletion/Double/List/ShowMatchingItemsOnDoubleCompletionWithPrefix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/test/data/CodeCompletion/Double/List/ShowMatchingItemsOnDoubleCompletionWithPrefix.html -------------------------------------------------------------------------------- /test/data/CodeCompletion/Double/List/ShowMatchingItemsOnDoubleCompletionWithPrefix.html12.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/test/data/CodeCompletion/Double/List/ShowMatchingItemsOnDoubleCompletionWithPrefix.html12.gold -------------------------------------------------------------------------------- /test/data/CodeCompletion/Double/List/ShowMatchingItemsOnDoubleCompletionWithPrefix.html13.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/test/data/CodeCompletion/Double/List/ShowMatchingItemsOnDoubleCompletionWithPrefix.html13.gold -------------------------------------------------------------------------------- /test/data/CodeCompletion/Double/List/ShowMatchingItemsOnDoubleCompletionWithPrefix.html14.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/test/data/CodeCompletion/Double/List/ShowMatchingItemsOnDoubleCompletionWithPrefix.html14.gold -------------------------------------------------------------------------------- /test/data/CodeCompletion/List/DoesNotIncludeAttributesAlreadyUsed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/test/data/CodeCompletion/List/DoesNotIncludeAttributesAlreadyUsed.html -------------------------------------------------------------------------------- /test/data/CodeCompletion/List/DoesNotIncludeAttributesAlreadyUsed.html12.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/test/data/CodeCompletion/List/DoesNotIncludeAttributesAlreadyUsed.html12.gold -------------------------------------------------------------------------------- /test/data/CodeCompletion/List/DoesNotIncludeAttributesAlreadyUsed.html13.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/test/data/CodeCompletion/List/DoesNotIncludeAttributesAlreadyUsed.html13.gold -------------------------------------------------------------------------------- /test/data/CodeCompletion/List/DoesNotIncludeAttributesAlreadyUsed.html14.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-angularjs/HEAD/test/data/CodeCompletion/List/DoesNotIncludeAttributesAlreadyUsed.html14.gold -------------------------------------------------------------------------------- /test/data/CodeCompletion/List/ShowAbbreviationsWithMatchingPrefix.html: -------------------------------------------------------------------------------- 1 | 2 |