Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Emitted extends clause should come after deatched-comment at the top of the file #7038

Open
yuit opened this issue Feb 12, 2016 · 0 comments
Labels
Bug A bug in TypeScript Help Wanted You can do this
Milestone

Comments

@yuit
Copy link
Contributor

yuit commented Feb 12, 2016

// --------------------------------------------------
// Some Copy Right
// --------------------------------------------------
class B {}
class C extends B {}
"use strict";
var __extends = (this && this.__extends) || function (d, b) {
    for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
    function __() { this.constructor = d; }
    d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
// --------------------------------------------------
// Some Copy Right
// --------------------------------------------------
var B = (function () {
    function B() {
    }
    return B;
}());
var C = (function (_super) {
    __extends(C, _super);
    function C() {
        _super.apply(this, arguments);
    }
    return C;
}(B));
@yuit yuit added the Bug A bug in TypeScript label Feb 12, 2016
@yuit yuit added this to the TypeScript 1.8.2 milestone Feb 12, 2016
@mhegazy mhegazy modified the milestones: Community, TypeScript 1.8.2 Feb 16, 2016
@mhegazy mhegazy added Help Wanted You can do this and removed Help Wanted You can do this labels Feb 16, 2016
@RyanCavanaugh RyanCavanaugh modified the milestones: Community, Backlog Mar 7, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug A bug in TypeScript Help Wanted You can do this
Projects
None yet
Development

No branches or pull requests

3 participants