diff options
author | obscuren <geffobscura@gmail.com> | 2014-05-10 22:22:57 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-05-10 22:22:57 +0800 |
commit | 23fc50c61b99735263eb682eb992c174eceea632 (patch) | |
tree | 1f72dca81e9fbad641eedbaed73c7cfc6ad5992d /utils | |
parent | faa3aa14ed261dc11247c6c059c184e9a31d09c5 (diff) | |
download | go-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.go | 2 |
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 { |