├── .circleci └── config.yml ├── .editorconfig ├── .eslintignore ├── .eslintrc.cjs ├── .gitattributes ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .prettierrc.json ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── _code-dep └── index.ts ├── client ├── .eslintrc.cjs ├── package-lock.json ├── package.json ├── src │ ├── extension.ts │ ├── feature │ │ ├── relatedFiles.ts │ │ └── userInput │ │ │ ├── multiStepInput.ts │ │ │ └── userInput.ts │ └── shared │ │ ├── constants.ts │ │ └── types │ │ └── types.ts └── tsconfig.json ├── docs ├── developer │ ├── adding-new-command.md │ ├── architechture.md │ ├── architecture-graph.md │ ├── corner-cases.md │ ├── decisions.md │ ├── design.md │ ├── developers.md │ ├── how-to-use.md │ ├── new-features.md │ ├── performance.md │ ├── term-and-abbreviations.md │ └── testing.md └── user │ ├── README.md │ ├── codeActions.readme.md │ ├── commands.readme.md │ ├── completions.readme.md │ ├── definitions.readme.md │ ├── rename.readme.md │ └── symbols.readme.md ├── images ├── architecture.png ├── aurelia-logo.png ├── completions-complex.png ├── completions.gif ├── completions.png ├── definitions.png ├── dependencygraph.png ├── logo.png └── symbols.png ├── jest.config.js ├── language-configuration.json ├── package.json ├── server ├── .eslintrc.cjs ├── package-lock.json ├── package.json ├── src │ ├── aot │ │ ├── AureliaComponents.ts │ │ ├── AureliaProgram.ts │ │ ├── aotTypes.ts │ │ ├── getAureliaComponentList.ts │ │ ├── parser │ │ │ ├── parser-types.ts │ │ │ └── regions │ │ │ │ ├── RegionParser.ts │ │ │ │ ├── ViewRegions.ts │ │ │ │ ├── ViewRegionsVisitor.ts │ │ │ │ ├── findSpecificRegion.ts │ │ │ │ ├── languageServer │ │ │ │ ├── AbstractRegionLanguageService.ts │ │ │ │ ├── AttributeInterpolationLanguageService.ts │ │ │ │ ├── AttributeLanguageService.ts │ │ │ │ ├── AureliaHtmlLanguageService.ts │ │ │ │ ├── BindableAttributeLanguageService.ts │ │ │ │ ├── CustomElementLanguageService.ts │ │ │ │ ├── ImportLanguageService.ts │ │ │ │ ├── RepeatForLanguageService.ts │ │ │ │ ├── TextInterpolationLanguageService.ts │ │ │ │ └── ValueConverterLanguageService.ts │ │ │ │ ├── rangeFromRegion.ts │ │ │ │ └── visitors │ │ │ │ └── RegionLanguageServerVisitor.ts │ │ ├── staticAnalysis │ │ │ ├── ConventionService.ts │ │ │ ├── CustomElementAnalyser.ts │ │ │ └── ValueConverterAnalyser.ts │ │ └── tsMorph │ │ │ ├── AureliaTsMorph.ts │ │ │ └── tsMorphClass.ts │ ├── common │ │ ├── @aurelia-runtime-patch │ │ │ └── src │ │ │ │ ├── README.md │ │ │ │ ├── alias.ts │ │ │ │ ├── binding-behavior.ts │ │ │ │ ├── binding │ │ │ │ ├── ast.ts │ │ │ │ ├── connectable.ts │ │ │ │ └── expression-parser.ts │ │ │ │ ├── index.ts │ │ │ │ ├── observation.ts │ │ │ │ ├── observation │ │ │ │ ├── array-observer.ts │ │ │ │ ├── binding-context.ts │ │ │ │ ├── collection-length-observer.ts │ │ │ │ ├── computed-observer.ts │ │ │ │ ├── connectable-switcher.ts │ │ │ │ ├── dirty-checker.ts │ │ │ │ ├── flush-queue.ts │ │ │ │ ├── map-observer.ts │ │ │ │ ├── observable.ts │ │ │ │ ├── observation.ts │ │ │ │ ├── observer-locator.ts │ │ │ │ ├── primitive-observer.ts │ │ │ │ ├── property-accessor.ts │ │ │ │ ├── proxy-observation.ts │ │ │ │ ├── set-observer.ts │ │ │ │ ├── setter-observer.ts │ │ │ │ ├── signaler.ts │ │ │ │ └── subscriber-collection.ts │ │ │ │ ├── startup-sequence.md │ │ │ │ ├── utilities-objects.ts │ │ │ │ └── value-converter.ts │ │ ├── AureliaUtils.ts │ │ ├── MyLodash.ts │ │ ├── _save.ts │ │ ├── className.ts │ │ ├── client │ │ │ └── client.ts │ │ ├── constants.ts │ │ ├── debugging │ │ │ ├── debuggingSandbox.ts │ │ │ └── saveDataToDisk.ts │ │ ├── diagnosticMessages │ │ │ ├── DiagnosticMessages.ts │ │ │ └── diagnosticMessagesData.ts │ │ ├── documens │ │ │ ├── OffsetUtils.ts │ │ │ ├── PositionUtils.ts │ │ │ ├── TextDocumentUtils.ts │ │ │ ├── find-source-word.ts │ │ │ ├── related.ts │ │ │ ├── selections.ts │ │ │ ├── split-by-word-separators.ts │ │ │ └── xScopeUtils.ts │ │ ├── global.d.ts │ │ ├── logging │ │ │ ├── WallabyUtils.ts │ │ │ ├── errorStackLogging.ts │ │ │ ├── logger.ts │ │ │ └── performance-measure.ts │ │ ├── object │ │ │ └── ObjectUtils.ts │ │ ├── parseExpression │ │ │ └── ParseExpressionUtil.ts │ │ ├── services │ │ │ ├── AnalyzerService.ts │ │ │ └── RegionService.ts │ │ ├── string │ │ │ └── StringUtils.ts │ │ ├── template │ │ │ └── aurelia-attributes.ts │ │ ├── types │ │ │ └── types.ts │ │ └── view │ │ │ ├── document-parsing.ts │ │ │ ├── project-position.ts │ │ │ └── uri-utils.ts │ ├── configuration │ │ └── DocumentSettings.ts │ ├── core │ │ ├── AureliaProjects.ts │ │ ├── aureliaServer.ts │ │ ├── container.ts │ │ └── depdencenyInjection.ts │ ├── feature │ │ ├── codeAction │ │ │ └── onCodeAction.ts │ │ ├── commands │ │ │ ├── declareViewModelVariable │ │ │ │ ├── README.md │ │ │ │ └── declareViewModelVariable.ts │ │ │ ├── extractComponent │ │ │ │ ├── README.md │ │ │ │ └── extractComponent.ts │ │ │ └── onExecuteCommand.ts │ │ ├── completions │ │ │ ├── aureliaKeyWordCompletions.ts │ │ │ ├── completions.ts │ │ │ ├── createAureliaTemplateAttributeCompletions.ts │ │ │ ├── onCompletions.ts │ │ │ ├── virtualCompletion.ts │ │ │ └── virtualCompletion2.ts │ │ ├── content │ │ │ └── changeContent.ts │ │ ├── definition │ │ │ ├── accessScopeDefinition.ts │ │ │ ├── aureliaDefintion.ts │ │ │ ├── onDefinitions.ts │ │ │ └── virtualDefinition.ts │ │ ├── diagnostics │ │ │ └── diagnostics.ts │ │ ├── hover │ │ │ ├── accessScopeHover.ts │ │ │ └── onHover.ts │ │ ├── initialization │ │ │ └── initialization.ts │ │ ├── rename │ │ │ ├── aureliaRename.ts │ │ │ ├── onRenameRequest.ts │ │ │ └── workspaceEdits.ts │ │ ├── save │ │ │ └── saveContent.ts │ │ ├── symbols │ │ │ ├── onDocumentSymbol.ts │ │ │ └── onWorkspaceSymbol.ts │ │ └── virtual │ │ │ ├── README.md │ │ │ └── virtualSourceFile.ts │ ├── project.config.example.ts │ ├── project.config.ts │ └── server.ts └── tsconfig.json ├── syntaxes └── html.json ├── tests ├── .eslintrc.cjs ├── common │ ├── errors │ │ └── TestErrors.ts │ ├── file-path-mocks.ts │ ├── files │ │ └── get-test-dir.ts │ ├── find-project-root.ts │ ├── fixtures │ │ └── get-fixture-dir.ts │ ├── gherkin │ │ └── gherkin-step-table.ts │ └── mock-server │ │ ├── mock-server.ts │ │ └── text-documents.ts ├── dev-test-helpers │ └── cache-cucumber-features.ts ├── features │ ├── capabilities │ │ ├── codeActions │ │ │ └── code-actions.feature │ │ ├── completions │ │ │ ├── completions-aurelia-keywords.feature │ │ │ ├── completions-methods.feature │ │ │ ├── completions-performance.feature │ │ │ ├── completions-value-converters.feature │ │ │ ├── completions-when-to-trigger.feature │ │ │ └── completions.feature │ │ ├── definitions │ │ │ ├── definitions-import-tag.feature │ │ │ ├── definitions-index.feature │ │ │ ├── definitions-upon-file-change.feature │ │ │ ├── definitions-view-model.feature │ │ │ └── definitions.feature │ │ ├── diagnostics │ │ │ └── diagnostics.feature │ │ ├── hover │ │ │ └── hover.feature │ │ ├── rename │ │ │ ├── rename-upon-file-change.feature │ │ │ ├── rename-view-model.feature │ │ │ └── rename-view.feature │ │ └── symbols │ │ │ └── on-document-symbol.feature │ ├── content │ │ └── content-change.feature │ ├── core │ │ ├── AureliaProjects │ │ │ └── AureliaProjects.feature │ │ └── viewmodel │ │ │ └── AureliaComponents.feature │ ├── detecting-on-init.feature │ └── hydrate-on-init.feature ├── jest-cucumber-setup.spec.ts ├── minimal-jest │ ├── index.spec.ts │ ├── index.ts │ ├── minimal.feature │ └── minimal.spec.ts ├── step-definitions │ ├── capabilities │ │ ├── codeAction │ │ │ └── codeAction.spec.ts │ │ ├── common │ │ │ └── common-capabilities.spec.ts │ │ ├── completions.spec.ts │ │ ├── completions │ │ │ └── completions-value-converters.spec.ts │ │ ├── definitions.spec.ts │ │ ├── diagnostics │ │ │ └── diagnostics.spec.ts │ │ ├── hover │ │ │ └── hover.spec.ts │ │ ├── new-common │ │ │ ├── file.step.ts │ │ │ └── project.step.ts │ │ ├── rename │ │ │ └── rename.spec.ts │ │ └── symbols │ │ │ └── documentSymbols.spec.ts │ ├── content │ │ └── content-change.spec.ts │ ├── core │ │ ├── AureliaComponents.spec.ts │ │ └── AureliaProjects.spec.ts │ └── initialization │ │ └── on-initialized │ │ ├── detecting-on-init.spec.ts │ │ └── hydrate-on-init.spec.ts ├── testFixture │ ├── .vscode │ │ └── settings.json │ ├── cli-generated │ │ ├── package.json │ │ ├── src │ │ │ ├── compo-user │ │ │ │ ├── compo-user.html │ │ │ │ └── compo-user.ts │ │ │ ├── just-class-name │ │ │ │ ├── just-class-name.html │ │ │ │ └── just-class-name.ts │ │ │ ├── minimal-component │ │ │ │ ├── minimal-component.html │ │ │ │ └── minimal-component.ts │ │ │ ├── my-compo │ │ │ │ ├── my-compo.html │ │ │ │ └── my-compo.ts │ │ │ ├── realdworld-advanced │ │ │ │ ├── api.ts │ │ │ │ ├── home │ │ │ │ │ ├── index.html │ │ │ │ │ └── index.ts │ │ │ │ ├── resources.d.ts │ │ │ │ ├── settings │ │ │ │ │ ├── index.html │ │ │ │ │ └── index.ts │ │ │ │ └── state.ts │ │ │ ├── value-converters │ │ │ │ ├── sort-value-converter.ts │ │ │ │ └── take-value-converter.ts │ │ │ └── view-model-test │ │ │ │ ├── view-model-test.html │ │ │ │ └── view-model-test.ts │ │ └── tsconfig.json │ ├── monorepo │ │ ├── package-aurelia │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── aurelia.html │ │ │ │ └── aurelia.ts │ │ ├── package-burelia │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── burelia.html │ │ │ │ └── burelia.ts │ │ └── package-c │ │ │ └── package.json │ ├── non-aurelia-project │ │ └── package.json │ └── scoped-for-testing │ │ ├── .aurelia │ │ └── extension │ │ │ └── templates.js │ │ ├── package.json │ │ ├── src │ │ ├── index.html │ │ ├── index.ts │ │ ├── specific │ │ │ ├── numericInput │ │ │ │ ├── numericInput.html │ │ │ │ └── numericInput.ts │ │ │ └── stage4 │ │ │ │ ├── stage4.html │ │ │ │ └── stage4.ts │ │ └── view │ │ │ ├── custom-element │ │ │ ├── custom-element-user.html │ │ │ ├── custom-element-user.ts │ │ │ ├── custom-element.html │ │ │ ├── custom-element.ts │ │ │ ├── other-custom-element-user.html │ │ │ └── other-custom-element-user.ts │ │ │ ├── diagnostics │ │ │ ├── view-diagnostics.html │ │ │ └── view-diagnostics.ts │ │ │ ├── empty-view.html │ │ │ └── empty-view.ts │ │ └── tsconfig.json ├── testLauncher │ ├── cliGenerated.spec.ts │ ├── core.spec.ts │ ├── monorepo.spec.ts │ ├── scopedForTesting.spec.ts │ └── withWallaby.spec.ts ├── tsconfig.json └── unit │ ├── common │ ├── documens │ │ └── find-source-word.spec.ts │ ├── logging │ │ └── errorStackLogging.spec.ts │ └── testTemplate.ts │ └── core │ ├── RegionParser.spec.ts │ └── expression-parser.spec.ts ├── tsconfig.eslint.json ├── tsconfig.json └── wallaby.config.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/README.md -------------------------------------------------------------------------------- /_code-dep/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/_code-dep/index.ts -------------------------------------------------------------------------------- /client/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/client/.eslintrc.cjs -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/client/package.json -------------------------------------------------------------------------------- /client/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/client/src/extension.ts -------------------------------------------------------------------------------- /client/src/feature/relatedFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/client/src/feature/relatedFiles.ts -------------------------------------------------------------------------------- /client/src/feature/userInput/multiStepInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/client/src/feature/userInput/multiStepInput.ts -------------------------------------------------------------------------------- /client/src/feature/userInput/userInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/client/src/feature/userInput/userInput.ts -------------------------------------------------------------------------------- /client/src/shared/constants.ts: -------------------------------------------------------------------------------- 1 | export const CREATE_COMPONEN_TEXT = 'Create Component'; 2 | -------------------------------------------------------------------------------- /client/src/shared/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/client/src/shared/types/types.ts -------------------------------------------------------------------------------- /client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/client/tsconfig.json -------------------------------------------------------------------------------- /docs/developer/adding-new-command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/docs/developer/adding-new-command.md -------------------------------------------------------------------------------- /docs/developer/architechture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/docs/developer/architechture.md -------------------------------------------------------------------------------- /docs/developer/architecture-graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/docs/developer/architecture-graph.md -------------------------------------------------------------------------------- /docs/developer/corner-cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/docs/developer/corner-cases.md -------------------------------------------------------------------------------- /docs/developer/decisions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/docs/developer/decisions.md -------------------------------------------------------------------------------- /docs/developer/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/docs/developer/design.md -------------------------------------------------------------------------------- /docs/developer/developers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/docs/developer/developers.md -------------------------------------------------------------------------------- /docs/developer/how-to-use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/docs/developer/how-to-use.md -------------------------------------------------------------------------------- /docs/developer/new-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/docs/developer/new-features.md -------------------------------------------------------------------------------- /docs/developer/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/docs/developer/performance.md -------------------------------------------------------------------------------- /docs/developer/term-and-abbreviations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/docs/developer/term-and-abbreviations.md -------------------------------------------------------------------------------- /docs/developer/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/docs/developer/testing.md -------------------------------------------------------------------------------- /docs/user/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/docs/user/README.md -------------------------------------------------------------------------------- /docs/user/codeActions.readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/docs/user/codeActions.readme.md -------------------------------------------------------------------------------- /docs/user/commands.readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/docs/user/commands.readme.md -------------------------------------------------------------------------------- /docs/user/completions.readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/docs/user/completions.readme.md -------------------------------------------------------------------------------- /docs/user/definitions.readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/docs/user/definitions.readme.md -------------------------------------------------------------------------------- /docs/user/rename.readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/docs/user/rename.readme.md -------------------------------------------------------------------------------- /docs/user/symbols.readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/docs/user/symbols.readme.md -------------------------------------------------------------------------------- /images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/images/architecture.png -------------------------------------------------------------------------------- /images/aurelia-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/images/aurelia-logo.png -------------------------------------------------------------------------------- /images/completions-complex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/images/completions-complex.png -------------------------------------------------------------------------------- /images/completions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/images/completions.gif -------------------------------------------------------------------------------- /images/completions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/images/completions.png -------------------------------------------------------------------------------- /images/definitions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/images/definitions.png -------------------------------------------------------------------------------- /images/dependencygraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/images/dependencygraph.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/images/symbols.png -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/jest.config.js -------------------------------------------------------------------------------- /language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/language-configuration.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/package.json -------------------------------------------------------------------------------- /server/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/.eslintrc.cjs -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/package.json -------------------------------------------------------------------------------- /server/src/aot/AureliaComponents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/aot/AureliaComponents.ts -------------------------------------------------------------------------------- /server/src/aot/AureliaProgram.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/aot/AureliaProgram.ts -------------------------------------------------------------------------------- /server/src/aot/aotTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/aot/aotTypes.ts -------------------------------------------------------------------------------- /server/src/aot/getAureliaComponentList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/aot/getAureliaComponentList.ts -------------------------------------------------------------------------------- /server/src/aot/parser/parser-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/aot/parser/parser-types.ts -------------------------------------------------------------------------------- /server/src/aot/parser/regions/RegionParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/aot/parser/regions/RegionParser.ts -------------------------------------------------------------------------------- /server/src/aot/parser/regions/ViewRegions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/aot/parser/regions/ViewRegions.ts -------------------------------------------------------------------------------- /server/src/aot/parser/regions/ViewRegionsVisitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/aot/parser/regions/ViewRegionsVisitor.ts -------------------------------------------------------------------------------- /server/src/aot/parser/regions/findSpecificRegion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/aot/parser/regions/findSpecificRegion.ts -------------------------------------------------------------------------------- /server/src/aot/parser/regions/languageServer/AbstractRegionLanguageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/aot/parser/regions/languageServer/AbstractRegionLanguageService.ts -------------------------------------------------------------------------------- /server/src/aot/parser/regions/languageServer/AttributeInterpolationLanguageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/aot/parser/regions/languageServer/AttributeInterpolationLanguageService.ts -------------------------------------------------------------------------------- /server/src/aot/parser/regions/languageServer/AttributeLanguageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/aot/parser/regions/languageServer/AttributeLanguageService.ts -------------------------------------------------------------------------------- /server/src/aot/parser/regions/languageServer/AureliaHtmlLanguageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/aot/parser/regions/languageServer/AureliaHtmlLanguageService.ts -------------------------------------------------------------------------------- /server/src/aot/parser/regions/languageServer/BindableAttributeLanguageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/aot/parser/regions/languageServer/BindableAttributeLanguageService.ts -------------------------------------------------------------------------------- /server/src/aot/parser/regions/languageServer/CustomElementLanguageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/aot/parser/regions/languageServer/CustomElementLanguageService.ts -------------------------------------------------------------------------------- /server/src/aot/parser/regions/languageServer/ImportLanguageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/aot/parser/regions/languageServer/ImportLanguageService.ts -------------------------------------------------------------------------------- /server/src/aot/parser/regions/languageServer/RepeatForLanguageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/aot/parser/regions/languageServer/RepeatForLanguageService.ts -------------------------------------------------------------------------------- /server/src/aot/parser/regions/languageServer/TextInterpolationLanguageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/aot/parser/regions/languageServer/TextInterpolationLanguageService.ts -------------------------------------------------------------------------------- /server/src/aot/parser/regions/languageServer/ValueConverterLanguageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/aot/parser/regions/languageServer/ValueConverterLanguageService.ts -------------------------------------------------------------------------------- /server/src/aot/parser/regions/rangeFromRegion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/aot/parser/regions/rangeFromRegion.ts -------------------------------------------------------------------------------- /server/src/aot/parser/regions/visitors/RegionLanguageServerVisitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/aot/parser/regions/visitors/RegionLanguageServerVisitor.ts -------------------------------------------------------------------------------- /server/src/aot/staticAnalysis/ConventionService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/aot/staticAnalysis/ConventionService.ts -------------------------------------------------------------------------------- /server/src/aot/staticAnalysis/CustomElementAnalyser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/aot/staticAnalysis/CustomElementAnalyser.ts -------------------------------------------------------------------------------- /server/src/aot/staticAnalysis/ValueConverterAnalyser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/aot/staticAnalysis/ValueConverterAnalyser.ts -------------------------------------------------------------------------------- /server/src/aot/tsMorph/AureliaTsMorph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/aot/tsMorph/AureliaTsMorph.ts -------------------------------------------------------------------------------- /server/src/aot/tsMorph/tsMorphClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/aot/tsMorph/tsMorphClass.ts -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/README.md -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/alias.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/alias.ts -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/binding-behavior.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/binding-behavior.ts -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/binding/ast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/binding/ast.ts -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/binding/connectable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/binding/connectable.ts -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/binding/expression-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/binding/expression-parser.ts -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/index.ts -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/observation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/observation.ts -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/observation/array-observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/observation/array-observer.ts -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/observation/binding-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/observation/binding-context.ts -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/observation/collection-length-observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/observation/collection-length-observer.ts -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/observation/computed-observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/observation/computed-observer.ts -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/observation/connectable-switcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/observation/connectable-switcher.ts -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/observation/dirty-checker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/observation/dirty-checker.ts -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/observation/flush-queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/observation/flush-queue.ts -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/observation/map-observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/observation/map-observer.ts -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/observation/observable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/observation/observable.ts -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/observation/observation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/observation/observation.ts -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/observation/observer-locator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/observation/observer-locator.ts -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/observation/primitive-observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/observation/primitive-observer.ts -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/observation/property-accessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/observation/property-accessor.ts -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/observation/proxy-observation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/observation/proxy-observation.ts -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/observation/set-observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/observation/set-observer.ts -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/observation/setter-observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/observation/setter-observer.ts -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/observation/signaler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/observation/signaler.ts -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/observation/subscriber-collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/observation/subscriber-collection.ts -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/startup-sequence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/startup-sequence.md -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/utilities-objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/utilities-objects.ts -------------------------------------------------------------------------------- /server/src/common/@aurelia-runtime-patch/src/value-converter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/@aurelia-runtime-patch/src/value-converter.ts -------------------------------------------------------------------------------- /server/src/common/AureliaUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/AureliaUtils.ts -------------------------------------------------------------------------------- /server/src/common/MyLodash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/MyLodash.ts -------------------------------------------------------------------------------- /server/src/common/_save.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/_save.ts -------------------------------------------------------------------------------- /server/src/common/className.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/className.ts -------------------------------------------------------------------------------- /server/src/common/client/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/client/client.ts -------------------------------------------------------------------------------- /server/src/common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/constants.ts -------------------------------------------------------------------------------- /server/src/common/debugging/debuggingSandbox.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/src/common/debugging/saveDataToDisk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/debugging/saveDataToDisk.ts -------------------------------------------------------------------------------- /server/src/common/diagnosticMessages/DiagnosticMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/diagnosticMessages/DiagnosticMessages.ts -------------------------------------------------------------------------------- /server/src/common/diagnosticMessages/diagnosticMessagesData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/diagnosticMessages/diagnosticMessagesData.ts -------------------------------------------------------------------------------- /server/src/common/documens/OffsetUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/documens/OffsetUtils.ts -------------------------------------------------------------------------------- /server/src/common/documens/PositionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/documens/PositionUtils.ts -------------------------------------------------------------------------------- /server/src/common/documens/TextDocumentUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/documens/TextDocumentUtils.ts -------------------------------------------------------------------------------- /server/src/common/documens/find-source-word.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/documens/find-source-word.ts -------------------------------------------------------------------------------- /server/src/common/documens/related.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/documens/related.ts -------------------------------------------------------------------------------- /server/src/common/documens/selections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/documens/selections.ts -------------------------------------------------------------------------------- /server/src/common/documens/split-by-word-separators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/documens/split-by-word-separators.ts -------------------------------------------------------------------------------- /server/src/common/documens/xScopeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/documens/xScopeUtils.ts -------------------------------------------------------------------------------- /server/src/common/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/global.d.ts -------------------------------------------------------------------------------- /server/src/common/logging/WallabyUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/logging/WallabyUtils.ts -------------------------------------------------------------------------------- /server/src/common/logging/errorStackLogging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/logging/errorStackLogging.ts -------------------------------------------------------------------------------- /server/src/common/logging/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/logging/logger.ts -------------------------------------------------------------------------------- /server/src/common/logging/performance-measure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/logging/performance-measure.ts -------------------------------------------------------------------------------- /server/src/common/object/ObjectUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/object/ObjectUtils.ts -------------------------------------------------------------------------------- /server/src/common/parseExpression/ParseExpressionUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/parseExpression/ParseExpressionUtil.ts -------------------------------------------------------------------------------- /server/src/common/services/AnalyzerService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/services/AnalyzerService.ts -------------------------------------------------------------------------------- /server/src/common/services/RegionService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/services/RegionService.ts -------------------------------------------------------------------------------- /server/src/common/string/StringUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/string/StringUtils.ts -------------------------------------------------------------------------------- /server/src/common/template/aurelia-attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/template/aurelia-attributes.ts -------------------------------------------------------------------------------- /server/src/common/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/types/types.ts -------------------------------------------------------------------------------- /server/src/common/view/document-parsing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/view/document-parsing.ts -------------------------------------------------------------------------------- /server/src/common/view/project-position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/view/project-position.ts -------------------------------------------------------------------------------- /server/src/common/view/uri-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/common/view/uri-utils.ts -------------------------------------------------------------------------------- /server/src/configuration/DocumentSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/configuration/DocumentSettings.ts -------------------------------------------------------------------------------- /server/src/core/AureliaProjects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/core/AureliaProjects.ts -------------------------------------------------------------------------------- /server/src/core/aureliaServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/core/aureliaServer.ts -------------------------------------------------------------------------------- /server/src/core/container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/core/container.ts -------------------------------------------------------------------------------- /server/src/core/depdencenyInjection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/core/depdencenyInjection.ts -------------------------------------------------------------------------------- /server/src/feature/codeAction/onCodeAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/codeAction/onCodeAction.ts -------------------------------------------------------------------------------- /server/src/feature/commands/declareViewModelVariable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/commands/declareViewModelVariable/README.md -------------------------------------------------------------------------------- /server/src/feature/commands/declareViewModelVariable/declareViewModelVariable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/commands/declareViewModelVariable/declareViewModelVariable.ts -------------------------------------------------------------------------------- /server/src/feature/commands/extractComponent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/commands/extractComponent/README.md -------------------------------------------------------------------------------- /server/src/feature/commands/extractComponent/extractComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/commands/extractComponent/extractComponent.ts -------------------------------------------------------------------------------- /server/src/feature/commands/onExecuteCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/commands/onExecuteCommand.ts -------------------------------------------------------------------------------- /server/src/feature/completions/aureliaKeyWordCompletions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/completions/aureliaKeyWordCompletions.ts -------------------------------------------------------------------------------- /server/src/feature/completions/completions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/completions/completions.ts -------------------------------------------------------------------------------- /server/src/feature/completions/createAureliaTemplateAttributeCompletions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/completions/createAureliaTemplateAttributeCompletions.ts -------------------------------------------------------------------------------- /server/src/feature/completions/onCompletions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/completions/onCompletions.ts -------------------------------------------------------------------------------- /server/src/feature/completions/virtualCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/completions/virtualCompletion.ts -------------------------------------------------------------------------------- /server/src/feature/completions/virtualCompletion2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/completions/virtualCompletion2.ts -------------------------------------------------------------------------------- /server/src/feature/content/changeContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/content/changeContent.ts -------------------------------------------------------------------------------- /server/src/feature/definition/accessScopeDefinition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/definition/accessScopeDefinition.ts -------------------------------------------------------------------------------- /server/src/feature/definition/aureliaDefintion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/definition/aureliaDefintion.ts -------------------------------------------------------------------------------- /server/src/feature/definition/onDefinitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/definition/onDefinitions.ts -------------------------------------------------------------------------------- /server/src/feature/definition/virtualDefinition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/definition/virtualDefinition.ts -------------------------------------------------------------------------------- /server/src/feature/diagnostics/diagnostics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/diagnostics/diagnostics.ts -------------------------------------------------------------------------------- /server/src/feature/hover/accessScopeHover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/hover/accessScopeHover.ts -------------------------------------------------------------------------------- /server/src/feature/hover/onHover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/hover/onHover.ts -------------------------------------------------------------------------------- /server/src/feature/initialization/initialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/initialization/initialization.ts -------------------------------------------------------------------------------- /server/src/feature/rename/aureliaRename.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/rename/aureliaRename.ts -------------------------------------------------------------------------------- /server/src/feature/rename/onRenameRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/rename/onRenameRequest.ts -------------------------------------------------------------------------------- /server/src/feature/rename/workspaceEdits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/rename/workspaceEdits.ts -------------------------------------------------------------------------------- /server/src/feature/save/saveContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/save/saveContent.ts -------------------------------------------------------------------------------- /server/src/feature/symbols/onDocumentSymbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/symbols/onDocumentSymbol.ts -------------------------------------------------------------------------------- /server/src/feature/symbols/onWorkspaceSymbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/symbols/onWorkspaceSymbol.ts -------------------------------------------------------------------------------- /server/src/feature/virtual/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/virtual/README.md -------------------------------------------------------------------------------- /server/src/feature/virtual/virtualSourceFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/feature/virtual/virtualSourceFile.ts -------------------------------------------------------------------------------- /server/src/project.config.example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/project.config.example.ts -------------------------------------------------------------------------------- /server/src/project.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/project.config.ts -------------------------------------------------------------------------------- /server/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/src/server.ts -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/server/tsconfig.json -------------------------------------------------------------------------------- /syntaxes/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/syntaxes/html.json -------------------------------------------------------------------------------- /tests/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/.eslintrc.cjs -------------------------------------------------------------------------------- /tests/common/errors/TestErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/common/errors/TestErrors.ts -------------------------------------------------------------------------------- /tests/common/file-path-mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/common/file-path-mocks.ts -------------------------------------------------------------------------------- /tests/common/files/get-test-dir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/common/files/get-test-dir.ts -------------------------------------------------------------------------------- /tests/common/find-project-root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/common/find-project-root.ts -------------------------------------------------------------------------------- /tests/common/fixtures/get-fixture-dir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/common/fixtures/get-fixture-dir.ts -------------------------------------------------------------------------------- /tests/common/gherkin/gherkin-step-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/common/gherkin/gherkin-step-table.ts -------------------------------------------------------------------------------- /tests/common/mock-server/mock-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/common/mock-server/mock-server.ts -------------------------------------------------------------------------------- /tests/common/mock-server/text-documents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/common/mock-server/text-documents.ts -------------------------------------------------------------------------------- /tests/dev-test-helpers/cache-cucumber-features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/dev-test-helpers/cache-cucumber-features.ts -------------------------------------------------------------------------------- /tests/features/capabilities/codeActions/code-actions.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/features/capabilities/codeActions/code-actions.feature -------------------------------------------------------------------------------- /tests/features/capabilities/completions/completions-aurelia-keywords.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/features/capabilities/completions/completions-aurelia-keywords.feature -------------------------------------------------------------------------------- /tests/features/capabilities/completions/completions-methods.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/features/capabilities/completions/completions-methods.feature -------------------------------------------------------------------------------- /tests/features/capabilities/completions/completions-performance.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/features/capabilities/completions/completions-performance.feature -------------------------------------------------------------------------------- /tests/features/capabilities/completions/completions-value-converters.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/features/capabilities/completions/completions-value-converters.feature -------------------------------------------------------------------------------- /tests/features/capabilities/completions/completions-when-to-trigger.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/features/capabilities/completions/completions-when-to-trigger.feature -------------------------------------------------------------------------------- /tests/features/capabilities/completions/completions.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/features/capabilities/completions/completions.feature -------------------------------------------------------------------------------- /tests/features/capabilities/definitions/definitions-import-tag.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/features/capabilities/definitions/definitions-import-tag.feature -------------------------------------------------------------------------------- /tests/features/capabilities/definitions/definitions-index.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/features/capabilities/definitions/definitions-index.feature -------------------------------------------------------------------------------- /tests/features/capabilities/definitions/definitions-upon-file-change.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/features/capabilities/definitions/definitions-upon-file-change.feature -------------------------------------------------------------------------------- /tests/features/capabilities/definitions/definitions-view-model.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/features/capabilities/definitions/definitions-view-model.feature -------------------------------------------------------------------------------- /tests/features/capabilities/definitions/definitions.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/features/capabilities/definitions/definitions.feature -------------------------------------------------------------------------------- /tests/features/capabilities/diagnostics/diagnostics.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/features/capabilities/diagnostics/diagnostics.feature -------------------------------------------------------------------------------- /tests/features/capabilities/hover/hover.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/features/capabilities/hover/hover.feature -------------------------------------------------------------------------------- /tests/features/capabilities/rename/rename-upon-file-change.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/features/capabilities/rename/rename-upon-file-change.feature -------------------------------------------------------------------------------- /tests/features/capabilities/rename/rename-view-model.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/features/capabilities/rename/rename-view-model.feature -------------------------------------------------------------------------------- /tests/features/capabilities/rename/rename-view.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/features/capabilities/rename/rename-view.feature -------------------------------------------------------------------------------- /tests/features/capabilities/symbols/on-document-symbol.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/features/capabilities/symbols/on-document-symbol.feature -------------------------------------------------------------------------------- /tests/features/content/content-change.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/features/content/content-change.feature -------------------------------------------------------------------------------- /tests/features/core/AureliaProjects/AureliaProjects.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/features/core/AureliaProjects/AureliaProjects.feature -------------------------------------------------------------------------------- /tests/features/core/viewmodel/AureliaComponents.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/features/core/viewmodel/AureliaComponents.feature -------------------------------------------------------------------------------- /tests/features/detecting-on-init.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/features/detecting-on-init.feature -------------------------------------------------------------------------------- /tests/features/hydrate-on-init.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/features/hydrate-on-init.feature -------------------------------------------------------------------------------- /tests/jest-cucumber-setup.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/jest-cucumber-setup.spec.ts -------------------------------------------------------------------------------- /tests/minimal-jest/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/minimal-jest/index.spec.ts -------------------------------------------------------------------------------- /tests/minimal-jest/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/minimal-jest/index.ts -------------------------------------------------------------------------------- /tests/minimal-jest/minimal.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/minimal-jest/minimal.feature -------------------------------------------------------------------------------- /tests/minimal-jest/minimal.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/minimal-jest/minimal.spec.ts -------------------------------------------------------------------------------- /tests/step-definitions/capabilities/codeAction/codeAction.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/step-definitions/capabilities/codeAction/codeAction.spec.ts -------------------------------------------------------------------------------- /tests/step-definitions/capabilities/common/common-capabilities.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/step-definitions/capabilities/common/common-capabilities.spec.ts -------------------------------------------------------------------------------- /tests/step-definitions/capabilities/completions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/step-definitions/capabilities/completions.spec.ts -------------------------------------------------------------------------------- /tests/step-definitions/capabilities/completions/completions-value-converters.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/step-definitions/capabilities/completions/completions-value-converters.spec.ts -------------------------------------------------------------------------------- /tests/step-definitions/capabilities/definitions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/step-definitions/capabilities/definitions.spec.ts -------------------------------------------------------------------------------- /tests/step-definitions/capabilities/diagnostics/diagnostics.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/step-definitions/capabilities/diagnostics/diagnostics.spec.ts -------------------------------------------------------------------------------- /tests/step-definitions/capabilities/hover/hover.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/step-definitions/capabilities/hover/hover.spec.ts -------------------------------------------------------------------------------- /tests/step-definitions/capabilities/new-common/file.step.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/step-definitions/capabilities/new-common/file.step.ts -------------------------------------------------------------------------------- /tests/step-definitions/capabilities/new-common/project.step.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/step-definitions/capabilities/new-common/project.step.ts -------------------------------------------------------------------------------- /tests/step-definitions/capabilities/rename/rename.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/step-definitions/capabilities/rename/rename.spec.ts -------------------------------------------------------------------------------- /tests/step-definitions/capabilities/symbols/documentSymbols.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/step-definitions/capabilities/symbols/documentSymbols.spec.ts -------------------------------------------------------------------------------- /tests/step-definitions/content/content-change.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/step-definitions/content/content-change.spec.ts -------------------------------------------------------------------------------- /tests/step-definitions/core/AureliaComponents.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/step-definitions/core/AureliaComponents.spec.ts -------------------------------------------------------------------------------- /tests/step-definitions/core/AureliaProjects.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/step-definitions/core/AureliaProjects.spec.ts -------------------------------------------------------------------------------- /tests/step-definitions/initialization/on-initialized/detecting-on-init.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/step-definitions/initialization/on-initialized/detecting-on-init.spec.ts -------------------------------------------------------------------------------- /tests/step-definitions/initialization/on-initialized/hydrate-on-init.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/step-definitions/initialization/on-initialized/hydrate-on-init.spec.ts -------------------------------------------------------------------------------- /tests/testFixture/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 0 3 | } -------------------------------------------------------------------------------- /tests/testFixture/cli-generated/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/cli-generated/package.json -------------------------------------------------------------------------------- /tests/testFixture/cli-generated/src/compo-user/compo-user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/cli-generated/src/compo-user/compo-user.html -------------------------------------------------------------------------------- /tests/testFixture/cli-generated/src/compo-user/compo-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/cli-generated/src/compo-user/compo-user.ts -------------------------------------------------------------------------------- /tests/testFixture/cli-generated/src/just-class-name/just-class-name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/cli-generated/src/just-class-name/just-class-name.html -------------------------------------------------------------------------------- /tests/testFixture/cli-generated/src/just-class-name/just-class-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/cli-generated/src/just-class-name/just-class-name.ts -------------------------------------------------------------------------------- /tests/testFixture/cli-generated/src/minimal-component/minimal-component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testFixture/cli-generated/src/minimal-component/minimal-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/cli-generated/src/minimal-component/minimal-component.ts -------------------------------------------------------------------------------- /tests/testFixture/cli-generated/src/my-compo/my-compo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/cli-generated/src/my-compo/my-compo.html -------------------------------------------------------------------------------- /tests/testFixture/cli-generated/src/my-compo/my-compo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/cli-generated/src/my-compo/my-compo.ts -------------------------------------------------------------------------------- /tests/testFixture/cli-generated/src/realdworld-advanced/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/cli-generated/src/realdworld-advanced/api.ts -------------------------------------------------------------------------------- /tests/testFixture/cli-generated/src/realdworld-advanced/home/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/cli-generated/src/realdworld-advanced/home/index.html -------------------------------------------------------------------------------- /tests/testFixture/cli-generated/src/realdworld-advanced/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/cli-generated/src/realdworld-advanced/home/index.ts -------------------------------------------------------------------------------- /tests/testFixture/cli-generated/src/realdworld-advanced/resources.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/cli-generated/src/realdworld-advanced/resources.d.ts -------------------------------------------------------------------------------- /tests/testFixture/cli-generated/src/realdworld-advanced/settings/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/cli-generated/src/realdworld-advanced/settings/index.html -------------------------------------------------------------------------------- /tests/testFixture/cli-generated/src/realdworld-advanced/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/cli-generated/src/realdworld-advanced/settings/index.ts -------------------------------------------------------------------------------- /tests/testFixture/cli-generated/src/realdworld-advanced/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/cli-generated/src/realdworld-advanced/state.ts -------------------------------------------------------------------------------- /tests/testFixture/cli-generated/src/value-converters/sort-value-converter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/cli-generated/src/value-converters/sort-value-converter.ts -------------------------------------------------------------------------------- /tests/testFixture/cli-generated/src/value-converters/take-value-converter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/cli-generated/src/value-converters/take-value-converter.ts -------------------------------------------------------------------------------- /tests/testFixture/cli-generated/src/view-model-test/view-model-test.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testFixture/cli-generated/src/view-model-test/view-model-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/cli-generated/src/view-model-test/view-model-test.ts -------------------------------------------------------------------------------- /tests/testFixture/cli-generated/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/cli-generated/tsconfig.json -------------------------------------------------------------------------------- /tests/testFixture/monorepo/package-aurelia/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/monorepo/package-aurelia/package.json -------------------------------------------------------------------------------- /tests/testFixture/monorepo/package-aurelia/src/aurelia.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/monorepo/package-aurelia/src/aurelia.html -------------------------------------------------------------------------------- /tests/testFixture/monorepo/package-aurelia/src/aurelia.ts: -------------------------------------------------------------------------------- 1 | export class AureliaCustomElement {} 2 | -------------------------------------------------------------------------------- /tests/testFixture/monorepo/package-burelia/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/monorepo/package-burelia/package.json -------------------------------------------------------------------------------- /tests/testFixture/monorepo/package-burelia/src/burelia.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/monorepo/package-burelia/src/burelia.html -------------------------------------------------------------------------------- /tests/testFixture/monorepo/package-burelia/src/burelia.ts: -------------------------------------------------------------------------------- 1 | export class BureliaCustomElement {} 2 | -------------------------------------------------------------------------------- /tests/testFixture/monorepo/package-c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/monorepo/package-c/package.json -------------------------------------------------------------------------------- /tests/testFixture/non-aurelia-project/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /tests/testFixture/scoped-for-testing/.aurelia/extension/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/scoped-for-testing/.aurelia/extension/templates.js -------------------------------------------------------------------------------- /tests/testFixture/scoped-for-testing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/scoped-for-testing/package.json -------------------------------------------------------------------------------- /tests/testFixture/scoped-for-testing/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/scoped-for-testing/src/index.html -------------------------------------------------------------------------------- /tests/testFixture/scoped-for-testing/src/index.ts: -------------------------------------------------------------------------------- 1 | export class Index {} 2 | -------------------------------------------------------------------------------- /tests/testFixture/scoped-for-testing/src/specific/numericInput/numericInput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/scoped-for-testing/src/specific/numericInput/numericInput.html -------------------------------------------------------------------------------- /tests/testFixture/scoped-for-testing/src/specific/numericInput/numericInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/scoped-for-testing/src/specific/numericInput/numericInput.ts -------------------------------------------------------------------------------- /tests/testFixture/scoped-for-testing/src/specific/stage4/stage4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/scoped-for-testing/src/specific/stage4/stage4.html -------------------------------------------------------------------------------- /tests/testFixture/scoped-for-testing/src/specific/stage4/stage4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/scoped-for-testing/src/specific/stage4/stage4.ts -------------------------------------------------------------------------------- /tests/testFixture/scoped-for-testing/src/view/custom-element/custom-element-user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/scoped-for-testing/src/view/custom-element/custom-element-user.html -------------------------------------------------------------------------------- /tests/testFixture/scoped-for-testing/src/view/custom-element/custom-element-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/scoped-for-testing/src/view/custom-element/custom-element-user.ts -------------------------------------------------------------------------------- /tests/testFixture/scoped-for-testing/src/view/custom-element/custom-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/scoped-for-testing/src/view/custom-element/custom-element.html -------------------------------------------------------------------------------- /tests/testFixture/scoped-for-testing/src/view/custom-element/custom-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/scoped-for-testing/src/view/custom-element/custom-element.ts -------------------------------------------------------------------------------- /tests/testFixture/scoped-for-testing/src/view/custom-element/other-custom-element-user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/scoped-for-testing/src/view/custom-element/other-custom-element-user.html -------------------------------------------------------------------------------- /tests/testFixture/scoped-for-testing/src/view/custom-element/other-custom-element-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/scoped-for-testing/src/view/custom-element/other-custom-element-user.ts -------------------------------------------------------------------------------- /tests/testFixture/scoped-for-testing/src/view/diagnostics/view-diagnostics.html: -------------------------------------------------------------------------------- 1 |

