chore(typescript): Changed double asterisks in #9100 to single asterisks

As in #9151, these comments are being read as JSDoc comments. This commit is smaller and only touches a few files that are causing errors.
This commit is contained in:
ScottSWu 2016-06-13 10:53:31 -07:00
parent de97687422
commit 14a3ade662
2 changed files with 3 additions and 3 deletions

View File

@ -248,7 +248,7 @@ var Reflect = global.Reflect;
})(); })();
export function makeDecorator( export function makeDecorator(
annotationCls: any /** TODO #9100 */, annotationCls: any /* TODO #9100 */,
chainFn: (fn: Function) => void = null): (...args: any[]) => (cls: any) => any { chainFn: (fn: Function) => void = null): (...args: any[]) => (cls: any) => any {
function DecoratorFactory(objOrType: any /** TODO #9100 */): (cls: any) => any { function DecoratorFactory(objOrType: any /** TODO #9100 */): (cls: any) => any {
var annotationInstance = new (<any>annotationCls)(objOrType); var annotationInstance = new (<any>annotationCls)(objOrType);

View File

@ -198,10 +198,10 @@ export class BrowserDomAdapter extends GenericBrowserDomAdapter {
t.innerHTML = html; t.innerHTML = html;
return t; return t;
} }
createElement(tagName: any /** TODO #9100 */, doc = document): HTMLElement { createElement(tagName: any /* TODO #9100 */, doc = document): HTMLElement {
return doc.createElement(tagName); return doc.createElement(tagName);
} }
createElementNS(ns: any /** TODO #9100 */, tagName: any /** TODO #9100 */, doc = document): createElementNS(ns: any /* TODO #9100 */, tagName: any /* TODO #9100 */, doc = document):
Element { Element {
return doc.createElementNS(ns, tagName); return doc.createElementNS(ns, tagName);
} }