File tree 8 files changed +83
-21
lines changed
8 files changed +83
-21
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ const Syntax = {
13
13
Punctuator : "Punctuator" ,
14
14
Identifier : "Identifier" ,
15
15
ArraySubscript : "ArraySubscript" ,
16
+ AccessIdentifier : "AccessIdentifier" ,
16
17
Constant : "Constant" ,
17
18
Type : "Type" ,
18
19
Declaration : "Declaration" ,
Original file line number Diff line number Diff line change @@ -6,6 +6,24 @@ const compileAndRun = (src, imports) =>
6
6
const outputIs = ( t , value ) => result =>
7
7
t . is ( result . instance . exports . test ( ) , value ) ;
8
8
9
+ test ( "dot operator" , t => {
10
+ return compileAndRun (
11
+ `
12
+ const memory: Memory = { 'initial': 1 };
13
+
14
+ type TestType = { 'foo': i32, 'bar': i32 };
15
+
16
+ export function test(): i32 {
17
+ let obj: TestType = 0;
18
+
19
+ obj["foo"] = 42;
20
+ obj.bar = 20;
21
+
22
+ return obj.foo + obj.bar;
23
+ }`
24
+ ) . then ( outputIs ( t , 62 ) ) ;
25
+ } ) ;
26
+
9
27
test ( "types and assignment" , t => {
10
28
return compileAndRun (
11
29
`
Original file line number Diff line number Diff line change
1
+ //@flow
2
+ import Syntax from "../Syntax" ;
3
+ import type Context from "./context" ;
4
+ import type { Node } from "../flow/types" ;
5
+
6
+ export function accessIdentifier ( ctx : Context ) : Node {
7
+ const node = ctx . startNode ( ) ;
8
+ // We're removing first character which is access dot operator
9
+ node . value = ctx . token . value . substring ( 1 , ctx . token . value . length ) ;
10
+ return ctx . endNode ( node , Syntax . StringLiteral ) ;
11
+ }
12
+
13
+ export default accessIdentifier ;
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ 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" ;
6
7
import builtInType from "./builtin-type" ;
7
8
import { getAssociativty , getPrecedence } from "./introspection" ;
8
9
import maybeIdentifier from "./maybe-identifier" ;
@@ -174,6 +175,19 @@ break;
174
175
eatFunctionCall = true ;
175
176
operands . push ( maybeIdentifier ( ctx ) ) ;
176
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 ;
190
+ break ;
177
191
case Syntax . StringLiteral :
178
192
eatFunctionCall = false ;
179
193
operands . push ( stringLiteral ( ctx ) ) ;
Original file line number Diff line number Diff line change 1
1
//@flow
2
- import Syntax from " ../Syntax" ;
3
- import maybeIdentifier from " ./maybe-identifier" ;
4
- import memoryStore from " ./memory-store" ;
5
- import expression from " ./expression" ;
6
- import type Context from " ./context" ;
7
- import type { NodeType } from " ../flow/types" ;
2
+ import Syntax from ' ../Syntax' ;
3
+ import maybeIdentifier from ' ./maybe-identifier' ;
4
+ import memoryStore from ' ./memory-store' ;
5
+ import expression from ' ./expression' ;
6
+ import type Context from ' ./context' ;
7
+ import type { NodeType } from ' ../flow/types' ;
8
8
9
9
// It is easier to parse assignment this way as we need to maintain a valid type
10
10
// through out the right-hand side of the expression
11
11
function maybeAssignment ( ctx : Context ) : NodeType {
12
- const nextValue = ctx . stream . peek ( ) . value ;
13
- if ( nextValue === "[" ) {
14
- return memoryStore ( ctx ) ;
15
- }
12
+ const { type , value } = ctx . stream . peek ( ) ;
13
+ if ( value === '[' || type === Syntax . AccessIdentifier ) {
14
+ return memoryStore ( ctx ) ;
15
+ }
16
16
17
17
const target = maybeIdentifier ( ctx ) ;
18
18
if ( target . Type === Syntax . FunctionCall ) {
Original file line number Diff line number Diff line change
1
+ // @flow
2
+
3
+ import token from "../token" ;
4
+ import Syntax from "../../Syntax" ;
5
+ import { maybeIdentifier } from "../identifier" ;
6
+
7
+ const maybeAccessIdentifier = char => {
8
+ if ( char === "." ) {
9
+ return maybeIdentifier ;
10
+ }
11
+ return null ;
12
+ } ;
13
+
14
+ export default token ( maybeAccessIdentifier , Syntax . AccessIdentifier ) ;
Original file line number Diff line number Diff line change 1
- import token from " ../token" ;
2
- import punctuator from " ../punctuator" ;
3
- import constant from " ../constant" ;
4
- import string from " ../string" ;
5
- import Syntax from " ../../Syntax" ;
1
+ import token from ' ../token' ;
2
+ import punctuator from ' ../punctuator' ;
3
+ import constant from ' ../constant' ;
4
+ import string from ' ../string' ;
5
+ import Syntax from ' ../../Syntax' ;
6
6
7
- const parse = char => {
7
+ export const maybeIdentifier = char => {
8
8
// Don't allow these
9
- if ( ! string ( char ) && ! punctuator ( char ) && ! constant ( char ) && char !== " " ) {
10
- return parse ;
11
- }
9
+ if ( ! string ( char ) && ! punctuator ( char ) && ! constant ( char ) && char !== ' ' ) {
10
+ return maybeIdentifier ;
11
+ }
12
12
return null ;
13
13
} ;
14
- const tokenParser = token ( parse , Syntax . Identifier ) ;
15
- export default tokenParser ;
14
+
15
+ export default token ( maybeIdentifier , Syntax . Identifier ) ;
Original file line number Diff line number Diff line change 1
1
import Stream from "../utils/stream" ;
2
2
import punctuator from "./punctuator" ;
3
3
import constant from "./constant" ;
4
+ import accessIdentifier from "./access-identifier" ;
4
5
import identifier from "./identifier" ;
5
6
import keyword from "./keyword" ;
6
7
import string from "./string" ;
@@ -11,6 +12,7 @@ class Tokenizer {
11
12
constructor (
12
13
stream ,
13
14
parsers = [
15
+ accessIdentifier ,
14
16
punctuator ,
15
17
constant ,
16
18
identifier ,
You can’t perform that action at this time.
0 commit comments