Skip to content
This repository has been archived by the owner on May 1, 2019. It is now read-only.

Commit

Permalink
Merge pull request #641 from Polymer/jsdoc-tags
Browse files Browse the repository at this point in the history
Jsdoc tags
  • Loading branch information
justinfagnani committed Apr 27, 2017
2 parents 9d55bc7 + bca1800 commit 52558ae
Show file tree
Hide file tree
Showing 87 changed files with 2,661 additions and 2,060 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Expand Up @@ -13,8 +13,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

<!--## Unreleased-->

* Added support for new JSDoc tags: @customElement, @polymer, @mixinFunction, @appliesMixin

## [2.0.0-alpha.39] - 2017-04-26

* Add a Class feature kind for describing all kinds of classes. This is a superclass of the existing elements and mixins.

## [2.0.0-alpha.38] - 2017-04-13

* Add a Class feature kind for describing all kinds of classes. This is a superclass of the existing elements and mixins.
* Mix mixins into mixins. A PolymerElementMixin now has all of the members it inherits other mixins it mixes.
* Improved our modeling of inheritance:
Expand Down
2 changes: 0 additions & 2 deletions package.json
Expand Up @@ -72,7 +72,6 @@
"@types/estree": "^0.0.34",
"@types/node": "^6.0.0",
"@types/parse5": "^2.2.34",
"@types/split": "^0.3.28",
"chalk": "^1.1.3",
"clone": "^2.0.0",
"cssbeautify": "^0.3.1",
Expand All @@ -84,7 +83,6 @@
"jsonschema": "^1.1.0",
"parse5": "^2.2.1",
"shady-css-parser": "0.0.8",
"split": "^1.0.0",
"strip-indent": "^2.0.0",
"typescript": "^2.2.0"
},
Expand Down
6 changes: 4 additions & 2 deletions src/core/analysis-cache.ts
Expand Up @@ -113,9 +113,11 @@ export class AnalysisCache {
toString() {
return `<AnalysisCache
scannedDocuments:
${Array.from(this.scannedDocuments.keys()).join('\n ')}
${Array.from(this.scannedDocuments.keys())
.join('\n ')}
analyzedDocuments:
${Array.from(this.analyzedDocuments.keys()).join('\n ')}
${Array.from(this.analyzedDocuments.keys())
.join('\n ')}
>`;
}
}
2 changes: 1 addition & 1 deletion src/core/async-work-cache.ts
Expand Up @@ -50,7 +50,7 @@ export class AsyncWorkCache<K, V> {
return promise;
}

delete(key: K) {
delete (key: K) {
this._keyToResultMap.delete(key);
}

Expand Down
26 changes: 0 additions & 26 deletions src/editor-service/README.md

This file was deleted.

86 changes: 0 additions & 86 deletions src/editor-service/editor-service.ts

This file was deleted.

225 changes: 0 additions & 225 deletions src/editor-service/local-editor-service.ts

This file was deleted.

0 comments on commit 52558ae

Please sign in to comment.