We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
From @alexandrudima on January 27, 2016 13:46
var obj1 = {}; Object.defineProperty(obj1, "x", { value: 42, writable: false }); obj1.
Copied from original issue: microsoft/vscode#2451
The text was updated successfully, but these errors were encountered:
Per TypeScript semantics, we see obj1 as a {}, and don't support augmenting it (e.g. we also don't recognized adding via obj1.x = ...).
obj1
{}
obj1.x = ...
The type of obj1 can be explicitly set via a JsDoc comment. If you feel expando and defineProperty support is critical for Salsa, please reopen.
Sorry, something went wrong.
👍
Successfully merging a pull request may close this issue.
From @alexandrudima on January 27, 2016 13:46
Copied from original issue: microsoft/vscode#2451
The text was updated successfully, but these errors were encountered: