1
0
mirror of https://github.com/robertkrimen/otto synced 2025-10-12 20:27:30 +08:00

DotExpression identifier as pointer

This commit is contained in:
wolfgarnet 2016-02-09 20:50:52 +01:00
parent 3b2178bf55
commit 1003ce01cb

View File

@ -83,7 +83,7 @@ type (
DotExpression struct { DotExpression struct {
Left Expression Left Expression
Identifier Identifier Identifier *Identifier
} }
EmptyExpression struct { EmptyExpression struct {
@ -395,6 +395,8 @@ type Program struct {
DeclarationList []Declaration DeclarationList []Declaration
File *file.File File *file.File
CommentMap CommentMap
} }
// ==== // // ==== //