From 5fc25a6e7580d951245fbc8182d343bdcdea77f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanis=C5=82aw=20Barzowski?= Date: Fri, 12 Jan 2018 14:54:58 +0100 Subject: [PATCH] Remove unnecessary type alias --- vm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm.go b/vm.go index 44c812a..add1628 100644 --- a/vm.go +++ b/vm.go @@ -88,7 +88,7 @@ func (vm *VM) Importer(i Importer) { vm.importer = i } -type evalKind = int +type evalKind int const ( evalKindRegular = iota