2 | -------------------------------------------------------------------------------- /tests/testFixture/scoped-for-testing/src/view/diagnostics/view-diagnostics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/scoped-for-testing/src/view/diagnostics/view-diagnostics.ts -------------------------------------------------------------------------------- /tests/testFixture/scoped-for-testing/src/view/empty-view.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testFixture/scoped-for-testing/src/view/empty-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/scoped-for-testing/src/view/empty-view.ts -------------------------------------------------------------------------------- /tests/testFixture/scoped-for-testing/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testFixture/scoped-for-testing/tsconfig.json -------------------------------------------------------------------------------- /tests/testLauncher/cliGenerated.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testLauncher/cliGenerated.spec.ts -------------------------------------------------------------------------------- /tests/testLauncher/core.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testLauncher/core.spec.ts -------------------------------------------------------------------------------- /tests/testLauncher/monorepo.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testLauncher/monorepo.spec.ts -------------------------------------------------------------------------------- /tests/testLauncher/scopedForTesting.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testLauncher/scopedForTesting.spec.ts -------------------------------------------------------------------------------- /tests/testLauncher/withWallaby.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/testLauncher/withWallaby.spec.ts -------------------------------------------------------------------------------- /tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/tsconfig.json -------------------------------------------------------------------------------- /tests/unit/common/documens/find-source-word.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/unit/common/documens/find-source-word.spec.ts -------------------------------------------------------------------------------- /tests/unit/common/logging/errorStackLogging.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/unit/common/logging/errorStackLogging.spec.ts -------------------------------------------------------------------------------- /tests/unit/common/testTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/unit/common/testTemplate.ts -------------------------------------------------------------------------------- /tests/unit/core/RegionParser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/unit/core/RegionParser.spec.ts -------------------------------------------------------------------------------- /tests/unit/core/expression-parser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tests/unit/core/expression-parser.spec.ts -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wallaby.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurelia/vscode-extension/HEAD/wallaby.config.js --------------------------------------------------------------------------------