aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-05-10 22:22:57 +0800
committerobscuren <geffobscura@gmail.com>2014-05-10 22:22:57 +0800
commit23fc50c61b99735263eb682eb992c174eceea632 (patch)
tree1f72dca81e9fbad641eedbaed73c7cfc6ad5992d /utils
parentfaa3aa14ed261dc11247c6c059c184e9a31d09c5 (diff)
downloadgo-tangerine-23fc50c61b99735263eb682eb992c174eceea632.tar
go-tangerine-23fc50c61b99735263eb682eb992c174eceea632.tar.gz
go-tangerine-23fc50c61b99735263eb682eb992c174eceea632.tar.bz2
go-tangerine-23fc50c61b99735263eb682eb992c174eceea632.tar.lz
go-tangerine-23fc50c61b99735263eb682eb992c174eceea632.tar.xz
go-tangerine-23fc50c61b99735263eb682eb992c174eceea632.tar.zst
go-tangerine-23fc50c61b99735263eb682eb992c174eceea632.zip
Upgraded to new mutan
Diffstat (limited to 'utils')
-rw-r--r--utils/compile.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/compile.go b/utils/compile.go
index 6d75f73d1..967bd099b 100644
--- a/utils/compile.go
+++ b/utils/compile.go
@@ -24,7 +24,7 @@ func Compile(script string) ([]byte, error) {
func CompileScript(script string) ([]byte, []byte, error) {
// Preprocess
- mainInput, initInput := mutan.PreProcess(script)
+ mainInput, initInput := mutan.PreParse(script)
// Compile main script
mainScript, err := Compile(mainInput)
if err != nil {