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

Support exclamationToken in updateProperty and createProperty #21577

Merged
1 commit merged into from
Feb 2, 2018

Conversation

ghost
Copy link

@ghost ghost commented Feb 2, 2018

I figured it would be easier to have a questionOrExclamationToken parameter instead of two separate ones if we don't plan on having those ever both present at the same time.

@ghost ghost requested a review from rbuckton February 2, 2018 18:49
@ghost
Copy link
Author

ghost commented Feb 2, 2018

Waiting for @rbuckton to review too

type: TypeNode | undefined,
initializer: Expression | undefined) {
const node = <PropertyDeclaration>createSynthesizedNode(SyntaxKind.PropertyDeclaration);
node.decorators = asNodeArray(decorators);
node.modifiers = asNodeArray(modifiers);
node.name = asName(name);
node.questionToken = questionToken;
node.questionToken = questionOrExclamationToken !== undefined && questionOrExclamationToken.kind === SyntaxKind.QuestionToken ? questionOrExclamationToken : undefined;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This leads me to wonder why we have two separate properties for this on PropertyDeclaration.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, that's unfortunate...

@ghost ghost merged commit 567fba2 into master Feb 2, 2018
@ghost ghost deleted the updateProperty branch February 2, 2018 21:03
@microsoft microsoft locked and limited conversation to collaborators Jul 3, 2018
This pull request was closed.
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants