@@ -3,10 +3,9 @@ import Syntax from "../Syntax";
3
3
import operator from "./operator" ;
4
4
import constant from "./constant" ;
5
5
import stringLiteral from "./string-literal" ;
6
- import accessIdentifier from "./access-identifier" ;
7
6
import builtInType from "./builtin-type" ;
8
7
import { getAssociativty , getPrecedence } from "./introspection" ;
9
- import maybeIdentifier from "./maybe-identifier" ;
8
+ import maybeIdentifier , { accessIdentifier } from "./maybe-identifier" ;
10
9
import { PRECEDENCE_FUNCTION_CALL } from "./precedence" ;
11
10
import type Context from "./context" ;
12
11
import type { Node , Token } from "../flow/types" ;
@@ -22,6 +21,7 @@ const isLBracket = valueIs("(");
22
21
const isLSqrBracket = valueIs ( "[" ) ;
23
22
const isTStart = valueIs ( "?" ) ;
24
23
const isBlockStart = valueIs ( "{" ) ;
24
+
25
25
export const isPunctuatorAndNotBracket = ( t : ?Token ) =>
26
26
t && t . type === Syntax . Punctuator && t . value !== "]" && t . value !== ")" ;
27
27
@@ -63,15 +63,18 @@ const expression = (
63
63
getAssociativty ( previous ) === "left"
64
64
) {
65
65
if ( value === "," && previous . type === Syntax . FunctionCall ) {
66
- break ;
67
- }
66
+ break ;
67
+ }
68
68
// if (value === ":" && previous.type === Syntax.Pair) break;
69
69
consume ( ) ;
70
70
}
71
71
} ;
72
72
73
73
const processPunctuator = ( ) => {
74
74
switch ( ctx . token . value ) {
75
+ case "." :
76
+ operators . push ( ctx . token ) ;
77
+ break ;
75
78
case "(" :
76
79
depth ++ ;
77
80
// Function call.
@@ -92,12 +95,12 @@ break;
92
95
operands . push ( expr ) ;
93
96
}
94
97
return false ;
95
- }
96
- if ( ctx . token . value === "?" ) {
97
- inTernary = true ;
98
- }
99
- operators . push ( ctx . token ) ;
100
-
98
+ }
99
+ if ( ctx . token . value === "?" ) {
100
+ inTernary = true ;
101
+ }
102
+ operators . push ( ctx . token ) ;
103
+
101
104
break ;
102
105
case "[" :
103
106
depth ++ ;
@@ -172,21 +175,18 @@ break;
172
175
operands . push ( constant ( ctx ) ) ;
173
176
break ;
174
177
case Syntax . Identifier :
175
- eatFunctionCall = true ;
176
- operands . push ( maybeIdentifier ( ctx ) ) ;
177
- break ;
178
- case Syntax . AccessIdentifier :
179
- // We're manually creating StringLiteral from AccessIdentifier
180
- operators . push ( {
181
- type : "Punctuator" ,
182
- value : "[" ,
183
- start : { } ,
184
- end : { }
185
- } ) ;
186
- operands . push ( accessIdentifier ( ctx ) ) ;
187
- eatUntil ( isLSqrBracket ) ;
188
- consume ( ) ;
189
- eatFunctionCall = false ;
178
+ const prev = last ( operators ) ;
179
+ if ( prev && prev . value === "." ) {
180
+ operators . pop ( ) ;
181
+ operators . push ( { ...prev , value : "[" } ) ;
182
+ operands . push ( accessIdentifier ( ctx ) ) ;
183
+ eatUntil ( isLSqrBracket ) ;
184
+ consume ( ) ;
185
+ eatFunctionCall = false ;
186
+ } else {
187
+ operands . push ( maybeIdentifier ( ctx ) ) ;
188
+ eatFunctionCall = true ;
189
+ }
190
190
break ;
191
191
case Syntax . StringLiteral :
192
192
eatFunctionCall = false ;
@@ -221,8 +221,8 @@ break;
221
221
}
222
222
223
223
while ( operators . length ) {
224
- consume ( ) ;
225
- }
224
+ consume ( ) ;
225
+ }
226
226
227
227
// Should be a node
228
228
return operands . pop ( ) ;
0 commit comments