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

[WIP] Object access dot operator #37

Closed
wants to merge 2 commits into from

Conversation

baransu
Copy link
Contributor

@baransu baransu commented Dec 20, 2017

Attempt to resolve #28.
There is probably some work but I'm creating an issue to gain some feedback about the direction I'm heading. I don't know if it's correct because I almost don't know the compiler but the first version seems to work just fine. I've also was trying to create nested objects but it seems to not work for ArraySubscript so it's not working for AccessIdentifier

@coveralls
Copy link

Coverage Status

Coverage increased (+0.1%) to 92.841% when pulling 00df71d on Baransu:object-dot-operator into 93c776d on ballercat:master.

@ballercat
Copy link
Owner

Thanks for opening up a WIP PR for this, I think you are on a good track.

I took a look at the code. I see what you did here, and it makes sense. I would prefer for us not to create another Token type for this.

The dot . is a binary operator and we should handle it as one. In the past, I also used the tokenizer as a shortcut to get things working quickly, but it creates incredible code debt in the long term.

We should add it to the list of valid punctuator tokens and process it correctly in the parser. See parser/operator for similar conversions. It's not as nice as it can be, but it's a better direction long-term to leverage the parser. I would also recommend avoiding adding anything to the expression parser as much as possible, it already does a bit more than I'd like it too.

RE:

I've also was trying to create nested objects but it seems to not work for ArraySubscript so it's not working for AccessIdentifier

I'm not 100% on what do you mean by nested objects don't work in ArraySubscript. I could help if you can clarify a bit.

@coveralls
Copy link

Coverage Status

Coverage increased (+0.1%) to 92.83% when pulling 633d09c on Baransu:object-dot-operator into 93c776d on ballercat:master.

@baransu
Copy link
Contributor Author

baransu commented Dec 21, 2017

By nested object I mean object that have other object as a field. I'm trying to access it as I would do in JavaScript: x['foo']['bar'] but it do not understand second brackets. I'm not 100% sure how it's suposed to work right now and it it's a regression.

@iddan
Copy link

iddan commented Dec 21, 2017

It still doesn't make it a non binary operator

@ballercat
Copy link
Owner

Don't worry you did not cause a regression. Nested Objects are not yet supported so x['foo']['bar'] would not work. I'll add this to the Roadmap 👍

Copy link
Owner

@ballercat ballercat left a comment

Choose a reason for hiding this comment

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

It's getting better. I'd still like to avoid bloating the expression parser

export function accessIdentifier(ctx: Context): Node {
const node = ctx.startNode();
// We're removing first character which is access dot operator
node.value = ctx.token.value.substring(1, ctx.token.value.length);
Copy link
Owner

Choose a reason for hiding this comment

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

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I've removed it between first and second commit so I don't know why this file is still present.

// if (value === ":" && previous.type === Syntax.Pair) break;
consume();
}
};

const processPunctuator = () => {
switch (ctx.token.value) {
case ".":
operators.push(ctx.token);
Copy link
Owner

Choose a reason for hiding this comment

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

Why are you handling the dot separately? It should be parsed as part of the default case for operators.

operands.push(accessIdentifier(ctx));
eatUntil(isLSqrBracket);
consume();
eatFunctionCall = false;
Copy link
Owner

Choose a reason for hiding this comment

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

I'd like us to avoid doing this. Feel free to email me if you're stuck/need some more info on the parser implementation.

@baransu
Copy link
Contributor Author

baransu commented Dec 26, 2017

Closing in favor of #47

@baransu baransu closed this Dec 26, 2017
@baransu baransu deleted the object-dot-operator branch December 26, 2017 01:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Dot operator and Identifiers for Object properties.
4 participants