feat: Add support for missing assign operators (#30)

This commit is contained in:
Marc Vertes
2019-01-22 19:08:15 +01:00
committed by Ludovic Fernandez
parent 83c21d4bc0
commit 2619434b64
6 changed files with 468 additions and 30 deletions

View File

@@ -1,6 +1,8 @@
package interp
import "reflect"
import (
"reflect"
)
func valueGenerator(n *Node, i int) func(*Frame) reflect.Value {
switch n.level {