Skip to content

initialized class variables in base class constructor are null #15601

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

Closed
venelin-mihaylov opened this issue May 5, 2017 · 2 comments
Closed
Labels
Duplicate An existing issue was already created

Comments

@venelin-mihaylov
Copy link

venelin-mihaylov commented May 5, 2017

TypeScript Version: 2.3.2
CODE

interface IMember {
      name?: string
    }

    interface IBase {
      member1?: IMember
    }

    class Base implements IBase {
      public get member1() {
        return this._member1
      }
      public _member1: IMember
      public constructor() {
        console.log('parent constructor this')
        console.log(this)
        console.log('parent constructor _member1')
        const a = this._member1;
        console.log(a)
        expect(a).to.not.be.undefined
      }
    }

    class Child extends Base {
      public _member1: IMember = {
        name: 'grrrr'
      }
    }

    const o = new Child()

Expected Behavior:
I initialize a member variable in the Child class during class declaration.
I expect in the parent class constructor the class variable to be initialized.

Actual behavior:
It is not.
However, it is initialized after the object is constructed.

@mhegazy
Copy link
Contributor

mhegazy commented May 5, 2017

Duplicate of #1617

@mhegazy mhegazy added the Duplicate An existing issue was already created label May 5, 2017
@mhegazy
Copy link
Contributor

mhegazy commented May 22, 2017

Automatically closing this issue for housekeeping purposes. The issue labels indicate that it is unactionable at the moment or has already been addressed.

@mhegazy mhegazy closed this as completed May 22, 2017
@microsoft microsoft locked and limited conversation to collaborators Jun 14, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Duplicate An existing issue was already created
Projects
None yet
Development

No branches or pull requests

2 participants