1
0
mirror of https://github.com/robertkrimen/otto synced 2025-10-05 19:19:10 +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 {
Left Expression
Identifier Identifier
Identifier *Identifier
}
EmptyExpression struct {
@ -395,6 +395,8 @@ type Program struct {
DeclarationList []Declaration
File *file.File
CommentMap CommentMap
}
// ==== //