Skip to content

Readonly prevents indexer assignment in class constructor #17845

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
axefrog opened this issue Aug 16, 2017 · 2 comments
Closed

Readonly prevents indexer assignment in class constructor #17845

axefrog opened this issue Aug 16, 2017 · 2 comments
Labels
Duplicate An existing issue was already created

Comments

@axefrog
Copy link

axefrog commented Aug 16, 2017

TypeScript Version: 2.4.2

Code

class Environment {
  readonly [key: string]: Domain;

  constructor (domains: Domain[]) {
    for (let domain of domains) {
      this[domain.name] = domain;
    }
  }
}

Expected behavior:

I'm assigning the values in the constructor, so I would assume that the readonly modifier would not take effect yet.

Actual behavior:

Index signature in type 'Environment' only permits reading.
(property) Domain.name: string

Is this a bug or does TypeScript disallow assignment to readonly indexers due to implementation difficulties?

@DanielRosenwasser DanielRosenwasser added the Bug A bug in TypeScript label Aug 16, 2017
@DanielRosenwasser DanielRosenwasser added this to the TypeScript 2.6 milestone Aug 16, 2017
@mhegazy
Copy link
Contributor

mhegazy commented Aug 22, 2017

duplicate of #6781

@mhegazy mhegazy added Duplicate An existing issue was already created and removed Bug A bug in TypeScript labels Aug 22, 2017
@mhegazy mhegazy removed this from the TypeScript 2.6 milestone Aug 22, 2017
@mhegazy
Copy link
Contributor

mhegazy commented Sep 6, 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 Sep 6, 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

4 participants