1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 10:15:55 +03:00

Add pointer / reference var assignment

This commit is contained in:
Rick Winfrey 2017-10-24 14:19:49 -07:00
parent 5e74311b71
commit 5222b02c49
2 changed files with 2 additions and 0 deletions

View File

@ -5,4 +5,5 @@ a = 1
b, c += 2, 3
d *= 3
e += 1
var pointer *Point3D = &Point3D{y: 1000}
}

View File

@ -5,4 +5,5 @@ x = 1
y, c += 2, 3
z *= 3
h += 1
var pointer *Point2D = &Point2D{x: 1000}
}