-
Notifications
You must be signed in to change notification settings - Fork 122
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
//@flow | ||
import Syntax from "../Syntax"; | ||
import type Context from "./context"; | ||
import type { Node } from "../flow/types"; | ||
|
||
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); | ||
return ctx.endNode(node, Syntax.StringLiteral); | ||
} | ||
|
||
export default accessIdentifier; |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ import constant from "./constant"; | |
import stringLiteral from "./string-literal"; | ||
import builtInType from "./builtin-type"; | ||
import { getAssociativty, getPrecedence } from "./introspection"; | ||
import maybeIdentifier from "./maybe-identifier"; | ||
import maybeIdentifier, { accessIdentifier } from "./maybe-identifier"; | ||
import { PRECEDENCE_FUNCTION_CALL } from "./precedence"; | ||
import type Context from "./context"; | ||
import type { Node, Token } from "../flow/types"; | ||
|
@@ -21,6 +21,7 @@ const isLBracket = valueIs("("); | |
const isLSqrBracket = valueIs("["); | ||
const isTStart = valueIs("?"); | ||
const isBlockStart = valueIs("{"); | ||
|
||
export const isPunctuatorAndNotBracket = (t: ?Token) => | ||
t && t.type === Syntax.Punctuator && t.value !== "]" && t.value !== ")"; | ||
|
||
|
@@ -62,15 +63,18 @@ const expression = ( | |
getAssociativty(previous) === "left" | ||
) { | ||
if (value === "," && previous.type === Syntax.FunctionCall) { | ||
break; | ||
} | ||
break; | ||
} | ||
// if (value === ":" && previous.type === Syntax.Pair) break; | ||
consume(); | ||
} | ||
}; | ||
|
||
const processPunctuator = () => { | ||
switch (ctx.token.value) { | ||
case ".": | ||
operators.push(ctx.token); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 |
||
break; | ||
case "(": | ||
depth++; | ||
// Function call. | ||
|
@@ -91,12 +95,12 @@ break; | |
operands.push(expr); | ||
} | ||
return false; | ||
} | ||
if (ctx.token.value === "?") { | ||
inTernary = true; | ||
} | ||
operators.push(ctx.token); | ||
} | ||
if (ctx.token.value === "?") { | ||
inTernary = true; | ||
} | ||
operators.push(ctx.token); | ||
|
||
break; | ||
case "[": | ||
depth++; | ||
|
@@ -171,8 +175,18 @@ break; | |
operands.push(constant(ctx)); | ||
break; | ||
case Syntax.Identifier: | ||
eatFunctionCall = true; | ||
operands.push(maybeIdentifier(ctx)); | ||
const prev = last(operators); | ||
if (prev && prev.value === ".") { | ||
operators.pop(); | ||
operators.push({ ...prev, value: "[" }); | ||
operands.push(accessIdentifier(ctx)); | ||
eatUntil(isLSqrBracket); | ||
consume(); | ||
eatFunctionCall = false; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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. |
||
} else { | ||
operands.push(maybeIdentifier(ctx)); | ||
eatFunctionCall = true; | ||
} | ||
break; | ||
case Syntax.StringLiteral: | ||
eatFunctionCall = false; | ||
|
@@ -207,8 +221,8 @@ break; | |
} | ||
|
||
while (operators.length) { | ||
consume(); | ||
} | ||
consume(); | ||
} | ||
|
||
// Should be a node | ||
return operands.pop(); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
substring
is unnecessary if you need the rest of the string like here.
as an individual token, so I'm not sure how this works.There was a problem hiding this comment.
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.